@epilot/blueprint-manifest-client 4.6.1 → 4.6.3
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 +7 -0
- package/dist/openapi.json +6 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2384,10 +2384,17 @@ declare namespace Paths {
|
|
|
2384
2384
|
export interface $200 {
|
|
2385
2385
|
results?: {
|
|
2386
2386
|
/**
|
|
2387
|
+
* The installation slug identifier for the blueprint (used for publishing).
|
|
2387
2388
|
* example:
|
|
2388
2389
|
* wallbox_b2c
|
|
2389
2390
|
*/
|
|
2390
2391
|
slug?: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* The marketplace page slug for the Webflow CMS item (used for display).
|
|
2394
|
+
* example:
|
|
2395
|
+
* wallbox-b2c
|
|
2396
|
+
*/
|
|
2397
|
+
marketplace_slug?: string;
|
|
2391
2398
|
/**
|
|
2392
2399
|
* example:
|
|
2393
2400
|
* v1.0.0
|
package/dist/openapi.json
CHANGED
|
@@ -1214,8 +1214,14 @@
|
|
|
1214
1214
|
"properties": {
|
|
1215
1215
|
"slug": {
|
|
1216
1216
|
"type": "string",
|
|
1217
|
+
"description": "The installation slug identifier for the blueprint (used for publishing).",
|
|
1217
1218
|
"example": "wallbox_b2c"
|
|
1218
1219
|
},
|
|
1220
|
+
"marketplace_slug": {
|
|
1221
|
+
"type": "string",
|
|
1222
|
+
"description": "The marketplace page slug for the Webflow CMS item (used for display).",
|
|
1223
|
+
"example": "wallbox-b2c"
|
|
1224
|
+
},
|
|
1219
1225
|
"version": {
|
|
1220
1226
|
"type": "string",
|
|
1221
1227
|
"example": "v1.0.0"
|