@epilot/blueprint-manifest-client 2.5.9 → 2.5.10

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
@@ -21,6 +21,7 @@ declare namespace Components {
21
21
  JobID?: Parameters.JobID;
22
22
  }
23
23
  namespace Schemas {
24
+ export type BlueprintInstallStatus = "SUCCESS" | "PARTIAL" | "FAILED";
24
25
  export interface CallerIdentity {
25
26
  /**
26
27
  * a human readable name of the caller (e.g. user name, token name or email address)
@@ -91,7 +92,19 @@ declare namespace Components {
91
92
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
92
93
  */
93
94
  source_blueprint_file?: string;
95
+ /**
96
+ * Link to the blueprint documentation
97
+ * example:
98
+ * https://help.epilot.cloud
99
+ */
100
+ docs_link?: string;
94
101
  source_blueprint_file_ref?: S3Reference;
102
+ install_status?: BlueprintInstallStatus;
103
+ /**
104
+ * example:
105
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
106
+ */
107
+ install_status_description?: string;
95
108
  /**
96
109
  * Whether the manifest comes from a trusted source and is signed by epilot
97
110
  */
@@ -271,7 +284,19 @@ declare namespace Components {
271
284
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
272
285
  */
273
286
  source_blueprint_file?: string;
287
+ /**
288
+ * Link to the blueprint documentation
289
+ * example:
290
+ * https://help.epilot.cloud
291
+ */
292
+ docs_link?: string;
274
293
  source_blueprint_file_ref?: S3Reference;
294
+ install_status?: BlueprintInstallStatus;
295
+ /**
296
+ * example:
297
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
298
+ */
299
+ install_status_description?: string;
275
300
  created_by?: CallerIdentity;
276
301
  updated_by?: CallerIdentity;
277
302
  /**
@@ -333,7 +358,19 @@ declare namespace Components {
333
358
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
334
359
  */
335
360
  source_blueprint_file?: string;
361
+ /**
362
+ * Link to the blueprint documentation
363
+ * example:
364
+ * https://help.epilot.cloud
365
+ */
366
+ docs_link?: string;
336
367
  source_blueprint_file_ref?: S3Reference;
368
+ install_status?: BlueprintInstallStatus;
369
+ /**
370
+ * example:
371
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
372
+ */
373
+ install_status_description?: string;
337
374
  /**
338
375
  * Whether the manifest comes from a trusted source and is signed by epilot
339
376
  */
@@ -428,7 +465,19 @@ declare namespace Components {
428
465
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
429
466
  */
430
467
  source_blueprint_file?: string;
468
+ /**
469
+ * Link to the blueprint documentation
470
+ * example:
471
+ * https://help.epilot.cloud
472
+ */
473
+ docs_link?: string;
431
474
  source_blueprint_file_ref?: S3Reference;
475
+ install_status?: BlueprintInstallStatus;
476
+ /**
477
+ * example:
478
+ * This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
479
+ */
480
+ install_status_description?: string;
432
481
  /**
433
482
  * Whether the manifest comes from a trusted source and is signed by epilot
434
483
  */
@@ -743,6 +792,7 @@ declare namespace Paths {
743
792
  * Temporary flag to indicate if multiple resources are being exported
744
793
  */
745
794
  isExportingMultipleResources?: boolean;
795
+ generateAISummary?: boolean;
746
796
  }
747
797
  namespace Responses {
748
798
  export interface $200 {
@@ -1038,6 +1088,7 @@ export interface PathsDictionary {
1038
1088
 
1039
1089
  export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
1040
1090
 
1091
+ export type BlueprintInstallStatus = Components.Schemas.BlueprintInstallStatus;
1041
1092
  export type CallerIdentity = Components.Schemas.CallerIdentity;
1042
1093
  export type CommonImportFields = Components.Schemas.CommonImportFields;
1043
1094
  export type CommonManifestFields = Components.Schemas.CommonManifestFields;
package/dist/openapi.json CHANGED
@@ -157,6 +157,10 @@
157
157
  "isExportingMultipleResources": {
158
158
  "type": "boolean",
159
159
  "description": "Temporary flag to indicate if multiple resources are being exported"
160
+ },
161
+ "generateAISummary": {
162
+ "type": "boolean",
163
+ "default": false
160
164
  }
161
165
  },
162
166
  "required": [
@@ -864,9 +868,21 @@
864
868
  "description": "A URL to download the source blueprint file used to import the blueprint",
865
869
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
866
870
  },
871
+ "docs_link": {
872
+ "type": "string",
873
+ "description": "Link to the blueprint documentation",
874
+ "example": "https://help.epilot.cloud"
875
+ },
867
876
  "source_blueprint_file_ref": {
868
877
  "$ref": "#/components/schemas/S3Reference"
869
878
  },
879
+ "install_status": {
880
+ "$ref": "#/components/schemas/BlueprintInstallStatus"
881
+ },
882
+ "install_status_description": {
883
+ "type": "string",
884
+ "example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
885
+ },
870
886
  "is_verified": {
871
887
  "type": "boolean",
872
888
  "description": "Whether the manifest comes from a trusted source and is signed by epilot"
@@ -954,6 +970,14 @@
954
970
  }
955
971
  }
956
972
  },
973
+ "BlueprintInstallStatus": {
974
+ "type": "string",
975
+ "enum": [
976
+ "SUCCESS",
977
+ "PARTIAL",
978
+ "FAILED"
979
+ ]
980
+ },
957
981
  "FormattedErrorCodes": {
958
982
  "type": "string",
959
983
  "enum": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.5.9",
3
+ "version": "2.5.10",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",