forked from vtex-apps/reviews-and-ratings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
100 lines (100 loc) · 2.57 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
{
"name": "reviews-and-ratings",
"vendor": "vtex",
"version": "1.6.1",
"title": "Reviews and Ratings",
"description": "An app for saving and retrieving product reviews and ratings.",
"builders": {
"admin": "0.x",
"store": "0.x",
"dotnet": "1.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.store-graphql": "2.x",
"vtex.channels-components": "4.x",
"vtex.paginated-table": "0.x",
"vtex.css-handles": "0.x"
},
"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
}
}
},
"policies": [
{
"name": "outbound-access",
"attrs": {
"host": "bnb.data.bl.uk"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "nuget.org"
}
},
{
"name": "ADMIN_DS"
},
{
"name": "outbound-access",
"attrs": {
"host": "{{account}}.vtexcommercestable.com.br",
"path": "/api/dataentities/*"
}
},
{
"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"
}