@wix/auto_sdk_table-reservations_reservations 1.0.69 → 1.0.71
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 +2 -2
- package/build/cjs/index.js +22 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -3
- package/build/cjs/index.typings.js +22 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +129 -2
- package/build/cjs/meta.js +22 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-reservation-reservations.universal-DC9REvXb.d.ts → table-reservations-v1-reservation-reservations.universal-BIOtx_qX.d.ts} +132 -35
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +19 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -3
- package/build/es/index.typings.mjs +19 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +129 -2
- package/build/es/meta.mjs +19 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-reservation-reservations.universal-DC9REvXb.d.mts → table-reservations-v1-reservation-reservations.universal-BIOtx_qX.d.mts} +132 -35
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +22 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -3
- package/build/internal/cjs/index.typings.js +22 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +129 -2
- package/build/internal/cjs/meta.js +22 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-reservation-reservations.universal-DC9REvXb.d.ts → table-reservations-v1-reservation-reservations.universal-BIOtx_qX.d.ts} +132 -35
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +19 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -3
- package/build/internal/es/index.typings.mjs +19 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +129 -2
- package/build/internal/es/meta.mjs +19 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-reservation-reservations.universal-DC9REvXb.d.mts → table-reservations-v1-reservation-reservations.universal-BIOtx_qX.d.mts} +132 -35
- package/package.json +2 -2
|
@@ -267,6 +267,133 @@ interface ExtendedFields {
|
|
|
267
267
|
*/
|
|
268
268
|
namespaces?: Record<string, Record<string, any>>;
|
|
269
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* Cancellation policy configuration for a reservation location.
|
|
272
|
+
*
|
|
273
|
+
* Defines the payment method and fee terms applied to reservations. When a reservation is created,
|
|
274
|
+
* the current policy is copied onto the reservation. Changes to the location's policy do not affect
|
|
275
|
+
* existing reservations.
|
|
276
|
+
*/
|
|
277
|
+
interface CancellationPolicy {
|
|
278
|
+
/** Payment method for this policy. */
|
|
279
|
+
paymentMethod?: PaymentMethodWithLiterals;
|
|
280
|
+
/** Prepayment terms. Only populated when `payment_method` is `PREPAYMENT`. */
|
|
281
|
+
prepayment?: Prepayment;
|
|
282
|
+
/** Cancellation and no-show fee terms. Only populated when `payment_method` is `CARD_GUARANTEE`. */
|
|
283
|
+
cancellationFee?: CancellationFee;
|
|
284
|
+
/** Guest-facing policy text or URL shown to the guest before they confirm their reservation. */
|
|
285
|
+
guestPolicy?: GuestPolicy;
|
|
286
|
+
}
|
|
287
|
+
declare enum FeeUnit {
|
|
288
|
+
/** Amount is calculated for each guest in the reservation. */
|
|
289
|
+
PER_GUEST = "PER_GUEST",
|
|
290
|
+
/** Amount is calculated once for the reservation. */
|
|
291
|
+
PER_RESERVATION = "PER_RESERVATION"
|
|
292
|
+
}
|
|
293
|
+
/** @enumType */
|
|
294
|
+
type FeeUnitWithLiterals = FeeUnit | 'PER_GUEST' | 'PER_RESERVATION';
|
|
295
|
+
/** Free-cancellation window before the reservation start time. */
|
|
296
|
+
interface FreeCancellationWindow {
|
|
297
|
+
/**
|
|
298
|
+
* Duration of the window expressed in the chosen `unit`. The normalized window must be between 1 hour and 180 days.
|
|
299
|
+
* @min 1
|
|
300
|
+
* @max 4320
|
|
301
|
+
*/
|
|
302
|
+
value?: number;
|
|
303
|
+
/** Time unit for the window duration. */
|
|
304
|
+
unit?: WindowUnitWithLiterals;
|
|
305
|
+
}
|
|
306
|
+
declare enum WindowUnit {
|
|
307
|
+
/** Window is measured in hours. */
|
|
308
|
+
HOURS = "HOURS",
|
|
309
|
+
/** Window is measured in days. */
|
|
310
|
+
DAYS = "DAYS"
|
|
311
|
+
}
|
|
312
|
+
/** @enumType */
|
|
313
|
+
type WindowUnitWithLiterals = WindowUnit | 'HOURS' | 'DAYS';
|
|
314
|
+
declare enum PaymentMethod {
|
|
315
|
+
/** Payment protection and cancellation fees are disabled for new reservations. */
|
|
316
|
+
NO_PAYMENT_METHOD = "NO_PAYMENT_METHOD",
|
|
317
|
+
/** Guest pays before the reservation becomes confirmed. */
|
|
318
|
+
PREPAYMENT = "PREPAYMENT",
|
|
319
|
+
/** Guest provides a payment method that may be charged after late cancellation or no-show. */
|
|
320
|
+
CARD_GUARANTEE = "CARD_GUARANTEE"
|
|
321
|
+
}
|
|
322
|
+
/** @enumType */
|
|
323
|
+
type PaymentMethodWithLiterals = PaymentMethod | 'NO_PAYMENT_METHOD' | 'PREPAYMENT' | 'CARD_GUARANTEE';
|
|
324
|
+
/** Prepayment calculation terms. */
|
|
325
|
+
interface Prepayment {
|
|
326
|
+
/**
|
|
327
|
+
* Monetary amount to collect per unit. Must be a decimal string with a period as a decimal separator. For example, `"3.99"`.
|
|
328
|
+
* @decimalValue options { gt:0.000, maxScale:3 }
|
|
329
|
+
*/
|
|
330
|
+
amount?: string;
|
|
331
|
+
/** Unit used to calculate the total prepayment amount. */
|
|
332
|
+
unit?: FeeUnitWithLiterals;
|
|
333
|
+
/**
|
|
334
|
+
* Minimum party size required for prepayment to apply.
|
|
335
|
+
* @min 1
|
|
336
|
+
* @max 1000
|
|
337
|
+
*/
|
|
338
|
+
minPartySize?: number;
|
|
339
|
+
}
|
|
340
|
+
/** Cancellation and no-show fee calculation terms. */
|
|
341
|
+
interface CancellationFee {
|
|
342
|
+
/**
|
|
343
|
+
* Monetary amount to charge or retain per unit. Must be a decimal string with a period as a decimal separator. For example, `"3.99"`.
|
|
344
|
+
* @decimalValue options { gt:0.000, maxScale:3 }
|
|
345
|
+
*/
|
|
346
|
+
amount?: string;
|
|
347
|
+
/** Unit used to calculate the total fee amount. */
|
|
348
|
+
unit?: FeeUnitWithLiterals;
|
|
349
|
+
/**
|
|
350
|
+
* Minimum party size required for the fee to apply.
|
|
351
|
+
* @min 1
|
|
352
|
+
* @max 1000
|
|
353
|
+
*/
|
|
354
|
+
minPartySize?: number;
|
|
355
|
+
/**
|
|
356
|
+
* Period before the reservation start time during which cancellation is free.
|
|
357
|
+
* When absent, all cancellations incur the fee.
|
|
358
|
+
*/
|
|
359
|
+
freeCancellationWindow?: FreeCancellationWindow;
|
|
360
|
+
}
|
|
361
|
+
/** Guest-facing policy disclosure. */
|
|
362
|
+
interface GuestPolicy extends GuestPolicyValueOneOf {
|
|
363
|
+
/**
|
|
364
|
+
* Exact policy text shown to the guest.
|
|
365
|
+
* @maxLength 1000000
|
|
366
|
+
*/
|
|
367
|
+
text?: string | null;
|
|
368
|
+
/**
|
|
369
|
+
* Exact policy URL shown to the guest. The content behind the URL is not archived by Wix.
|
|
370
|
+
* @maxLength 2048
|
|
371
|
+
*/
|
|
372
|
+
url?: string | null;
|
|
373
|
+
/** Whether this policy text was generated by an AI assistant and accepted by the restaurant owner. */
|
|
374
|
+
generated?: boolean;
|
|
375
|
+
}
|
|
376
|
+
/** @oneof */
|
|
377
|
+
interface GuestPolicyValueOneOf {
|
|
378
|
+
/**
|
|
379
|
+
* Exact policy text shown to the guest.
|
|
380
|
+
* @maxLength 1000000
|
|
381
|
+
*/
|
|
382
|
+
text?: string | null;
|
|
383
|
+
/**
|
|
384
|
+
* Exact policy URL shown to the guest. The content behind the URL is not archived by Wix.
|
|
385
|
+
* @maxLength 2048
|
|
386
|
+
*/
|
|
387
|
+
url?: string | null;
|
|
388
|
+
}
|
|
389
|
+
/** Compact cancellation or no-show fee action state for a reservation. */
|
|
390
|
+
interface CancellationFeeState {
|
|
391
|
+
/**
|
|
392
|
+
* Whether an applicable fee should currently be offered to the owner.
|
|
393
|
+
* @readonly
|
|
394
|
+
*/
|
|
395
|
+
required?: boolean | null;
|
|
396
|
+
}
|
|
270
397
|
interface ReservationDelayedDomainEvent extends ReservationDelayedDomainEventBodyTypeOneOf {
|
|
271
398
|
/** Body of a created reservation event. */
|
|
272
399
|
reservationCreated?: ReservationCreated;
|
|
@@ -1725,7 +1852,6 @@ interface ReservationCreatedEnvelope {
|
|
|
1725
1852
|
* @eventType wix.table_reservations.v1.reservation_created
|
|
1726
1853
|
* @serviceIdentifier wix.table_reservations.reservation.v1.ReservationsService
|
|
1727
1854
|
* @slug created
|
|
1728
|
-
* @documentationMaturity preview
|
|
1729
1855
|
*/
|
|
1730
1856
|
declare function onReservationCreated(handler: (event: ReservationCreatedEnvelope) => void | Promise<void>): void;
|
|
1731
1857
|
interface ReservationDeletedEnvelope {
|
|
@@ -1744,7 +1870,6 @@ interface ReservationDeletedEnvelope {
|
|
|
1744
1870
|
* @eventType wix.table_reservations.v1.reservation_deleted
|
|
1745
1871
|
* @serviceIdentifier wix.table_reservations.reservation.v1.ReservationsService
|
|
1746
1872
|
* @slug deleted
|
|
1747
|
-
* @documentationMaturity preview
|
|
1748
1873
|
*/
|
|
1749
1874
|
declare function onReservationDeleted(handler: (event: ReservationDeletedEnvelope) => void | Promise<void>): void;
|
|
1750
1875
|
interface ReservationUpdatedEnvelope {
|
|
@@ -1766,7 +1891,6 @@ interface ReservationUpdatedEnvelope {
|
|
|
1766
1891
|
* @eventType wix.table_reservations.v1.reservation_updated
|
|
1767
1892
|
* @serviceIdentifier wix.table_reservations.reservation.v1.ReservationsService
|
|
1768
1893
|
* @slug updated
|
|
1769
|
-
* @documentationMaturity preview
|
|
1770
1894
|
*/
|
|
1771
1895
|
declare function onReservationUpdated(handler: (event: ReservationUpdatedEnvelope) => void | Promise<void>): void;
|
|
1772
1896
|
/**
|
|
@@ -1793,7 +1917,6 @@ declare function onReservationUpdated(handler: (event: ReservationUpdatedEnvelop
|
|
|
1793
1917
|
* > **Note:** `createReservation()` requires all details of the reservation upfront. The process of creating a reservation can be broken up using `createHeldReservation`. `createHeldReservation` creates a temporary reservation that expires automatically unless it is completed with the addition of more details using `reserveReservation()`.
|
|
1794
1918
|
* @param reservation - Reservation details.
|
|
1795
1919
|
* @public
|
|
1796
|
-
* @documentationMaturity preview
|
|
1797
1920
|
* @requiredField reservation
|
|
1798
1921
|
* @requiredField reservation.details
|
|
1799
1922
|
* @requiredField reservation.details.partySize
|
|
@@ -1853,7 +1976,6 @@ interface CreateReservationOptions {
|
|
|
1853
1976
|
* Calling this method with `fieldsets` set to `FULL` requires additional permissions. See this API's Introduction article for more information.
|
|
1854
1977
|
* @param reservationId - Reservation ID.
|
|
1855
1978
|
* @public
|
|
1856
|
-
* @documentationMaturity preview
|
|
1857
1979
|
* @requiredField reservationId
|
|
1858
1980
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_READ
|
|
1859
1981
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_READ_FULL
|
|
@@ -1895,7 +2017,6 @@ interface GetReservationOptions {
|
|
|
1895
2017
|
* Each time the reservation is updated, revision increments by 1. The existing revision must be included when updating the reservation. This ensures you're working with the latest reservation information, and it prevents unintended overwrites.
|
|
1896
2018
|
* @param _id - Reservation ID.
|
|
1897
2019
|
* @public
|
|
1898
|
-
* @documentationMaturity preview
|
|
1899
2020
|
* @requiredField _id
|
|
1900
2021
|
* @requiredField reservation
|
|
1901
2022
|
* @requiredField reservation.revision
|
|
@@ -2033,7 +2154,6 @@ interface UpdateReservationOptions {
|
|
|
2033
2154
|
*
|
|
2034
2155
|
* @param reservationDetails - Held reservation information to update.
|
|
2035
2156
|
* @public
|
|
2036
|
-
* @documentationMaturity preview
|
|
2037
2157
|
* @requiredField reservationDetails
|
|
2038
2158
|
* @requiredField reservationDetails.partySize
|
|
2039
2159
|
* @requiredField reservationDetails.reservationLocationId
|
|
@@ -2061,7 +2181,6 @@ declare function createHeldReservation(reservationDetails: NonNullablePaths<Held
|
|
|
2061
2181
|
*
|
|
2062
2182
|
* Specify the existing `revision` to prevent conflicting updates to reservations.
|
|
2063
2183
|
* @public
|
|
2064
|
-
* @documentationMaturity preview
|
|
2065
2184
|
* @requiredField reservationId
|
|
2066
2185
|
* @requiredField reservee
|
|
2067
2186
|
* @requiredField reservee.firstName
|
|
@@ -2083,7 +2202,6 @@ declare function reserveReservation(reservationId: string, reservee: NonNullable
|
|
|
2083
2202
|
*
|
|
2084
2203
|
* Specify the existing `revision` to prevent conflicting updates to reservations.
|
|
2085
2204
|
* @public
|
|
2086
|
-
* @documentationMaturity preview
|
|
2087
2205
|
* @requiredField reservationId
|
|
2088
2206
|
* @requiredField revision
|
|
2089
2207
|
* @param options - Options for canceling the reservation.
|
|
@@ -2107,7 +2225,6 @@ interface CancelReservationOptions {
|
|
|
2107
2225
|
* Deletes a reservation. Only reservations with the `HELD` status can be deleted.
|
|
2108
2226
|
* @param reservationId - Reservation ID.
|
|
2109
2227
|
* @public
|
|
2110
|
-
* @documentationMaturity preview
|
|
2111
2228
|
* @requiredField reservationId
|
|
2112
2229
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_DELETE
|
|
2113
2230
|
* @applicableIdentity APP
|
|
@@ -2117,7 +2234,6 @@ declare function deleteReservation(reservationId: string): Promise<void>;
|
|
|
2117
2234
|
/**
|
|
2118
2235
|
* Retrieves a list of up to 100 reservations.
|
|
2119
2236
|
* @public
|
|
2120
|
-
* @documentationMaturity preview
|
|
2121
2237
|
* @param options - Options for listing the reservations.
|
|
2122
2238
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_READ_FULL
|
|
2123
2239
|
* @applicableIdentity APP
|
|
@@ -2329,7 +2445,6 @@ declare const utils: {
|
|
|
2329
2445
|
*
|
|
2330
2446
|
* The following `ReservationsQueryBuilder` functions are supported for `queryReservations()`. For a full description of the reservation object, see the object returned for the [`items`](/reservations/reservations-query-result/items) property in [`ReservationsQueryResult`](/reservations/reservations-query-result).
|
|
2331
2447
|
* @public
|
|
2332
|
-
* @documentationMaturity preview
|
|
2333
2448
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_READ_FULL
|
|
2334
2449
|
* @applicableIdentity APP
|
|
2335
2450
|
* @fqn wix.table_reservations.reservation.v1.ReservationsService.QueryReservations
|
|
@@ -2351,53 +2466,37 @@ interface ReservationsQueryResult extends QueryCursorResult {
|
|
|
2351
2466
|
interface ReservationsQueryBuilder {
|
|
2352
2467
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2353
2468
|
* @param value - Value to compare against.
|
|
2354
|
-
* @documentationMaturity preview
|
|
2355
2469
|
*/
|
|
2356
2470
|
eq: (propertyName: '_id' | 'status' | 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2357
2471
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2358
2472
|
* @param value - Value to compare against.
|
|
2359
|
-
* @documentationMaturity preview
|
|
2360
2473
|
*/
|
|
2361
2474
|
ne: (propertyName: '_id' | 'status' | 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2362
2475
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2363
2476
|
* @param value - Value to compare against.
|
|
2364
|
-
* @documentationMaturity preview
|
|
2365
2477
|
*/
|
|
2366
2478
|
ge: (propertyName: 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2367
2479
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2368
2480
|
* @param value - Value to compare against.
|
|
2369
|
-
* @documentationMaturity preview
|
|
2370
2481
|
*/
|
|
2371
2482
|
gt: (propertyName: 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2372
2483
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2373
2484
|
* @param value - Value to compare against.
|
|
2374
|
-
* @documentationMaturity preview
|
|
2375
2485
|
*/
|
|
2376
2486
|
le: (propertyName: 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2377
2487
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2378
2488
|
* @param value - Value to compare against.
|
|
2379
|
-
* @documentationMaturity preview
|
|
2380
2489
|
*/
|
|
2381
2490
|
lt: (propertyName: 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2382
|
-
/** @documentationMaturity preview */
|
|
2383
2491
|
in: (propertyName: '_id' | 'status' | 'details.startDate', value: any) => ReservationsQueryBuilder;
|
|
2384
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2385
|
-
* @documentationMaturity preview
|
|
2386
|
-
*/
|
|
2492
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2387
2493
|
ascending: (...propertyNames: Array<'details.startDate'>) => ReservationsQueryBuilder;
|
|
2388
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2389
|
-
* @documentationMaturity preview
|
|
2390
|
-
*/
|
|
2494
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2391
2495
|
descending: (...propertyNames: Array<'details.startDate'>) => ReservationsQueryBuilder;
|
|
2392
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
2393
|
-
* @documentationMaturity preview
|
|
2394
|
-
*/
|
|
2496
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
2395
2497
|
limit: (limit: number) => ReservationsQueryBuilder;
|
|
2396
|
-
/** @param cursor - A pointer to specific record
|
|
2397
|
-
* @documentationMaturity preview
|
|
2398
|
-
*/
|
|
2498
|
+
/** @param cursor - A pointer to specific record */
|
|
2399
2499
|
skipTo: (cursor: string) => ReservationsQueryBuilder;
|
|
2400
|
-
/** @documentationMaturity preview */
|
|
2401
2500
|
find: () => Promise<ReservationsQueryResult>;
|
|
2402
2501
|
}
|
|
2403
2502
|
/**
|
|
@@ -2475,7 +2574,6 @@ type ReservationQuery = {
|
|
|
2475
2574
|
* Archived reservations can't be updated with Update Reservation.
|
|
2476
2575
|
* @param reservationIds - IDs of reservations to archive.
|
|
2477
2576
|
* @public
|
|
2478
|
-
* @documentationMaturity preview
|
|
2479
2577
|
* @requiredField reservationIds
|
|
2480
2578
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_ARCHIVE
|
|
2481
2579
|
* @applicableIdentity APP
|
|
@@ -2486,7 +2584,6 @@ declare function bulkArchiveReservations(reservationIds: string[]): Promise<NonN
|
|
|
2486
2584
|
* Unarchives multiple reservations at once.
|
|
2487
2585
|
* @param reservationIds - Reservation IDs to unarchive.
|
|
2488
2586
|
* @public
|
|
2489
|
-
* @documentationMaturity preview
|
|
2490
2587
|
* @requiredField reservationIds
|
|
2491
2588
|
* @permissionId TABLE_RESERVATIONS.RESERVATION_UNARCHIVE
|
|
2492
2589
|
* @applicableIdentity APP
|
|
@@ -2494,4 +2591,4 @@ declare function bulkArchiveReservations(reservationIds: string[]): Promise<NonN
|
|
|
2494
2591
|
*/
|
|
2495
2592
|
declare function bulkUnarchiveReservations(reservationIds: string[]): Promise<NonNullablePaths<BulkUnarchiveReservationsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
2496
2593
|
|
|
2497
|
-
export {
|
|
2594
|
+
export { WebhookIdentityType as $, ExperienceConflictType as A, type BulkArchiveReservationsResponse as B, type CreateReservationOptions as C, ExperienceBlockingConflictType as D, ExperienceTableCombinationConflictType as E, FeeUnit as F, type GetReservationOptions as G, type HeldReservationDetails as H, IgnoreConflictsType as I, Type as J, Set as K, type ListReservationsOptions as L, SortOrder as M, SortType as N, SortDirection as O, PaymentStatus as P, MissingValues as Q, type Reservation as R, type SearchReservationsResponse as S, TableCombinationConflictType as T, type UpdateReservation as U, ScalarType as V, WindowUnit as W, NestedAggregationType as X, Interval as Y, AggregationType as Z, Mode as _, type CreateReservationApplicationErrors as a, type NestedAggregationItem as a$, type Tables as a0, type Details as a1, type ReservedBy as a2, type MigrationNote as a3, type TableWithReservationConflicts as a4, type ExtendedFields as a5, type CancellationPolicy as a6, type FreeCancellationWindow as a7, type Prepayment as a8, type CancellationFee as a9, type GetReservationRequest as aA, type GetReservationResponse as aB, type UpdateReservationRequest as aC, type UpdateReservationResponse as aD, type CreateHeldReservationRequest as aE, type ReserveReservationRequest as aF, type CancelReservationRequest as aG, type ReservationCanceled as aH, type DeleteReservationRequest as aI, type DeleteReservationResponse as aJ, type ListReservationsRequest as aK, type CursorPaging as aL, type Sorting as aM, type CursorPagingMetadata as aN, type Cursors as aO, type SearchReservationsRequest as aP, type CursorSearch as aQ, type CursorSearchPagingMethodOneOf as aR, type Aggregation as aS, type AggregationKindOneOf as aT, type RangeBucket as aU, type IncludeMissingValuesOptions as aV, type ValueAggregation as aW, type ValueAggregationOptionsOneOf as aX, type RangeAggregation as aY, type ScalarAggregation as aZ, type DateHistogramAggregation as a_, type GuestPolicy as aa, type GuestPolicyValueOneOf as ab, type CancellationFeeState as ac, type ReservationDelayedDomainEvent as ad, type ReservationDelayedDomainEventBodyTypeOneOf as ae, type ReservationCreated as af, type ReservationUpdated as ag, type ReservationDelayedDomainEventReservationCanceled as ah, type CreateReservationRequest as ai, type IgnoreConflicts as aj, type IgnoreConflictsIgnoreConflictsOptionsOneOf as ak, type StandardOptions as al, type ExperienceOptions as am, type CreateReservationResponse as an, type ReservationDetailsConflicts as ao, type TableCombinationConflict as ap, type ReservationLocationConflict as aq, type ExperienceBlockingConflict as ar, type ExperienceTableCombinationConflict as as, type ExperienceConflict as at, type ConflictsStandardOptions as au, type ConflictsExperienceOptions as av, type Conflicts as aw, type ConflictsOptionsOneOf as ax, type CreateGoogleReservationRequest as ay, type CreateGoogleReservationResponse as az, type CreateReservationValidationErrors as b, type StatusWithLiterals as b$, type NestedAggregationItemKindOneOf as b0, type NestedAggregation as b1, type SearchDetails as b2, type AggregationData as b3, type ValueAggregationResult as b4, type RangeAggregationResult as b5, type NestedAggregationResults as b6, type NestedAggregationResultsResultOneOf as b7, type ValueResults as b8, type RangeResults as b9, type BulkUnarchiveReservationsResult as bA, type DomainEvent as bB, type DomainEventBodyOneOf as bC, type EntityCreatedEvent as bD, type RestoreInfo as bE, type EntityUpdatedEvent as bF, type EntityDeletedEvent as bG, type ActionEvent as bH, type Empty as bI, type RemoveReservationMigrationNotesRequest as bJ, type RemoveReservationMigrationNotesResponse as bK, type RawHttpRequest as bL, type PathParametersEntry as bM, type QueryParametersEntry as bN, type HeadersEntry as bO, type RawHttpResponse as bP, type MessageEnvelope as bQ, type IdentificationData as bR, type IdentificationDataIdOneOf as bS, type AccountInfo as bT, type BaseEventMetadata as bU, type EventMetadata as bV, type AccountInfoMetadata as bW, type ReservationSearchSpec as bX, type ReservationsQueryResult as bY, type ReservationQuerySpec as bZ, utils as b_, type AggregationResultsScalarResult as ba, type NestedValueAggregationResult as bb, type ValueResult as bc, type RangeResult as bd, type ScalarResult as be, type ScalarDateResult as bf, type NestedResultValue as bg, type NestedResultValueResultOneOf as bh, type Results as bi, type DateHistogramResult as bj, type GroupByValueResults as bk, type DateHistogramResults as bl, type NestedResults as bm, type AggregationResultsScalarDateResult as bn, type AggregationResults as bo, type AggregationResultsResultOneOf as bp, type QueryReservationsRequest as bq, type CursorQuery as br, type CursorQueryPagingMethodOneOf as bs, type QueryReservationsResponse as bt, type BulkArchiveReservationsRequest as bu, type BulkArchiveReservationsResult as bv, type ItemMetadata as bw, type ApplicationError as bx, type BulkActionMetadata as by, type BulkUnarchiveReservationsRequest as bz, type UpdateReservationOptions as c, type SourceWithLiterals as c0, type PaymentStatusWithLiterals as c1, type FeeUnitWithLiterals as c2, type WindowUnitWithLiterals as c3, type PaymentMethodWithLiterals as c4, type TableCombinationConflictTypeWithLiterals as c5, type ReservationLocationConflictTypeWithLiterals as c6, type ExperienceTableCombinationConflictTypeWithLiterals as c7, type ExperienceConflictTypeWithLiterals as c8, type ExperienceBlockingConflictTypeWithLiterals as c9, queryReservations as cA, bulkArchiveReservations as cB, bulkUnarchiveReservations as cC, type IgnoreConflictsTypeWithLiterals as ca, type TypeWithLiterals as cb, type SetWithLiterals as cc, type SortOrderWithLiterals as cd, type SortTypeWithLiterals as ce, type SortDirectionWithLiterals as cf, type MissingValuesWithLiterals as cg, type ScalarTypeWithLiterals as ch, type NestedAggregationTypeWithLiterals as ci, type IntervalWithLiterals as cj, type AggregationTypeWithLiterals as ck, type ModeWithLiterals as cl, type WebhookIdentityTypeWithLiterals as cm, type CommonSearchWithEntityContext as cn, type CommonQueryWithEntityContext as co, onReservationCreated as cp, onReservationDeleted as cq, onReservationUpdated as cr, createReservation as cs, getReservation as ct, updateReservation as cu, createHeldReservation as cv, reserveReservation as cw, cancelReservation as cx, deleteReservation as cy, listReservations as cz, type UpdateReservationApplicationErrors as d, type UpdateReservationValidationErrors as e, type CreateHeldReservationResponse as f, type CreateHeldReservationApplicationErrors as g, type Reservee as h, type ReserveReservationResponse as i, type ReserveReservationApplicationErrors as j, type CancelReservationOptions as k, type CancelReservationResponse as l, type CancelReservationApplicationErrors as m, type ListReservationsResponse as n, type ReservationSearch as o, type BulkUnarchiveReservationsResponse as p, type ReservationCreatedEnvelope as q, type ReservationDeletedEnvelope as r, type ReservationUpdatedEnvelope as s, type ReservationsQueryBuilder as t, type ReservationQuery as u, typedQueryReservations as v, Status as w, Source as x, PaymentMethod as y, ReservationLocationConflictType as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_table-reservations_reservations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.71",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"fqdn": "wix.table_reservations.v1.reservation"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
60
|
+
"falconPackageHash": "fda7815117d36e03b2a24e06a6cac14bb23059f17ccb9520cd5d73f2"
|
|
61
61
|
}
|