@wix/auto_sdk_automations_activations 1.0.135 → 1.0.136

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.
@@ -172,32 +172,36 @@ var RunAutomationRequest = z.object({
172
172
  z.object({
173
173
  automationIdentifier: z.never().optional(),
174
174
  preinstalledIdentifier: z.object({
175
- appId: z.string().describe("identifier for the application of the preinstalled").regex(
175
+ appId: z.string().describe(
176
+ "ID of the app that the preinstalled automation belongs to."
177
+ ).regex(
176
178
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
177
179
  "Must be a valid GUID"
178
180
  ).optional(),
179
- componentId: z.string().describe("application component id").regex(
181
+ componentId: z.string().describe(
182
+ "ID of the app component that defines the preinstalled automation."
183
+ ).regex(
180
184
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
181
185
  "Must be a valid GUID"
182
186
  ).optional()
183
- }).describe("a preinstalled automation identifier")
187
+ }).describe(
188
+ "Identifies a preinstalled automation by its app ID and component ID."
189
+ )
184
190
  }),
185
191
  z.object({
186
192
  preinstalledIdentifier: z.never().optional(),
187
193
  automationIdentifier: z.object({
188
- automationId: z.string().describe("automation id").regex(
194
+ automationId: z.string().describe("ID of the automation to run.").regex(
189
195
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
190
196
  "Must be a valid GUID"
191
197
  ).optional()
192
- }).describe(
193
- "a automation of any type identifier that will be available in future"
194
- )
198
+ }).describe("Identifies an automation by its ID.")
195
199
  })
196
200
  ])
197
201
  )
198
202
  });
199
203
  var RunAutomationResponse = z.object({
200
- activationId: z.string().describe("Activation ID generated (for tracking)").regex(
204
+ activationId: z.string().describe("ID of the activation created for this run.").regex(
201
205
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
202
206
  "Must be a valid GUID"
203
207
  ).optional().nullable()
@@ -214,51 +218,57 @@ var TestAutomationRequest = z.object({
214
218
  z.object({
215
219
  automationIdentifier: z.never().optional(),
216
220
  preinstalledIdentifier: z.object({
217
- appId: z.string().describe("identifier for the application of the preinstalled").regex(
221
+ appId: z.string().describe(
222
+ "ID of the app that the preinstalled automation belongs to."
223
+ ).regex(
218
224
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
219
225
  "Must be a valid GUID"
220
226
  ).optional(),
221
- componentId: z.string().describe("application component id").regex(
227
+ componentId: z.string().describe(
228
+ "ID of the app component that defines the preinstalled automation."
229
+ ).regex(
222
230
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
223
231
  "Must be a valid GUID"
224
232
  ).optional()
225
- }).describe("a preinstalled automation identifier")
233
+ }).describe(
234
+ "Identifies a preinstalled automation by its app ID and component ID."
235
+ )
226
236
  }),
227
237
  z.object({
228
238
  preinstalledIdentifier: z.never().optional(),
229
239
  automationIdentifier: z.object({
230
- automationId: z.string().describe("automation id").regex(
240
+ automationId: z.string().describe("ID of the automation to run.").regex(
231
241
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
232
242
  "Must be a valid GUID"
233
243
  ).optional()
234
- }).describe(
235
- "a automation of any type identifier that will be available in future"
236
- )
244
+ }).describe("Identifies an automation by its ID.")
237
245
  })
238
246
  ])
239
247
  )
240
248
  });
241
249
  var TestAutomationResponse = z.object({
242
- activationId: z.string().describe("Activation ID generated (for tracking)").regex(
250
+ activationId: z.string().describe("ID of the activation created for this test run.").regex(
243
251
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
244
252
  "Must be a valid GUID"
245
253
  ).optional().nullable()
246
254
  });
247
255
  var RerunActivationRequest = z.object({
248
- activationId: z.string().describe("The activation ID whose payload will be used for the rerun.").regex(
256
+ activationId: z.string().describe(
257
+ "ID of the activation to rerun. Its original payload and external entity ID are reused."
258
+ ).regex(
249
259
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
250
260
  "Must be a valid GUID"
251
261
  ),
252
262
  options: z.object({
253
263
  options: z.object({
254
264
  skipDelays: z.boolean().describe(
255
- "When true, delay actions will be skipped (similar to test mode behavior)."
265
+ "Whether to skip the automation's delay actions so it runs immediately."
256
266
  ).optional()
257
- }).describe("Options controlling execution behavior.").optional()
267
+ }).describe("Options that control how the activation is rerun.").optional()
258
268
  }).optional()
259
269
  });
260
270
  var RerunActivationResponse = z.object({
261
- activationId: z.string().describe("Activation ID generated (for tracking)").regex(
271
+ activationId: z.string().describe("ID of the new activation created by the rerun.").regex(
262
272
  /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
263
273
  "Must be a valid GUID"
264
274
  ).optional().nullable()
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/automations-v2-activation-activations.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const ReportEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n \"Trigger key as defined in your app's trigger configuration\\nin the app dashboard.\\nFor example, `form_submitted` or `invoice_due`.\"\n )\n .min(1)\n .max(100),\n options: z\n .object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe(\n 'ID of the related resource in GUID format.\\nFor example, `fc81a355-3429-50fc-a4c7-def486e828f3`.\\n\\nRequired if your app needs to\\n[cancel the event](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/cancel-event)\\nif the automation becomes no longer relevant.\\n\\nTypically, this ID is defined in your system,\\nbut you can also use any Wix resource GUID,\\nsuch as contact ID, member ID, or invoice ID.\\nSee\\n[Choose the right `externalEntityId`](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/reporting-and-canceling-events#about-canceling-events)\\nfor more information.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n .optional(),\n});\nexport const ReportEventResponse = z.object({\n activationIds: z.array(z.string()).max(100).optional(),\n});\nexport const BulkReportEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n \"Trigger key as defined in your app's trigger configuration\\nin the app dashboard.\\nFor example, `form_submitted` or `invoice_due`.\"\n )\n .min(1)\n .max(100),\n eventsInfo: z\n .array(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n )\n .min(1)\n .max(100),\n});\nexport const BulkReportEventResponse = z.object({\n triggerKey: z\n .string()\n .describe('Trigger key associated with the event.')\n .min(1)\n .max(100)\n .optional(),\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata for the individual item in the request.')\n .optional(),\n eventInfo: z\n .object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n .describe('Event details for the item in the request.')\n .optional(),\n activationIds: z.array(z.string()).max(100).optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe(\n 'Metadata for the overall bulk action, including success and failure counts.'\n )\n .optional(),\n});\nexport const BulkCancelEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n 'Trigger key whose events you want to cancel.\\nFor example, `form_submitted` or `invoice_due`.'\n )\n .min(1)\n .max(100),\n externalEntityIds: z.array(z.string()).min(1).max(100),\n});\nexport const BulkCancelEventResponse = z.object({\n triggerKey: z\n .string()\n .describe('Trigger key related to the canceled event.')\n .min(1)\n .max(100)\n .optional(),\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe(\n 'Metadata of the item, including its ID and success or failure status.'\n )\n .optional(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe(\n 'Metadata for the overall bulk action, including success and failure counts.'\n )\n .optional(),\n});\nexport const CancelEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n 'Trigger key whose event you want to cancel.\\nFor example, `form_submitted` or `invoice_due`.'\n )\n .min(1)\n .max(100),\n externalEntityId: z\n .string()\n .describe(\n 'ID of the related resource in GUID format.\\nFor example, `fc81a355-3429-50fc-a4c7-def486e828f3`.\\n\\nTypically, this ID is defined in your system,\\nbut you can also use any Wix resource GUID,\\nsuch as contact ID, member ID, or invoice ID.\\nSee\\n[Choose the right `externalEntityId`](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/reporting-and-canceling-events#choose-the-right-externalentityid)\\nfor more information.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n});\nexport const CancelEventResponse = z.object({});\nexport const RunAutomationRequest = z.object({\n identifierType: z.enum(['PREINSTALLED', 'AUTOMATION']),\n options: z.intersection(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n ),\n migrationFlow: z\n .boolean()\n .describe(\n 'When true, indicates this is a migration flow and should bypass\\nthe check for future dates that have already passed.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n automationIdentifier: z.never().optional(),\n preinstalledIdentifier: z\n .object({\n appId: z\n .string()\n .describe('identifier for the application of the preinstalled')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n componentId: z\n .string()\n .describe('application component id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe('a preinstalled automation identifier'),\n }),\n z.object({\n preinstalledIdentifier: z.never().optional(),\n automationIdentifier: z\n .object({\n automationId: z\n .string()\n .describe('automation id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe(\n 'a automation of any type identifier that will be available in future'\n ),\n }),\n ])\n ),\n});\nexport const RunAutomationResponse = z.object({\n activationId: z\n .string()\n .describe('Activation ID generated (for tracking)')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const TestAutomationRequest = z.object({\n identifierType: z.enum(['PREINSTALLED', 'AUTOMATION']),\n options: z.intersection(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n ),\n }),\n z.xor([\n z.object({\n automationIdentifier: z.never().optional(),\n preinstalledIdentifier: z\n .object({\n appId: z\n .string()\n .describe('identifier for the application of the preinstalled')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n componentId: z\n .string()\n .describe('application component id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe('a preinstalled automation identifier'),\n }),\n z.object({\n preinstalledIdentifier: z.never().optional(),\n automationIdentifier: z\n .object({\n automationId: z\n .string()\n .describe('automation id')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe(\n 'a automation of any type identifier that will be available in future'\n ),\n }),\n ])\n ),\n});\nexport const TestAutomationResponse = z.object({\n activationId: z\n .string()\n .describe('Activation ID generated (for tracking)')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const RerunActivationRequest = z.object({\n activationId: z\n .string()\n .describe('The activation ID whose payload will be used for the rerun.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n options: z\n .object({\n options: z\n .object({\n skipDelays: z\n .boolean()\n .describe(\n 'When true, delay actions will be skipped (similar to test mode behavior).'\n )\n .optional(),\n })\n .describe('Options controlling execution behavior.')\n .optional(),\n })\n .optional(),\n});\nexport const RerunActivationResponse = z.object({\n activationId: z\n .string()\n .describe('Activation ID generated (for tracking)')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const ReportActionInvocationCompletedRequest = z.object({\n status: z.enum(['UNKNOWN_STATUS', 'SUCCESS', 'FAILURE']),\n invocationToken: z\n .string()\n .describe(\n \"Invocation token from Wix's original call to [Invoke](https://dev.wix.com/docs/api-reference/business-management/automations/actions/action-provider-service-plugin/invoke). Wix uses this token to match your results with the correct automation run.\\n\\nLearn more about [running an invoked action with a timeout](https://dev.wix.com/docs/api-reference/business-management/automations/actions/action-provider-service-plugin/sample-flow#run-an-invoked-action-with-a-timeout).\"\n )\n .max(2048),\n options: z\n .intersection(\n z.object({}),\n z.xor([\n z.object({\n successInfo: z.never().optional(),\n failureInfo: z.never().optional(),\n }),\n z.object({\n failureInfo: z.never().optional(),\n successInfo: z\n .object({\n result: z\n .record(z.string(), z.any())\n .describe(\n \"Your action's results as specified in its [output schema](https://dev.wix.com/docs/api-reference/business-management/automations/actions/about-actions#the-output-schema).\"\n )\n .optional()\n .nullable(),\n })\n .describe(\"When the `status` is `SUCCESS`, your action's results.\"),\n }),\n z.object({\n successInfo: z.never().optional(),\n failureInfo: z\n .object({\n errorDescription: z\n .string()\n .describe('Why the action failed.')\n .max(1000)\n .optional(),\n })\n .describe('When the `status` is `FAILURE`, why the action failed.'),\n }),\n ])\n )\n .optional(),\n});\nexport const ReportActionInvocationCompletedResponse = z.object({});\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../../../src/automations-v2-activation-activations.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const ReportEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n \"Trigger key as defined in your app's trigger configuration\\nin the app dashboard.\\nFor example, `form_submitted` or `invoice_due`.\"\n )\n .min(1)\n .max(100),\n options: z\n .object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe(\n 'ID of the related resource in GUID format.\\nFor example, `fc81a355-3429-50fc-a4c7-def486e828f3`.\\n\\nRequired if your app needs to\\n[cancel the event](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/cancel-event)\\nif the automation becomes no longer relevant.\\n\\nTypically, this ID is defined in your system,\\nbut you can also use any Wix resource GUID,\\nsuch as contact ID, member ID, or invoice ID.\\nSee\\n[Choose the right `externalEntityId`](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/reporting-and-canceling-events#about-canceling-events)\\nfor more information.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n .optional(),\n});\nexport const ReportEventResponse = z.object({\n activationIds: z.array(z.string()).max(100).optional(),\n});\nexport const BulkReportEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n \"Trigger key as defined in your app's trigger configuration\\nin the app dashboard.\\nFor example, `form_submitted` or `invoice_due`.\"\n )\n .min(1)\n .max(100),\n eventsInfo: z\n .array(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n )\n .min(1)\n .max(100),\n});\nexport const BulkReportEventResponse = z.object({\n triggerKey: z\n .string()\n .describe('Trigger key associated with the event.')\n .min(1)\n .max(100)\n .optional(),\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe('Metadata for the individual item in the request.')\n .optional(),\n eventInfo: z\n .object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.'\n )\n .optional()\n .nullable(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n idempotency: z\n .object({\n key: z\n .string()\n .describe(\n 'A unique identifier for the event.\\nIf you send the same idempotency key in multiple report event requests, for the same trigger key and app id,\\nconsecutive requests will be ignored after the first one. Note that the idempotency key is kept for a week before it expires.'\n )\n .min(1)\n .max(80)\n .optional(),\n ttlInMilliseconds: z\n .string()\n .regex(/^-?\\d+$/, 'Must be a valid Int64 string')\n .describe(\n 'Optional. The time to live (TTL) in milliseconds before the key will expire. Default is a week.'\n )\n .optional()\n .nullable(),\n })\n .describe('Idempotency information for the event.')\n .optional(),\n })\n .describe('Event details for the item in the request.')\n .optional(),\n activationIds: z.array(z.string()).max(100).optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe(\n 'Metadata for the overall bulk action, including success and failure counts.'\n )\n .optional(),\n});\nexport const BulkCancelEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n 'Trigger key whose events you want to cancel.\\nFor example, `form_submitted` or `invoice_due`.'\n )\n .min(1)\n .max(100),\n externalEntityIds: z.array(z.string()).min(1).max(100),\n});\nexport const BulkCancelEventResponse = z.object({\n triggerKey: z\n .string()\n .describe('Trigger key related to the canceled event.')\n .min(1)\n .max(100)\n .optional(),\n results: z\n .array(\n z.object({\n itemMetadata: z\n .object({\n _id: z\n .string()\n .describe(\n \"Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).\"\n )\n .optional()\n .nullable(),\n originalIndex: z\n .number()\n .int()\n .describe(\n 'Index of the item within the request array. Allows for correlation between request and response items.'\n )\n .optional(),\n success: z\n .boolean()\n .describe(\n 'Whether the requested action was successful for this item. When `false`, the `error` field is populated.'\n )\n .optional(),\n error: z\n .object({\n code: z.string().describe('Error code.').optional(),\n description: z\n .string()\n .describe('Description of the error.')\n .optional(),\n data: z\n .record(z.string(), z.any())\n .describe('Data related to the error.')\n .optional()\n .nullable(),\n })\n .describe('Details about the error in case of failure.')\n .optional(),\n })\n .describe(\n 'Metadata of the item, including its ID and success or failure status.'\n )\n .optional(),\n externalEntityId: z\n .string()\n .describe('ID of the related resource in GUID format.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n )\n .optional(),\n bulkActionMetadata: z\n .object({\n totalSuccesses: z\n .number()\n .int()\n .describe('Number of items that were successfully processed.')\n .optional(),\n totalFailures: z\n .number()\n .int()\n .describe(\"Number of items that couldn't be processed.\")\n .optional(),\n undetailedFailures: z\n .number()\n .int()\n .describe(\n 'Number of failures without details because detailed failure threshold was exceeded.'\n )\n .optional(),\n })\n .describe(\n 'Metadata for the overall bulk action, including success and failure counts.'\n )\n .optional(),\n});\nexport const CancelEventRequest = z.object({\n triggerKey: z\n .string()\n .describe(\n 'Trigger key whose event you want to cancel.\\nFor example, `form_submitted` or `invoice_due`.'\n )\n .min(1)\n .max(100),\n externalEntityId: z\n .string()\n .describe(\n 'ID of the related resource in GUID format.\\nFor example, `fc81a355-3429-50fc-a4c7-def486e828f3`.\\n\\nTypically, this ID is defined in your system,\\nbut you can also use any Wix resource GUID,\\nsuch as contact ID, member ID, or invoice ID.\\nSee\\n[Choose the right `externalEntityId`](https://dev.wix.com/docs/rest/business-management/automations/triggered-events/reporting-and-canceling-events#choose-the-right-externalentityid)\\nfor more information.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n});\nexport const CancelEventResponse = z.object({});\nexport const RunAutomationRequest = z.object({\n identifierType: z.enum(['PREINSTALLED', 'AUTOMATION']),\n options: z.intersection(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n ),\n migrationFlow: z\n .boolean()\n .describe(\n 'When true, indicates this is a migration flow and should bypass\\nthe check for future dates that have already passed.'\n )\n .optional(),\n }),\n z.xor([\n z.object({\n automationIdentifier: z.never().optional(),\n preinstalledIdentifier: z\n .object({\n appId: z\n .string()\n .describe(\n 'ID of the app that the preinstalled automation belongs to.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n componentId: z\n .string()\n .describe(\n 'ID of the app component that defines the preinstalled automation.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe(\n 'Identifies a preinstalled automation by its app ID and component ID.'\n ),\n }),\n z.object({\n preinstalledIdentifier: z.never().optional(),\n automationIdentifier: z\n .object({\n automationId: z\n .string()\n .describe('ID of the automation to run.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe('Identifies an automation by its ID.'),\n }),\n ])\n ),\n});\nexport const RunAutomationResponse = z.object({\n activationId: z\n .string()\n .describe('ID of the activation created for this run.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const TestAutomationRequest = z.object({\n identifierType: z.enum(['PREINSTALLED', 'AUTOMATION']),\n options: z.intersection(\n z.object({\n payload: z\n .record(z.string(), z.any())\n .describe(\n 'Event payload, formatted as key:value pairs.\\nMust comply with the payload schema\\nif you provided one when configuring your trigger.\\n\\nKey names can include only alphanumeric characters or underscores\\n(`A-Z`, `a-z`, `0-9`, `_`).\\nThey cannot start with an underscore.\\n\\nValues can be strings, numbers, integers, booleans, or arrays.\\nIf a value is an array, the array items must be objects,\\nand nested object properties must be\\nstrings, numbers, integers, or booleans only.'\n ),\n }),\n z.xor([\n z.object({\n automationIdentifier: z.never().optional(),\n preinstalledIdentifier: z\n .object({\n appId: z\n .string()\n .describe(\n 'ID of the app that the preinstalled automation belongs to.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n componentId: z\n .string()\n .describe(\n 'ID of the app component that defines the preinstalled automation.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe(\n 'Identifies a preinstalled automation by its app ID and component ID.'\n ),\n }),\n z.object({\n preinstalledIdentifier: z.never().optional(),\n automationIdentifier: z\n .object({\n automationId: z\n .string()\n .describe('ID of the automation to run.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional(),\n })\n .describe('Identifies an automation by its ID.'),\n }),\n ])\n ),\n});\nexport const TestAutomationResponse = z.object({\n activationId: z\n .string()\n .describe('ID of the activation created for this test run.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const RerunActivationRequest = z.object({\n activationId: z\n .string()\n .describe(\n 'ID of the activation to rerun. Its original payload and external entity ID are reused.'\n )\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n ),\n options: z\n .object({\n options: z\n .object({\n skipDelays: z\n .boolean()\n .describe(\n \"Whether to skip the automation's delay actions so it runs immediately.\"\n )\n .optional(),\n })\n .describe('Options that control how the activation is rerun.')\n .optional(),\n })\n .optional(),\n});\nexport const RerunActivationResponse = z.object({\n activationId: z\n .string()\n .describe('ID of the new activation created by the rerun.')\n .regex(\n /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n 'Must be a valid GUID'\n )\n .optional()\n .nullable(),\n});\nexport const ReportActionInvocationCompletedRequest = z.object({\n status: z.enum(['UNKNOWN_STATUS', 'SUCCESS', 'FAILURE']),\n invocationToken: z\n .string()\n .describe(\n \"Invocation token from Wix's original call to [Invoke](https://dev.wix.com/docs/api-reference/business-management/automations/actions/action-provider-service-plugin/invoke). Wix uses this token to match your results with the correct automation run.\\n\\nLearn more about [running an invoked action with a timeout](https://dev.wix.com/docs/api-reference/business-management/automations/actions/action-provider-service-plugin/sample-flow#run-an-invoked-action-with-a-timeout).\"\n )\n .max(2048),\n options: z\n .intersection(\n z.object({}),\n z.xor([\n z.object({\n successInfo: z.never().optional(),\n failureInfo: z.never().optional(),\n }),\n z.object({\n failureInfo: z.never().optional(),\n successInfo: z\n .object({\n result: z\n .record(z.string(), z.any())\n .describe(\n \"Your action's results as specified in its [output schema](https://dev.wix.com/docs/api-reference/business-management/automations/actions/about-actions#the-output-schema).\"\n )\n .optional()\n .nullable(),\n })\n .describe(\"When the `status` is `SUCCESS`, your action's results.\"),\n }),\n z.object({\n successInfo: z.never().optional(),\n failureInfo: z\n .object({\n errorDescription: z\n .string()\n .describe('Why the action failed.')\n .max(1000)\n .optional(),\n })\n .describe('When the `status` is `FAILURE`, why the action failed.'),\n }),\n ])\n )\n .optional(),\n});\nexport const ReportActionInvocationCompletedResponse = z.object({});\n"],"mappings":"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","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_automations_activations",
3
- "version": "1.0.135",
3
+ "version": "1.0.136",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -57,5 +57,5 @@
57
57
  "fqdn": "wix.automations.v2.activation"
58
58
  }
59
59
  },
60
- "falconPackageHash": "db51ad7912527c0c0520401a6e91d7fe8638db0de1d3b233e6aba910"
60
+ "falconPackageHash": "93c2a330857d4e3fb6b6bd3fd9c53d1699b820fb16b6833efb533d1f"
61
61
  }