@epilot/blueprint-manifest-client 2.3.3 → 2.4.0
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/dist/openapi.d.ts +1 -1
- package/dist/openapi.json +4 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -204,7 +204,7 @@ declare namespace Components {
|
|
|
204
204
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
205
205
|
*/
|
|
206
206
|
export type JobID = string;
|
|
207
|
-
export type JobStatus = "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
207
|
+
export type JobStatus = "PENDING" | "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
208
208
|
export interface Manifest {
|
|
209
209
|
manifest_id?: /**
|
|
210
210
|
* ID of an imported / installed manifest
|
package/dist/openapi.json
CHANGED
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
{
|
|
33
33
|
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
37
|
+
},
|
|
35
38
|
{
|
|
36
39
|
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
37
40
|
}
|
|
@@ -502,6 +505,7 @@
|
|
|
502
505
|
"JobStatus": {
|
|
503
506
|
"type": "string",
|
|
504
507
|
"enum": [
|
|
508
|
+
"PENDING",
|
|
505
509
|
"STARTED",
|
|
506
510
|
"WAITING_USER_ACTION",
|
|
507
511
|
"CANCELED",
|