@epilot/blueprint-manifest-client 2.6.0 → 2.6.1

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,6 +93,12 @@ 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
  */
@@ -217,12 +217,6 @@ declare namespace Components {
217
217
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
218
218
  */
219
219
  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
220
  /**
227
221
  * Markdown content part of a manifest file
228
222
  */
@@ -279,6 +273,12 @@ declare namespace Components {
279
273
  */
280
274
  source_blueprint_file?: string;
281
275
  source_blueprint_file_ref?: S3Reference;
276
+ install_status?: BlueprintInstallStatus;
277
+ /**
278
+ * example:
279
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
280
+ */
281
+ install_status_description?: string;
282
282
  created_by?: CallerIdentity;
283
283
  updated_by?: CallerIdentity;
284
284
  }
@@ -327,6 +327,12 @@ declare namespace Components {
327
327
  */
328
328
  source_blueprint_file?: string;
329
329
  source_blueprint_file_ref?: S3Reference;
330
+ install_status?: BlueprintInstallStatus;
331
+ /**
332
+ * example:
333
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
334
+ */
335
+ install_status_description?: string;
330
336
  /**
331
337
  * Whether the manifest comes from a trusted source and is signed by epilot
332
338
  */
@@ -369,12 +375,6 @@ declare namespace Components {
369
375
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
370
376
  */
371
377
  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
378
  /**
379
379
  * When the manifest was first installed (applied)
380
380
  */
@@ -422,6 +422,12 @@ declare namespace Components {
422
422
  */
423
423
  source_blueprint_file?: string;
424
424
  source_blueprint_file_ref?: S3Reference;
425
+ install_status?: BlueprintInstallStatus;
426
+ /**
427
+ * example:
428
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
429
+ */
430
+ install_status_description?: string;
425
431
  /**
426
432
  * Whether the manifest comes from a trusted source and is signed by epilot
427
433
  */
package/dist/openapi.json CHANGED
@@ -853,6 +853,13 @@
853
853
  "source_blueprint_file_ref": {
854
854
  "$ref": "#/components/schemas/S3Reference"
855
855
  },
856
+ "install_status": {
857
+ "$ref": "#/components/schemas/BlueprintInstallStatus"
858
+ },
859
+ "install_status_description": {
860
+ "type": "string",
861
+ "example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
862
+ },
856
863
  "is_verified": {
857
864
  "type": "boolean",
858
865
  "description": "Whether the manifest comes from a trusted source and is signed by epilot"
@@ -905,13 +912,6 @@
905
912
  "format": "uri",
906
913
  "description": "An URL to download the imported resources when the resources are too large to be included in the response",
907
914
  "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
915
  }
916
916
  }
917
917
  },
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.1",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",