@epilot/blueprint-manifest-client 4.6.0 → 4.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
@@ -2393,6 +2393,11 @@ declare namespace Paths {
2393
2393
  * v1.0.0
2394
2394
  */
2395
2395
  version?: string;
2396
+ /**
2397
+ * example:
2398
+ * Wallbox B2C
2399
+ */
2400
+ name?: string;
2396
2401
  /**
2397
2402
  * example:
2398
2403
  * https://portal.epilot.cloud/app/blueprints/install/marketplace/wallbox_b2c?s3Ref=https://example.com/blueprint.zip
@@ -2434,6 +2439,10 @@ declare namespace Paths {
2434
2439
  * The version string to set on the marketplace CMS item (e.g. "1.0.0")
2435
2440
  */
2436
2441
  version?: string;
2442
+ /**
2443
+ * The display name for the blueprint on the marketplace CMS item
2444
+ */
2445
+ name?: string;
2437
2446
  }
2438
2447
  namespace Responses {
2439
2448
  export interface $202 {
package/dist/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "Blueprint Manifest API",
5
- "version": "4.6.0",
5
+ "version": "4.6.1",
6
6
  "description": "Service to create and install Blueprint Manifest files"
7
7
  },
8
8
  "tags": [
@@ -1220,6 +1220,10 @@
1220
1220
  "type": "string",
1221
1221
  "example": "v1.0.0"
1222
1222
  },
1223
+ "name": {
1224
+ "type": "string",
1225
+ "example": "Wallbox B2C"
1226
+ },
1223
1227
  "installation_link": {
1224
1228
  "type": "string",
1225
1229
  "example": "https://portal.epilot.cloud/app/blueprints/install/marketplace/wallbox_b2c?s3Ref=https://example.com/blueprint.zip"
@@ -1264,6 +1268,10 @@
1264
1268
  "version": {
1265
1269
  "type": "string",
1266
1270
  "description": "The version string to set on the marketplace CMS item (e.g. \"1.0.0\")"
1271
+ },
1272
+ "name": {
1273
+ "type": "string",
1274
+ "description": "The display name for the blueprint on the marketplace CMS item"
1267
1275
  }
1268
1276
  }
1269
1277
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/blueprint-manifest-client",
3
- "version": "4.6.0",
3
+ "version": "4.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",