@epilot/blueprint-manifest-client 2.5.6 → 2.5.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 CHANGED
@@ -67,6 +67,7 @@ declare namespace Components {
67
67
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
68
68
  */
69
69
  ManifestID;
70
+ source_type?: ManifestSource;
70
71
  /**
71
72
  * example:
72
73
  * Solar B2B
@@ -286,6 +287,7 @@ declare namespace Components {
286
287
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
287
288
  */
288
289
  ManifestID;
290
+ source_type?: ManifestSource;
289
291
  /**
290
292
  * example:
291
293
  * Solar B2B
@@ -341,7 +343,6 @@ declare namespace Components {
341
343
  */
342
344
  postinstall?: string;
343
345
  };
344
- source_type?: ManifestSource;
345
346
  /**
346
347
  * An array of tree-like JSON objects or a singular tree-like JSON object representing the resources to import
347
348
  */
@@ -374,6 +375,7 @@ declare namespace Components {
374
375
  * c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
375
376
  */
376
377
  ManifestID;
378
+ source_type?: ManifestSource;
377
379
  /**
378
380
  * example:
379
381
  * Solar B2B
package/dist/openapi.json CHANGED
@@ -827,6 +827,9 @@
827
827
  "manifest_id": {
828
828
  "$ref": "#/components/schemas/ManifestID"
829
829
  },
830
+ "source_type": {
831
+ "$ref": "#/components/schemas/ManifestSource"
832
+ },
830
833
  "source_blueprint_name": {
831
834
  "type": "string",
832
835
  "example": "Solar B2B"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.5.6",
3
+ "version": "2.5.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 ../../../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",