@wix/auto_sdk_automations_automations-v-2 1.0.26 → 1.0.28
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/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js +10 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +7 -5
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -3
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +10 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -5
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -3
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +10 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -5
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -3
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +10 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -5
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -3
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -450,12 +450,12 @@ interface Action extends ActionInfoOneOf {
|
|
|
450
450
|
*/
|
|
451
451
|
namespace?: string | null;
|
|
452
452
|
/**
|
|
453
|
-
*
|
|
453
|
+
* skip_action_expression: evaluates to a boolean to decide if the action should be skipped
|
|
454
454
|
* For ConditionAction: if skipped, true_post_action_ids execute; false_post_action_ids are skipped
|
|
455
|
-
* SplitAction and OutputAction do not support
|
|
455
|
+
* SplitAction and OutputAction do not support skip_action_expression
|
|
456
456
|
* @maxLength 1000
|
|
457
457
|
*/
|
|
458
|
-
|
|
458
|
+
skipActionExpression?: string | null;
|
|
459
459
|
}
|
|
460
460
|
/** @oneof */
|
|
461
461
|
interface ActionInfoOneOf {
|
package/build/es/index.d.mts
CHANGED
|
@@ -203,14 +203,14 @@ declare const getAutomationRevision: MaybeContext<BuildRESTFunction<typeof getAu
|
|
|
203
203
|
/**
|
|
204
204
|
* Triggered when a new automation is created.
|
|
205
205
|
*/
|
|
206
|
-
declare const onAutomationCreated: BuildEventDefinition<typeof onAutomationCreated$1
|
|
206
|
+
declare const onAutomationCreated: BuildEventDefinition<typeof onAutomationCreated$1> & typeof onAutomationCreated$1;
|
|
207
207
|
/**
|
|
208
208
|
* Triggered when an automation is deleted.
|
|
209
209
|
*/
|
|
210
|
-
declare const onAutomationDeleted: BuildEventDefinition<typeof onAutomationDeleted$1
|
|
210
|
+
declare const onAutomationDeleted: BuildEventDefinition<typeof onAutomationDeleted$1> & typeof onAutomationDeleted$1;
|
|
211
211
|
/**
|
|
212
212
|
* Triggered when an automation is updated.
|
|
213
213
|
*/
|
|
214
|
-
declare const onAutomationUpdated: BuildEventDefinition<typeof onAutomationUpdated$1
|
|
214
|
+
declare const onAutomationUpdated: BuildEventDefinition<typeof onAutomationUpdated$1> & typeof onAutomationUpdated$1;
|
|
215
215
|
|
|
216
216
|
export { Automation, AutomationCreatedEnvelope, AutomationDeletedEnvelope, AutomationUpdatedEnvelope, AutomationsQueryBuilder, BulkCountAutomationsWithDraftsOptions, BulkCountAutomationsWithDraftsResponse, BulkDeleteAutomationsResponse, CopyAutomationOptions, CopyAutomationResponse, CreateDraftAutomationOptions, CreateDraftAutomationResponse, GeneratePreinstalledAutomationOptions, GeneratePreinstalledAutomationResponse, GetAggregatedUsageInfoOptions, GetAggregatedUsageInfoResponse, GetAutomationRevisionOptions, GetAutomationRevisionResponse, GetOrCreateDraftAutomationResponse, PublishDraftAutomationResponse, QueryAutomationsWithDraftsOptions, QueryAutomationsWithDraftsResponse, UpdateAutomation, UpdateDraftAutomation, UpdateDraftAutomationResponse, ValidateAutomationByIdOptions, ValidateAutomationByIdResponse, ValidateAutomationOptions, ValidateAutomationResponse, bulkCountAutomationsWithDrafts, bulkDeleteAutomations, copyAutomation, createAutomation, createDraftAutomation, deleteAutomation, deleteDraftAutomation, generatePreinstalledAutomation, getAggregatedUsageInfo, getAutomation, getAutomationRevision, getOrCreateDraftAutomation, onAutomationCreated, onAutomationDeleted, onAutomationUpdated, publishDraftAutomation, queryAutomations, queryAutomationsWithDrafts, updateAutomation, updateDraftAutomation, validateAutomation, validateAutomationById };
|
package/build/es/index.mjs
CHANGED
|
@@ -773,6 +773,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
773
773
|
Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
|
|
774
774
|
Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
|
|
775
775
|
Namespace2["MIMIR"] = "MIMIR";
|
|
776
|
+
Namespace2["TWINS"] = "TWINS";
|
|
776
777
|
return Namespace2;
|
|
777
778
|
})(Namespace || {});
|
|
778
779
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|
|
@@ -1572,9 +1573,15 @@ var publishDraftAutomation4 = /* @__PURE__ */ createRESTModule(publishDraftAutom
|
|
|
1572
1573
|
var validateAutomation4 = /* @__PURE__ */ createRESTModule(validateAutomation3);
|
|
1573
1574
|
var validateAutomationById4 = /* @__PURE__ */ createRESTModule(validateAutomationById3);
|
|
1574
1575
|
var getAutomationRevision4 = /* @__PURE__ */ createRESTModule(getAutomationRevision3);
|
|
1575
|
-
var onAutomationCreated2 = createEventModule(
|
|
1576
|
-
|
|
1577
|
-
|
|
1576
|
+
var onAutomationCreated2 = createEventModule(
|
|
1577
|
+
onAutomationCreated
|
|
1578
|
+
);
|
|
1579
|
+
var onAutomationDeleted2 = createEventModule(
|
|
1580
|
+
onAutomationDeleted
|
|
1581
|
+
);
|
|
1582
|
+
var onAutomationUpdated2 = createEventModule(
|
|
1583
|
+
onAutomationUpdated
|
|
1584
|
+
);
|
|
1578
1585
|
export {
|
|
1579
1586
|
ActionErrorType,
|
|
1580
1587
|
AutomationErrorType,
|