@epilot/blueprint-manifest-client 2.6.1 → 2.6.2
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 +32 -0
- package/dist/openapi.json +19 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -105,6 +105,12 @@ declare namespace Components {
|
|
|
105
105
|
is_verified?: boolean;
|
|
106
106
|
created_by?: CallerIdentity;
|
|
107
107
|
updated_by?: CallerIdentity;
|
|
108
|
+
/**
|
|
109
|
+
* Version of the manifest (semver)
|
|
110
|
+
* example:
|
|
111
|
+
* 1.0.0
|
|
112
|
+
*/
|
|
113
|
+
manifest_version?: string;
|
|
108
114
|
}
|
|
109
115
|
export interface CommonMarkdownFields {
|
|
110
116
|
/**
|
|
@@ -281,6 +287,12 @@ declare namespace Components {
|
|
|
281
287
|
install_status_description?: string;
|
|
282
288
|
created_by?: CallerIdentity;
|
|
283
289
|
updated_by?: CallerIdentity;
|
|
290
|
+
/**
|
|
291
|
+
* Version of the manifest (semver)
|
|
292
|
+
* example:
|
|
293
|
+
* 1.0.0
|
|
294
|
+
*/
|
|
295
|
+
manifest_version?: string;
|
|
284
296
|
}
|
|
285
297
|
/**
|
|
286
298
|
* ID of an import or export job (state machine)
|
|
@@ -296,6 +308,14 @@ declare namespace Components {
|
|
|
296
308
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
297
309
|
*/
|
|
298
310
|
JobID;
|
|
311
|
+
/**
|
|
312
|
+
* List of job IDs that were used to install the manifest
|
|
313
|
+
*/
|
|
314
|
+
previous_jobs_ids?: string[];
|
|
315
|
+
/**
|
|
316
|
+
* List of jobs that were used to install the manifest
|
|
317
|
+
*/
|
|
318
|
+
previous_jobs?: Job[];
|
|
299
319
|
manifest_id?: /**
|
|
300
320
|
* ID of an imported / installed manifest
|
|
301
321
|
* example:
|
|
@@ -339,6 +359,12 @@ declare namespace Components {
|
|
|
339
359
|
is_verified?: boolean;
|
|
340
360
|
created_by?: CallerIdentity;
|
|
341
361
|
updated_by?: CallerIdentity;
|
|
362
|
+
/**
|
|
363
|
+
* Version of the manifest (semver)
|
|
364
|
+
* example:
|
|
365
|
+
* 1.0.0
|
|
366
|
+
*/
|
|
367
|
+
manifest_version?: string;
|
|
342
368
|
/**
|
|
343
369
|
* Markdown content part of a manifest file
|
|
344
370
|
*/
|
|
@@ -434,6 +460,12 @@ declare namespace Components {
|
|
|
434
460
|
is_verified?: boolean;
|
|
435
461
|
created_by?: CallerIdentity;
|
|
436
462
|
updated_by?: CallerIdentity;
|
|
463
|
+
/**
|
|
464
|
+
* Version of the manifest (semver)
|
|
465
|
+
* example:
|
|
466
|
+
* 1.0.0
|
|
467
|
+
*/
|
|
468
|
+
manifest_version?: string;
|
|
437
469
|
/**
|
|
438
470
|
* When the manifest was first installed (applied)
|
|
439
471
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -511,6 +511,20 @@
|
|
|
511
511
|
"properties": {
|
|
512
512
|
"import_job_id": {
|
|
513
513
|
"$ref": "#/components/schemas/JobID"
|
|
514
|
+
},
|
|
515
|
+
"previous_jobs_ids": {
|
|
516
|
+
"type": "array",
|
|
517
|
+
"items": {
|
|
518
|
+
"type": "string"
|
|
519
|
+
},
|
|
520
|
+
"description": "List of job IDs that were used to install the manifest"
|
|
521
|
+
},
|
|
522
|
+
"previous_jobs": {
|
|
523
|
+
"type": "array",
|
|
524
|
+
"items": {
|
|
525
|
+
"$ref": "#/components/schemas/Job"
|
|
526
|
+
},
|
|
527
|
+
"description": "List of jobs that were used to install the manifest"
|
|
514
528
|
}
|
|
515
529
|
}
|
|
516
530
|
},
|
|
@@ -869,6 +883,11 @@
|
|
|
869
883
|
},
|
|
870
884
|
"updated_by": {
|
|
871
885
|
"$ref": "#/components/schemas/CallerIdentity"
|
|
886
|
+
},
|
|
887
|
+
"manifest_version": {
|
|
888
|
+
"type": "string",
|
|
889
|
+
"description": "Version of the manifest (semver)",
|
|
890
|
+
"example": "1.0.0"
|
|
872
891
|
}
|
|
873
892
|
}
|
|
874
893
|
},
|