@epilot/blueprint-manifest-client 2.5.7 → 2.5.9
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 +36 -0
- package/dist/openapi.json +23 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -91,12 +91,19 @@ declare namespace Components {
|
|
|
91
91
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
92
92
|
*/
|
|
93
93
|
source_blueprint_file?: string;
|
|
94
|
+
source_blueprint_file_ref?: S3Reference;
|
|
94
95
|
/**
|
|
95
96
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
96
97
|
*/
|
|
97
98
|
is_verified?: boolean;
|
|
98
99
|
created_by?: CallerIdentity;
|
|
99
100
|
updated_by?: CallerIdentity;
|
|
101
|
+
/**
|
|
102
|
+
* Version of the manifest (semver)
|
|
103
|
+
* example:
|
|
104
|
+
* 1.0.0
|
|
105
|
+
*/
|
|
106
|
+
manifest_version?: string;
|
|
100
107
|
}
|
|
101
108
|
export interface CommonMarkdownFields {
|
|
102
109
|
/**
|
|
@@ -264,8 +271,15 @@ declare namespace Components {
|
|
|
264
271
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
265
272
|
*/
|
|
266
273
|
source_blueprint_file?: string;
|
|
274
|
+
source_blueprint_file_ref?: S3Reference;
|
|
267
275
|
created_by?: CallerIdentity;
|
|
268
276
|
updated_by?: CallerIdentity;
|
|
277
|
+
/**
|
|
278
|
+
* Version of the manifest (semver)
|
|
279
|
+
* example:
|
|
280
|
+
* 1.0.0
|
|
281
|
+
*/
|
|
282
|
+
manifest_version?: string;
|
|
269
283
|
}
|
|
270
284
|
/**
|
|
271
285
|
* ID of an import or export job (state machine)
|
|
@@ -281,6 +295,14 @@ declare namespace Components {
|
|
|
281
295
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
282
296
|
*/
|
|
283
297
|
JobID;
|
|
298
|
+
/**
|
|
299
|
+
* List of job IDs that were used to install the manifest
|
|
300
|
+
*/
|
|
301
|
+
previous_jobs_ids?: string[];
|
|
302
|
+
/**
|
|
303
|
+
* List of jobs that were used to install the manifest
|
|
304
|
+
*/
|
|
305
|
+
previous_jobs?: Job[];
|
|
284
306
|
manifest_id?: /**
|
|
285
307
|
* ID of an imported / installed manifest
|
|
286
308
|
* example:
|
|
@@ -311,12 +333,19 @@ declare namespace Components {
|
|
|
311
333
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
312
334
|
*/
|
|
313
335
|
source_blueprint_file?: string;
|
|
336
|
+
source_blueprint_file_ref?: S3Reference;
|
|
314
337
|
/**
|
|
315
338
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
316
339
|
*/
|
|
317
340
|
is_verified?: boolean;
|
|
318
341
|
created_by?: CallerIdentity;
|
|
319
342
|
updated_by?: CallerIdentity;
|
|
343
|
+
/**
|
|
344
|
+
* Version of the manifest (semver)
|
|
345
|
+
* example:
|
|
346
|
+
* 1.0.0
|
|
347
|
+
*/
|
|
348
|
+
manifest_version?: string;
|
|
320
349
|
/**
|
|
321
350
|
* Markdown content part of a manifest file
|
|
322
351
|
*/
|
|
@@ -399,12 +428,19 @@ declare namespace Components {
|
|
|
399
428
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
400
429
|
*/
|
|
401
430
|
source_blueprint_file?: string;
|
|
431
|
+
source_blueprint_file_ref?: S3Reference;
|
|
402
432
|
/**
|
|
403
433
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
404
434
|
*/
|
|
405
435
|
is_verified?: boolean;
|
|
406
436
|
created_by?: CallerIdentity;
|
|
407
437
|
updated_by?: CallerIdentity;
|
|
438
|
+
/**
|
|
439
|
+
* Version of the manifest (semver)
|
|
440
|
+
* example:
|
|
441
|
+
* 1.0.0
|
|
442
|
+
*/
|
|
443
|
+
manifest_version?: string;
|
|
408
444
|
/**
|
|
409
445
|
* When the manifest was first installed (applied)
|
|
410
446
|
*/
|
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
|
},
|
|
@@ -846,9 +860,13 @@
|
|
|
846
860
|
},
|
|
847
861
|
"source_blueprint_file": {
|
|
848
862
|
"type": "string",
|
|
863
|
+
"deprecated": true,
|
|
849
864
|
"description": "A URL to download the source blueprint file used to import the blueprint",
|
|
850
865
|
"example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
|
|
851
866
|
},
|
|
867
|
+
"source_blueprint_file_ref": {
|
|
868
|
+
"$ref": "#/components/schemas/S3Reference"
|
|
869
|
+
},
|
|
852
870
|
"is_verified": {
|
|
853
871
|
"type": "boolean",
|
|
854
872
|
"description": "Whether the manifest comes from a trusted source and is signed by epilot"
|
|
@@ -858,6 +876,11 @@
|
|
|
858
876
|
},
|
|
859
877
|
"updated_by": {
|
|
860
878
|
"$ref": "#/components/schemas/CallerIdentity"
|
|
879
|
+
},
|
|
880
|
+
"manifest_version": {
|
|
881
|
+
"type": "string",
|
|
882
|
+
"description": "Version of the manifest (semver)",
|
|
883
|
+
"example": "1.0.0"
|
|
861
884
|
}
|
|
862
885
|
}
|
|
863
886
|
},
|