@epilot/blueprint-manifest-client 2.5.10 → 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
@@ -92,12 +92,6 @@ 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;
101
95
  source_blueprint_file_ref?: S3Reference;
102
96
  install_status?: BlueprintInstallStatus;
103
97
  /**
@@ -111,12 +105,6 @@ declare namespace Components {
111
105
  is_verified?: boolean;
112
106
  created_by?: CallerIdentity;
113
107
  updated_by?: CallerIdentity;
114
- /**
115
- * Version of the manifest (semver)
116
- * example:
117
- * 1.0.0
118
- */
119
- manifest_version?: string;
120
108
  }
121
109
  export interface CommonMarkdownFields {
122
110
  /**
@@ -284,12 +272,6 @@ declare namespace Components {
284
272
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
285
273
  */
286
274
  source_blueprint_file?: string;
287
- /**
288
- * Link to the blueprint documentation
289
- * example:
290
- * https://help.epilot.cloud
291
- */
292
- docs_link?: string;
293
275
  source_blueprint_file_ref?: S3Reference;
294
276
  install_status?: BlueprintInstallStatus;
295
277
  /**
@@ -299,12 +281,6 @@ declare namespace Components {
299
281
  install_status_description?: string;
300
282
  created_by?: CallerIdentity;
301
283
  updated_by?: CallerIdentity;
302
- /**
303
- * Version of the manifest (semver)
304
- * example:
305
- * 1.0.0
306
- */
307
- manifest_version?: string;
308
284
  }
309
285
  /**
310
286
  * ID of an import or export job (state machine)
@@ -320,14 +296,6 @@ declare namespace Components {
320
296
  * 4854bb2a-94f9-424d-a968-3fb17fb0bf89
321
297
  */
322
298
  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[];
331
299
  manifest_id?: /**
332
300
  * ID of an imported / installed manifest
333
301
  * example:
@@ -358,12 +326,6 @@ declare namespace Components {
358
326
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
359
327
  */
360
328
  source_blueprint_file?: string;
361
- /**
362
- * Link to the blueprint documentation
363
- * example:
364
- * https://help.epilot.cloud
365
- */
366
- docs_link?: string;
367
329
  source_blueprint_file_ref?: S3Reference;
368
330
  install_status?: BlueprintInstallStatus;
369
331
  /**
@@ -377,12 +339,6 @@ declare namespace Components {
377
339
  is_verified?: boolean;
378
340
  created_by?: CallerIdentity;
379
341
  updated_by?: CallerIdentity;
380
- /**
381
- * Version of the manifest (semver)
382
- * example:
383
- * 1.0.0
384
- */
385
- manifest_version?: string;
386
342
  /**
387
343
  * Markdown content part of a manifest file
388
344
  */
@@ -465,12 +421,6 @@ declare namespace Components {
465
421
  * https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
466
422
  */
467
423
  source_blueprint_file?: string;
468
- /**
469
- * Link to the blueprint documentation
470
- * example:
471
- * https://help.epilot.cloud
472
- */
473
- docs_link?: string;
474
424
  source_blueprint_file_ref?: S3Reference;
475
425
  install_status?: BlueprintInstallStatus;
476
426
  /**
@@ -484,12 +434,6 @@ declare namespace Components {
484
434
  is_verified?: boolean;
485
435
  created_by?: CallerIdentity;
486
436
  updated_by?: CallerIdentity;
487
- /**
488
- * Version of the manifest (semver)
489
- * example:
490
- * 1.0.0
491
- */
492
- manifest_version?: string;
493
437
  /**
494
438
  * When the manifest was first installed (applied)
495
439
  */
@@ -792,7 +736,6 @@ declare namespace Paths {
792
736
  * Temporary flag to indicate if multiple resources are being exported
793
737
  */
794
738
  isExportingMultipleResources?: boolean;
795
- generateAISummary?: boolean;
796
739
  }
797
740
  namespace Responses {
798
741
  export interface $200 {
package/dist/openapi.json CHANGED
@@ -157,10 +157,6 @@
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
164
160
  }
165
161
  },
166
162
  "required": [
@@ -515,20 +511,6 @@
515
511
  "properties": {
516
512
  "import_job_id": {
517
513
  "$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"
532
514
  }
533
515
  }
534
516
  },
@@ -868,11 +850,6 @@
868
850
  "description": "A URL to download the source blueprint file used to import the blueprint",
869
851
  "example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
870
852
  },
871
- "docs_link": {
872
- "type": "string",
873
- "description": "Link to the blueprint documentation",
874
- "example": "https://help.epilot.cloud"
875
- },
876
853
  "source_blueprint_file_ref": {
877
854
  "$ref": "#/components/schemas/S3Reference"
878
855
  },
@@ -892,11 +869,6 @@
892
869
  },
893
870
  "updated_by": {
894
871
  "$ref": "#/components/schemas/CallerIdentity"
895
- },
896
- "manifest_version": {
897
- "type": "string",
898
- "description": "Version of the manifest (semver)",
899
- "example": "1.0.0"
900
872
  }
901
873
  }
902
874
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.5.10",
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",