@epilot/blueprint-manifest-client 2.5.8 → 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 CHANGED
@@ -98,6 +98,12 @@ declare namespace Components {
98
98
  is_verified?: boolean;
99
99
  created_by?: CallerIdentity;
100
100
  updated_by?: CallerIdentity;
101
+ /**
102
+ * Version of the manifest (semver)
103
+ * example:
104
+ * 1.0.0
105
+ */
106
+ manifest_version?: string;
101
107
  }
102
108
  export interface CommonMarkdownFields {
103
109
  /**
@@ -268,6 +274,12 @@ declare namespace Components {
268
274
  source_blueprint_file_ref?: S3Reference;
269
275
  created_by?: CallerIdentity;
270
276
  updated_by?: CallerIdentity;
277
+ /**
278
+ * Version of the manifest (semver)
279
+ * example:
280
+ * 1.0.0
281
+ */
282
+ manifest_version?: string;
271
283
  }
272
284
  /**
273
285
  * ID of an import or export job (state machine)
@@ -283,6 +295,14 @@ declare namespace Components {
283
295
  * 4854bb2a-94f9-424d-a968-3fb17fb0bf89
284
296
  */
285
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[];
286
306
  manifest_id?: /**
287
307
  * ID of an imported / installed manifest
288
308
  * example:
@@ -320,6 +340,12 @@ declare namespace Components {
320
340
  is_verified?: boolean;
321
341
  created_by?: CallerIdentity;
322
342
  updated_by?: CallerIdentity;
343
+ /**
344
+ * Version of the manifest (semver)
345
+ * example:
346
+ * 1.0.0
347
+ */
348
+ manifest_version?: string;
323
349
  /**
324
350
  * Markdown content part of a manifest file
325
351
  */
@@ -409,6 +435,12 @@ declare namespace Components {
409
435
  is_verified?: boolean;
410
436
  created_by?: CallerIdentity;
411
437
  updated_by?: CallerIdentity;
438
+ /**
439
+ * Version of the manifest (semver)
440
+ * example:
441
+ * 1.0.0
442
+ */
443
+ manifest_version?: string;
412
444
  /**
413
445
  * When the manifest was first installed (applied)
414
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,6 +860,7 @@
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
  },
@@ -861,6 +876,11 @@
861
876
  },
862
877
  "updated_by": {
863
878
  "$ref": "#/components/schemas/CallerIdentity"
879
+ },
880
+ "manifest_version": {
881
+ "type": "string",
882
+ "description": "Version of the manifest (semver)",
883
+ "example": "1.0.0"
864
884
  }
865
885
  }
866
886
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.5.8",
3
+ "version": "2.5.9",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",