@wix/auto_sdk_bookings_bookings 1.0.24 → 1.0.25

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.
@@ -41,14 +41,14 @@ export interface Booking extends BookingParticipantsInfoOneOf {
41
41
  * double booking and the customer hasn't paid or is eligible for an automatic
42
42
  * refund. Currently, only payments with pricing plans are automatically refundable.
43
43
  */
44
- status?: BookingStatus;
44
+ status?: BookingStatusWithLiterals;
45
45
  /**
46
46
  * The payment status of the booking corresponds to the `paymentStatus` of the
47
47
  * related *eCommerce order*
48
48
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup)| [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)),
49
49
  * if one exists. All payment statuses are supported for every booking `status`.
50
50
  */
51
- paymentStatus?: PaymentStatus;
51
+ paymentStatus?: PaymentStatusWithLiterals;
52
52
  /**
53
53
  * Payment option selected by the customer. If the customer hasn't completed their
54
54
  * checkout, they may still change the payment method. Must be one of the payment
@@ -58,7 +58,7 @@ export interface Booking extends BookingParticipantsInfoOneOf {
58
58
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)),
59
59
  * Wix Bookings uses the service's default payment option
60
60
  */
61
- selectedPaymentOption?: SelectedPaymentOption;
61
+ selectedPaymentOption?: SelectedPaymentOptionWithLiterals;
62
62
  /**
63
63
  * Date and time the booking was created in `YYYY-MM-DDThh:mm:ss.sssZ` format.
64
64
  * @readonly
@@ -135,6 +135,8 @@ export declare enum MultiServiceBookingType {
135
135
  SEPARATE_BOOKINGS = "SEPARATE_BOOKINGS",
136
136
  PARALLEL_BOOKINGS = "PARALLEL_BOOKINGS"
137
137
  }
138
+ /** @enumType */
139
+ export type MultiServiceBookingTypeWithLiterals = MultiServiceBookingType | 'SEQUENTIAL_BOOKINGS' | 'SEPARATE_BOOKINGS' | 'PARALLEL_BOOKINGS';
138
140
  export interface BookedEntity extends BookedEntityItemOneOf {
139
141
  /**
140
142
  * Booked *slot*
@@ -270,7 +272,7 @@ export interface Location {
270
272
  * - `"OWNER_CUSTOM"`: The address as set when creating the service.
271
273
  * - `"CUSTOM"`: The address as set for the individual session.
272
274
  */
273
- locationType?: LocationType;
275
+ locationType?: LocationTypeWithLiterals;
274
276
  }
275
277
  export declare enum LocationType {
276
278
  UNDEFINED = "UNDEFINED",
@@ -278,6 +280,8 @@ export declare enum LocationType {
278
280
  OWNER_CUSTOM = "OWNER_CUSTOM",
279
281
  CUSTOM = "CUSTOM"
280
282
  }
283
+ /** @enumType */
284
+ export type LocationTypeWithLiterals = LocationType | 'UNDEFINED' | 'OWNER_BUSINESS' | 'OWNER_CUSTOM' | 'CUSTOM';
281
285
  export interface BookedSchedule {
282
286
  /**
283
287
  * _Schedule ID_
@@ -422,7 +426,7 @@ export interface CustomFormField {
422
426
  * @readonly
423
427
  */
424
428
  label?: string | null;
425
- valueType?: ValueType;
429
+ valueType?: ValueTypeWithLiterals;
426
430
  }
427
431
  export declare enum ValueType {
428
432
  /** Short text. This is the default value type. */
@@ -432,6 +436,8 @@ export declare enum ValueType {
432
436
  /** A text that represents the check box value. If selected the value is `true`, otherwise `false`. */
433
437
  CHECK_BOX = "CHECK_BOX"
434
438
  }
439
+ /** @enumType */
440
+ export type ValueTypeWithLiterals = ValueType | 'SHORT_TEXT' | 'LONG_TEXT' | 'CHECK_BOX';
435
441
  /** Booking status. */
436
442
  export declare enum BookingStatus {
437
443
  /**
@@ -470,6 +476,8 @@ export declare enum BookingStatus {
470
476
  */
471
477
  WAITING_LIST = "WAITING_LIST"
472
478
  }
479
+ /** @enumType */
480
+ export type BookingStatusWithLiterals = BookingStatus | 'CREATED' | 'CONFIRMED' | 'CANCELED' | 'PENDING' | 'DECLINED' | 'WAITING_LIST';
473
481
  /**
474
482
  * Payment status.
475
483
  * Automatically updated when using eCommerce checkout APIs.
@@ -488,6 +496,8 @@ export declare enum PaymentStatus {
488
496
  /** The booking is free of charge. */
489
497
  EXEMPT = "EXEMPT"
490
498
  }
499
+ /** @enumType */
500
+ export type PaymentStatusWithLiterals = PaymentStatus | 'UNDEFINED' | 'NOT_PAID' | 'PAID' | 'PARTIALLY_PAID' | 'REFUNDED' | 'EXEMPT';
491
501
  /**
492
502
  * Selected payment option.
493
503
  *
@@ -510,11 +520,13 @@ export declare enum SelectedPaymentOption {
510
520
  */
511
521
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
512
522
  }
523
+ /** @enumType */
524
+ export type SelectedPaymentOptionWithLiterals = SelectedPaymentOption | 'UNDEFINED' | 'OFFLINE' | 'ONLINE' | 'MEMBERSHIP' | 'MEMBERSHIP_OFFLINE';
513
525
  export interface BookingSource {
514
526
  /** Platform from which a booking was created. */
515
- platform?: Platform;
527
+ platform?: PlatformWithLiterals;
516
528
  /** Actor that created this booking. */
517
- actor?: Actor;
529
+ actor?: ActorWithLiterals;
518
530
  /**
519
531
  * Wix site ID of the application that created the booking.
520
532
  * @format GUID
@@ -532,11 +544,15 @@ export declare enum Platform {
532
544
  WEB = "WEB",
533
545
  MOBILE_APP = "MOBILE_APP"
534
546
  }
547
+ /** @enumType */
548
+ export type PlatformWithLiterals = Platform | 'UNDEFINED_PLATFORM' | 'WEB' | 'MOBILE_APP';
535
549
  export declare enum Actor {
536
550
  UNDEFINED_ACTOR = "UNDEFINED_ACTOR",
537
551
  BUSINESS = "BUSINESS",
538
552
  CUSTOMER = "CUSTOMER"
539
553
  }
554
+ /** @enumType */
555
+ export type ActorWithLiterals = Actor | 'UNDEFINED_ACTOR' | 'BUSINESS' | 'CUSTOMER';
540
556
  export interface ParticipantNotification {
541
557
  /**
542
558
  * Whether to send the message about the changes to the customer.
@@ -604,6 +620,8 @@ export declare enum IdentificationDataIdentityType {
604
620
  WIX_USER = "WIX_USER",
605
621
  APP = "APP"
606
622
  }
623
+ /** @enumType */
624
+ export type IdentificationDataIdentityTypeWithLiterals = IdentificationDataIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
607
625
  export interface FlowControlSettings {
608
626
  /** Whether availability is checked when creating or confirming the booking. */
609
627
  skipAvailabilityValidation?: boolean;
@@ -709,7 +727,7 @@ export interface MultiServiceBookingInfo {
709
727
  */
710
728
  id?: string | null;
711
729
  /** Type of the multi-service booking. */
712
- type?: MultiServiceBookingType;
730
+ type?: MultiServiceBookingTypeWithLiterals;
713
731
  }
714
732
  export interface BookedAddOn {
715
733
  /**
@@ -930,7 +948,7 @@ export interface WebhooksIdentificationData extends WebhooksIdentificationDataId
930
948
  */
931
949
  appId?: string;
932
950
  /** @readonly */
933
- identityType?: WebhookIdentityType;
951
+ identityType?: WebhookIdentityTypeWithLiterals;
934
952
  }
935
953
  /** @oneof */
936
954
  export interface WebhooksIdentificationDataIdOneOf {
@@ -962,6 +980,8 @@ export declare enum WebhookIdentityType {
962
980
  WIX_USER = "WIX_USER",
963
981
  APP = "APP"
964
982
  }
983
+ /** @enumType */
984
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
965
985
  export interface V2CreateBookingRequest extends V2CreateBookingRequestBookableItemOneOf, V2CreateBookingRequestParticipantsInfoOneOf {
966
986
  /**
967
987
  * Information about the slot to create a booking for.
@@ -999,7 +1019,7 @@ export interface V2CreateBookingRequest extends V2CreateBookingRequestBookableIt
999
1019
  * + Invoking eCommerce checkout API and the order declined event has been sent.
1000
1020
  * + Invoking eCommerce checkout API and order approved event has been sent, but the booking is offline and the booking causes a double booking.
1001
1021
  */
1002
- status?: BookingStatus;
1022
+ status?: BookingStatusWithLiterals;
1003
1023
  /**
1004
1024
  * Additional custom fields of the booking form. The customer must provide
1005
1025
  * information for each field when booking the service. For example, that they
@@ -1027,7 +1047,7 @@ export interface V2CreateBookingRequest extends V2CreateBookingRequestBookableIt
1027
1047
  * Must be one of the payment options defined for the service, unless
1028
1048
  * you pass `flowControlSettings.skipSelectedPaymentOptionValidation` as `true`.
1029
1049
  */
1030
- selectedPaymentOption?: SelectedPaymentOption;
1050
+ selectedPaymentOption?: SelectedPaymentOptionWithLiterals;
1031
1051
  /**
1032
1052
  * Identifies the source (platform, actor and app) that created this booking.
1033
1053
  * This property of the booking cannot be changed.
@@ -1355,7 +1375,7 @@ export interface ConfirmOrDeclineBookingRequest {
1355
1375
  * The booking is declined if there is a double booking conflict and you provide
1356
1376
  * one of these payment statuses: `UNDEFINED`, `NOT_PAID`, `REFUNDED`, or `EXEMPT`.
1357
1377
  */
1358
- paymentStatus?: PaymentStatus;
1378
+ paymentStatus?: PaymentStatusWithLiterals;
1359
1379
  }
1360
1380
  export interface ConfirmOrDeclineBookingResponse {
1361
1381
  /** Updated booking. */
@@ -1385,7 +1405,7 @@ export interface BulkConfirmOrDeclineBookingRequestBookingDetails {
1385
1405
  * The booking is declined if there is a double booking conflict and you provide
1386
1406
  * one of these payment statuses: `UNDEFINED`, `NOT_PAID`, `REFUNDED`, or `EXEMPT`.
1387
1407
  */
1388
- paymentStatus?: PaymentStatus;
1408
+ paymentStatus?: PaymentStatusWithLiterals;
1389
1409
  }
1390
1410
  export interface BulkConfirmOrDeclineBookingResponse {
1391
1411
  /** List of confirmed or declined bookings, including metadata. */
@@ -1654,6 +1674,8 @@ export declare enum LocationLocationType {
1654
1674
  /** The address set for the individual session. */
1655
1675
  CUSTOM = "CUSTOM"
1656
1676
  }
1677
+ /** @enumType */
1678
+ export type LocationLocationTypeWithLiterals = LocationLocationType | 'UNDEFINED' | 'OWNER_BUSINESS' | 'OWNER_CUSTOM' | 'CUSTOM';
1657
1679
  export interface SlotSlotResource {
1658
1680
  /**
1659
1681
  * Resource ID.
@@ -1678,7 +1700,7 @@ export interface SlotLocation {
1678
1700
  /** A string containing the full address of this location. */
1679
1701
  formattedAddress?: string | null;
1680
1702
  /** Location type. */
1681
- locationType?: LocationLocationType;
1703
+ locationType?: LocationLocationTypeWithLiterals;
1682
1704
  }
1683
1705
  export interface RescheduleBookingFlowControlSettings {
1684
1706
  /**
@@ -1734,7 +1756,7 @@ export interface BookingRescheduled extends BookingRescheduledPreviousParticipan
1734
1756
  /** ID of the rescheduling initiator. */
1735
1757
  initiatedBy?: IdentificationData;
1736
1758
  /** The previous status of the booking. */
1737
- previousStatus?: BookingStatus;
1759
+ previousStatus?: BookingStatusWithLiterals;
1738
1760
  /** An object describing the previous slot or schedule of the booking. */
1739
1761
  previousBookedEntity?: BookedEntity;
1740
1762
  /**
@@ -1821,6 +1843,8 @@ export declare enum IdentityType {
1821
1843
  WIX_USER = "WIX_USER",
1822
1844
  APP = "APP"
1823
1845
  }
1846
+ /** @enumType */
1847
+ export type IdentityTypeWithLiterals = IdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1824
1848
  export interface BulkRescheduleBookingRequest {
1825
1849
  /**
1826
1850
  * Reschedule multiple bookings to multiple slots.
@@ -1954,12 +1978,14 @@ export interface Sorting {
1954
1978
  */
1955
1979
  fieldName?: string;
1956
1980
  /** Sort order. */
1957
- order?: SortOrder;
1981
+ order?: SortOrderWithLiterals;
1958
1982
  }
1959
1983
  export declare enum SortOrder {
1960
1984
  ASC = "ASC",
1961
1985
  DESC = "DESC"
1962
1986
  }
1987
+ /** @enumType */
1988
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
1963
1989
  export interface Paging {
1964
1990
  /** Number of items to load. */
1965
1991
  limit?: number | null;
@@ -2052,7 +2078,7 @@ export interface ConfirmBookingRequest {
2052
2078
  */
2053
2079
  sendSmsReminder?: boolean | null;
2054
2080
  /** Payment status to set for the booking. */
2055
- paymentStatus?: PaymentStatus;
2081
+ paymentStatus?: PaymentStatusWithLiterals;
2056
2082
  /** Whether this booking has a conflict with at least 1 other confirmed booking. */
2057
2083
  doubleBooked?: boolean | null;
2058
2084
  /**
@@ -2089,9 +2115,9 @@ export interface BookingConfirmed {
2089
2115
  /** ID of the confirmation initiator. */
2090
2116
  initiatedBy?: IdentificationData;
2091
2117
  /** The previous status of the booking. */
2092
- previousStatus?: BookingStatus;
2118
+ previousStatus?: BookingStatusWithLiterals;
2093
2119
  /** The previous payment status of the booking. */
2094
- previousPaymentStatus?: PaymentStatus;
2120
+ previousPaymentStatus?: PaymentStatusWithLiterals;
2095
2121
  }
2096
2122
  export interface ConsistentQueryBookingsRequest {
2097
2123
  /** Information about filters, paging, and sorting. */
@@ -2169,7 +2195,7 @@ export interface DeclineBookingRequest {
2169
2195
  */
2170
2196
  participantNotification?: ParticipantNotification;
2171
2197
  /** Payment status to set for the booking. */
2172
- paymentStatus?: PaymentStatus;
2198
+ paymentStatus?: PaymentStatusWithLiterals;
2173
2199
  /** Whether this booking has a conflict with at least 1 other confirmed booking. */
2174
2200
  doubleBooked?: boolean | null;
2175
2201
  /**
@@ -2206,9 +2232,9 @@ export interface BookingDeclined {
2206
2232
  /** ID of the decline initiator. */
2207
2233
  initiatedBy?: IdentificationData;
2208
2234
  /** The previous status of the booking. */
2209
- previousStatus?: BookingStatus;
2235
+ previousStatus?: BookingStatusWithLiterals;
2210
2236
  /** The previous payment status of the booking. */
2211
- previousPaymentStatus?: PaymentStatus;
2237
+ previousPaymentStatus?: PaymentStatusWithLiterals;
2212
2238
  /**
2213
2239
  * Information about whether specific procedures of the standard Wix Bookings
2214
2240
  * declining flow are changed. For example, whether to issue a refund.
@@ -2280,7 +2306,7 @@ export interface BookingCanceled {
2280
2306
  /** ID of the cancellation initiator. */
2281
2307
  initiatedBy?: IdentificationData;
2282
2308
  /** The previous status of the booking. */
2283
- previousStatus?: BookingStatus;
2309
+ previousStatus?: BookingStatusWithLiterals;
2284
2310
  }
2285
2311
  export interface UpdateNumberOfParticipantsRequest extends UpdateNumberOfParticipantsRequestParticipantsInfoOneOf {
2286
2312
  /**
@@ -2487,7 +2513,7 @@ export interface MarkBookingAsPendingRequest {
2487
2513
  */
2488
2514
  sendSmsReminder?: boolean | null;
2489
2515
  /** Payment status to set for the booking. */
2490
- paymentStatus?: PaymentStatus;
2516
+ paymentStatus?: PaymentStatusWithLiterals;
2491
2517
  /** Whether this booking has a conflict with at least 1 other confirmed booking. */
2492
2518
  doubleBooked?: boolean | null;
2493
2519
  /**
@@ -2531,9 +2557,9 @@ export interface BookingMarkedAsPending {
2531
2557
  /** ID of the mark as pending initiator. */
2532
2558
  initiatedBy?: IdentificationData;
2533
2559
  /** The previous status of the booking. */
2534
- previousStatus?: BookingStatus;
2560
+ previousStatus?: BookingStatusWithLiterals;
2535
2561
  /** The previous payment status of the booking. */
2536
- previousPaymentStatus?: PaymentStatus;
2562
+ previousPaymentStatus?: PaymentStatusWithLiterals;
2537
2563
  }
2538
2564
  export interface MigrationCheckIfClashesWithBlockedTimeRequest {
2539
2565
  msidAndBookingIds?: MsidAndBookingId[];
@@ -2594,7 +2620,7 @@ export interface CreateMultiServiceBookingRequest {
2594
2620
  /** Whether to return the created single-service bookings. */
2595
2621
  returnFullEntity?: boolean;
2596
2622
  /** Multi service booking type. */
2597
- multiServiceBookingType?: MultiServiceBookingType;
2623
+ multiServiceBookingType?: MultiServiceBookingTypeWithLiterals;
2598
2624
  }
2599
2625
  export interface CreateMultiServiceBookingResponse {
2600
2626
  /**
@@ -2785,7 +2811,7 @@ export interface BookingInfo {
2785
2811
  */
2786
2812
  revision?: string | null;
2787
2813
  /** Payment status to set for the single-service booking. */
2788
- paymentStatus?: PaymentStatus;
2814
+ paymentStatus?: PaymentStatusWithLiterals;
2789
2815
  }
2790
2816
  export interface MarkMultiServiceBookingAsPendingResponse {
2791
2817
  /** Updated multi-service booking. */
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-v2-booking-bookings.types.js","sourceRoot":"","sources":["../../../src/bookings-v2-booking-bookings.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-v2-booking-bookings.types.js","sourceRoot":"","sources":["../../../src/bookings-v2-booking-bookings.types.ts"],"names":[],"mappings":"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"}