@epilot/automation-client 1.8.5 → 1.8.6
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/definition.js +1 -1
- package/dist/openapi.d.ts +8 -1
- package/package.json +1 -1
- package/src/openapi.d.ts +8 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -273,7 +273,7 @@ declare namespace Components {
|
|
|
273
273
|
* }
|
|
274
274
|
* }
|
|
275
275
|
*/
|
|
276
|
-
SendEmailAction | CartCheckoutAction | AutomationAction;
|
|
276
|
+
SendEmailAction | /* Creates an order entity with prices from journey */ CartCheckoutAction | AutomationAction;
|
|
277
277
|
export type AnyTrigger = FrontendSubmitTrigger | JourneySubmitTrigger | ApiSubmissionTrigger | EntityOperationTrigger | EntityManualTrigger;
|
|
278
278
|
export interface ApiSubmissionTrigger {
|
|
279
279
|
type: "api_submission";
|
|
@@ -468,6 +468,9 @@ declare namespace Components {
|
|
|
468
468
|
* 7791b04a-16d2-44a2-9af9-2d59c25c512f
|
|
469
469
|
*/
|
|
470
470
|
export type AutomationFlowId = string;
|
|
471
|
+
/**
|
|
472
|
+
* Creates an order entity with prices from journey
|
|
473
|
+
*/
|
|
471
474
|
export interface CartCheckoutAction {
|
|
472
475
|
id?: /**
|
|
473
476
|
* example:
|
|
@@ -499,6 +502,10 @@ declare namespace Components {
|
|
|
499
502
|
error_output?: ErrorOutput;
|
|
500
503
|
}
|
|
501
504
|
export interface CartCheckoutConfig {
|
|
505
|
+
/**
|
|
506
|
+
* Version of the config
|
|
507
|
+
*/
|
|
508
|
+
version?: string;
|
|
502
509
|
relation_attributes?: RelationAttribute[];
|
|
503
510
|
mapping_attributes?: (/**
|
|
504
511
|
* example:
|
package/package.json
CHANGED
package/src/openapi.d.ts
CHANGED
|
@@ -273,7 +273,7 @@ declare namespace Components {
|
|
|
273
273
|
* }
|
|
274
274
|
* }
|
|
275
275
|
*/
|
|
276
|
-
SendEmailAction | CartCheckoutAction | AutomationAction;
|
|
276
|
+
SendEmailAction | /* Creates an order entity with prices from journey */ CartCheckoutAction | AutomationAction;
|
|
277
277
|
export type AnyTrigger = FrontendSubmitTrigger | JourneySubmitTrigger | ApiSubmissionTrigger | EntityOperationTrigger | EntityManualTrigger;
|
|
278
278
|
export interface ApiSubmissionTrigger {
|
|
279
279
|
type: "api_submission";
|
|
@@ -468,6 +468,9 @@ declare namespace Components {
|
|
|
468
468
|
* 7791b04a-16d2-44a2-9af9-2d59c25c512f
|
|
469
469
|
*/
|
|
470
470
|
export type AutomationFlowId = string;
|
|
471
|
+
/**
|
|
472
|
+
* Creates an order entity with prices from journey
|
|
473
|
+
*/
|
|
471
474
|
export interface CartCheckoutAction {
|
|
472
475
|
id?: /**
|
|
473
476
|
* example:
|
|
@@ -499,6 +502,10 @@ declare namespace Components {
|
|
|
499
502
|
error_output?: ErrorOutput;
|
|
500
503
|
}
|
|
501
504
|
export interface CartCheckoutConfig {
|
|
505
|
+
/**
|
|
506
|
+
* Version of the config
|
|
507
|
+
*/
|
|
508
|
+
version?: string;
|
|
502
509
|
relation_attributes?: RelationAttribute[];
|
|
503
510
|
mapping_attributes?: (/**
|
|
504
511
|
* example:
|