@wix/auto_sdk_bookings_pricing 1.0.1 → 1.0.3
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/src/bookings-v2-price-info-pricing.types.d.ts +123 -26
- package/build/cjs/src/bookings-v2-price-info-pricing.types.js.map +1 -1
- package/build/cjs/src/bookings-v2-price-info-pricing.universal.d.ts +126 -27
- package/build/cjs/src/bookings-v2-price-info-pricing.universal.js.map +1 -1
- package/build/es/src/bookings-v2-price-info-pricing.types.d.ts +123 -26
- package/build/es/src/bookings-v2-price-info-pricing.types.js.map +1 -1
- package/build/es/src/bookings-v2-price-info-pricing.universal.d.ts +126 -27
- package/build/es/src/bookings-v2-price-info-pricing.universal.js.map +1 -1
- package/build/internal/cjs/src/bookings-v2-price-info-pricing.types.d.ts +123 -26
- package/build/internal/cjs/src/bookings-v2-price-info-pricing.types.js.map +1 -1
- package/build/internal/cjs/src/bookings-v2-price-info-pricing.universal.d.ts +126 -27
- package/build/internal/cjs/src/bookings-v2-price-info-pricing.universal.js.map +1 -1
- package/build/internal/es/src/bookings-v2-price-info-pricing.types.d.ts +123 -26
- package/build/internal/es/src/bookings-v2-price-info-pricing.types.js.map +1 -1
- package/build/internal/es/src/bookings-v2-price-info-pricing.universal.d.ts +126 -27
- package/build/internal/es/src/bookings-v2-price-info-pricing.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -22,7 +22,10 @@ export interface PriceInfo extends PriceInfoTotalPriceOneOf {
|
|
|
22
22
|
* `payment.rateType` is set to `CUSTOM`.
|
|
23
23
|
*/
|
|
24
24
|
priceDescriptionInfo?: PriceDescriptionInfo;
|
|
25
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* List of line items, including the number of participants and the price per participant.
|
|
27
|
+
* @maxSize 20
|
|
28
|
+
*/
|
|
26
29
|
bookingLineItems?: BookingLineItem[];
|
|
27
30
|
/**
|
|
28
31
|
* Total deposit the customer must pay when booking the service.
|
|
@@ -63,9 +66,13 @@ export interface BookingLineItem {
|
|
|
63
66
|
* Service ID.
|
|
64
67
|
*
|
|
65
68
|
* Required when not using Wix Booking's default pricing logic.
|
|
69
|
+
* @format GUID
|
|
66
70
|
*/
|
|
67
71
|
serviceId?: string | null;
|
|
68
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* Resource ID. Required for services of type appointment or class.
|
|
74
|
+
* @format GUID
|
|
75
|
+
*/
|
|
69
76
|
resourceId?: string | null;
|
|
70
77
|
/**
|
|
71
78
|
* Custom choices. Choices are specific values for an option the customer can choose to book.
|
|
@@ -73,7 +80,10 @@ export interface BookingLineItem {
|
|
|
73
80
|
* Each choice may have a different price.
|
|
74
81
|
*/
|
|
75
82
|
choices?: ServiceChoice[];
|
|
76
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* Number of participants for the line item.
|
|
85
|
+
* @min 1
|
|
86
|
+
*/
|
|
77
87
|
numberOfParticipants?: number | null;
|
|
78
88
|
/**
|
|
79
89
|
* Price per participant for the line item.
|
|
@@ -94,6 +104,7 @@ export interface ServiceChoice extends ServiceChoiceChoiceOneOf {
|
|
|
94
104
|
* ID of the corresponding option for the choice. For example, the choice `child`
|
|
95
105
|
* could correspond to the option `ageGroup`. In this case, `optionId` is the ID
|
|
96
106
|
* for the `ageGroup` option.
|
|
107
|
+
* @format GUID
|
|
97
108
|
*/
|
|
98
109
|
optionId?: string;
|
|
99
110
|
}
|
|
@@ -112,22 +123,35 @@ export interface Duration {
|
|
|
112
123
|
/**
|
|
113
124
|
* Duration of the service in minutes.
|
|
114
125
|
* Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
|
|
126
|
+
* @min 1
|
|
127
|
+
* @max 44639
|
|
115
128
|
*/
|
|
116
129
|
minutes?: number;
|
|
117
130
|
/**
|
|
118
131
|
* Name of the duration option.
|
|
119
132
|
* Defaults to the formatted duration e.g. "1 hour, 30 minutes".
|
|
133
|
+
* @maxLength 255
|
|
120
134
|
*/
|
|
121
135
|
name?: string | null;
|
|
122
136
|
}
|
|
123
137
|
export interface PriceDescriptionInfo {
|
|
124
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* Price description in the site's [primary language](https://dev.wix.com/docs/sdk/frontend-modules/window/multilingual/site-languages).
|
|
140
|
+
* @maxLength 50
|
|
141
|
+
*/
|
|
125
142
|
original?: string;
|
|
126
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Translated price description. Available if the customer booked in a language other than the site's [primary language](https://dev.wix.com/docs/sdk/frontend-modules/window/multilingual/site-languages).
|
|
145
|
+
* @maxLength 50
|
|
146
|
+
*/
|
|
127
147
|
translated?: string | null;
|
|
128
148
|
}
|
|
129
149
|
export interface PreviewPriceRequest {
|
|
130
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* List of line items to preview the price for.
|
|
152
|
+
* @minSize 1
|
|
153
|
+
* @maxSize 20
|
|
154
|
+
*/
|
|
131
155
|
bookingLineItems: BookingLineItem[];
|
|
132
156
|
}
|
|
133
157
|
export interface PreviewPriceResponse {
|
|
@@ -144,6 +168,7 @@ export interface Booking extends BookingParticipantsInfoOneOf {
|
|
|
144
168
|
* Total number of participants. Available only when the relevant service
|
|
145
169
|
* doesn't have _variants and options_
|
|
146
170
|
* ([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)).
|
|
171
|
+
* @min 1
|
|
147
172
|
*/
|
|
148
173
|
totalParticipants?: number;
|
|
149
174
|
/**
|
|
@@ -154,6 +179,7 @@ export interface Booking extends BookingParticipantsInfoOneOf {
|
|
|
154
179
|
participantsChoices?: ParticipantChoices;
|
|
155
180
|
/**
|
|
156
181
|
* Booking ID.
|
|
182
|
+
* @format GUID
|
|
157
183
|
* @readonly
|
|
158
184
|
*/
|
|
159
185
|
_id?: string | null;
|
|
@@ -260,6 +286,7 @@ export interface BookingParticipantsInfoOneOf {
|
|
|
260
286
|
* Total number of participants. Available only when the relevant service
|
|
261
287
|
* doesn't have _variants and options_
|
|
262
288
|
* ([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)).
|
|
289
|
+
* @min 1
|
|
263
290
|
*/
|
|
264
291
|
totalParticipants?: number;
|
|
265
292
|
/**
|
|
@@ -299,6 +326,7 @@ export interface BookedEntity extends BookedEntityItemOneOf {
|
|
|
299
326
|
* Session title at the time of booking. If there is no pre-existing session,
|
|
300
327
|
* for example for appointment-based services, `title` is set to the service name.
|
|
301
328
|
* @readonly
|
|
329
|
+
* @maxLength 6000
|
|
302
330
|
*/
|
|
303
331
|
title?: string | null;
|
|
304
332
|
/**
|
|
@@ -341,6 +369,8 @@ export interface BookedSlot {
|
|
|
341
369
|
* For appointment-based services, Wix Bookings automatically populates `eventId`
|
|
342
370
|
* when the booking `status` changes to `CONFIRMED`. For class bookings, it's
|
|
343
371
|
* automatically populated upon booking creation.
|
|
372
|
+
* @minLength 36
|
|
373
|
+
* @maxLength 250
|
|
344
374
|
*/
|
|
345
375
|
eventId?: string | null;
|
|
346
376
|
/**
|
|
@@ -368,26 +398,42 @@ export interface BookedSlot {
|
|
|
368
398
|
location?: Location;
|
|
369
399
|
}
|
|
370
400
|
export interface BookedResource {
|
|
371
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* ID of the booking's primary resource.
|
|
403
|
+
* @format GUID
|
|
404
|
+
*/
|
|
372
405
|
_id?: string;
|
|
373
|
-
/**
|
|
406
|
+
/**
|
|
407
|
+
* Resource's name at the time of booking.
|
|
408
|
+
* @maxLength 40
|
|
409
|
+
*/
|
|
374
410
|
name?: string | null;
|
|
375
|
-
/**
|
|
411
|
+
/**
|
|
412
|
+
* Resource's email at the time of booking.
|
|
413
|
+
* @maxLength 500
|
|
414
|
+
*/
|
|
376
415
|
email?: string | null;
|
|
377
|
-
/**
|
|
416
|
+
/**
|
|
417
|
+
* ID of the schedule belonging to the booking's primary resource.
|
|
418
|
+
* @format GUID
|
|
419
|
+
*/
|
|
378
420
|
scheduleId?: string | null;
|
|
379
421
|
}
|
|
380
422
|
export interface Location {
|
|
381
423
|
/**
|
|
382
424
|
* Business location ID. Available only for locations that are business locations,
|
|
383
425
|
* meaning the `location_type` is `"OWNER_BUSINESS"`.
|
|
426
|
+
* @format GUID
|
|
384
427
|
*/
|
|
385
428
|
_id?: string | null;
|
|
386
429
|
/** Location name. */
|
|
387
430
|
name?: string | null;
|
|
388
431
|
/** The full address of this location. */
|
|
389
432
|
formattedAddress?: string | null;
|
|
390
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* The full translated address of this location.
|
|
435
|
+
* @maxLength 512
|
|
436
|
+
*/
|
|
391
437
|
formattedAddressTranslated?: string | null;
|
|
392
438
|
/**
|
|
393
439
|
* Location type.
|
|
@@ -410,7 +456,10 @@ export interface BookedSchedule {
|
|
|
410
456
|
* ([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)).
|
|
411
457
|
*/
|
|
412
458
|
scheduleId?: string;
|
|
413
|
-
/**
|
|
459
|
+
/**
|
|
460
|
+
* Booked service ID.
|
|
461
|
+
* @format GUID
|
|
462
|
+
*/
|
|
414
463
|
serviceId?: string | null;
|
|
415
464
|
/**
|
|
416
465
|
* _Location_
|
|
@@ -438,7 +487,10 @@ export interface BookedSchedule {
|
|
|
438
487
|
lastSessionEnd?: string | null;
|
|
439
488
|
}
|
|
440
489
|
export interface ContactDetails {
|
|
441
|
-
/**
|
|
490
|
+
/**
|
|
491
|
+
* Contact ID.
|
|
492
|
+
* @format GUID
|
|
493
|
+
*/
|
|
442
494
|
contactId?: string | null;
|
|
443
495
|
/**
|
|
444
496
|
* Contact's first name. When populated from a standard booking form, this
|
|
@@ -447,7 +499,10 @@ export interface ContactDetails {
|
|
|
447
499
|
firstName?: string | null;
|
|
448
500
|
/** Contact's last name. */
|
|
449
501
|
lastName?: string | null;
|
|
450
|
-
/**
|
|
502
|
+
/**
|
|
503
|
+
* Contact's email, used to create a new contact or get existing one from the [Contacts API](https://www.wix.com/velo/reference/wix-crm/contacts). Used to validate coupon usage limitations per contact. If not passed, the coupon usage limitation will not be enforced. (Coupon usage limitation validation is not supported yet).
|
|
504
|
+
* @format EMAIL
|
|
505
|
+
*/
|
|
451
506
|
email?: string | null;
|
|
452
507
|
/** Contact's phone number. */
|
|
453
508
|
phone?: string | null;
|
|
@@ -461,6 +516,7 @@ export interface ContactDetails {
|
|
|
461
516
|
/**
|
|
462
517
|
* Contact's country in [ISO 3166-1 alpha-2 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
|
|
463
518
|
* format.
|
|
519
|
+
* @format COUNTRY
|
|
464
520
|
*/
|
|
465
521
|
countryCode?: string | null;
|
|
466
522
|
}
|
|
@@ -470,7 +526,10 @@ export interface Address extends AddressStreetOneOf {
|
|
|
470
526
|
streetAddress?: StreetAddress;
|
|
471
527
|
/** Main address line, usually street and number, as free text. */
|
|
472
528
|
addressLine?: string | null;
|
|
473
|
-
/**
|
|
529
|
+
/**
|
|
530
|
+
* Country code.
|
|
531
|
+
* @format COUNTRY
|
|
532
|
+
*/
|
|
474
533
|
country?: string | null;
|
|
475
534
|
/** Subdivision. Usually state, region, prefecture or province code, according to [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). */
|
|
476
535
|
subdivision?: string | null;
|
|
@@ -519,7 +578,10 @@ export interface Subdivision {
|
|
|
519
578
|
name?: string;
|
|
520
579
|
}
|
|
521
580
|
export interface CustomFormField {
|
|
522
|
-
/**
|
|
581
|
+
/**
|
|
582
|
+
* ID of the form field as defined in the form.
|
|
583
|
+
* @format GUID
|
|
584
|
+
*/
|
|
523
585
|
_id?: string;
|
|
524
586
|
/** Value that was submitted for this field. */
|
|
525
587
|
value?: string | null;
|
|
@@ -628,6 +690,7 @@ export interface BookingSource {
|
|
|
628
690
|
actor?: Actor;
|
|
629
691
|
/**
|
|
630
692
|
* Wix site ID of the application that created the booking.
|
|
693
|
+
* @format GUID
|
|
631
694
|
* @readonly
|
|
632
695
|
*/
|
|
633
696
|
appDefId?: string | null;
|
|
@@ -658,26 +721,53 @@ export interface ParticipantNotification {
|
|
|
658
721
|
message?: string | null;
|
|
659
722
|
}
|
|
660
723
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
661
|
-
/**
|
|
724
|
+
/**
|
|
725
|
+
* ID of a site visitor that has not logged in to the site.
|
|
726
|
+
* @format GUID
|
|
727
|
+
*/
|
|
662
728
|
anonymousVisitorId?: string;
|
|
663
|
-
/**
|
|
729
|
+
/**
|
|
730
|
+
* ID of a site visitor that has logged in to the site.
|
|
731
|
+
* @format GUID
|
|
732
|
+
*/
|
|
664
733
|
memberId?: string;
|
|
665
|
-
/**
|
|
734
|
+
/**
|
|
735
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
736
|
+
* @format GUID
|
|
737
|
+
*/
|
|
666
738
|
wixUserId?: string;
|
|
667
|
-
/**
|
|
739
|
+
/**
|
|
740
|
+
* ID of an app.
|
|
741
|
+
* @format GUID
|
|
742
|
+
*/
|
|
668
743
|
appId?: string;
|
|
669
|
-
/**
|
|
744
|
+
/**
|
|
745
|
+
* ID of of a contact in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system.
|
|
746
|
+
* @format GUID
|
|
747
|
+
*/
|
|
670
748
|
contactId?: string | null;
|
|
671
749
|
}
|
|
672
750
|
/** @oneof */
|
|
673
751
|
export interface IdentificationDataIdOneOf {
|
|
674
|
-
/**
|
|
752
|
+
/**
|
|
753
|
+
* ID of a site visitor that has not logged in to the site.
|
|
754
|
+
* @format GUID
|
|
755
|
+
*/
|
|
675
756
|
anonymousVisitorId?: string;
|
|
676
|
-
/**
|
|
757
|
+
/**
|
|
758
|
+
* ID of a site visitor that has logged in to the site.
|
|
759
|
+
* @format GUID
|
|
760
|
+
*/
|
|
677
761
|
memberId?: string;
|
|
678
|
-
/**
|
|
762
|
+
/**
|
|
763
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
764
|
+
* @format GUID
|
|
765
|
+
*/
|
|
679
766
|
wixUserId?: string;
|
|
680
|
-
/**
|
|
767
|
+
/**
|
|
768
|
+
* ID of an app.
|
|
769
|
+
* @format GUID
|
|
770
|
+
*/
|
|
681
771
|
appId?: string;
|
|
682
772
|
}
|
|
683
773
|
export declare enum IdentityType {
|
|
@@ -721,21 +811,30 @@ export interface ExtendedFields {
|
|
|
721
811
|
namespaces?: Record<string, Record<string, any>>;
|
|
722
812
|
}
|
|
723
813
|
export interface ParticipantChoices {
|
|
724
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* Information about the booked service choices. Includes the number of participants.
|
|
816
|
+
* @minSize 1
|
|
817
|
+
* @maxSize 10
|
|
818
|
+
*/
|
|
725
819
|
serviceChoices?: ServiceChoices[];
|
|
726
820
|
}
|
|
727
821
|
export interface ServiceChoices {
|
|
728
822
|
/**
|
|
729
823
|
* Number of participants for this _variant_
|
|
730
824
|
* ([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)).
|
|
825
|
+
* @min 1
|
|
731
826
|
*/
|
|
732
827
|
numberOfParticipants?: number | null;
|
|
733
|
-
/**
|
|
828
|
+
/**
|
|
829
|
+
* Service choices for these participants.
|
|
830
|
+
* @maxSize 5
|
|
831
|
+
*/
|
|
734
832
|
choices?: ServiceChoice[];
|
|
735
833
|
}
|
|
736
834
|
export interface MultiServiceBookingInfo {
|
|
737
835
|
/**
|
|
738
836
|
* Multi-service booking ID.
|
|
837
|
+
* @format GUID
|
|
739
838
|
* @readonly
|
|
740
839
|
*/
|
|
741
840
|
_id?: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v2-price-info-pricing.universal.js","sourceRoot":"","sources":["../../../src/bookings-v2-price-info-pricing.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,gCAAgC,MAAM,0CAA0C,CAAC;
|
|
1
|
+
{"version":3,"file":"bookings-v2-price-info-pricing.universal.js","sourceRoot":"","sources":["../../../src/bookings-v2-price-info-pricing.universal.ts"],"names":[],"mappings":"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"}
|