@epilot/blueprint-manifest-client 2.6.6 → 2.6.7
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 +12 -0
- package/dist/openapi.json +21 -0
- package/package.json +2 -2
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 {
|
package/dist/openapi.json
CHANGED
|
@@ -322,6 +322,13 @@
|
|
|
322
322
|
"$ref": "#/components/schemas/ManifestSource"
|
|
323
323
|
}
|
|
324
324
|
]
|
|
325
|
+
},
|
|
326
|
+
"resourcesToIgnore": {
|
|
327
|
+
"type": "array",
|
|
328
|
+
"items": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"description": "List of resources to ignore changes for"
|
|
325
332
|
}
|
|
326
333
|
},
|
|
327
334
|
"required": [
|
|
@@ -356,6 +363,13 @@
|
|
|
356
363
|
"$ref": "#/components/schemas/ManifestSource"
|
|
357
364
|
}
|
|
358
365
|
]
|
|
366
|
+
},
|
|
367
|
+
"resourcesToIgnore": {
|
|
368
|
+
"type": "array",
|
|
369
|
+
"items": {
|
|
370
|
+
"type": "string"
|
|
371
|
+
},
|
|
372
|
+
"description": "List of resources to ignore changes for"
|
|
359
373
|
}
|
|
360
374
|
},
|
|
361
375
|
"required": [
|
|
@@ -412,6 +426,13 @@
|
|
|
412
426
|
"example": "example.tf",
|
|
413
427
|
"deprecated": true,
|
|
414
428
|
"nullable": true
|
|
429
|
+
},
|
|
430
|
+
"resourcesToIgnore": {
|
|
431
|
+
"type": "array",
|
|
432
|
+
"items": {
|
|
433
|
+
"type": "string"
|
|
434
|
+
},
|
|
435
|
+
"description": "List of resources to ignore changes for"
|
|
415
436
|
}
|
|
416
437
|
}
|
|
417
438
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/blueprint-manifest-client",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7",
|
|
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 ../../../
|
|
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",
|