@epilot/blueprint-manifest-client 2.6.0 → 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 CHANGED
@@ -60,12 +60,6 @@ declare namespace Components {
60
60
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
61
61
  */
62
62
  large_imported_resources_url?: string; // uri
63
- install_status?: BlueprintInstallStatus;
64
- /**
65
- * example:
66
- * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
67
- */
68
- install_status_description?: string;
69
63
  }
70
64
  export interface CommonManifestFields {
71
65
  manifest_id?: /**
@@ -99,12 +93,24 @@ declare namespace Components {
99
93
  */
100
94
  source_blueprint_file?: string;
101
95
  source_blueprint_file_ref?: S3Reference;
96
+ install_status?: BlueprintInstallStatus;
97
+ /**
98
+ * example:
99
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
100
+ */
101
+ install_status_description?: string;
102
102
  /**
103
103
  * Whether the manifest comes from a trusted source and is signed by epilot
104
104
  */
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
  /**
@@ -217,12 +223,6 @@ declare namespace Components {
217
223
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
218
224
  */
219
225
  large_imported_resources_url?: string; // uri
220
- install_status?: BlueprintInstallStatus;
221
- /**
222
- * example:
223
- * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
224
- */
225
- install_status_description?: string;
226
226
  /**
227
227
  * Markdown content part of a manifest file
228
228
  */
@@ -279,8 +279,20 @@ declare namespace Components {
279
279
  */
280
280
  source_blueprint_file?: string;
281
281
  source_blueprint_file_ref?: S3Reference;
282
+ install_status?: BlueprintInstallStatus;
283
+ /**
284
+ * example:
285
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
286
+ */
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:
@@ -327,12 +347,24 @@ declare namespace Components {
327
347
  */
328
348
  source_blueprint_file?: string;
329
349
  source_blueprint_file_ref?: S3Reference;
350
+ install_status?: BlueprintInstallStatus;
351
+ /**
352
+ * example:
353
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
354
+ */
355
+ install_status_description?: string;
330
356
  /**
331
357
  * Whether the manifest comes from a trusted source and is signed by epilot
332
358
  */
333
359
  is_verified?: boolean;
334
360
  created_by?: CallerIdentity;
335
361
  updated_by?: CallerIdentity;
362
+ /**
363
+ * Version of the manifest (semver)
364
+ * example:
365
+ * 1.0.0
366
+ */
367
+ manifest_version?: string;
336
368
  /**
337
369
  * Markdown content part of a manifest file
338
370
  */
@@ -369,12 +401,6 @@ declare namespace Components {
369
401
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
370
402
  */
371
403
  large_imported_resources_url?: string; // uri
372
- install_status?: BlueprintInstallStatus;
373
- /**
374
- * example:
375
- * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
376
- */
377
- install_status_description?: string;
378
404
  /**
379
405
  * When the manifest was first installed (applied)
380
406
  */
@@ -422,12 +448,24 @@ declare namespace Components {
422
448
  */
423
449
  source_blueprint_file?: string;
424
450
  source_blueprint_file_ref?: S3Reference;
451
+ install_status?: BlueprintInstallStatus;
452
+ /**
453
+ * example:
454
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
455
+ */
456
+ install_status_description?: string;
425
457
  /**
426
458
  * Whether the manifest comes from a trusted source and is signed by epilot
427
459
  */
428
460
  is_verified?: boolean;
429
461
  created_by?: CallerIdentity;
430
462
  updated_by?: CallerIdentity;
463
+ /**
464
+ * Version of the manifest (semver)
465
+ * example:
466
+ * 1.0.0
467
+ */
468
+ manifest_version?: string;
431
469
  /**
432
470
  * When the manifest was first installed (applied)
433
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
  },
@@ -853,6 +867,13 @@
853
867
  "source_blueprint_file_ref": {
854
868
  "$ref": "#/components/schemas/S3Reference"
855
869
  },
870
+ "install_status": {
871
+ "$ref": "#/components/schemas/BlueprintInstallStatus"
872
+ },
873
+ "install_status_description": {
874
+ "type": "string",
875
+ "example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
876
+ },
856
877
  "is_verified": {
857
878
  "type": "boolean",
858
879
  "description": "Whether the manifest comes from a trusted source and is signed by epilot"
@@ -862,6 +883,11 @@
862
883
  },
863
884
  "updated_by": {
864
885
  "$ref": "#/components/schemas/CallerIdentity"
886
+ },
887
+ "manifest_version": {
888
+ "type": "string",
889
+ "description": "Version of the manifest (semver)",
890
+ "example": "1.0.0"
865
891
  }
866
892
  }
867
893
  },
@@ -905,13 +931,6 @@
905
931
  "format": "uri",
906
932
  "description": "An URL to download the imported resources when the resources are too large to be included in the response",
907
933
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json"
908
- },
909
- "install_status": {
910
- "$ref": "#/components/schemas/BlueprintInstallStatus"
911
- },
912
- "install_status_description": {
913
- "type": "string",
914
- "example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
915
934
  }
916
935
  }
917
936
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",