@wix/auto_sdk_bookings_extended-bookings 1.0.1 → 1.0.2

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 (17) hide show
  1. package/build/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.types.d.ts +125 -26
  2. package/build/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.types.js.map +1 -1
  3. package/build/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.universal.d.ts +125 -26
  4. package/build/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.universal.js.map +1 -1
  5. package/build/es/src/bookings-reader-v2-extended-booking-extended-bookings.types.d.ts +125 -26
  6. package/build/es/src/bookings-reader-v2-extended-booking-extended-bookings.types.js.map +1 -1
  7. package/build/es/src/bookings-reader-v2-extended-booking-extended-bookings.universal.d.ts +125 -26
  8. package/build/es/src/bookings-reader-v2-extended-booking-extended-bookings.universal.js.map +1 -1
  9. package/build/internal/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.types.d.ts +125 -26
  10. package/build/internal/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.types.js.map +1 -1
  11. package/build/internal/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.universal.d.ts +125 -26
  12. package/build/internal/cjs/src/bookings-reader-v2-extended-booking-extended-bookings.universal.js.map +1 -1
  13. package/build/internal/es/src/bookings-reader-v2-extended-booking-extended-bookings.types.d.ts +125 -26
  14. package/build/internal/es/src/bookings-reader-v2-extended-booking-extended-bookings.types.js.map +1 -1
  15. package/build/internal/es/src/bookings-reader-v2-extended-booking-extended-bookings.universal.d.ts +125 -26
  16. package/build/internal/es/src/bookings-reader-v2-extended-booking-extended-bookings.universal.js.map +1 -1
  17. package/package.json +2 -2
@@ -49,6 +49,7 @@ export interface Booking extends BookingParticipantsInfoOneOf {
49
49
  * Total number of participants. Available only when the relevant service
50
50
  * doesn't have _variants and options_
51
51
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
52
+ * @min 1
52
53
  */
53
54
  totalParticipants?: number;
54
55
  /**
@@ -59,6 +60,7 @@ export interface Booking extends BookingParticipantsInfoOneOf {
59
60
  participantsChoices?: ParticipantChoices;
60
61
  /**
61
62
  * Booking ID.
63
+ * @format GUID
62
64
  * @readonly
63
65
  */
64
66
  id?: string | null;
@@ -157,6 +159,7 @@ export interface BookingParticipantsInfoOneOf {
157
159
  * Total number of participants. Available only when the relevant service
158
160
  * doesn't have _variants and options_
159
161
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
162
+ * @min 1
160
163
  */
161
164
  totalParticipants?: number;
162
165
  /**
@@ -196,6 +199,7 @@ export interface BookedEntity extends BookedEntityItemOneOf {
196
199
  * Session title at the time of booking. If there is no pre-existing session,
197
200
  * for example for appointment-based services, `title` is set to the service name.
198
201
  * @readonly
202
+ * @maxLength 6000
199
203
  */
200
204
  title?: string | null;
201
205
  /**
@@ -238,6 +242,8 @@ export interface BookedSlot {
238
242
  * For appointment-based services, Wix Bookings automatically populates `eventId`
239
243
  * when the booking `status` changes to `CONFIRMED`. For class bookings, it's
240
244
  * automatically populated upon booking creation.
245
+ * @minLength 36
246
+ * @maxLength 250
241
247
  */
242
248
  eventId?: string | null;
243
249
  /**
@@ -265,26 +271,42 @@ export interface BookedSlot {
265
271
  location?: Location;
266
272
  }
267
273
  export interface BookedResource {
268
- /** ID of the booking's primary resource. */
274
+ /**
275
+ * ID of the booking's primary resource.
276
+ * @format GUID
277
+ */
269
278
  id?: string;
270
- /** Resource's name at the time of booking. */
279
+ /**
280
+ * Resource's name at the time of booking.
281
+ * @maxLength 40
282
+ */
271
283
  name?: string | null;
272
- /** Resource's email at the time of booking. */
284
+ /**
285
+ * Resource's email at the time of booking.
286
+ * @maxLength 500
287
+ */
273
288
  email?: string | null;
274
- /** ID of the schedule belonging to the booking's primary resource. */
289
+ /**
290
+ * ID of the schedule belonging to the booking's primary resource.
291
+ * @format GUID
292
+ */
275
293
  scheduleId?: string | null;
276
294
  }
277
295
  export interface Location {
278
296
  /**
279
297
  * Business location ID. Available only for locations that are business locations,
280
298
  * meaning the `location_type` is `"OWNER_BUSINESS"`.
299
+ * @format GUID
281
300
  */
282
301
  id?: string | null;
283
302
  /** Location name. */
284
303
  name?: string | null;
285
304
  /** The full address of this location. */
286
305
  formattedAddress?: string | null;
287
- /** The full translated address of this location. */
306
+ /**
307
+ * The full translated address of this location.
308
+ * @maxLength 512
309
+ */
288
310
  formattedAddressTranslated?: string | null;
289
311
  /**
290
312
  * Location type.
@@ -307,7 +329,10 @@ export interface BookedSchedule {
307
329
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)).
308
330
  */
309
331
  scheduleId?: string;
310
- /** Booked service ID. */
332
+ /**
333
+ * Booked service ID.
334
+ * @format GUID
335
+ */
311
336
  serviceId?: string | null;
312
337
  /**
313
338
  * _Location_
@@ -335,7 +360,10 @@ export interface BookedSchedule {
335
360
  lastSessionEnd?: string | null;
336
361
  }
337
362
  export interface ContactDetails {
338
- /** Contact ID. */
363
+ /**
364
+ * Contact ID.
365
+ * @format GUID
366
+ */
339
367
  contactId?: string | null;
340
368
  /**
341
369
  * Contact's first name. When populated from a standard booking form, this
@@ -350,6 +378,7 @@ export interface ContactDetails {
350
378
  * Used to validate coupon usage limitations per contact. If not specified,
351
379
  * the coupon usage limitation will not be enforced. (Coupon usage limitation
352
380
  * validation is not supported yet).
381
+ * @format EMAIL
353
382
  */
354
383
  email?: string | null;
355
384
  /** Contact's phone number. */
@@ -364,6 +393,7 @@ export interface ContactDetails {
364
393
  /**
365
394
  * Contact's country in [ISO 3166-1 alpha-2 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
366
395
  * format.
396
+ * @format COUNTRY
367
397
  */
368
398
  countryCode?: string | null;
369
399
  }
@@ -373,7 +403,10 @@ export interface Address extends AddressStreetOneOf {
373
403
  streetAddress?: StreetAddress;
374
404
  /** Main address line, usually street and number, as free text. */
375
405
  addressLine?: string | null;
376
- /** Country code. */
406
+ /**
407
+ * Country code.
408
+ * @format COUNTRY
409
+ */
377
410
  country?: string | null;
378
411
  /** Subdivision. Usually state, region, prefecture or province code, according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). */
379
412
  subdivision?: string | null;
@@ -422,7 +455,10 @@ export interface Subdivision {
422
455
  name?: string;
423
456
  }
424
457
  export interface CustomFormField {
425
- /** ID of the form field as defined in the form. */
458
+ /**
459
+ * ID of the form field as defined in the form.
460
+ * @format GUID
461
+ */
426
462
  id?: string;
427
463
  /** Value that was submitted for this field. */
428
464
  value?: string | null;
@@ -526,6 +562,7 @@ export interface BookingSource {
526
562
  actor?: Actor;
527
563
  /**
528
564
  * Wix site ID of the application that created the booking.
565
+ * @format GUID
529
566
  * @readonly
530
567
  */
531
568
  appDefId?: string | null;
@@ -556,26 +593,53 @@ export interface ParticipantNotification {
556
593
  message?: string | null;
557
594
  }
558
595
  export interface IdentificationData extends IdentificationDataIdOneOf {
559
- /** ID of a site visitor that has not logged in to the site. */
596
+ /**
597
+ * ID of a site visitor that has not logged in to the site.
598
+ * @format GUID
599
+ */
560
600
  anonymousVisitorId?: string;
561
- /** ID of a site visitor that has logged in to the site. */
601
+ /**
602
+ * ID of a site visitor that has logged in to the site.
603
+ * @format GUID
604
+ */
562
605
  memberId?: string;
563
- /** ID of a Wix user (site owner, contributor, etc.). */
606
+ /**
607
+ * ID of a Wix user (site owner, contributor, etc.).
608
+ * @format GUID
609
+ */
564
610
  wixUserId?: string;
565
- /** ID of an app. */
611
+ /**
612
+ * ID of an app.
613
+ * @format GUID
614
+ */
566
615
  appId?: string;
567
- /** ID of of a contact in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system. */
616
+ /**
617
+ * ID of of a contact in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system.
618
+ * @format GUID
619
+ */
568
620
  contactId?: string | null;
569
621
  }
570
622
  /** @oneof */
571
623
  export interface IdentificationDataIdOneOf {
572
- /** ID of a site visitor that has not logged in to the site. */
624
+ /**
625
+ * ID of a site visitor that has not logged in to the site.
626
+ * @format GUID
627
+ */
573
628
  anonymousVisitorId?: string;
574
- /** ID of a site visitor that has logged in to the site. */
629
+ /**
630
+ * ID of a site visitor that has logged in to the site.
631
+ * @format GUID
632
+ */
575
633
  memberId?: string;
576
- /** ID of a Wix user (site owner, contributor, etc.). */
634
+ /**
635
+ * ID of a Wix user (site owner, contributor, etc.).
636
+ * @format GUID
637
+ */
577
638
  wixUserId?: string;
578
- /** ID of an app. */
639
+ /**
640
+ * ID of an app.
641
+ * @format GUID
642
+ */
579
643
  appId?: string;
580
644
  }
581
645
  export declare enum IdentityType {
@@ -619,16 +683,24 @@ export interface ExtendedFields {
619
683
  namespaces?: Record<string, Record<string, any>>;
620
684
  }
621
685
  export interface ParticipantChoices {
622
- /** Information about the booked service choices. Includes the number of participants. */
686
+ /**
687
+ * Information about the booked service choices. Includes the number of participants.
688
+ * @minSize 1
689
+ * @maxSize 10
690
+ */
623
691
  serviceChoices?: ServiceChoices[];
624
692
  }
625
693
  export interface ServiceChoices {
626
694
  /**
627
695
  * Number of participants for this _variant_
628
696
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
697
+ * @min 1
629
698
  */
630
699
  numberOfParticipants?: number | null;
631
- /** Service choices for these participants. */
700
+ /**
701
+ * Service choices for these participants.
702
+ * @maxSize 5
703
+ */
632
704
  choices?: ServiceChoice[];
633
705
  }
634
706
  export interface ServiceChoice extends ServiceChoiceChoiceOneOf {
@@ -644,6 +716,7 @@ export interface ServiceChoice extends ServiceChoiceChoiceOneOf {
644
716
  * ID of the corresponding option for the choice. For example, the choice `child`
645
717
  * could correspond to the option `ageGroup`. In this case, `optionId` is the ID
646
718
  * for the `ageGroup` option.
719
+ * @format GUID
647
720
  */
648
721
  optionId?: string;
649
722
  }
@@ -662,17 +735,21 @@ export interface Duration {
662
735
  /**
663
736
  * Duration of the service in minutes.
664
737
  * Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
738
+ * @min 1
739
+ * @max 44639
665
740
  */
666
741
  minutes?: number;
667
742
  /**
668
743
  * Name of the duration option.
669
744
  * Defaults to the formatted duration e.g. "1 hour, 30 minutes".
745
+ * @maxLength 255
670
746
  */
671
747
  name?: string | null;
672
748
  }
673
749
  export interface MultiServiceBookingInfo {
674
750
  /**
675
751
  * Multi-service booking ID.
752
+ * @format GUID
676
753
  * @readonly
677
754
  */
678
755
  id?: string | null;
@@ -695,6 +772,7 @@ export interface AllowedActions {
695
772
  export interface Attendance {
696
773
  /**
697
774
  * ID of the attendance object.
775
+ * @format GUID
698
776
  * @readonly
699
777
  */
700
778
  id?: string | null;
@@ -707,9 +785,17 @@ export interface Attendance {
707
785
  numberOfAttendees?: number;
708
786
  }
709
787
  export interface ConferencingDetails {
710
- /** URL used by a guest to join the conference. */
788
+ /**
789
+ * URL used by a guest to join the conference.
790
+ * @minLength 1
791
+ * @maxLength 2000
792
+ */
711
793
  guestUrl?: string | null;
712
- /** Conference password. */
794
+ /**
795
+ * Conference password.
796
+ * @minLength 1
797
+ * @maxLength 100
798
+ */
713
799
  password?: string | null;
714
800
  }
715
801
  export interface BookingPolicySettings {
@@ -782,7 +868,10 @@ export interface QueryV2PagingMethodOneOf {
782
868
  cursorPaging?: CursorPaging;
783
869
  }
784
870
  export interface Sorting {
785
- /** Name of the field to sort by. */
871
+ /**
872
+ * Name of the field to sort by.
873
+ * @maxLength 512
874
+ */
786
875
  fieldName?: string;
787
876
  /** Sort order. */
788
877
  order?: SortOrder;
@@ -798,13 +887,17 @@ export interface Paging {
798
887
  offset?: number | null;
799
888
  }
800
889
  export interface CursorPaging {
801
- /** Maximum number of items to return in the results. */
890
+ /**
891
+ * Maximum number of items to return in the results.
892
+ * @max 100
893
+ */
802
894
  limit?: number | null;
803
895
  /**
804
896
  * Pointer to the next or previous page in the list of results.
805
897
  *
806
898
  * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
807
899
  * Not relevant for the first request.
900
+ * @maxLength 16000
808
901
  */
809
902
  cursor?: string | null;
810
903
  }
@@ -832,9 +925,15 @@ export interface PagingMetadataV2 {
832
925
  cursors?: Cursors;
833
926
  }
834
927
  export interface Cursors {
835
- /** Cursor string pointing to the next page in the list of results. */
928
+ /**
929
+ * Cursor string pointing to the next page in the list of results.
930
+ * @maxLength 16000
931
+ */
836
932
  next?: string | null;
837
- /** Cursor pointing to the previous page in the list of results. */
933
+ /**
934
+ * Cursor pointing to the previous page in the list of results.
935
+ * @maxLength 16000
936
+ */
838
937
  prev?: string | null;
839
938
  }
840
939
  export interface QueryExtendedBookingsRequest {
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-reader-v2-extended-booking-extended-bookings.types.js","sourceRoot":"","sources":["../../../src/bookings-reader-v2-extended-booking-extended-bookings.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-reader-v2-extended-booking-extended-bookings.types.js","sourceRoot":"","sources":["../../../src/bookings-reader-v2-extended-booking-extended-bookings.types.ts"],"names":[],"mappings":"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"}