@wix/auto_sdk_bookings_bookings 1.0.55 → 1.0.56

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.
@@ -1279,15 +1279,21 @@ interface MarkBookingAsPendingRequest {
1279
1279
  }
1280
1280
  interface MarkBookingAsPendingFlowControlSettings {
1281
1281
  /**
1282
- * Whether to check for double bookings before updating the booking as pending.
1282
+ * Whether to check for double booking conflicts when updating the status.
1283
1283
  *
1284
- * When passing `false`, a booking is only updated with status `PENDING`.
1285
- * Default: `false`.
1284
+ * - `true`: Checks for availability conflicts and sets `doubleBooked` to `true`
1285
+ * if conflicts exist.
1286
+ * The booking is still marked as `PENDING` for the business to resolve manually.
1287
+ * - `false`: No availability checking is performed.
1288
+ *
1289
+ * Default: `false`
1286
1290
  */
1287
1291
  checkAvailabilityValidation?: boolean;
1288
1292
  /**
1289
- * Whether to validate that the booking to be marked as pending has a `booking.slot.serviceId`
1290
- * of a pending approval service.
1293
+ * Whether to allow marking any booking as pending, even if the service doesn't require manual approval.
1294
+ *
1295
+ * - `true`: Bypasses the validation that checks if the service has `service.onlineBooking.requireManualApproval` set to `true`.
1296
+ * - `false`: Only services that require manual approval can have their bookings marked as pending.
1291
1297
  *
1292
1298
  * Default: `false`.
1293
1299
  */