@epilot/blueprint-manifest-client 2.5.8 → 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,13 +92,31 @@ 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
  */
98
111
  is_verified?: boolean;
99
112
  created_by?: CallerIdentity;
100
113
  updated_by?: CallerIdentity;
114
+ /**
115
+ * Version of the manifest (semver)
116
+ * example:
117
+ * 1.0.0
118
+ */
119
+ manifest_version?: string;
101
120
  }
102
121
  export interface CommonMarkdownFields {
103
122
  /**
@@ -265,9 +284,27 @@ declare namespace Components {
265
284
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
266
285
  */
267
286
  source_blueprint_file?: string;
287
+ /**
288
+ * Link to the blueprint documentation
289
+ * example:
290
+ * https://help.epilot.cloud
291
+ */
292
+ docs_link?: string;
268
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;
269
300
  created_by?: CallerIdentity;
270
301
  updated_by?: CallerIdentity;
302
+ /**
303
+ * Version of the manifest (semver)
304
+ * example:
305
+ * 1.0.0
306
+ */
307
+ manifest_version?: string;
271
308
  }
272
309
  /**
273
310
  * ID of an import or export job (state machine)
@@ -283,6 +320,14 @@ declare namespace Components {
283
320
  * 4854bb2a-94f9-424d-a968-3fb17fb0bf89
284
321
  */
285
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[];
286
331
  manifest_id?: /**
287
332
  * ID of an imported / installed manifest
288
333
  * example:
@@ -313,13 +358,31 @@ declare namespace Components {
313
358
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
314
359
  */
315
360
  source_blueprint_file?: string;
361
+ /**
362
+ * Link to the blueprint documentation
363
+ * example:
364
+ * https://help.epilot.cloud
365
+ */
366
+ docs_link?: string;
316
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;
317
374
  /**
318
375
  * Whether the manifest comes from a trusted source and is signed by epilot
319
376
  */
320
377
  is_verified?: boolean;
321
378
  created_by?: CallerIdentity;
322
379
  updated_by?: CallerIdentity;
380
+ /**
381
+ * Version of the manifest (semver)
382
+ * example:
383
+ * 1.0.0
384
+ */
385
+ manifest_version?: string;
323
386
  /**
324
387
  * Markdown content part of a manifest file
325
388
  */
@@ -402,13 +465,31 @@ declare namespace Components {
402
465
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
403
466
  */
404
467
  source_blueprint_file?: string;
468
+ /**
469
+ * Link to the blueprint documentation
470
+ * example:
471
+ * https://help.epilot.cloud
472
+ */
473
+ docs_link?: string;
405
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;
406
481
  /**
407
482
  * Whether the manifest comes from a trusted source and is signed by epilot
408
483
  */
409
484
  is_verified?: boolean;
410
485
  created_by?: CallerIdentity;
411
486
  updated_by?: CallerIdentity;
487
+ /**
488
+ * Version of the manifest (semver)
489
+ * example:
490
+ * 1.0.0
491
+ */
492
+ manifest_version?: string;
412
493
  /**
413
494
  * When the manifest was first installed (applied)
414
495
  */
@@ -711,6 +792,7 @@ declare namespace Paths {
711
792
  * Temporary flag to indicate if multiple resources are being exported
712
793
  */
713
794
  isExportingMultipleResources?: boolean;
795
+ generateAISummary?: boolean;
714
796
  }
715
797
  namespace Responses {
716
798
  export interface $200 {
@@ -1006,6 +1088,7 @@ export interface PathsDictionary {
1006
1088
 
1007
1089
  export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
1008
1090
 
1091
+ export type BlueprintInstallStatus = Components.Schemas.BlueprintInstallStatus;
1009
1092
  export type CallerIdentity = Components.Schemas.CallerIdentity;
1010
1093
  export type CommonImportFields = Components.Schemas.CommonImportFields;
1011
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": [
@@ -511,6 +515,20 @@
511
515
  "properties": {
512
516
  "import_job_id": {
513
517
  "$ref": "#/components/schemas/JobID"
518
+ },
519
+ "previous_jobs_ids": {
520
+ "type": "array",
521
+ "items": {
522
+ "type": "string"
523
+ },
524
+ "description": "List of job IDs that were used to install the manifest"
525
+ },
526
+ "previous_jobs": {
527
+ "type": "array",
528
+ "items": {
529
+ "$ref": "#/components/schemas/Job"
530
+ },
531
+ "description": "List of jobs that were used to install the manifest"
514
532
  }
515
533
  }
516
534
  },
@@ -846,12 +864,25 @@
846
864
  },
847
865
  "source_blueprint_file": {
848
866
  "type": "string",
867
+ "deprecated": true,
849
868
  "description": "A URL to download the source blueprint file used to import the blueprint",
850
869
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
851
870
  },
871
+ "docs_link": {
872
+ "type": "string",
873
+ "description": "Link to the blueprint documentation",
874
+ "example": "https://help.epilot.cloud"
875
+ },
852
876
  "source_blueprint_file_ref": {
853
877
  "$ref": "#/components/schemas/S3Reference"
854
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
+ },
855
886
  "is_verified": {
856
887
  "type": "boolean",
857
888
  "description": "Whether the manifest comes from a trusted source and is signed by epilot"
@@ -861,6 +892,11 @@
861
892
  },
862
893
  "updated_by": {
863
894
  "$ref": "#/components/schemas/CallerIdentity"
895
+ },
896
+ "manifest_version": {
897
+ "type": "string",
898
+ "description": "Version of the manifest (semver)",
899
+ "example": "1.0.0"
864
900
  }
865
901
  }
866
902
  },
@@ -934,6 +970,14 @@
934
970
  }
935
971
  }
936
972
  },
973
+ "BlueprintInstallStatus": {
974
+ "type": "string",
975
+ "enum": [
976
+ "SUCCESS",
977
+ "PARTIAL",
978
+ "FAILED"
979
+ ]
980
+ },
937
981
  "FormattedErrorCodes": {
938
982
  "type": "string",
939
983
  "enum": [
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.10",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",