@epilot/blueprint-manifest-client 2.6.1 → 2.6.3

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
@@ -92,6 +92,12 @@ declare namespace Components {
92
92
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
93
93
  */
94
94
  source_blueprint_file?: string;
95
+ /**
96
+ * Link to the blueprint documentation
97
+ * example:
98
+ * https://help.epilot.cloud
99
+ */
100
+ docs_link?: string;
95
101
  source_blueprint_file_ref?: S3Reference;
96
102
  install_status?: BlueprintInstallStatus;
97
103
  /**
@@ -105,6 +111,12 @@ declare namespace Components {
105
111
  is_verified?: boolean;
106
112
  created_by?: CallerIdentity;
107
113
  updated_by?: CallerIdentity;
114
+ /**
115
+ * Version of the manifest (semver)
116
+ * example:
117
+ * 1.0.0
118
+ */
119
+ manifest_version?: string;
108
120
  }
109
121
  export interface CommonMarkdownFields {
110
122
  /**
@@ -272,6 +284,12 @@ declare namespace Components {
272
284
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
273
285
  */
274
286
  source_blueprint_file?: string;
287
+ /**
288
+ * Link to the blueprint documentation
289
+ * example:
290
+ * https://help.epilot.cloud
291
+ */
292
+ docs_link?: string;
275
293
  source_blueprint_file_ref?: S3Reference;
276
294
  install_status?: BlueprintInstallStatus;
277
295
  /**
@@ -281,6 +299,12 @@ declare namespace Components {
281
299
  install_status_description?: string;
282
300
  created_by?: CallerIdentity;
283
301
  updated_by?: CallerIdentity;
302
+ /**
303
+ * Version of the manifest (semver)
304
+ * example:
305
+ * 1.0.0
306
+ */
307
+ manifest_version?: string;
284
308
  }
285
309
  /**
286
310
  * ID of an import or export job (state machine)
@@ -296,6 +320,14 @@ declare namespace Components {
296
320
  * 4854bb2a-94f9-424d-a968-3fb17fb0bf89
297
321
  */
298
322
  JobID;
323
+ /**
324
+ * List of job IDs that were used to install the manifest
325
+ */
326
+ previous_jobs_ids?: string[];
327
+ /**
328
+ * List of jobs that were used to install the manifest
329
+ */
330
+ previous_jobs?: Job[];
299
331
  manifest_id?: /**
300
332
  * ID of an imported / installed manifest
301
333
  * example:
@@ -326,6 +358,12 @@ declare namespace Components {
326
358
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
327
359
  */
328
360
  source_blueprint_file?: string;
361
+ /**
362
+ * Link to the blueprint documentation
363
+ * example:
364
+ * https://help.epilot.cloud
365
+ */
366
+ docs_link?: string;
329
367
  source_blueprint_file_ref?: S3Reference;
330
368
  install_status?: BlueprintInstallStatus;
331
369
  /**
@@ -339,6 +377,12 @@ declare namespace Components {
339
377
  is_verified?: boolean;
340
378
  created_by?: CallerIdentity;
341
379
  updated_by?: CallerIdentity;
380
+ /**
381
+ * Version of the manifest (semver)
382
+ * example:
383
+ * 1.0.0
384
+ */
385
+ manifest_version?: string;
342
386
  /**
343
387
  * Markdown content part of a manifest file
344
388
  */
@@ -421,6 +465,12 @@ declare namespace Components {
421
465
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
422
466
  */
423
467
  source_blueprint_file?: string;
468
+ /**
469
+ * Link to the blueprint documentation
470
+ * example:
471
+ * https://help.epilot.cloud
472
+ */
473
+ docs_link?: string;
424
474
  source_blueprint_file_ref?: S3Reference;
425
475
  install_status?: BlueprintInstallStatus;
426
476
  /**
@@ -434,6 +484,12 @@ declare namespace Components {
434
484
  is_verified?: boolean;
435
485
  created_by?: CallerIdentity;
436
486
  updated_by?: CallerIdentity;
487
+ /**
488
+ * Version of the manifest (semver)
489
+ * example:
490
+ * 1.0.0
491
+ */
492
+ manifest_version?: string;
437
493
  /**
438
494
  * When the manifest was first installed (applied)
439
495
  */
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
  },
@@ -850,6 +864,11 @@
850
864
  "description": "A URL to download the source blueprint file used to import the blueprint",
851
865
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
852
866
  },
867
+ "docs_link": {
868
+ "type": "string",
869
+ "description": "Link to the blueprint documentation",
870
+ "example": "https://help.epilot.cloud"
871
+ },
853
872
  "source_blueprint_file_ref": {
854
873
  "$ref": "#/components/schemas/S3Reference"
855
874
  },
@@ -869,6 +888,11 @@
869
888
  },
870
889
  "updated_by": {
871
890
  "$ref": "#/components/schemas/CallerIdentity"
891
+ },
892
+ "manifest_version": {
893
+ "type": "string",
894
+ "description": "Version of the manifest (semver)",
895
+ "example": "1.0.0"
872
896
  }
873
897
  }
874
898
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",