@epilot/blueprint-manifest-client 2.6.6 → 2.6.8

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
@@ -668,6 +668,10 @@ declare namespace Paths {
668
668
  * example.tf
669
669
  */
670
670
  manifestFilePath?: string | null;
671
+ /**
672
+ * List of resources to ignore changes for
673
+ */
674
+ resourcesToIgnore?: string[];
671
675
  }
672
676
  namespace Responses {
673
677
  export interface $200 {
@@ -788,6 +792,10 @@ declare namespace Paths {
788
792
  * Source of the manifest
789
793
  */
790
794
  source?: "file" | "marketplace" | "sandbox";
795
+ /**
796
+ * List of resources to ignore changes for
797
+ */
798
+ resourcesToIgnore?: string[];
791
799
  } | {
792
800
  /**
793
801
  * Manifest s3 key uploaded via `uploadManifest`
@@ -803,6 +811,10 @@ declare namespace Paths {
803
811
  * Source of the manifest
804
812
  */
805
813
  source?: "file" | "marketplace" | "sandbox";
814
+ /**
815
+ * List of resources to ignore changes for
816
+ */
817
+ resourcesToIgnore?: string[];
806
818
  };
807
819
  namespace Responses {
808
820
  export interface $200 {
@@ -857,6 +869,7 @@ declare namespace Paths {
857
869
  */
858
870
  isExportingMultipleResources?: boolean;
859
871
  generateAISummary?: boolean;
872
+ language?: "en" | "de";
860
873
  }
861
874
  namespace Responses {
862
875
  export interface $200 {
package/dist/openapi.json CHANGED
@@ -207,6 +207,13 @@
207
207
  "generateAISummary": {
208
208
  "type": "boolean",
209
209
  "default": false
210
+ },
211
+ "language": {
212
+ "type": "string",
213
+ "enum": [
214
+ "en",
215
+ "de"
216
+ ]
210
217
  }
211
218
  },
212
219
  "required": [
@@ -322,6 +329,13 @@
322
329
  "$ref": "#/components/schemas/ManifestSource"
323
330
  }
324
331
  ]
332
+ },
333
+ "resourcesToIgnore": {
334
+ "type": "array",
335
+ "items": {
336
+ "type": "string"
337
+ },
338
+ "description": "List of resources to ignore changes for"
325
339
  }
326
340
  },
327
341
  "required": [
@@ -356,6 +370,13 @@
356
370
  "$ref": "#/components/schemas/ManifestSource"
357
371
  }
358
372
  ]
373
+ },
374
+ "resourcesToIgnore": {
375
+ "type": "array",
376
+ "items": {
377
+ "type": "string"
378
+ },
379
+ "description": "List of resources to ignore changes for"
359
380
  }
360
381
  },
361
382
  "required": [
@@ -412,6 +433,13 @@
412
433
  "example": "example.tf",
413
434
  "deprecated": true,
414
435
  "nullable": true
436
+ },
437
+ "resourcesToIgnore": {
438
+ "type": "array",
439
+ "items": {
440
+ "type": "string"
441
+ },
442
+ "description": "List of resources to ignore changes for"
415
443
  }
416
444
  }
417
445
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.6.6",
3
+ "version": "2.6.8",
4
4
  "description": "Client for epilot Terraform Blueprint Manifest API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "test": "jest",
25
25
  "bundle-definition": "webpack",
26
26
  "openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/blueprint-manifest.yaml",
27
- "openapi:local": "node ../../scripts/update-openapi.js ../../../blueprints-api/lambda/TerraformHandlerFunction/openapi.yml",
27
+ "openapi:local": "node ../../scripts/update-openapi.js ../../../blueprint-manifest-api/lambda/TerraformHandlerFunction/openapi.yml",
28
28
  "typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
29
29
  "build": "tsc && npm run build:patch && npm run bundle-definition",
30
30
  "build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",