@epilot/blueprint-manifest-client 2.6.2 → 2.6.4

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
  /**
@@ -278,6 +284,12 @@ declare namespace Components {
278
284
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
279
285
  */
280
286
  source_blueprint_file?: string;
287
+ /**
288
+ * Link to the blueprint documentation
289
+ * example:
290
+ * https://help.epilot.cloud
291
+ */
292
+ docs_link?: string;
281
293
  source_blueprint_file_ref?: S3Reference;
282
294
  install_status?: BlueprintInstallStatus;
283
295
  /**
@@ -346,6 +358,12 @@ declare namespace Components {
346
358
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
347
359
  */
348
360
  source_blueprint_file?: string;
361
+ /**
362
+ * Link to the blueprint documentation
363
+ * example:
364
+ * https://help.epilot.cloud
365
+ */
366
+ docs_link?: string;
349
367
  source_blueprint_file_ref?: S3Reference;
350
368
  install_status?: BlueprintInstallStatus;
351
369
  /**
@@ -447,6 +465,12 @@ declare namespace Components {
447
465
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
448
466
  */
449
467
  source_blueprint_file?: string;
468
+ /**
469
+ * Link to the blueprint documentation
470
+ * example:
471
+ * https://help.epilot.cloud
472
+ */
473
+ docs_link?: string;
450
474
  source_blueprint_file_ref?: S3Reference;
451
475
  install_status?: BlueprintInstallStatus;
452
476
  /**
@@ -768,6 +792,7 @@ declare namespace Paths {
768
792
  * Temporary flag to indicate if multiple resources are being exported
769
793
  */
770
794
  isExportingMultipleResources?: boolean;
795
+ generateAISummary?: boolean;
771
796
  }
772
797
  namespace Responses {
773
798
  export interface $200 {
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,6 +868,11 @@
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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.6.2",
3
+ "version": "2.6.4",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",