@wix/auto_sdk_bookings_bookings 1.0.117 → 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.
@@ -2359,18 +2359,16 @@ interface LegacyCreateBookingResponse {
2359
2359
  */
2360
2360
  interface BulkUpdateBookingRequest {
2361
2361
  bookings?: MaskedBooking[];
2362
+ /** Whether to return the updated bookings. */
2363
+ returnFullEntity?: boolean;
2362
2364
  }
2363
2365
  interface MaskedBooking {
2364
2366
  booking?: Booking;
2365
2367
  mask?: string[];
2366
2368
  }
2367
2369
  interface BulkUpdateBookingResponse {
2368
- /**
2369
- * Information about the booking that was updated.
2370
- * Including its ID, index in the bulk request and whether it was
2371
- * successfully updated.
2372
- */
2373
- results?: ItemMetadata[];
2370
+ /** List of individual Bulk Update Bookings results. */
2371
+ results?: BulkBookingResult[];
2374
2372
  /** Total number of successes and failures for Bulk Update Bookings. */
2375
2373
  bulkActionMetadata?: BulkActionMetadata;
2376
2374
  }