@wix/auto_sdk_bookings_bookings 1.0.54 → 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.
- package/build/cjs/index.d.ts +61 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +95 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +61 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +95 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +61 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +95 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +61 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +95 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1279,15 +1279,21 @@ interface MarkBookingAsPendingRequest {
|
|
|
1279
1279
|
}
|
|
1280
1280
|
interface MarkBookingAsPendingFlowControlSettings {
|
|
1281
1281
|
/**
|
|
1282
|
-
* Whether to check for double
|
|
1282
|
+
* Whether to check for double booking conflicts when updating the status.
|
|
1283
1283
|
*
|
|
1284
|
-
*
|
|
1285
|
-
*
|
|
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
|
|
1290
|
-
*
|
|
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
|
*/
|