@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.
@@ -1659,6 +1659,7 @@ interface RescheduleBookingFlowControlSettings {
1659
1659
  *
1660
1660
  * When passing `false`, you can only cancel a booking if the rescheduling
1661
1661
  * policy allows it.
1662
+ * When passing `true`, external validation providers are also skipped.
1662
1663
  * Default: `false`.
1663
1664
  */
1664
1665
  ignoreReschedulePolicy?: boolean;
@@ -2361,18 +2362,16 @@ interface LegacyCreateBookingResponse {
2361
2362
  */
2362
2363
  interface BulkUpdateBookingRequest {
2363
2364
  bookings?: MaskedBooking[];
2365
+ /** Whether to return the updated bookings. */
2366
+ returnFullEntity?: boolean;
2364
2367
  }
2365
2368
  interface MaskedBooking {
2366
2369
  booking?: Booking;
2367
2370
  mask?: string[];
2368
2371
  }
2369
2372
  interface BulkUpdateBookingResponse {
2370
- /**
2371
- * Information about the booking that was updated.
2372
- * Including its ID, index in the bulk request and whether it was
2373
- * successfully updated.
2374
- */
2375
- results?: ItemMetadata[];
2373
+ /** List of individual Bulk Update Bookings results. */
2374
+ results?: BulkBookingResult[];
2376
2375
  /** Total number of successes and failures for Bulk Update Bookings. */
2377
2376
  bulkActionMetadata?: BulkActionMetadata;
2378
2377
  }