@epilot/blueprint-manifest-client 2.8.7 → 2.8.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
@@ -954,6 +954,7 @@ declare namespace Paths {
954
954
  * journey_HouseConnectionJourney
955
955
  */
956
956
  resourceName: string;
957
+ metadata?: any;
957
958
  /**
958
959
  * Temporary flag to indicate if multiple resources are being exported
959
960
  */
package/dist/openapi.json CHANGED
@@ -200,6 +200,34 @@
200
200
  "type": "string",
201
201
  "example": "journey_HouseConnectionJourney"
202
202
  },
203
+ "metadata": {
204
+ "markdown": {
205
+ "type": "object",
206
+ "properties": {
207
+ "manifest": {
208
+ "type": "string"
209
+ },
210
+ "preinstall": {
211
+ "type": "string"
212
+ },
213
+ "postinstall": {
214
+ "type": "string"
215
+ }
216
+ }
217
+ },
218
+ "docs_link": {
219
+ "type": "string"
220
+ },
221
+ "source_blueprint_name": {
222
+ "type": "string"
223
+ },
224
+ "source_blueprint_slug": {
225
+ "type": "string"
226
+ },
227
+ "source_blueprint_version": {
228
+ "type": "string"
229
+ }
230
+ },
203
231
  "isExportingMultipleResources": {
204
232
  "type": "boolean",
205
233
  "description": "Temporary flag to indicate if multiple resources are being exported"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "2.8.7",
3
+ "version": "2.8.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 ../../../blueprint-manifest-api/lambda/TerraformHandlerFunction/openapi.yml",
27
+ "openapi:local": "node ../../scripts/update-openapi.js ../../../blueprints-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",