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