@wix/auto_sdk_table-reservations_reservations 1.0.72 → 1.0.73

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.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +0 -8
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js +0 -8
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +13 -74
  8. package/build/cjs/meta.js +0 -8
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-reservation-reservations.universal-CGxsEHpN.d.ts → table-reservations-v1-reservation-reservations.universal-B2UDj-mH.d.ts} +12 -74
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +0 -7
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs +0 -7
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +13 -74
  18. package/build/es/meta.mjs +0 -7
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-reservation-reservations.universal-CGxsEHpN.d.mts → table-reservations-v1-reservation-reservations.universal-B2UDj-mH.d.mts} +12 -74
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +0 -8
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js +0 -8
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +13 -74
  28. package/build/internal/cjs/meta.js +0 -8
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-reservation-reservations.universal-CGxsEHpN.d.ts → table-reservations-v1-reservation-reservations.universal-B2UDj-mH.d.ts} +12 -74
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +0 -7
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs +0 -7
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +13 -74
  38. package/build/internal/es/meta.mjs +0 -7
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-reservation-reservations.universal-CGxsEHpN.d.mts → table-reservations-v1-reservation-reservations.universal-B2UDj-mH.d.mts} +12 -74
  41. package/package.json +2 -2
@@ -270,19 +270,20 @@ interface ExtendedFields {
270
270
  /**
271
271
  * Cancellation policy configuration for a reservation location.
272
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.
273
+ * Payment protection is on when `cancellation_fee` is set. The effective method is derived at
274
+ * runtime: with a legacy prepayment-type `payment_policy` / `reservation_payment` on the location
275
+ * PREPAYMENT; otherwise → CARD_GUARANTEE; with no fee → NO_PAYMENT_METHOD.
276
+ * When a reservation is created, the current policy is copied onto the reservation. Changes to
277
+ * the location's policy do not affect existing reservations.
276
278
  */
277
279
  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. Populated when `payment_method` is `CARD_GUARANTEE` or `PREPAYMENT`. */
280
+ /** Cancellation and no-show fee terms. Present ⇒ payment protection is on. */
283
281
  cancellationFee?: CancellationFee;
284
- /** Guest-facing policy text or URL shown to the guest before they confirm their reservation. */
285
- guestPolicy?: GuestPolicy;
282
+ /**
283
+ * Guest-facing policy text shown to the guest before they confirm their reservation.
284
+ * @maxLength 1024
285
+ */
286
+ guestPolicy?: string | null;
286
287
  }
287
288
  declare enum FeeUnit {
288
289
  /** Amount is calculated for each guest in the reservation. */
@@ -312,35 +313,6 @@ declare enum WindowUnit {
312
313
  }
313
314
  /** @enumType */
314
315
  type WindowUnitWithLiterals = WindowUnit | 'HOURS' | 'DAYS';
315
- declare enum PaymentMethod {
316
- /** Payment protection and cancellation fees are disabled for new reservations. */
317
- NO_PAYMENT_METHOD = "NO_PAYMENT_METHOD",
318
- /** Guest pays upfront before the reservation is confirmed. A cancellation or no-show fee may apply when the reservation is cancelled late or the guest doesn't show up. */
319
- PREPAYMENT = "PREPAYMENT",
320
- /** Guest provides a payment method that may be charged after late cancellation or no-show. */
321
- CARD_GUARANTEE = "CARD_GUARANTEE"
322
- }
323
- /** @enumType */
324
- type PaymentMethodWithLiterals = PaymentMethod | 'NO_PAYMENT_METHOD' | 'PREPAYMENT' | 'CARD_GUARANTEE';
325
- /**
326
- * Prepayment fee terms. A cancellation or no-show fee may apply based on these terms
327
- * when the reservation is cancelled late or the guest doesn't show up.
328
- */
329
- interface Prepayment {
330
- /**
331
- * Monetary amount to collect per unit. Must be a decimal string with a period as a decimal separator. For example, `"3.99"`.
332
- * @decimalValue options { gt:0.000, maxScale:3 }
333
- */
334
- amount?: string;
335
- /** Unit used to calculate the total prepayment amount. */
336
- unit?: FeeUnitWithLiterals;
337
- /**
338
- * Minimum party size required for prepayment to apply.
339
- * @min 1
340
- * @max 1000
341
- */
342
- minPartySize?: number;
343
- }
344
316
  /** Cancellation and no-show fee calculation terms. */
345
317
  interface CancellationFee {
346
318
  /**
@@ -362,39 +334,6 @@ interface CancellationFee {
362
334
  */
363
335
  freeCancellationWindow?: FreeCancellationWindow;
364
336
  }
365
- /** Guest-facing policy disclosure. */
366
- interface GuestPolicy extends GuestPolicyValueOneOf {
367
- /**
368
- * Exact policy text shown to the guest.
369
- * @maxLength 1000000
370
- */
371
- text?: string | null;
372
- /**
373
- * Exact policy URL shown to the guest. The content behind the URL is not archived by Wix.
374
- * @maxLength 2048
375
- */
376
- url?: string | null;
377
- /**
378
- * Whether the guest-facing policy text was auto-generated from a pre-defined template that interpolates
379
- * the configured fee terms (amount, fee unit, free-cancellation window). When `false`, the text was
380
- * written manually by the restaurant owner. Applies only when the `value` oneof is `text`; has no
381
- * effect when a `url` is provided.
382
- */
383
- generated?: boolean;
384
- }
385
- /** @oneof */
386
- interface GuestPolicyValueOneOf {
387
- /**
388
- * Exact policy text shown to the guest.
389
- * @maxLength 1000000
390
- */
391
- text?: string | null;
392
- /**
393
- * Exact policy URL shown to the guest. The content behind the URL is not archived by Wix.
394
- * @maxLength 2048
395
- */
396
- url?: string | null;
397
- }
398
337
  /** Cancellation or no-show fee action state for a reservation. */
399
338
  interface CancellationFeeState {
400
339
  /**
@@ -2429,7 +2368,6 @@ declare const utils: {
2429
2368
  search: {
2430
2369
  SearchBuilder: () => _wix_sdk_types.SearchBuilder<Reservation, ReservationSearchSpec, ReservationSearch>;
2431
2370
  Filter: _wix_sdk_types.FilterFactory<Reservation, ReservationSearchSpec>;
2432
- /** Minimum value. */
2433
2371
  Sort: _wix_sdk_types.SortFactory<ReservationSearchSpec>;
2434
2372
  SearchParams: _wix_sdk_types.SearchParamsFactory<ReservationSearchSpec>;
2435
2373
  Aggregation: _wix_sdk_types.AggregationFactory<ReservationSearchSpec>;
@@ -2602,4 +2540,4 @@ declare function bulkArchiveReservations(reservationIds: string[]): Promise<NonN
2602
2540
  */
2603
2541
  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>>;
2604
2542
 
2605
- 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 };
2543
+ export { type Tables as $, ExperienceBlockingConflictType as A, type BulkArchiveReservationsResponse as B, type CreateReservationOptions as C, Type as D, ExperienceTableCombinationConflictType as E, FeeUnit as F, type GetReservationOptions as G, type HeldReservationDetails as H, IgnoreConflictsType as I, Set as J, SortOrder as K, type ListReservationsOptions as L, SortType as M, SortDirection as N, MissingValues as O, PaymentStatus as P, ScalarType as Q, type Reservation as R, type SearchReservationsResponse as S, TableCombinationConflictType as T, type UpdateReservation as U, NestedAggregationType as V, WindowUnit as W, Interval as X, AggregationType as Y, Mode as Z, WebhookIdentityType as _, type CreateReservationApplicationErrors as a, type AggregationData as a$, type Details as a0, type ReservedBy as a1, type MigrationNote as a2, type TableWithReservationConflicts as a3, type ExtendedFields as a4, type CancellationPolicy as a5, type FreeCancellationWindow as a6, type CancellationFee as a7, type CancellationFeeState as a8, type ReservationDelayedDomainEvent as a9, type CreateHeldReservationRequest as aA, type ReserveReservationRequest as aB, type CancelReservationRequest as aC, type ReservationCanceled as aD, type DeleteReservationRequest as aE, type DeleteReservationResponse as aF, type ListReservationsRequest as aG, type CursorPaging as aH, type Sorting as aI, type CursorPagingMetadata as aJ, type Cursors as aK, type SearchReservationsRequest as aL, type CursorSearch as aM, type CursorSearchPagingMethodOneOf as aN, type Aggregation as aO, type AggregationKindOneOf as aP, type RangeBucket as aQ, type IncludeMissingValuesOptions as aR, type ValueAggregation as aS, type ValueAggregationOptionsOneOf as aT, type RangeAggregation as aU, type ScalarAggregation as aV, type DateHistogramAggregation as aW, type NestedAggregationItem as aX, type NestedAggregationItemKindOneOf as aY, type NestedAggregation as aZ, type SearchDetails as a_, type ReservationDelayedDomainEventBodyTypeOneOf as aa, type ReservationCreated as ab, type ReservationUpdated as ac, type ReservationDelayedDomainEventReservationCanceled as ad, type CreateReservationRequest as ae, type IgnoreConflicts as af, type IgnoreConflictsIgnoreConflictsOptionsOneOf as ag, type StandardOptions as ah, type ExperienceOptions as ai, type CreateReservationResponse as aj, type ReservationDetailsConflicts as ak, type TableCombinationConflict as al, type ReservationLocationConflict as am, type ExperienceBlockingConflict as an, type ExperienceTableCombinationConflict as ao, type ExperienceConflict as ap, type ConflictsStandardOptions as aq, type ConflictsExperienceOptions as ar, type Conflicts as as, type ConflictsOptionsOneOf as at, type CreateGoogleReservationRequest as au, type CreateGoogleReservationResponse as av, type GetReservationRequest as aw, type GetReservationResponse as ax, type UpdateReservationRequest as ay, type UpdateReservationResponse as az, type CreateReservationValidationErrors as b, type WindowUnitWithLiterals as b$, type ValueAggregationResult as b0, type RangeAggregationResult as b1, type NestedAggregationResults as b2, type NestedAggregationResultsResultOneOf as b3, type ValueResults as b4, type RangeResults as b5, type AggregationResultsScalarResult as b6, type NestedValueAggregationResult as b7, type ValueResult as b8, type RangeResult as b9, type RestoreInfo as bA, type EntityUpdatedEvent as bB, type EntityDeletedEvent as bC, type ActionEvent as bD, type Empty as bE, type RemoveReservationMigrationNotesRequest as bF, type RemoveReservationMigrationNotesResponse as bG, type RawHttpRequest as bH, type PathParametersEntry as bI, type QueryParametersEntry as bJ, type HeadersEntry as bK, type RawHttpResponse as bL, type MessageEnvelope as bM, type IdentificationData as bN, type IdentificationDataIdOneOf as bO, type AccountInfo as bP, type BaseEventMetadata as bQ, type EventMetadata as bR, type AccountInfoMetadata as bS, type ReservationSearchSpec as bT, type ReservationsQueryResult as bU, type ReservationQuerySpec as bV, utils as bW, type StatusWithLiterals as bX, type SourceWithLiterals as bY, type PaymentStatusWithLiterals as bZ, type FeeUnitWithLiterals as b_, type ScalarResult as ba, type ScalarDateResult as bb, type NestedResultValue as bc, type NestedResultValueResultOneOf as bd, type Results as be, type DateHistogramResult as bf, type GroupByValueResults as bg, type DateHistogramResults as bh, type NestedResults as bi, type AggregationResultsScalarDateResult as bj, type AggregationResults as bk, type AggregationResultsResultOneOf as bl, type QueryReservationsRequest as bm, type CursorQuery as bn, type CursorQueryPagingMethodOneOf as bo, type QueryReservationsResponse as bp, type BulkArchiveReservationsRequest as bq, type BulkArchiveReservationsResult as br, type ItemMetadata as bs, type ApplicationError as bt, type BulkActionMetadata as bu, type BulkUnarchiveReservationsRequest as bv, type BulkUnarchiveReservationsResult as bw, type DomainEvent as bx, type DomainEventBodyOneOf as by, type EntityCreatedEvent as bz, type UpdateReservationOptions as c, type TableCombinationConflictTypeWithLiterals as c0, type ReservationLocationConflictTypeWithLiterals as c1, type ExperienceTableCombinationConflictTypeWithLiterals as c2, type ExperienceConflictTypeWithLiterals as c3, type ExperienceBlockingConflictTypeWithLiterals as c4, type IgnoreConflictsTypeWithLiterals as c5, type TypeWithLiterals as c6, type SetWithLiterals as c7, type SortOrderWithLiterals as c8, type SortTypeWithLiterals as c9, type SortDirectionWithLiterals as ca, type MissingValuesWithLiterals as cb, type ScalarTypeWithLiterals as cc, type NestedAggregationTypeWithLiterals as cd, type IntervalWithLiterals as ce, type AggregationTypeWithLiterals as cf, type ModeWithLiterals as cg, type WebhookIdentityTypeWithLiterals as ch, type CommonSearchWithEntityContext as ci, type CommonQueryWithEntityContext as cj, onReservationCreated as ck, onReservationDeleted as cl, onReservationUpdated as cm, createReservation as cn, getReservation as co, updateReservation as cp, createHeldReservation as cq, reserveReservation as cr, cancelReservation as cs, deleteReservation as ct, listReservations as cu, queryReservations as cv, bulkArchiveReservations as cw, bulkUnarchiveReservations as cx, 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, ReservationLocationConflictType as y, ExperienceConflictType as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { R as Reservation, C as CreateReservationOptions, a as CreateReservationApplicationErrors, b as CreateReservationValidationErrors, G as GetReservationOptions, U as UpdateReservation, c as UpdateReservationOptions, d as UpdateReservationApplicationErrors, e as UpdateReservationValidationErrors, H as HeldReservationDetails, f as CreateHeldReservationResponse, g as CreateHeldReservationApplicationErrors, h as Reservee, i as ReserveReservationResponse, j as ReserveReservationApplicationErrors, k as CancelReservationOptions, l as CancelReservationResponse, m as CancelReservationApplicationErrors, L as ListReservationsOptions, n as ListReservationsResponse, o as ReservationSearch, S as SearchReservationsResponse, B as BulkArchiveReservationsResponse, p as BulkUnarchiveReservationsResponse, q as ReservationCreatedEnvelope, r as ReservationDeletedEnvelope, s as ReservationUpdatedEnvelope, t as ReservationsQueryBuilder, u as ReservationQuery, v as typedQueryReservations } from './table-reservations-v1-reservation-reservations.universal-CGxsEHpN.mjs';
3
- export { bT as AccountInfo, bW as AccountInfoMetadata, bH as ActionEvent, aS as Aggregation, b3 as AggregationData, aT as AggregationKindOneOf, bo as AggregationResults, bp as AggregationResultsResultOneOf, bn as AggregationResultsScalarDateResult, ba as AggregationResultsScalarResult, Z as AggregationType, ck as AggregationTypeWithLiterals, bx as ApplicationError, bU as BaseEventMetadata, by as BulkActionMetadata, bu as BulkArchiveReservationsRequest, bv as BulkArchiveReservationsResult, bz as BulkUnarchiveReservationsRequest, bA as BulkUnarchiveReservationsResult, aG as CancelReservationRequest, a9 as CancellationFee, ac as CancellationFeeState, a6 as CancellationPolicy, co as CommonQueryWithEntityContext, cn as CommonSearchWithEntityContext, aw as Conflicts, av as ConflictsExperienceOptions, ax as ConflictsOptionsOneOf, au as ConflictsStandardOptions, ay as CreateGoogleReservationRequest, az as CreateGoogleReservationResponse, aE as CreateHeldReservationRequest, ai as CreateReservationRequest, an as CreateReservationResponse, aL as CursorPaging, aN as CursorPagingMetadata, br as CursorQuery, bs as CursorQueryPagingMethodOneOf, aQ as CursorSearch, aR as CursorSearchPagingMethodOneOf, aO as Cursors, a_ as DateHistogramAggregation, bj as DateHistogramResult, bl as DateHistogramResults, aI as DeleteReservationRequest, aJ as DeleteReservationResponse, a1 as Details, bB as DomainEvent, bC as DomainEventBodyOneOf, bI as Empty, bD as EntityCreatedEvent, bG as EntityDeletedEvent, bF as EntityUpdatedEvent, bV as EventMetadata, ar as ExperienceBlockingConflict, D as ExperienceBlockingConflictType, c9 as ExperienceBlockingConflictTypeWithLiterals, at as ExperienceConflict, A as ExperienceConflictType, c8 as ExperienceConflictTypeWithLiterals, am as ExperienceOptions, as as ExperienceTableCombinationConflict, E as ExperienceTableCombinationConflictType, c7 as ExperienceTableCombinationConflictTypeWithLiterals, a5 as ExtendedFields, F as FeeUnit, c2 as FeeUnitWithLiterals, a7 as FreeCancellationWindow, aA as GetReservationRequest, aB as GetReservationResponse, bk as GroupByValueResults, aa as GuestPolicy, ab as GuestPolicyValueOneOf, bO as HeadersEntry, bR as IdentificationData, bS as IdentificationDataIdOneOf, aj as IgnoreConflicts, ak as IgnoreConflictsIgnoreConflictsOptionsOneOf, I as IgnoreConflictsType, ca as IgnoreConflictsTypeWithLiterals, aV as IncludeMissingValuesOptions, Y as Interval, cj as IntervalWithLiterals, bw as ItemMetadata, aK as ListReservationsRequest, bQ as MessageEnvelope, a3 as MigrationNote, Q as MissingValues, cg as MissingValuesWithLiterals, _ as Mode, cl as ModeWithLiterals, b1 as NestedAggregation, a$ as NestedAggregationItem, b0 as NestedAggregationItemKindOneOf, b6 as NestedAggregationResults, b7 as NestedAggregationResultsResultOneOf, X as NestedAggregationType, ci as NestedAggregationTypeWithLiterals, bg as NestedResultValue, bh as NestedResultValueResultOneOf, bm as NestedResults, bb as NestedValueAggregationResult, bM as PathParametersEntry, y as PaymentMethod, c4 as PaymentMethodWithLiterals, P as PaymentStatus, c1 as PaymentStatusWithLiterals, a8 as Prepayment, bN as QueryParametersEntry, bq as QueryReservationsRequest, bt as QueryReservationsResponse, aY as RangeAggregation, b5 as RangeAggregationResult, aU as RangeBucket, bd as RangeResult, b9 as RangeResults, bL as RawHttpRequest, bP as RawHttpResponse, bJ as RemoveReservationMigrationNotesRequest, bK as RemoveReservationMigrationNotesResponse, aH as ReservationCanceled, af as ReservationCreated, ad as ReservationDelayedDomainEvent, ae as ReservationDelayedDomainEventBodyTypeOneOf, ah as ReservationDelayedDomainEventReservationCanceled, ao as ReservationDetailsConflicts, aq as ReservationLocationConflict, z as ReservationLocationConflictType, c6 as ReservationLocationConflictTypeWithLiterals, bZ as ReservationQuerySpec, bX as ReservationSearchSpec, ag as ReservationUpdated, bY as ReservationsQueryResult, aF as ReserveReservationRequest, a2 as ReservedBy, bE as RestoreInfo, bi as Results, aZ as ScalarAggregation, bf as ScalarDateResult, be as ScalarResult, V as ScalarType, ch as ScalarTypeWithLiterals, b2 as SearchDetails, aP as SearchReservationsRequest, K as Set, cc as SetWithLiterals, O as SortDirection, cf as SortDirectionWithLiterals, M as SortOrder, cd as SortOrderWithLiterals, N as SortType, ce as SortTypeWithLiterals, aM as Sorting, x as Source, c0 as SourceWithLiterals, al as StandardOptions, w as Status, b$ as StatusWithLiterals, ap as TableCombinationConflict, T as TableCombinationConflictType, c5 as TableCombinationConflictTypeWithLiterals, a4 as TableWithReservationConflicts, a0 as Tables, J as Type, cb as TypeWithLiterals, aC as UpdateReservationRequest, aD as UpdateReservationResponse, aW as ValueAggregation, aX as ValueAggregationOptionsOneOf, b4 as ValueAggregationResult, bc as ValueResult, b8 as ValueResults, $ as WebhookIdentityType, cm as WebhookIdentityTypeWithLiterals, W as WindowUnit, c3 as WindowUnitWithLiterals, b_ as utils } from './table-reservations-v1-reservation-reservations.universal-CGxsEHpN.mjs';
2
+ import { R as Reservation, C as CreateReservationOptions, a as CreateReservationApplicationErrors, b as CreateReservationValidationErrors, G as GetReservationOptions, U as UpdateReservation, c as UpdateReservationOptions, d as UpdateReservationApplicationErrors, e as UpdateReservationValidationErrors, H as HeldReservationDetails, f as CreateHeldReservationResponse, g as CreateHeldReservationApplicationErrors, h as Reservee, i as ReserveReservationResponse, j as ReserveReservationApplicationErrors, k as CancelReservationOptions, l as CancelReservationResponse, m as CancelReservationApplicationErrors, L as ListReservationsOptions, n as ListReservationsResponse, o as ReservationSearch, S as SearchReservationsResponse, B as BulkArchiveReservationsResponse, p as BulkUnarchiveReservationsResponse, q as ReservationCreatedEnvelope, r as ReservationDeletedEnvelope, s as ReservationUpdatedEnvelope, t as ReservationsQueryBuilder, u as ReservationQuery, v as typedQueryReservations } from './table-reservations-v1-reservation-reservations.universal-B2UDj-mH.mjs';
3
+ export { bP as AccountInfo, bS as AccountInfoMetadata, bD as ActionEvent, aO as Aggregation, a$ as AggregationData, aP as AggregationKindOneOf, bk as AggregationResults, bl as AggregationResultsResultOneOf, bj as AggregationResultsScalarDateResult, b6 as AggregationResultsScalarResult, Y as AggregationType, cf as AggregationTypeWithLiterals, bt as ApplicationError, bQ as BaseEventMetadata, bu as BulkActionMetadata, bq as BulkArchiveReservationsRequest, br as BulkArchiveReservationsResult, bv as BulkUnarchiveReservationsRequest, bw as BulkUnarchiveReservationsResult, aC as CancelReservationRequest, a7 as CancellationFee, a8 as CancellationFeeState, a5 as CancellationPolicy, cj as CommonQueryWithEntityContext, ci as CommonSearchWithEntityContext, as as Conflicts, ar as ConflictsExperienceOptions, at as ConflictsOptionsOneOf, aq as ConflictsStandardOptions, au as CreateGoogleReservationRequest, av as CreateGoogleReservationResponse, aA as CreateHeldReservationRequest, ae as CreateReservationRequest, aj as CreateReservationResponse, aH as CursorPaging, aJ as CursorPagingMetadata, bn as CursorQuery, bo as CursorQueryPagingMethodOneOf, aM as CursorSearch, aN as CursorSearchPagingMethodOneOf, aK as Cursors, aW as DateHistogramAggregation, bf as DateHistogramResult, bh as DateHistogramResults, aE as DeleteReservationRequest, aF as DeleteReservationResponse, a0 as Details, bx as DomainEvent, by as DomainEventBodyOneOf, bE as Empty, bz as EntityCreatedEvent, bC as EntityDeletedEvent, bB as EntityUpdatedEvent, bR as EventMetadata, an as ExperienceBlockingConflict, A as ExperienceBlockingConflictType, c4 as ExperienceBlockingConflictTypeWithLiterals, ap as ExperienceConflict, z as ExperienceConflictType, c3 as ExperienceConflictTypeWithLiterals, ai as ExperienceOptions, ao as ExperienceTableCombinationConflict, E as ExperienceTableCombinationConflictType, c2 as ExperienceTableCombinationConflictTypeWithLiterals, a4 as ExtendedFields, F as FeeUnit, b_ as FeeUnitWithLiterals, a6 as FreeCancellationWindow, aw as GetReservationRequest, ax as GetReservationResponse, bg as GroupByValueResults, bK as HeadersEntry, bN as IdentificationData, bO as IdentificationDataIdOneOf, af as IgnoreConflicts, ag as IgnoreConflictsIgnoreConflictsOptionsOneOf, I as IgnoreConflictsType, c5 as IgnoreConflictsTypeWithLiterals, aR as IncludeMissingValuesOptions, X as Interval, ce as IntervalWithLiterals, bs as ItemMetadata, aG as ListReservationsRequest, bM as MessageEnvelope, a2 as MigrationNote, O as MissingValues, cb as MissingValuesWithLiterals, Z as Mode, cg as ModeWithLiterals, aZ as NestedAggregation, aX as NestedAggregationItem, aY as NestedAggregationItemKindOneOf, b2 as NestedAggregationResults, b3 as NestedAggregationResultsResultOneOf, V as NestedAggregationType, cd as NestedAggregationTypeWithLiterals, bc as NestedResultValue, bd as NestedResultValueResultOneOf, bi as NestedResults, b7 as NestedValueAggregationResult, bI as PathParametersEntry, P as PaymentStatus, bZ as PaymentStatusWithLiterals, bJ as QueryParametersEntry, bm as QueryReservationsRequest, bp as QueryReservationsResponse, aU as RangeAggregation, b1 as RangeAggregationResult, aQ as RangeBucket, b9 as RangeResult, b5 as RangeResults, bH as RawHttpRequest, bL as RawHttpResponse, bF as RemoveReservationMigrationNotesRequest, bG as RemoveReservationMigrationNotesResponse, aD as ReservationCanceled, ab as ReservationCreated, a9 as ReservationDelayedDomainEvent, aa as ReservationDelayedDomainEventBodyTypeOneOf, ad as ReservationDelayedDomainEventReservationCanceled, ak as ReservationDetailsConflicts, am as ReservationLocationConflict, y as ReservationLocationConflictType, c1 as ReservationLocationConflictTypeWithLiterals, bV as ReservationQuerySpec, bT as ReservationSearchSpec, ac as ReservationUpdated, bU as ReservationsQueryResult, aB as ReserveReservationRequest, a1 as ReservedBy, bA as RestoreInfo, be as Results, aV as ScalarAggregation, bb as ScalarDateResult, ba as ScalarResult, Q as ScalarType, cc as ScalarTypeWithLiterals, a_ as SearchDetails, aL as SearchReservationsRequest, J as Set, c7 as SetWithLiterals, N as SortDirection, ca as SortDirectionWithLiterals, K as SortOrder, c8 as SortOrderWithLiterals, M as SortType, c9 as SortTypeWithLiterals, aI as Sorting, x as Source, bY as SourceWithLiterals, ah as StandardOptions, w as Status, bX as StatusWithLiterals, al as TableCombinationConflict, T as TableCombinationConflictType, c0 as TableCombinationConflictTypeWithLiterals, a3 as TableWithReservationConflicts, $ as Tables, D as Type, c6 as TypeWithLiterals, ay as UpdateReservationRequest, az as UpdateReservationResponse, aS as ValueAggregation, aT as ValueAggregationOptionsOneOf, b0 as ValueAggregationResult, b8 as ValueResult, b4 as ValueResults, _ as WebhookIdentityType, ch as WebhookIdentityTypeWithLiterals, W as WindowUnit, b$ as WindowUnitWithLiterals, bW as utils } from './table-reservations-v1-reservation-reservations.universal-B2UDj-mH.mjs';
4
4
 
5
5
  declare function createReservation$1(httpClient: HttpClient): CreateReservationSignature;
6
6
  interface CreateReservationSignature {
@@ -589,12 +589,6 @@ var WindowUnit = /* @__PURE__ */ ((WindowUnit2) => {
589
589
  WindowUnit2["DAYS"] = "DAYS";
590
590
  return WindowUnit2;
591
591
  })(WindowUnit || {});
592
- var PaymentMethod = /* @__PURE__ */ ((PaymentMethod2) => {
593
- PaymentMethod2["NO_PAYMENT_METHOD"] = "NO_PAYMENT_METHOD";
594
- PaymentMethod2["PREPAYMENT"] = "PREPAYMENT";
595
- PaymentMethod2["CARD_GUARANTEE"] = "CARD_GUARANTEE";
596
- return PaymentMethod2;
597
- })(PaymentMethod || {});
598
592
  var TableCombinationConflictType = /* @__PURE__ */ ((TableCombinationConflictType2) => {
599
593
  TableCombinationConflictType2["UNKNOWN"] = "UNKNOWN";
600
594
  TableCombinationConflictType2["RESERVED"] = "RESERVED";
@@ -1318,7 +1312,6 @@ export {
1318
1312
  MissingValues,
1319
1313
  Mode,
1320
1314
  NestedAggregationType,
1321
- PaymentMethod,
1322
1315
  PaymentStatus,
1323
1316
  ReservationLocationConflictType,
1324
1317
  ScalarType,