@epilot/blueprint-manifest-client 2.3.2 → 2.4.0
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 +2 -2
- package/dist/openapi.json +7 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -204,7 +204,7 @@ declare namespace Components {
|
|
|
204
204
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
205
205
|
*/
|
|
206
206
|
export type JobID = string;
|
|
207
|
-
export type JobStatus = "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
207
|
+
export type JobStatus = "PENDING" | "STARTED" | "WAITING_USER_ACTION" | "CANCELED" | "IN_PROGRESS" | "SUCCESS" | "FAILED";
|
|
208
208
|
export interface Manifest {
|
|
209
209
|
manifest_id?: /**
|
|
210
210
|
* ID of an imported / installed manifest
|
|
@@ -356,7 +356,7 @@ declare namespace Components {
|
|
|
356
356
|
}[];
|
|
357
357
|
changes?: PlanChanges;
|
|
358
358
|
}
|
|
359
|
-
export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "
|
|
359
|
+
export type ResourceNodeType = "designbuilder" | "journey" | "product" | "price" | "tax" | "automation_flow" | "entity_mapping" | "file" | "emailtemplate" | "schema" | "schema_attribute" | "schema_capability" | "schema_group" | "workflow_definition" | "closing_reason" | "taxonomy_classification" | "webhook" | "custom_variable";
|
|
360
360
|
export interface RootResourceNode {
|
|
361
361
|
/**
|
|
362
362
|
* ID of the resource
|
package/dist/openapi.json
CHANGED
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
{
|
|
33
33
|
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
37
|
+
},
|
|
35
38
|
{
|
|
36
39
|
"url": "https://blueprint-manifest.sls.epilot.io"
|
|
37
40
|
}
|
|
@@ -502,6 +505,7 @@
|
|
|
502
505
|
"JobStatus": {
|
|
503
506
|
"type": "string",
|
|
504
507
|
"enum": [
|
|
508
|
+
"PENDING",
|
|
505
509
|
"STARTED",
|
|
506
510
|
"WAITING_USER_ACTION",
|
|
507
511
|
"CANCELED",
|
|
@@ -526,11 +530,11 @@
|
|
|
526
530
|
"schema_attribute",
|
|
527
531
|
"schema_capability",
|
|
528
532
|
"schema_group",
|
|
529
|
-
"schema_group_headline",
|
|
530
533
|
"workflow_definition",
|
|
531
534
|
"closing_reason",
|
|
532
535
|
"taxonomy_classification",
|
|
533
|
-
"webhook"
|
|
536
|
+
"webhook",
|
|
537
|
+
"custom_variable"
|
|
534
538
|
]
|
|
535
539
|
},
|
|
536
540
|
"PlanChanges": {
|
|
@@ -842,7 +846,7 @@
|
|
|
842
846
|
"manifest": {
|
|
843
847
|
"type": "string",
|
|
844
848
|
"description": "Markdown content shown before installing the manifest",
|
|
845
|
-
"example": "This is the content of the manifest.md file which contains the manifest descripton
|
|
849
|
+
"example": "This is the content of the manifest.md file which contains the manifest descripton.\n"
|
|
846
850
|
},
|
|
847
851
|
"preinstall": {
|
|
848
852
|
"type": "string",
|