@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.
@@ -1110,6 +1110,23 @@ declare enum WebhookIdentityType {
1110
1110
  }
1111
1111
  /** @enumType */
1112
1112
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1113
+ interface AccountDetails {
1114
+ /**
1115
+ * ID of the account.
1116
+ * @format GUID
1117
+ */
1118
+ accountId?: string | null;
1119
+ /**
1120
+ * ID of the parent account.
1121
+ * @format GUID
1122
+ */
1123
+ parentAccountId?: string | null;
1124
+ /**
1125
+ * ID of the site, if applicable.
1126
+ * @format GUID
1127
+ */
1128
+ siteId?: string | null;
1129
+ }
1113
1130
  interface V2CreateBookingRequest extends V2CreateBookingRequestBookableItemOneOf, V2CreateBookingRequestParticipantsInfoOneOf {
1114
1131
  /**
1115
1132
  * Information about the slot to create a booking for.
@@ -2299,23 +2316,6 @@ interface RemoveBookingsFromMultiServiceBookingResponse {
2299
2316
  /** Single-service bookings that were removed from the multi-service booking. */
2300
2317
  bookings?: BookingResult[];
2301
2318
  }
2302
- interface AccountDetails {
2303
- /**
2304
- * ID of the account.
2305
- * @format GUID
2306
- */
2307
- accountId?: string | null;
2308
- /**
2309
- * ID of the parent account.
2310
- * @format GUID
2311
- */
2312
- parentAccountId?: string | null;
2313
- /**
2314
- * ID of the site, if applicable.
2315
- * @format GUID
2316
- */
2317
- siteId?: string | null;
2318
- }
2319
2319
  interface BookingChanged {
2320
2320
  /** The booking before the changes. */
2321
2321
  previousBooking?: Booking;