@wix/auto_sdk_bookings_bookings 1.0.116 → 1.0.118
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 +2 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +7 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +2 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1656,6 +1656,7 @@ interface RescheduleBookingFlowControlSettings {
|
|
|
1656
1656
|
*
|
|
1657
1657
|
* When passing `false`, you can only cancel a booking if the rescheduling
|
|
1658
1658
|
* policy allows it.
|
|
1659
|
+
* When passing `true`, external validation providers are also skipped.
|
|
1659
1660
|
* Default: `false`.
|
|
1660
1661
|
*/
|
|
1661
1662
|
ignoreReschedulePolicy?: boolean;
|
|
@@ -2358,18 +2359,16 @@ interface LegacyCreateBookingResponse {
|
|
|
2358
2359
|
*/
|
|
2359
2360
|
interface BulkUpdateBookingRequest {
|
|
2360
2361
|
bookings?: MaskedBooking[];
|
|
2362
|
+
/** Whether to return the updated bookings. */
|
|
2363
|
+
returnFullEntity?: boolean;
|
|
2361
2364
|
}
|
|
2362
2365
|
interface MaskedBooking {
|
|
2363
2366
|
booking?: Booking;
|
|
2364
2367
|
mask?: string[];
|
|
2365
2368
|
}
|
|
2366
2369
|
interface BulkUpdateBookingResponse {
|
|
2367
|
-
/**
|
|
2368
|
-
|
|
2369
|
-
* Including its ID, index in the bulk request and whether it was
|
|
2370
|
-
* successfully updated.
|
|
2371
|
-
*/
|
|
2372
|
-
results?: ItemMetadata[];
|
|
2370
|
+
/** List of individual Bulk Update Bookings results. */
|
|
2371
|
+
results?: BulkBookingResult[];
|
|
2373
2372
|
/** Total number of successes and failures for Bulk Update Bookings. */
|
|
2374
2373
|
bulkActionMetadata?: BulkActionMetadata;
|
|
2375
2374
|
}
|
|
@@ -4804,7 +4803,8 @@ interface BulkCreateBookingOptions {
|
|
|
4804
4803
|
* `flowControlSettings`:
|
|
4805
4804
|
*
|
|
4806
4805
|
* - `{"ignoreReschedulePolicy": true}`: The call succeeds even if the
|
|
4807
|
-
* service's `reschedulePolicy` doesn't allow it.
|
|
4806
|
+
* service's `reschedulePolicy` doesn't allow it. Also skips
|
|
4807
|
+
* external validation providers.
|
|
4808
4808
|
* - `{"skipAvailabilityValidation": true}`: The call succeeds even if
|
|
4809
4809
|
* the specified session, slot, or resource isn't available. If you don't
|
|
4810
4810
|
* specify any resource, the call succeeds even if no resource of the relevant
|