@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.
@@ -1571,7 +1571,6 @@ interface JobsCreatedEnvelope {
1571
1571
  * @webhook
1572
1572
  * @eventType wix.data.sync.v1.jobs_created
1573
1573
  * @slug created
1574
- * @documentationMaturity preview
1575
1574
  */
1576
1575
  declare function onJobsCreated(handler: (event: JobsCreatedEnvelope) => void | Promise<void>): void;
1577
1576
  interface JobsDeletedEnvelope {
@@ -1583,7 +1582,6 @@ interface JobsDeletedEnvelope {
1583
1582
  * @webhook
1584
1583
  * @eventType wix.data.sync.v1.jobs_deleted
1585
1584
  * @slug deleted
1586
- * @documentationMaturity preview
1587
1585
  */
1588
1586
  declare function onJobsDeleted(handler: (event: JobsDeletedEnvelope) => void | Promise<void>): void;
1589
1587
  interface JobsUpdatedEnvelope {
@@ -1596,7 +1594,6 @@ interface JobsUpdatedEnvelope {
1596
1594
  * @webhook
1597
1595
  * @eventType wix.data.sync.v1.jobs_updated
1598
1596
  * @slug updated
1599
- * @documentationMaturity preview
1600
1597
  */
1601
1598
  declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | Promise<void>): void;
1602
1599
  /**
@@ -1606,7 +1603,6 @@ declare function onJobsUpdated(handler: (event: JobsUpdatedEnvelope) => void | P
1606
1603
  * 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.
1607
1604
  * @param scheduledDataWorkflow - Scheduled data movement workflow to create.
1608
1605
  * @public
1609
- * @documentationMaturity preview
1610
1606
  * @requiredField scheduledDataWorkflow
1611
1607
  * @requiredField scheduledDataWorkflow._id
1612
1608
  * @requiredField scheduledDataWorkflow.workflow
@@ -1633,7 +1629,6 @@ interface CreateScheduledDataWorkflowOptions {
1633
1629
  * Only applies to `enabled` scheduled data workflows.
1634
1630
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to reschedule.
1635
1631
  * @public
1636
- * @documentationMaturity preview
1637
1632
  * @requiredField scheduledDataWorkflowId
1638
1633
  * @permissionId data:sync:v1:jobs:reschedule_scheduled_data_workflow
1639
1634
  * @fqn wix.hub.v1.DataMovementSchedulerService.RescheduleScheduledDataWorkflow
@@ -1654,7 +1649,6 @@ interface RescheduleScheduledDataWorkflowOptions {
1654
1649
  * TimeCapsule runs.
1655
1650
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to run immediately.
1656
1651
  * @public
1657
- * @documentationMaturity preview
1658
1652
  * @requiredField scheduledDataWorkflowId
1659
1653
  * @permissionId data:sync:v1:jobs:trigger_scheduled_data_workflow_now
1660
1654
  * @fqn wix.hub.v1.DataMovementSchedulerService.TriggerScheduledDataWorkflowNow
@@ -1664,7 +1658,6 @@ declare function triggerScheduledDataWorkflowNow(scheduledDataWorkflowId: string
1664
1658
  * Updates an existing scheduled data workflow.
1665
1659
  * @param scheduledDataWorkflow - Scheduled data movement workflow information to update.
1666
1660
  * @public
1667
- * @documentationMaturity preview
1668
1661
  * @requiredField scheduledDataWorkflow
1669
1662
  * @requiredField scheduledDataWorkflow.workflow
1670
1663
  * @requiredField scheduledDataWorkflow.workflow.steps
@@ -1686,7 +1679,6 @@ interface UpdateScheduledDataWorkflowOptions {
1686
1679
  * This permanently removes the schedule and prevents future executions. Any currently running data workflows triggered by the schedule continue to completion.
1687
1680
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to delete.
1688
1681
  * @public
1689
- * @documentationMaturity preview
1690
1682
  * @requiredField scheduledDataWorkflowId
1691
1683
  * @permissionId data:sync:v1:jobs:delete_scheduled_data_workflow
1692
1684
  * @fqn wix.hub.v1.DataMovementSchedulerService.DeleteScheduledDataWorkflow
@@ -1696,7 +1688,6 @@ declare function deleteScheduledDataWorkflow(scheduledDataWorkflowId: string): P
1696
1688
  * Retrieves a scheduled data workflow by ID.
1697
1689
  * @param scheduledDataWorkflowId - ID of the scheduled data movement workflow to retrieve.
1698
1690
  * @public
1699
- * @documentationMaturity preview
1700
1691
  * @requiredField scheduledDataWorkflowId
1701
1692
  * @permissionId data:sync:v1:jobs:get_scheduled_data_workflow
1702
1693
  * @returns Retrieved scheduled data movement workflow.
@@ -1715,7 +1706,6 @@ interface GetScheduledDataWorkflowOptions {
1715
1706
  *
1716
1707
  * 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.
1717
1708
  * @public
1718
- * @documentationMaturity preview
1719
1709
  * @permissionId data:sync:v1:jobs:list_scheduled_data_workflows
1720
1710
  * @fqn wix.hub.v1.DataMovementSchedulerService.ListScheduledDataWorkflows
1721
1711
  */