forked from vtex-apps/search-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
97 lines (97 loc) · 2.25 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
{
"vendor": "topsortpartnercl",
"name": "auctions",
"version": "1.0.1",
"title": "Topsort's Auctions Integration",
"description": "Topsort's Fork of VTEX search resolver to run auctions in Topsort.",
"credentialType": "absolute",
"builders": {
"node": "6.x",
"docs": "0.x"
},
"billingOptions": {
"type": "free",
"support": {
"email": "[email protected]",
"url": "https://docs.topsort.com/overview/"
},
"availableCountries": ["*"]
},
"dependencies": {
"vtex.messages": "1.x",
"vtex.catalog-api-proxy": "0.x",
"vtex.search-graphql": "0.x",
"vtex.rewriter": "1.x",
"vtex.sae-analytics": "2.x",
"vtex.intelligent-search-api": "0.x"
},
"settingsSchema": {
"title": "Topsort Intelligent Search Resolver",
"type": "object",
"properties": {
"topsortApiKey": {
"title": "Topsort API Key",
"type": "string",
"default": ""
},
"sponsoredCount": {
"title": "Topsort Number of Sponsored Slots",
"type": "number",
"default": 2
},
"slugifyLinks": {
"title": "Set to slugify links. Uses default catalog slug instead",
"type": "boolean",
"default": false
}
}
},
"policies": [
{
"name": "vtex.messages:translate-messages"
},
{
"name": "vtex.catalog-api-proxy:catalog-proxy"
},
{
"name": "vtex.catalog-api-proxy:authenticated-catalog-proxy"
},
{
"name": "vtex.rewriter:resolve-graphql"
},
{
"name": "vbase-read-write"
},
{
"name": "colossus-fire-event"
},
{
"name": "vtex.intelligent-search-api:intelligent-search"
},
{
"attrs": {
"host": "portal.vtexcommercestable.com.br",
"path": "/api/segments/*"
},
"name": "outbound-access"
},
{
"name": "outbound-access",
"attrs": {
"host": "search.biggylabs.com.br",
"path": "/*"
}
},
{
"name": "outbound-access",
"attrs": {
"host": "api.topsort.com",
"path": "/*"
}
},
{
"name": "vtex.messages:graphql-translate-messages"
}
],
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}