@epilot/cli 0.1.12 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/definitions/blueprint-manifest.json +239 -12
- package/definitions/configuration-hub.json +399 -0
- package/definitions/customer-portal.json +373 -4
- package/definitions/design.json +257 -4
- package/definitions/environments.json +183 -7
- package/definitions/query.json +3178 -0
- package/definitions/target.json +609 -0
- package/definitions/user.json +52 -0
- package/dist/bin/epilot.js +8 -6
- package/dist/{chunk-F6KWKTQJ.js → chunk-XQLUS2BD.js} +52 -4
- package/dist/{completion-QP4IYMVI.js → completion-KA3HJ6PR.js} +1 -1
- package/dist/configuration-hub-Y7W22GBW.js +54 -0
- package/dist/query-IYW42QLU.js +54 -0
- package/dist/{upgrade-SYSSIAQC.js → upgrade-Z7XJXIDK.js} +1 -1
- package/package.json +4 -2
package/definitions/design.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Design Builder API v2",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.3"
|
|
6
6
|
},
|
|
7
7
|
"tags": [
|
|
8
8
|
{
|
|
@@ -477,7 +477,8 @@
|
|
|
477
477
|
"type": "string",
|
|
478
478
|
"enum": [
|
|
479
479
|
"LOGO",
|
|
480
|
-
"FONT"
|
|
480
|
+
"FONT",
|
|
481
|
+
"IMAGE"
|
|
481
482
|
]
|
|
482
483
|
},
|
|
483
484
|
"required": false,
|
|
@@ -846,7 +847,8 @@
|
|
|
846
847
|
"type": "string",
|
|
847
848
|
"enum": [
|
|
848
849
|
"LOGO",
|
|
849
|
-
"FONT"
|
|
850
|
+
"FONT",
|
|
851
|
+
"IMAGE"
|
|
850
852
|
]
|
|
851
853
|
},
|
|
852
854
|
"file_data": {
|
|
@@ -1191,6 +1193,7 @@
|
|
|
1191
1193
|
"properties": {
|
|
1192
1194
|
"design_tokens": {
|
|
1193
1195
|
"type": "object",
|
|
1196
|
+
"description": "Design tokens for journey customization",
|
|
1194
1197
|
"properties": {
|
|
1195
1198
|
"coupon": {
|
|
1196
1199
|
"type": "string"
|
|
@@ -1200,6 +1203,255 @@
|
|
|
1200
1203
|
},
|
|
1201
1204
|
"custom_css": {
|
|
1202
1205
|
"type": "string"
|
|
1206
|
+
},
|
|
1207
|
+
"accent_color": {
|
|
1208
|
+
"type": "string",
|
|
1209
|
+
"description": "Accent color, defaults to primary"
|
|
1210
|
+
},
|
|
1211
|
+
"outline_color": {
|
|
1212
|
+
"type": "string",
|
|
1213
|
+
"description": "Global outline/focus color"
|
|
1214
|
+
},
|
|
1215
|
+
"divider_color": {
|
|
1216
|
+
"type": "string",
|
|
1217
|
+
"description": "Divider line color"
|
|
1218
|
+
},
|
|
1219
|
+
"link_color": {
|
|
1220
|
+
"type": "string",
|
|
1221
|
+
"description": "Link text color"
|
|
1222
|
+
},
|
|
1223
|
+
"link_hover_color": {
|
|
1224
|
+
"type": "string",
|
|
1225
|
+
"description": "Link hover text color"
|
|
1226
|
+
},
|
|
1227
|
+
"font_size_scale": {
|
|
1228
|
+
"type": "string",
|
|
1229
|
+
"description": "Font size scale factor",
|
|
1230
|
+
"enum": [
|
|
1231
|
+
"xs",
|
|
1232
|
+
"sm",
|
|
1233
|
+
"md",
|
|
1234
|
+
"lg",
|
|
1235
|
+
"xl"
|
|
1236
|
+
]
|
|
1237
|
+
},
|
|
1238
|
+
"topbar_height": {
|
|
1239
|
+
"type": "number",
|
|
1240
|
+
"description": "Topbar minimum height in pixels"
|
|
1241
|
+
},
|
|
1242
|
+
"topbar_logo_alignment": {
|
|
1243
|
+
"type": "string",
|
|
1244
|
+
"description": "Logo/content alignment in the top bar",
|
|
1245
|
+
"enum": [
|
|
1246
|
+
"flex-start",
|
|
1247
|
+
"center",
|
|
1248
|
+
"flex-end"
|
|
1249
|
+
]
|
|
1250
|
+
},
|
|
1251
|
+
"logo_size": {
|
|
1252
|
+
"type": "number",
|
|
1253
|
+
"description": "Logo size in pixels"
|
|
1254
|
+
},
|
|
1255
|
+
"input_background": {
|
|
1256
|
+
"type": "string",
|
|
1257
|
+
"description": "Input field background color"
|
|
1258
|
+
},
|
|
1259
|
+
"input_border_color": {
|
|
1260
|
+
"type": "string",
|
|
1261
|
+
"description": "Input field border color"
|
|
1262
|
+
},
|
|
1263
|
+
"input_text_color": {
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"description": "Input field text color"
|
|
1266
|
+
},
|
|
1267
|
+
"input_label_color": {
|
|
1268
|
+
"type": "string",
|
|
1269
|
+
"description": "Input field label color"
|
|
1270
|
+
},
|
|
1271
|
+
"input_border_radius": {
|
|
1272
|
+
"type": "number",
|
|
1273
|
+
"description": "Input field border radius in pixels"
|
|
1274
|
+
},
|
|
1275
|
+
"input_height": {
|
|
1276
|
+
"type": "number",
|
|
1277
|
+
"description": "Input field height in pixels"
|
|
1278
|
+
},
|
|
1279
|
+
"input_variant": {
|
|
1280
|
+
"type": "string",
|
|
1281
|
+
"description": "Input field variant style",
|
|
1282
|
+
"enum": [
|
|
1283
|
+
"outlined",
|
|
1284
|
+
"filled",
|
|
1285
|
+
"underlined"
|
|
1286
|
+
]
|
|
1287
|
+
},
|
|
1288
|
+
"button_primary_bg": {
|
|
1289
|
+
"type": "string",
|
|
1290
|
+
"description": "Primary button background color or gradient"
|
|
1291
|
+
},
|
|
1292
|
+
"button_primary_text": {
|
|
1293
|
+
"type": "string",
|
|
1294
|
+
"description": "Primary button text color"
|
|
1295
|
+
},
|
|
1296
|
+
"button_primary_hover_bg": {
|
|
1297
|
+
"type": "string",
|
|
1298
|
+
"description": "Primary button hover background color or gradient"
|
|
1299
|
+
},
|
|
1300
|
+
"button_primary_hover_text": {
|
|
1301
|
+
"type": "string",
|
|
1302
|
+
"description": "Primary button hover text color"
|
|
1303
|
+
},
|
|
1304
|
+
"button_outlined_border": {
|
|
1305
|
+
"type": "string",
|
|
1306
|
+
"description": "Outlined button border color"
|
|
1307
|
+
},
|
|
1308
|
+
"button_outlined_text": {
|
|
1309
|
+
"type": "string",
|
|
1310
|
+
"description": "Outlined button text color"
|
|
1311
|
+
},
|
|
1312
|
+
"button_outlined_hover_bg": {
|
|
1313
|
+
"type": "string",
|
|
1314
|
+
"description": "Outlined button hover background color"
|
|
1315
|
+
},
|
|
1316
|
+
"button_outlined_hover_text": {
|
|
1317
|
+
"type": "string",
|
|
1318
|
+
"description": "Outlined button hover text color"
|
|
1319
|
+
},
|
|
1320
|
+
"button_ghost_bg": {
|
|
1321
|
+
"type": "string",
|
|
1322
|
+
"description": "Ghost button background color"
|
|
1323
|
+
},
|
|
1324
|
+
"button_ghost_text": {
|
|
1325
|
+
"type": "string",
|
|
1326
|
+
"description": "Ghost button text color"
|
|
1327
|
+
},
|
|
1328
|
+
"button_ghost_hover_bg": {
|
|
1329
|
+
"type": "string",
|
|
1330
|
+
"description": "Ghost button hover background color"
|
|
1331
|
+
},
|
|
1332
|
+
"button_ghost_hover_text": {
|
|
1333
|
+
"type": "string",
|
|
1334
|
+
"description": "Ghost button hover text color"
|
|
1335
|
+
},
|
|
1336
|
+
"button_border_radius": {
|
|
1337
|
+
"type": "number",
|
|
1338
|
+
"description": "Button border radius in pixels"
|
|
1339
|
+
},
|
|
1340
|
+
"button_height": {
|
|
1341
|
+
"type": "number",
|
|
1342
|
+
"description": "Button height in pixels"
|
|
1343
|
+
},
|
|
1344
|
+
"card_background": {
|
|
1345
|
+
"type": "string",
|
|
1346
|
+
"description": "Card background color"
|
|
1347
|
+
},
|
|
1348
|
+
"card_border_color": {
|
|
1349
|
+
"type": "string",
|
|
1350
|
+
"description": "Card border color for outlined variant"
|
|
1351
|
+
},
|
|
1352
|
+
"card_variant": {
|
|
1353
|
+
"type": "string",
|
|
1354
|
+
"description": "Card visual variant",
|
|
1355
|
+
"enum": [
|
|
1356
|
+
"shadow",
|
|
1357
|
+
"outlined"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
"summary_card_background": {
|
|
1361
|
+
"type": "string",
|
|
1362
|
+
"description": "Summary card background color"
|
|
1363
|
+
},
|
|
1364
|
+
"toggle_selected_bg": {
|
|
1365
|
+
"type": "string",
|
|
1366
|
+
"description": "Toggle button selected background color"
|
|
1367
|
+
},
|
|
1368
|
+
"toggle_selected_text": {
|
|
1369
|
+
"type": "string",
|
|
1370
|
+
"description": "Toggle button selected text color"
|
|
1371
|
+
},
|
|
1372
|
+
"toggle_hover_bg": {
|
|
1373
|
+
"type": "string",
|
|
1374
|
+
"description": "Toggle button hover background color"
|
|
1375
|
+
},
|
|
1376
|
+
"toggle_hover_text": {
|
|
1377
|
+
"type": "string",
|
|
1378
|
+
"description": "Toggle button hover text color"
|
|
1379
|
+
},
|
|
1380
|
+
"toggle_border_color": {
|
|
1381
|
+
"type": "string",
|
|
1382
|
+
"description": "Toggle group wrapper border color"
|
|
1383
|
+
},
|
|
1384
|
+
"dropdown_hover_bg": {
|
|
1385
|
+
"type": "string",
|
|
1386
|
+
"description": "Dropdown option hover background color"
|
|
1387
|
+
},
|
|
1388
|
+
"dropdown_hover_text": {
|
|
1389
|
+
"type": "string",
|
|
1390
|
+
"description": "Dropdown option hover text color"
|
|
1391
|
+
},
|
|
1392
|
+
"dropdown_selected_bg": {
|
|
1393
|
+
"type": "string",
|
|
1394
|
+
"description": "Dropdown option selected background color"
|
|
1395
|
+
},
|
|
1396
|
+
"dropdown_selected_text": {
|
|
1397
|
+
"type": "string",
|
|
1398
|
+
"description": "Dropdown option selected text color"
|
|
1399
|
+
},
|
|
1400
|
+
"switch_unchecked_color": {
|
|
1401
|
+
"type": "string",
|
|
1402
|
+
"description": "Switch unchecked thumb color"
|
|
1403
|
+
},
|
|
1404
|
+
"switch_unchecked_bg": {
|
|
1405
|
+
"type": "string",
|
|
1406
|
+
"description": "Switch unchecked track background color"
|
|
1407
|
+
},
|
|
1408
|
+
"switch_border_radius": {
|
|
1409
|
+
"type": "number",
|
|
1410
|
+
"description": "Switch border radius in pixels"
|
|
1411
|
+
},
|
|
1412
|
+
"checkbox_unchecked_color": {
|
|
1413
|
+
"type": "string",
|
|
1414
|
+
"description": "Checkbox unchecked border color"
|
|
1415
|
+
},
|
|
1416
|
+
"checkbox_label_color": {
|
|
1417
|
+
"type": "string",
|
|
1418
|
+
"description": "Checkbox label text color"
|
|
1419
|
+
},
|
|
1420
|
+
"radio_unchecked_color": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"description": "Radio button unchecked border color"
|
|
1423
|
+
},
|
|
1424
|
+
"radio_label_color": {
|
|
1425
|
+
"type": "string",
|
|
1426
|
+
"description": "Radio button label text color"
|
|
1427
|
+
},
|
|
1428
|
+
"datepicker_selected_bg": {
|
|
1429
|
+
"type": "string",
|
|
1430
|
+
"description": "Date picker selected date background color"
|
|
1431
|
+
},
|
|
1432
|
+
"datepicker_selected_color": {
|
|
1433
|
+
"type": "string",
|
|
1434
|
+
"description": "Date picker selected date text color"
|
|
1435
|
+
},
|
|
1436
|
+
"datepicker_border_radius": {
|
|
1437
|
+
"type": "number",
|
|
1438
|
+
"description": "Date picker border radius in pixels"
|
|
1439
|
+
},
|
|
1440
|
+
"chip_background": {
|
|
1441
|
+
"type": "string",
|
|
1442
|
+
"description": "Chip background color"
|
|
1443
|
+
},
|
|
1444
|
+
"chip_hover_background": {
|
|
1445
|
+
"type": "string",
|
|
1446
|
+
"description": "Chip hover background color"
|
|
1447
|
+
},
|
|
1448
|
+
"chip_text_color": {
|
|
1449
|
+
"type": "string",
|
|
1450
|
+
"description": "Chip text color"
|
|
1451
|
+
},
|
|
1452
|
+
"chip_hover_text_color": {
|
|
1453
|
+
"type": "string",
|
|
1454
|
+
"description": "Chip hover text color"
|
|
1203
1455
|
}
|
|
1204
1456
|
}
|
|
1205
1457
|
}
|
|
@@ -1413,7 +1665,8 @@
|
|
|
1413
1665
|
"type": "string",
|
|
1414
1666
|
"enum": [
|
|
1415
1667
|
"LOGO",
|
|
1416
|
-
"FONT"
|
|
1668
|
+
"FONT",
|
|
1669
|
+
"IMAGE"
|
|
1417
1670
|
]
|
|
1418
1671
|
},
|
|
1419
1672
|
"s3_object_key": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Environments API",
|
|
5
5
|
"description": "API for managing organization environment variables and secrets",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.1"
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
9
9
|
{
|
|
@@ -93,6 +93,122 @@
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
+
"/v1/environments/groups": {
|
|
97
|
+
"get": {
|
|
98
|
+
"operationId": "listEnvironmentGroups",
|
|
99
|
+
"summary": "List environment groups",
|
|
100
|
+
"description": "List all environment groups for the organization.",
|
|
101
|
+
"tags": [
|
|
102
|
+
"environments"
|
|
103
|
+
],
|
|
104
|
+
"responses": {
|
|
105
|
+
"200": {
|
|
106
|
+
"description": "List of environment groups",
|
|
107
|
+
"content": {
|
|
108
|
+
"application/json": {
|
|
109
|
+
"schema": {
|
|
110
|
+
"$ref": "#/components/schemas/EnvironmentGroupList"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"401": {
|
|
116
|
+
"description": "Unauthorized"
|
|
117
|
+
},
|
|
118
|
+
"403": {
|
|
119
|
+
"description": "Forbidden"
|
|
120
|
+
},
|
|
121
|
+
"500": {
|
|
122
|
+
"description": "Internal server error"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"/v1/environments/groups/{name}": {
|
|
128
|
+
"parameters": [
|
|
129
|
+
{
|
|
130
|
+
"name": "name",
|
|
131
|
+
"in": "path",
|
|
132
|
+
"required": true,
|
|
133
|
+
"schema": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"put": {
|
|
139
|
+
"operationId": "putEnvironmentGroup",
|
|
140
|
+
"summary": "putEnvironmentGroup",
|
|
141
|
+
"tags": [
|
|
142
|
+
"environments"
|
|
143
|
+
],
|
|
144
|
+
"requestBody": {
|
|
145
|
+
"required": true,
|
|
146
|
+
"content": {
|
|
147
|
+
"application/json": {
|
|
148
|
+
"schema": {
|
|
149
|
+
"$ref": "#/components/schemas/EnvironmentGroupUpsertRequest"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"responses": {
|
|
155
|
+
"200": {
|
|
156
|
+
"description": "Updated group",
|
|
157
|
+
"content": {
|
|
158
|
+
"application/json": {
|
|
159
|
+
"schema": {
|
|
160
|
+
"$ref": "#/components/schemas/EnvironmentGroup"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"201": {
|
|
166
|
+
"description": "Created group",
|
|
167
|
+
"content": {
|
|
168
|
+
"application/json": {
|
|
169
|
+
"schema": {
|
|
170
|
+
"$ref": "#/components/schemas/EnvironmentGroup"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"401": {
|
|
176
|
+
"description": "Unauthorized"
|
|
177
|
+
},
|
|
178
|
+
"403": {
|
|
179
|
+
"description": "Forbidden"
|
|
180
|
+
},
|
|
181
|
+
"500": {
|
|
182
|
+
"description": "Internal server error"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"delete": {
|
|
187
|
+
"operationId": "deleteEnvironmentGroup",
|
|
188
|
+
"summary": "Delete an environment group",
|
|
189
|
+
"description": "Deletes a group. Variables assigned to this group become ungrouped.",
|
|
190
|
+
"tags": [
|
|
191
|
+
"environments"
|
|
192
|
+
],
|
|
193
|
+
"responses": {
|
|
194
|
+
"204": {
|
|
195
|
+
"description": "Group deleted"
|
|
196
|
+
},
|
|
197
|
+
"401": {
|
|
198
|
+
"description": "Unauthorized"
|
|
199
|
+
},
|
|
200
|
+
"403": {
|
|
201
|
+
"description": "Forbidden"
|
|
202
|
+
},
|
|
203
|
+
"404": {
|
|
204
|
+
"description": "Group not found"
|
|
205
|
+
},
|
|
206
|
+
"500": {
|
|
207
|
+
"description": "Internal server error"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
96
212
|
"/v1/environments/{key}": {
|
|
97
213
|
"parameters": [
|
|
98
214
|
{
|
|
@@ -252,6 +368,10 @@
|
|
|
252
368
|
"description": {
|
|
253
369
|
"type": "string"
|
|
254
370
|
},
|
|
371
|
+
"group": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"description": "Optional group name for organising variables in the UI"
|
|
374
|
+
},
|
|
255
375
|
"value": {
|
|
256
376
|
"type": "string",
|
|
257
377
|
"description": "Value is returned for String type, omitted for SecretString"
|
|
@@ -284,6 +404,10 @@
|
|
|
284
404
|
"description": {
|
|
285
405
|
"type": "string"
|
|
286
406
|
},
|
|
407
|
+
"group": {
|
|
408
|
+
"type": "string",
|
|
409
|
+
"description": "Optional group name for organising variables in the UI"
|
|
410
|
+
},
|
|
287
411
|
"value": {
|
|
288
412
|
"type": "string",
|
|
289
413
|
"description": "Value is returned for String type, omitted for SecretString"
|
|
@@ -316,8 +440,7 @@
|
|
|
316
440
|
"type": "object",
|
|
317
441
|
"required": [
|
|
318
442
|
"key",
|
|
319
|
-
"type"
|
|
320
|
-
"value"
|
|
443
|
+
"type"
|
|
321
444
|
],
|
|
322
445
|
"properties": {
|
|
323
446
|
"key": {
|
|
@@ -330,6 +453,9 @@
|
|
|
330
453
|
"description": {
|
|
331
454
|
"type": "string"
|
|
332
455
|
},
|
|
456
|
+
"group": {
|
|
457
|
+
"type": "string"
|
|
458
|
+
},
|
|
333
459
|
"value": {
|
|
334
460
|
"type": "string"
|
|
335
461
|
}
|
|
@@ -337,9 +463,6 @@
|
|
|
337
463
|
},
|
|
338
464
|
"EnvironmentVariableUpdateRequest": {
|
|
339
465
|
"type": "object",
|
|
340
|
-
"required": [
|
|
341
|
-
"value"
|
|
342
|
-
],
|
|
343
466
|
"properties": {
|
|
344
467
|
"type": {
|
|
345
468
|
"description": "Type of variable. Used when creating a new variable. Defaults to String.",
|
|
@@ -352,6 +475,55 @@
|
|
|
352
475
|
"value": {
|
|
353
476
|
"type": "string"
|
|
354
477
|
},
|
|
478
|
+
"description": {
|
|
479
|
+
"type": "string"
|
|
480
|
+
},
|
|
481
|
+
"group": {
|
|
482
|
+
"type": "string"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"EnvironmentGroup": {
|
|
487
|
+
"type": "object",
|
|
488
|
+
"required": [
|
|
489
|
+
"name",
|
|
490
|
+
"created_at",
|
|
491
|
+
"updated_at"
|
|
492
|
+
],
|
|
493
|
+
"properties": {
|
|
494
|
+
"name": {
|
|
495
|
+
"type": "string"
|
|
496
|
+
},
|
|
497
|
+
"description": {
|
|
498
|
+
"type": "string"
|
|
499
|
+
},
|
|
500
|
+
"created_at": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"format": "date-time"
|
|
503
|
+
},
|
|
504
|
+
"updated_at": {
|
|
505
|
+
"type": "string",
|
|
506
|
+
"format": "date-time"
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"EnvironmentGroupList": {
|
|
511
|
+
"type": "object",
|
|
512
|
+
"required": [
|
|
513
|
+
"items"
|
|
514
|
+
],
|
|
515
|
+
"properties": {
|
|
516
|
+
"items": {
|
|
517
|
+
"type": "array",
|
|
518
|
+
"items": {
|
|
519
|
+
"$ref": "#/components/schemas/EnvironmentGroup"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"EnvironmentGroupUpsertRequest": {
|
|
525
|
+
"type": "object",
|
|
526
|
+
"properties": {
|
|
355
527
|
"description": {
|
|
356
528
|
"type": "string"
|
|
357
529
|
}
|
|
@@ -359,5 +531,9 @@
|
|
|
359
531
|
}
|
|
360
532
|
}
|
|
361
533
|
},
|
|
362
|
-
"servers": [
|
|
534
|
+
"servers": [
|
|
535
|
+
{
|
|
536
|
+
"url": "https://environments.sls.epilot.io"
|
|
537
|
+
}
|
|
538
|
+
]
|
|
363
539
|
}
|