-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.json
198 lines (198 loc) · 4.96 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "reviews-and-ratings",
"vendor": "vtex",
"version": "3.16.0",
"title": "Reviews and Ratings",
"description": "admin/reviews.reviewsandratings.description",
"builders": {
"admin": "0.x",
"store": "0.x",
"dotnet": "2.x",
"graphql": "1.x",
"react": "3.x",
"messages": "1.x",
"docs": "0.x"
},
"dependencies": {
"vtex.styleguide": "9.x",
"vtex.product-review-interfaces": "1.x",
"vtex.product-summary": "2.x",
"vtex.product-context": "0.x",
"vtex.store": "2.x",
"vtex.search-graphql": "0.x",
"vtex.tenant-graphql": "0.x",
"vtex.channels-components": "4.x",
"vtex.paginated-table": "0.x",
"vtex.css-handles": "0.x"
},
"billingOptions": {
"termsURL": "https://compliance.vtex.com/gdpr/policies/vtex-privacy-policy",
"support": {
"url": "https://support.vtex.com/hc/requests"
},
"free": true,
"type": "free",
"availableCountries": [
"*"
]
},
"settingsSchema": {
"title": "Reviews and Ratings",
"type": "object",
"properties": {
"allowAnonymousReviews": {
"title": "Allow Anonymous Reviews",
"description": "Allow shoppers to submit reviews even if they are not logged in",
"type": "boolean",
"default": false
},
"requireApproval": {
"title": "Require Admin Approval",
"description": "Require administrator approval before newly submitted reviews are displayed",
"type": "boolean",
"default": false
},
"useLocation": {
"title": "Ask for Reviewer's Location",
"description": "Include a field for reviewer to input their location when submitting review",
"type": "boolean",
"default": false
},
"defaultOpen": {
"title": "Default all review accordions to open",
"description": "All review tabs on product page will default to open with review text truncated to x characters",
"type": "boolean",
"default": true
},
"defaultStarsRating": {
"title": "Review default stars",
"description": "Specified review default stars on product page",
"type": "string",
"enum": [
"1",
"2",
"3",
"4",
"5"
],
"default": "5"
},
"defaultOpenCount": {
"title": "Number of open review accordions",
"description": "Specified number of review tabs on product page will default to open",
"type": "string",
"enum": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
],
"default": "0"
},
"showGraph": {
"title": "Display graph",
"description": "Display the reviews graph on product page",
"type": "boolean",
"default": false
},
"displaySummaryIfNone": {
"title": "Display stars in product-rating-summary if there are no reviews",
"type": "boolean",
"default": false
},
"displayInlineIfNone": {
"title": "Display stars in product-rating-inline if there are no reviews",
"type": "boolean",
"default": false
},
"displaySummaryTotalReviews": {
"title": "Display total reviews number on product-rating-summary block",
"type": "boolean",
"default": true
},
"displaySummaryAddButton": {
"title": "Display `Add review` button on product-rating-summary block",
"type": "boolean",
"default": false
}
}
},
"policies": [
{
"name": "outbound-access",
"attrs": {
"host": "bnb.data.bl.uk"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "nuget.org"
}
},
{
"name": "ADMIN_DS"
},
{
"name": "POWER_USER_DS"
},
{
"name": "AcessaTodosPedidos"
},
{
"name": "OMSViewer"
},
{
"name": "ListOrders"
},
{
"name": "Get_Account_By_Identifier"
},
{
"name": "outbound-access",
"attrs": {
"host": "{{account}}.vtexcommercestable.com.br",
"path": "/api/dataentities/*"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "{{account}}.vtexcommercestable.com.br",
"path": "/api/vtexid/*"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "licensemanager.vtexcommercestable.com.br",
"path": "/api/license-manager/pvt/accounts/*"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "infra.io.vtex.com",
"path": "/vbase/*"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "infra.io.vtex.com",
"path": "/apps/*"
}
},
{
"name": "vbase-read-write"
}
],
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}