@wix/auto_sdk_data_scheduled-workflows 1.0.3 → 1.0.4

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.
@@ -1582,7 +1582,6 @@ interface JobsCreatedEnvelope {
1582
1582
  * @webhook
1583
1583
  * @eventType wix.data.sync.v1.jobs_created
1584
1584
  * @slug created
1585
- * @documentationMaturity preview
1586
1585
  */
1587
1586
  declare function onJobsCreated(handler: (event: JobsCreatedEnvelope) => void | Promise<void>): void;
1588
1587
  interface JobsDeletedEnvelope {
@@ -1594,7 +1593,6 @@ interface JobsDeletedEnvelope {
1594
1593
  * @webhook
1595
1594
  * @eventType wix.data.sync.v1.jobs_deleted
1596
1595
  * @slug deleted
1597
- * @documentationMaturity preview
1598
1596
  */
1599
1597
  declare function onJobsDeleted(handler: (event: JobsDeletedEnvelope) => void | Promise<void>): void;
1600
1598
  interface JobsUpdatedEnvelope {
@@ -1607,7 +1605,6 @@ interface JobsUpdatedEnvelope {
1607
1605
  * @webhook
1608
1606
  * @eventType wix.data.sync.v1.jobs_updated
1609
1607
  * @slug updated
1610
- * @documentationMaturity preview
1611
1608
  */
1612
1609
  declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | Promise<void>): void;
1613
1610
  /**
@@ -1617,7 +1614,6 @@ declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | P
1617
1614
  * Each execution creates a new [data workflow](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction) with its `scheduleId` set to this scheduled data workflow's ID.
1618
1615
  * @param scheduledDataWorkflow - Scheduled data movement workflow to create.
1619
1616
  * @public
1620
- * @documentationMaturity preview
1621
1617
  * @requiredField scheduledDataWorkflow
1622
1618
  * @requiredField scheduledDataWorkflow._id
1623
1619
  * @requiredField scheduledDataWorkflow.workflow
@@ -1644,7 +1640,6 @@ interface CreateScheduledDataWorkflowOptions {
1644
1640
  * Only applies to `enabled` scheduled data workflows.
1645
1641
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to reschedule.
1646
1642
  * @public
1647
- * @documentationMaturity preview
1648
1643
  * @requiredField scheduledDataWorkflowId
1649
1644
  * @permissionId data:sync:v1:jobs:reschedule_scheduled_data_workflow
1650
1645
  * @fqn wix.hub.v1.DataMovementSchedulerService.RescheduleScheduledDataWorkflow
@@ -1665,7 +1660,6 @@ interface RescheduleScheduledDataWorkflowOptions {
1665
1660
  * TimeCapsule runs.
1666
1661
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to run immediately.
1667
1662
  * @public
1668
- * @documentationMaturity preview
1669
1663
  * @requiredField scheduledDataWorkflowId
1670
1664
  * @permissionId data:sync:v1:jobs:trigger_scheduled_data_workflow_now
1671
1665
  * @fqn wix.hub.v1.DataMovementSchedulerService.TriggerScheduledDataWorkflowNow
@@ -1675,7 +1669,6 @@ declare function triggerScheduledDataWorkflowNow(scheduledDataWorkflowId: string
1675
1669
  * Updates an existing scheduled data workflow.
1676
1670
  * @param scheduledDataWorkflow - Scheduled data movement workflow information to update.
1677
1671
  * @public
1678
- * @documentationMaturity preview
1679
1672
  * @requiredField scheduledDataWorkflow
1680
1673
  * @requiredField scheduledDataWorkflow.workflow
1681
1674
  * @requiredField scheduledDataWorkflow.workflow.steps
@@ -1697,7 +1690,6 @@ interface UpdateScheduledDataWorkflowOptions {
1697
1690
  * This permanently removes the schedule and prevents future executions. Any currently running data workflows triggered by the schedule continue to completion.
1698
1691
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to delete.
1699
1692
  * @public
1700
- * @documentationMaturity preview
1701
1693
  * @requiredField scheduledDataWorkflowId
1702
1694
  * @permissionId data:sync:v1:jobs:delete_scheduled_data_workflow
1703
1695
  * @fqn wix.hub.v1.DataMovementSchedulerService.DeleteScheduledDataWorkflow
@@ -1707,7 +1699,6 @@ declare function deleteScheduledDataWorkflow(scheduledDataWorkflowId: string): P
1707
1699
  * Retrieves a scheduled data workflow by ID.
1708
1700
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to retrieve.
1709
1701
  * @public
1710
- * @documentationMaturity preview
1711
1702
  * @requiredField scheduledDataWorkflowId
1712
1703
  * @permissionId data:sync:v1:jobs:get_scheduled_data_workflow
1713
1704
  * @returns Retrieved scheduled data movement workflow.
@@ -1726,7 +1717,6 @@ interface GetScheduledDataWorkflowOptions {
1726
1717
  *
1727
1718
  * The current implementation returns both enabled and disabled schedules. Request `paging` and `filter` fields are accepted for forward compatibility but are not applied by the service.
1728
1719
  * @public
1729
- * @documentationMaturity preview
1730
1720
  * @permissionId data:sync:v1:jobs:list_scheduled_data_workflows
1731
1721
  * @fqn wix.hub.v1.DataMovementSchedulerService.ListScheduledDataWorkflows
1732
1722
  */