-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
100 lines (100 loc) · 2.43 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": "store-indexer",
"vendor": "vtex",
"version": "0.17.1",
"title": "Store Indexer",
"description": "Listens to IO-broadcaster for catalog itens changes.",
"mustUpdateAt": "2020-07-29",
"categories": [],
"dependencies": {
"vtex.messages": "1.x",
"vtex.catalog-api-proxy": "0.x",
"vtex.search-graphql": "0.x",
"vtex.catalog-graphql": "1.x",
"vtex.rewriter": "1.x"
},
"builders": {
"node": "6.x",
"docs": "0.x"
},
"settingsSchema": {
"title": "VTEX Store Indexer",
"type": "object",
"properties": {
"numberOfIndexedSearches": {
"title": "Number of search URLs to be indexed",
"type": "number",
"default": 0,
"description": "Store index will take this number of URLs, the most accessed ones based on access stats, make canonicals and index them at our sitemap."
},
"usesMultiLanguageSearch": {
"title": "Uses a Search that supports multi-language",
"type": "boolean",
"default": false,
"description": "Uses a Search that supports multi-language and can receive the search parameters in other languages"
},
"resolveBrandMapQueryAs": {
"title": "Brand Queries Map",
"type": "string",
"default": "b",
"enumNames": [
"Full Text",
"Brand"
],
"enum": [
"ft",
"b"
],
"description": "Defines how you want to map brand pages"
}
}
},
"scripts": {
"prereleasy": "bash lint.sh"
},
"credentialType": "absolute",
"policies": [
{
"name": "outbound-access",
"attrs": {
"host": "httpstat.us",
"path": "*"
}
},
{
"name": "colossus-fire-event"
},
{
"name": "colossus-write-logs"
},
{
"name": "vbase-read-write"
},
{
"name": "graphql-query"
},
{
"name": "vtex.messages:graphql-save-translation-messages"
},
{
"name": "outbound-access",
"attrs": {
"host": "portal.vtexcommercestable.com.br",
"path": "/api/checkout/pub/*"
}
},
{
"name": "vtex.search-graphql:resolve-graphql"
},
{
"name": "vtex.catalog-api-proxy:catalog-proxy"
},
{
"name": "vtex.rewriter:resolve-graphql"
}
],
"registries": [
"smartcheckout"
],
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}