@epilot/app-client 0.7.2 → 0.7.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 +14 -0
- package/dist/openapi.json +13 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1437,6 +1437,16 @@ declare namespace Paths {
|
|
|
1437
1437
|
appId: Parameters.AppId;
|
|
1438
1438
|
}
|
|
1439
1439
|
export interface RequestBody {
|
|
1440
|
+
/**
|
|
1441
|
+
* Version of the app configuration
|
|
1442
|
+
* example:
|
|
1443
|
+
* 1.0.0
|
|
1444
|
+
*/
|
|
1445
|
+
version?: string;
|
|
1446
|
+
/**
|
|
1447
|
+
* ID of the journey block component
|
|
1448
|
+
*/
|
|
1449
|
+
component_id?: string;
|
|
1440
1450
|
/**
|
|
1441
1451
|
* example:
|
|
1442
1452
|
* dist.zip
|
|
@@ -1445,6 +1455,10 @@ declare namespace Paths {
|
|
|
1445
1455
|
}
|
|
1446
1456
|
namespace Responses {
|
|
1447
1457
|
export interface $200 {
|
|
1458
|
+
/**
|
|
1459
|
+
* ID of the journye block component
|
|
1460
|
+
*/
|
|
1461
|
+
component_id?: string;
|
|
1448
1462
|
/**
|
|
1449
1463
|
* Presigned S3 URL for uploading the bundle
|
|
1450
1464
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -452,6 +452,15 @@
|
|
|
452
452
|
"type": "object",
|
|
453
453
|
"additionalProperties": false,
|
|
454
454
|
"properties": {
|
|
455
|
+
"version": {
|
|
456
|
+
"type": "string",
|
|
457
|
+
"description": "Version of the app configuration",
|
|
458
|
+
"example": "1.0.0"
|
|
459
|
+
},
|
|
460
|
+
"component_id": {
|
|
461
|
+
"type": "string",
|
|
462
|
+
"description": "ID of the journey block component"
|
|
463
|
+
},
|
|
455
464
|
"filename": {
|
|
456
465
|
"type": "string",
|
|
457
466
|
"example": "dist.zip"
|
|
@@ -473,6 +482,10 @@
|
|
|
473
482
|
"artifact_url"
|
|
474
483
|
],
|
|
475
484
|
"properties": {
|
|
485
|
+
"component_id": {
|
|
486
|
+
"type": "string",
|
|
487
|
+
"description": "ID of the journye block component"
|
|
488
|
+
},
|
|
476
489
|
"upload_url": {
|
|
477
490
|
"type": "string",
|
|
478
491
|
"description": "Presigned S3 URL for uploading the bundle"
|