-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
64 lines (64 loc) · 1.61 KB
/
manifest.json
File metadata and controls
64 lines (64 loc) · 1.61 KB
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
{
"vendor": "vtex",
"name": "adserver-resolver",
"version": "2.10.5",
"title": "Ad Server Resolver",
"description": "Configurations for sponsored products on your store",
"builders": {
"node": "6.x"
},
"dependencies": {
"vtex.adserver-graphql": "0.x"
},
"policies": [
{
"name": "vbase-read-write"
},
{
"name": "outbound-access",
"attrs": {
"host": "ad-server.vtex.systems",
"path": "/api/*"
}
},
{
"attrs": {
"host": "portal.vtexcommercestable.com.br",
"path": "/api/checkout/regions/*"
},
"name": "outbound-access"
},
{
"attrs": {
"host": "newtail-media.newtail.com.br",
"path": "*"
},
"name": "outbound-access"
}
],
"settingsSchema": {
"title": "AdServer Resolver",
"type": "object",
"properties": {
"enableAdsOnCollections": {
"title": "Enable sponsored products on collections",
"description": "If checked, sponsored products will be displayed on product collections.",
"type": "boolean",
"default": true
},
"enableNewtail": {
"title": "Enable Newtail",
"description": "If checked, Newtail will be used to display sponsored products.",
"type": "boolean",
"default": false
},
"newtailPublisherId": {
"title": "Newtail Publisher ID",
"description": "The publisher ID provided by Newtail.",
"type": "string",
"default": ""
}
}
},
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}