@wix/auto_sdk_bookings_booking-policies 1.0.93 → 1.0.94
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +20 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +20 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +20 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +20 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +20 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +20 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1594,6 +1594,16 @@ type CreateBookingPolicyValidationErrors = {
|
|
|
1594
1594
|
ruleName?: 'INVALID_CANCELLATION_WINDOWS_ORDER';
|
|
1595
1595
|
} | {
|
|
1596
1596
|
ruleName?: 'EMPTY_CANCELLATION_WINDOWS_LIST';
|
|
1597
|
+
} | {
|
|
1598
|
+
ruleName?: 'INTAKE_FORM_ID_REQUIRED';
|
|
1599
|
+
} | {
|
|
1600
|
+
ruleName?: 'INTAKE_FORM_NOT_FOUND';
|
|
1601
|
+
} | {
|
|
1602
|
+
ruleName?: 'INTAKE_FORM_ARCHIVED';
|
|
1603
|
+
} | {
|
|
1604
|
+
ruleName?: 'INTAKE_FORM_APP_NOT_INSTALLED';
|
|
1605
|
+
} | {
|
|
1606
|
+
ruleName?: 'INVALID_COMPLETION_REQUIREMENT_FOR_TIMING';
|
|
1597
1607
|
};
|
|
1598
1608
|
/** @docsIgnore */
|
|
1599
1609
|
type UpdateBookingPolicyValidationErrors = {
|
|
@@ -1608,6 +1618,16 @@ type UpdateBookingPolicyValidationErrors = {
|
|
|
1608
1618
|
ruleName?: 'INVALID_CANCELLATION_WINDOWS_ORDER';
|
|
1609
1619
|
} | {
|
|
1610
1620
|
ruleName?: 'EMPTY_CANCELLATION_WINDOWS_LIST';
|
|
1621
|
+
} | {
|
|
1622
|
+
ruleName?: 'INTAKE_FORM_ID_REQUIRED';
|
|
1623
|
+
} | {
|
|
1624
|
+
ruleName?: 'INTAKE_FORM_NOT_FOUND';
|
|
1625
|
+
} | {
|
|
1626
|
+
ruleName?: 'INTAKE_FORM_ARCHIVED';
|
|
1627
|
+
} | {
|
|
1628
|
+
ruleName?: 'INTAKE_FORM_APP_NOT_INSTALLED';
|
|
1629
|
+
} | {
|
|
1630
|
+
ruleName?: 'INVALID_COMPLETION_REQUIREMENT_FOR_TIMING';
|
|
1611
1631
|
};
|
|
1612
1632
|
/** @docsIgnore */
|
|
1613
1633
|
type DeleteBookingPolicyApplicationErrors = {
|