@wix/auto_sdk_bookings_bookings 1.0.120 → 1.0.121
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +17 -17
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +17 -17
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +17 -17
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +17 -17
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +17 -17
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +17 -17
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +17 -17
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +17 -17
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1107,6 +1107,23 @@ declare enum WebhookIdentityType {
|
|
|
1107
1107
|
}
|
|
1108
1108
|
/** @enumType */
|
|
1109
1109
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1110
|
+
interface AccountDetails {
|
|
1111
|
+
/**
|
|
1112
|
+
* ID of the account.
|
|
1113
|
+
* @format GUID
|
|
1114
|
+
*/
|
|
1115
|
+
accountId?: string | null;
|
|
1116
|
+
/**
|
|
1117
|
+
* ID of the parent account.
|
|
1118
|
+
* @format GUID
|
|
1119
|
+
*/
|
|
1120
|
+
parentAccountId?: string | null;
|
|
1121
|
+
/**
|
|
1122
|
+
* ID of the site, if applicable.
|
|
1123
|
+
* @format GUID
|
|
1124
|
+
*/
|
|
1125
|
+
siteId?: string | null;
|
|
1126
|
+
}
|
|
1110
1127
|
interface V2CreateBookingRequest extends V2CreateBookingRequestBookableItemOneOf, V2CreateBookingRequestParticipantsInfoOneOf {
|
|
1111
1128
|
/**
|
|
1112
1129
|
* Information about the slot to create a booking for.
|
|
@@ -2296,23 +2313,6 @@ interface RemoveBookingsFromMultiServiceBookingResponse {
|
|
|
2296
2313
|
/** Single-service bookings that were removed from the multi-service booking. */
|
|
2297
2314
|
bookings?: BookingResult[];
|
|
2298
2315
|
}
|
|
2299
|
-
interface AccountDetails {
|
|
2300
|
-
/**
|
|
2301
|
-
* ID of the account.
|
|
2302
|
-
* @format GUID
|
|
2303
|
-
*/
|
|
2304
|
-
accountId?: string | null;
|
|
2305
|
-
/**
|
|
2306
|
-
* ID of the parent account.
|
|
2307
|
-
* @format GUID
|
|
2308
|
-
*/
|
|
2309
|
-
parentAccountId?: string | null;
|
|
2310
|
-
/**
|
|
2311
|
-
* ID of the site, if applicable.
|
|
2312
|
-
* @format GUID
|
|
2313
|
-
*/
|
|
2314
|
-
siteId?: string | null;
|
|
2315
|
-
}
|
|
2316
2316
|
interface BookingChanged {
|
|
2317
2317
|
/** The booking before the changes. */
|
|
2318
2318
|
previousBooking?: Booking;
|