@epilot/cli 0.1.11 → 0.1.15

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.
Files changed (42) hide show
  1. package/README.md +20 -19
  2. package/definitions/automation.json +214 -1
  3. package/definitions/blueprint-manifest.json +1504 -148
  4. package/definitions/configuration-hub.json +399 -0
  5. package/definitions/data-governance.json +1126 -0
  6. package/definitions/deduplication.json +135 -4
  7. package/definitions/design.json +103 -57
  8. package/definitions/email-settings.json +29 -0
  9. package/definitions/entity.json +88 -6
  10. package/definitions/environments.json +183 -7
  11. package/definitions/erp-integration.json +1819 -187
  12. package/definitions/integration-toolkit.json +7998 -0
  13. package/definitions/message.json +202 -0
  14. package/definitions/query.json +3178 -0
  15. package/definitions/sharing.json +956 -0
  16. package/definitions/target.json +609 -0
  17. package/definitions/template-variables.json +12 -4
  18. package/definitions/user.json +52 -0
  19. package/definitions/workflow-definition.json +87 -202
  20. package/definitions/workflow.json +102 -0
  21. package/dist/{add-component-IW4644NE.js → add-component-AAVQVPKK.js} +68 -13
  22. package/dist/app-I3XXHZLD.js +24 -0
  23. package/dist/bin/epilot.js +12 -9
  24. package/dist/{chunk-POCU2J27.js → chunk-CEP7S7X3.js} +2 -1
  25. package/dist/{chunk-K2UQOP3Q.js → chunk-UOQMCAJN.js} +149 -60
  26. package/dist/{completion-HTO64G2S.js → completion-J7SWF5AO.js} +1 -1
  27. package/dist/configuration-hub-Y7W22GBW.js +54 -0
  28. package/dist/{data-management-KXAPA7ZU.js → data-governance-DJAAIE6F.js} +5 -5
  29. package/dist/{deploy-UQZAUHAB.js → deploy-4XDFWOEV.js} +1 -1
  30. package/dist/{export-US5GMHTS.js → export-JA5N4JCJ.js} +1 -1
  31. package/dist/{init-DGPWBRRB.js → init-5KGNJEWF.js} +1 -1
  32. package/dist/integration-toolkit-4CLQDSK7.js +54 -0
  33. package/dist/{erp-integration-DXFYJ2F3.js → query-IYW42QLU.js} +5 -5
  34. package/dist/{remove-component-B2GMICMD.js → remove-component-LXSRR23E.js} +1 -1
  35. package/dist/{review-QFPON37R.js → review-HFOO3NXE.js} +1 -1
  36. package/dist/sharing-X5U53KSU.js +54 -0
  37. package/dist/{upgrade-KZSOPDCR.js → upgrade-6Z53BXHL.js} +1 -1
  38. package/dist/{validate-G7K6AVBI.js → validate-TUMXW56Y.js} +1 -1
  39. package/dist/{versions-UTPAWTIU.js → versions-ZTWQAGXY.js} +1 -1
  40. package/package.json +4 -2
  41. package/definitions/data-management.json +0 -972
  42. package/dist/app-BKS7M4UQ.js +0 -24
@@ -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.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": [{"url":"https://environments.sls.epilot.io"}]
534
+ "servers": [
535
+ {
536
+ "url": "https://environments.sls.epilot.io"
537
+ }
538
+ ]
363
539
  }