-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.meta.json
117 lines (117 loc) · 2.38 KB
/
variables.meta.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
{
"FILES_URL": {
"name": "Files URL",
"scope": "devtools"
},
"FILES_TYPE": {
"name": "Files type",
"defaultValue": "local",
"scope": "devtools",
"schema": {
"type": "string",
"enum": ["local", "gitlab", "github", "bitbucket"]
}
},
"POSTMAN_KEY": {
"name": "Postman key",
"defaultValue": "",
"scope": "devtools",
"field": {
"type": "password"
}
},
"CLEAN_ON_BOOT": {
"name": "Clean postman cache on boot?",
"defaultValue": true,
"schema": {
"type": "boolean"
},
"scope": "devtools"
},
"TRANSLATE_ENGINE": {
"name": "Translation engine",
"defaultValue": "google",
"schema": {
"type": "string",
"enum": ["google", "yandex"]
},
"scope": "devtools"
},
"TRANSLATE_KEY": {
"name": "Translation provider key",
"defaultValue": "",
"scope": "devtools",
"field": {
"type": "password"
}
},
"TRANSLATE_BASE_LANGUAGE": {
"name": "Translation base language",
"defaultValue": "en",
"schema": {
"type": "string",
"enum": ["en", "zh", "hi", "es", "fr", "ar", "ru", "bn", "pt", "id"]
},
"scope": "devtools"
},
"ADD_IAM_TO_GUEST": {
"name": "Add \"modules:devtools\" IAM to guest",
"defaultValue": true,
"scope": "devtools",
"schema": {
"type": "boolean"
}
},
"DISPLAY_VARIABLE": {
"name": "Display Env Vars",
"defaultValue": false,
"scope": "devtools",
"schema": {
"type": "boolean"
}
},
"DOC_ADD_EXCLUDED": {
"name": "Add excluded APIs",
"description": "Add excluded APIs to postman documentation",
"defaultValue": true,
"scope": "devtools",
"schema": {
"type": "boolean"
}
},
"NPM_DRY_RUN": {
"name": "Simulate NPM writing",
"defaultValue": false,
"scope": "devtools",
"schema": {
"type": "boolean"
}
},
"NPM_REGISTRY": {
"name": "NPM registry Url",
"defaultValue": "https://registry.npmjs.org/",
"scope": "devtools",
"schema": {
"type": "string"
}
},
"NPM_USERNAME": {
"name": "NPM Username",
"defaultValue": "",
"scope": "devtools",
"schema": {
"type": "string"
}
},
"NPM_PASSWORD": {
"name": "NPM Password",
"defaultValue": "",
"scope": "devtools",
"schema": {
"type": "string"
},
"field": {
"type": "password"
}
}
}