@wix/bookings 1.0.43 → 1.0.44
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-calendar-v1-session.public.d.ts +1 -1
- package/build/cjs/src/bookings-calendar-v1-session.public.js +2 -1
- package/build/cjs/src/bookings-calendar-v1-session.public.js.map +1 -1
- package/build/cjs/src/bookings-calendar-v1-session.types.d.ts +27 -11
- package/build/cjs/src/bookings-calendar-v1-session.types.js +11 -1
- package/build/cjs/src/bookings-calendar-v1-session.types.js.map +1 -1
- package/build/cjs/src/bookings-calendar-v1-session.universal.d.ts +43 -20
- package/build/cjs/src/bookings-calendar-v1-session.universal.js +20 -10
- package/build/cjs/src/bookings-calendar-v1-session.universal.js.map +1 -1
- package/build/cjs/src/bookings-services-v2-service.http.d.ts +23 -1
- package/build/cjs/src/bookings-services-v2-service.http.js +23 -1
- package/build/cjs/src/bookings-services-v2-service.http.js.map +1 -1
- package/build/cjs/src/bookings-services-v2-service.types.d.ts +45 -26
- package/build/cjs/src/bookings-services-v2-service.types.js.map +1 -1
- package/build/cjs/src/bookings-services-v2-service.universal.d.ts +65 -26
- package/build/cjs/src/bookings-services-v2-service.universal.js +20 -0
- package/build/cjs/src/bookings-services-v2-service.universal.js.map +1 -1
- package/build/es/src/bookings-calendar-v1-session.public.d.ts +1 -1
- package/build/es/src/bookings-calendar-v1-session.public.js +1 -1
- package/build/es/src/bookings-calendar-v1-session.public.js.map +1 -1
- package/build/es/src/bookings-calendar-v1-session.types.d.ts +27 -11
- package/build/es/src/bookings-calendar-v1-session.types.js +10 -0
- package/build/es/src/bookings-calendar-v1-session.types.js.map +1 -1
- package/build/es/src/bookings-calendar-v1-session.universal.d.ts +43 -20
- package/build/es/src/bookings-calendar-v1-session.universal.js +19 -9
- package/build/es/src/bookings-calendar-v1-session.universal.js.map +1 -1
- package/build/es/src/bookings-services-v2-service.http.d.ts +23 -1
- package/build/es/src/bookings-services-v2-service.http.js +23 -1
- package/build/es/src/bookings-services-v2-service.http.js.map +1 -1
- package/build/es/src/bookings-services-v2-service.types.d.ts +45 -26
- package/build/es/src/bookings-services-v2-service.types.js.map +1 -1
- package/build/es/src/bookings-services-v2-service.universal.d.ts +65 -26
- package/build/es/src/bookings-services-v2-service.universal.js +20 -0
- package/build/es/src/bookings-services-v2-service.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -11,15 +11,15 @@ export interface Service {
|
|
|
11
11
|
sortOrder?: number | null;
|
|
12
12
|
/** Service name. */
|
|
13
13
|
name?: string | null;
|
|
14
|
-
/** Service description,
|
|
14
|
+
/** Service description, such as `High-class hair styling, cuts, straightening and color.` */
|
|
15
15
|
description?: string | null;
|
|
16
|
-
/** Short service description,
|
|
16
|
+
/** Short service description, such as `Hair styling.` */
|
|
17
17
|
tagLine?: string | null;
|
|
18
18
|
/** Default maximum number of customers that can book the service. The service cannot be booked beyond this capacity. */
|
|
19
19
|
defaultCapacity?: number | null;
|
|
20
20
|
/** Media associated with the service. */
|
|
21
21
|
media?: Media;
|
|
22
|
-
/** Whether the service is hidden from the site.
|
|
22
|
+
/** Whether the service is hidden from the site. */
|
|
23
23
|
hidden?: boolean | null;
|
|
24
24
|
/** The category the service is associated with. */
|
|
25
25
|
category?: V2Category;
|
|
@@ -61,19 +61,19 @@ export interface Service {
|
|
|
61
61
|
*/
|
|
62
62
|
mainSlug?: Slug;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* URLs to various service-related pages, such as the calendar page and the booking page.
|
|
65
65
|
* @readonly
|
|
66
66
|
*/
|
|
67
67
|
urls?: URLs;
|
|
68
68
|
/** Custom SEO data for the service. */
|
|
69
69
|
seoData?: SeoSchema;
|
|
70
70
|
/**
|
|
71
|
-
* Date and time the service was created.
|
|
71
|
+
* Date and time the service was created.
|
|
72
72
|
* @readonly
|
|
73
73
|
*/
|
|
74
74
|
createdDate?: Date;
|
|
75
75
|
/**
|
|
76
|
-
* Date and time the service was updated.
|
|
76
|
+
* Date and time the service was updated.
|
|
77
77
|
* @readonly
|
|
78
78
|
*/
|
|
79
79
|
updatedDate?: Date;
|
|
@@ -152,13 +152,13 @@ export interface V2Category {
|
|
|
152
152
|
export interface Form {
|
|
153
153
|
/**
|
|
154
154
|
* ID of the form associated with the service.
|
|
155
|
-
*
|
|
156
|
-
*
|
|
155
|
+
* The form information that is submitted when booking includes contact details, participants, and other form fields set up for the service.
|
|
156
|
+
* You can manage the service booking form fields using the [Bookings Forms API](https://dev.wix.com/api/rest/wix-bookings/services/form/form-object).
|
|
157
157
|
*/
|
|
158
158
|
id?: string;
|
|
159
159
|
}
|
|
160
160
|
export interface FormSettings {
|
|
161
|
-
/** Whether the service booking form should be hidden from the site.
|
|
161
|
+
/** Whether the service booking form should be hidden from the site. */
|
|
162
162
|
hidden?: boolean | null;
|
|
163
163
|
}
|
|
164
164
|
export interface Payment extends PaymentRateOneOf {
|
|
@@ -180,17 +180,21 @@ export interface Payment extends PaymentRateOneOf {
|
|
|
180
180
|
options?: PaymentOptions;
|
|
181
181
|
/**
|
|
182
182
|
* The details for the fixed price of the service.
|
|
183
|
-
*
|
|
183
|
+
*
|
|
184
|
+
* Required when: `rateType` is `FIXED`
|
|
184
185
|
*/
|
|
185
186
|
fixed?: FixedPayment;
|
|
186
187
|
/**
|
|
187
188
|
* The details for the custom price of the service.
|
|
188
|
-
*
|
|
189
|
+
*
|
|
190
|
+
* Required when: `rateType` is `CUSTOM`
|
|
189
191
|
*/
|
|
190
192
|
custom?: CustomPayment;
|
|
191
193
|
/**
|
|
192
194
|
* The details for the varied pricing of the service.
|
|
193
|
-
*
|
|
195
|
+
* Read more about [varied price options](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online#offering-varied-price-options).
|
|
196
|
+
*
|
|
197
|
+
* Required when: `rateType` is `VARIED`
|
|
194
198
|
*/
|
|
195
199
|
varied?: VariedPayment;
|
|
196
200
|
}
|
|
@@ -198,17 +202,21 @@ export interface Payment extends PaymentRateOneOf {
|
|
|
198
202
|
export interface PaymentRateOneOf {
|
|
199
203
|
/**
|
|
200
204
|
* The details for the fixed price of the service.
|
|
201
|
-
*
|
|
205
|
+
*
|
|
206
|
+
* Required when: `rateType` is `FIXED`
|
|
202
207
|
*/
|
|
203
208
|
fixed?: FixedPayment;
|
|
204
209
|
/**
|
|
205
210
|
* The details for the custom price of the service.
|
|
206
|
-
*
|
|
211
|
+
*
|
|
212
|
+
* Required when: `rateType` is `CUSTOM`
|
|
207
213
|
*/
|
|
208
214
|
custom?: CustomPayment;
|
|
209
215
|
/**
|
|
210
216
|
* The details for the varied pricing of the service.
|
|
211
|
-
*
|
|
217
|
+
* Read more about [varied price options](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online#offering-varied-price-options).
|
|
218
|
+
*
|
|
219
|
+
* Required when: `rateType` is `VARIED`
|
|
212
220
|
*/
|
|
213
221
|
varied?: VariedPayment;
|
|
214
222
|
}
|
|
@@ -226,10 +234,15 @@ export declare enum RateType {
|
|
|
226
234
|
export interface FixedPayment {
|
|
227
235
|
/**
|
|
228
236
|
* The fixed price required to book the service.
|
|
229
|
-
*
|
|
237
|
+
*
|
|
238
|
+
* Required when: `rateType` is `FIXED`
|
|
230
239
|
*/
|
|
231
240
|
price?: Money;
|
|
232
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* The deposit price required to book the service.
|
|
243
|
+
*
|
|
244
|
+
* Required when: `rateType` is `FIXED` and `paymentOptions.deposit` is `true`
|
|
245
|
+
*/
|
|
233
246
|
deposit?: Money;
|
|
234
247
|
}
|
|
235
248
|
/**
|
|
@@ -245,13 +258,17 @@ export interface Money {
|
|
|
245
258
|
formattedValue?: string | null;
|
|
246
259
|
}
|
|
247
260
|
export interface CustomPayment {
|
|
248
|
-
/** A custom description explaining the customer how to pay for the service. */
|
|
261
|
+
/** A custom description explaining to the customer how to pay for the service. */
|
|
249
262
|
description?: string | null;
|
|
250
263
|
}
|
|
251
264
|
export interface VariedPayment {
|
|
252
265
|
/** The default price for the service without any variants. It will also be used as the default price for any new variant. */
|
|
253
266
|
defaultPrice?: Money;
|
|
254
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* The deposit price required to book the service.
|
|
269
|
+
*
|
|
270
|
+
* Required when: `rateType` is `VARIED` and `paymentOptions.deposit` is `true`
|
|
271
|
+
*/
|
|
255
272
|
deposit?: Money;
|
|
256
273
|
/**
|
|
257
274
|
* The minimal price a customer may pay for this service, based on its variants.
|
|
@@ -269,7 +286,7 @@ export interface PaymentOptions {
|
|
|
269
286
|
* Customers can pay for the service online.
|
|
270
287
|
* When `true`:
|
|
271
288
|
* + `rateType` must be either `FIXED` or `VARIED`.
|
|
272
|
-
* + `fixed.price` or `varied.default_price` must be specified respectively. Read more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)
|
|
289
|
+
* + `fixed.price` or `varied.default_price` must be specified respectively. Read more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online).
|
|
273
290
|
*/
|
|
274
291
|
online?: boolean | null;
|
|
275
292
|
/** Customers can pay for the service in person. */
|
|
@@ -304,7 +321,7 @@ export interface Location extends LocationOptionsOneOf {
|
|
|
304
321
|
/**
|
|
305
322
|
* The type of location:
|
|
306
323
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
307
|
-
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations)
|
|
324
|
+
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
308
325
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
309
326
|
*/
|
|
310
327
|
type?: LocationType;
|
|
@@ -381,7 +398,7 @@ export interface BusinessLocationOptions {
|
|
|
381
398
|
*/
|
|
382
399
|
name?: string;
|
|
383
400
|
/**
|
|
384
|
-
* Whether this is the default location. There can only be
|
|
401
|
+
* Whether this is the default location. There can only be 1 default location per site. The default location can't be archived.
|
|
385
402
|
* @readonly
|
|
386
403
|
*/
|
|
387
404
|
default?: boolean | null;
|
|
@@ -594,22 +611,24 @@ export interface Schedule {
|
|
|
594
611
|
* @readonly
|
|
595
612
|
*/
|
|
596
613
|
id?: string | null;
|
|
597
|
-
/** Limitations dictating the way session availability is calculated.
|
|
614
|
+
/** Limitations dictating the way session availability is calculated. For appointments only. */
|
|
598
615
|
availabilityConstraints?: AvailabilityConstraints;
|
|
599
616
|
}
|
|
600
617
|
export interface AvailabilityConstraints {
|
|
601
618
|
/**
|
|
602
619
|
* A list of duration options for sessions, in minutes.
|
|
603
620
|
*
|
|
604
|
-
* Min: 1 minute
|
|
605
|
-
*
|
|
606
621
|
* The availability calculation generates slots for sessions with these durations, unless there is a conflict with existing sessions or other availability constraints exist.
|
|
607
622
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
623
|
+
*
|
|
624
|
+
*
|
|
625
|
+
* Min: 1 minute
|
|
608
626
|
*/
|
|
609
627
|
sessionDurations?: number[];
|
|
610
628
|
/**
|
|
611
629
|
* The number of minutes between the end of a session and the start of the next.
|
|
612
630
|
*
|
|
631
|
+
*
|
|
613
632
|
* Min: 0 minutes
|
|
614
633
|
* Max: 720 minutes
|
|
615
634
|
*/
|
|
@@ -619,7 +638,7 @@ export interface Slug {
|
|
|
619
638
|
/** The unique part of service's URL that identifies the service's information page. For example, `service-1` in `https:/example.com/services/service-1`. */
|
|
620
639
|
name?: string;
|
|
621
640
|
/**
|
|
622
|
-
* Whether the slug was generated or customized. If `true`, the slug was
|
|
641
|
+
* Whether the slug was generated or customized. If `true`, the slug was customized manually by the business owner. Otherwise, the slug was automatically generated from the service name.
|
|
623
642
|
* @readonly
|
|
624
643
|
*/
|
|
625
644
|
custom?: boolean | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-services-v2-service.types.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service.types.ts"],"names":[],"mappings":";;;AAsFA,IAAY,WAQX;AARD,WAAY,WAAW;IACrB,4DAA6C,CAAA;IAC7C,qCAAqC;IACrC,0CAA2B,CAAA;IAC3B,8BAA8B;IAC9B,8BAAe,CAAA;IACf,+BAA+B;IAC/B,gCAAiB,CAAA;AACnB,CAAC,EARW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAQtB;
|
|
1
|
+
{"version":3,"file":"bookings-services-v2-service.types.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service.types.ts"],"names":[],"mappings":";;;AAsFA,IAAY,WAQX;AARD,WAAY,WAAW;IACrB,4DAA6C,CAAA;IAC7C,qCAAqC;IACrC,0CAA2B,CAAA;IAC3B,8BAA8B;IAC9B,8BAAe,CAAA;IACf,+BAA+B;IAC/B,gCAAiB,CAAA;AACnB,CAAC,EARW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAQtB;AA2ID,IAAY,QAUX;AAVD,WAAY,QAAQ;IAClB,mDAAuC,CAAA;IACvC,qCAAqC;IACrC,2BAAe,CAAA;IACf,wEAAwE;IACxE,6BAAiB,CAAA;IACjB,uFAAuF;IACvF,6BAAiB,CAAA;IACjB,8CAA8C;IAC9C,6BAAiB,CAAA;AACnB,CAAC,EAVW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAUnB;AA0HD,IAAY,YAQX;AARD,WAAY,YAAY;IACtB,+DAA+C,CAAA;IAC/C,iQAAiQ;IACjQ,iCAAiB,CAAA;IACjB,6JAA6J;IAC7J,qCAAqB,CAAA;IACrB,8IAA8I;IAC9I,qCAAqB,CAAA;AACvB,CAAC,EARW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAQvB;AAmeD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;AA8ED,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,sBAAsB;IACtB,6BAAmB,CAAA;IACnB,2BAA2B;IAC3B,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,GAAN,cAAM,KAAN,cAAM,QAKjB;AAED,IAAY,KAIX;AAJD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;AACrB,CAAC,EAJW,KAAK,GAAL,aAAK,KAAL,aAAK,QAIhB;AA4LD,IAAY,gBAQX;AARD,WAAY,gBAAgB;IAC1B,6DAAyC,CAAA;IACzC,gFAAgF;IAChF,yDAAqC,CAAA;IACrC,0DAA0D;IAC1D,uFAAmE,CAAA;IACnE,6EAA6E;IAC7E,+DAA2C,CAAA;AAC7C,CAAC,EARW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAQ3B"}
|
|
@@ -17,15 +17,15 @@ export interface Service {
|
|
|
17
17
|
sortOrder?: number | null;
|
|
18
18
|
/** Service name. */
|
|
19
19
|
name?: string | null;
|
|
20
|
-
/** Service description,
|
|
20
|
+
/** Service description, such as `High-class hair styling, cuts, straightening and color.` */
|
|
21
21
|
description?: string | null;
|
|
22
|
-
/** Short service description,
|
|
22
|
+
/** Short service description, such as `Hair styling.` */
|
|
23
23
|
tagLine?: string | null;
|
|
24
24
|
/** Default maximum number of customers that can book the service. The service cannot be booked beyond this capacity. */
|
|
25
25
|
defaultCapacity?: number | null;
|
|
26
26
|
/** Media associated with the service. */
|
|
27
27
|
media?: Media;
|
|
28
|
-
/** Whether the service is hidden from the site.
|
|
28
|
+
/** Whether the service is hidden from the site. */
|
|
29
29
|
hidden?: boolean | null;
|
|
30
30
|
/** The category the service is associated with. */
|
|
31
31
|
category?: V2Category;
|
|
@@ -67,19 +67,19 @@ export interface Service {
|
|
|
67
67
|
*/
|
|
68
68
|
mainSlug?: Slug;
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* URLs to various service-related pages, such as the calendar page and the booking page.
|
|
71
71
|
* @readonly
|
|
72
72
|
*/
|
|
73
73
|
urls?: URLs;
|
|
74
74
|
/** Custom SEO data for the service. */
|
|
75
75
|
seoData?: SeoSchema;
|
|
76
76
|
/**
|
|
77
|
-
* Date and time the service was created.
|
|
77
|
+
* Date and time the service was created.
|
|
78
78
|
* @readonly
|
|
79
79
|
*/
|
|
80
80
|
_createdDate?: Date;
|
|
81
81
|
/**
|
|
82
|
-
* Date and time the service was updated.
|
|
82
|
+
* Date and time the service was updated.
|
|
83
83
|
* @readonly
|
|
84
84
|
*/
|
|
85
85
|
_updatedDate?: Date;
|
|
@@ -135,13 +135,13 @@ export interface V2Category {
|
|
|
135
135
|
export interface Form {
|
|
136
136
|
/**
|
|
137
137
|
* ID of the form associated with the service.
|
|
138
|
-
*
|
|
139
|
-
*
|
|
138
|
+
* The form information that is submitted when booking includes contact details, participants, and other form fields set up for the service.
|
|
139
|
+
* You can manage the service booking form fields using the [Bookings Forms API](https://dev.wix.com/api/rest/wix-bookings/services/form/form-object).
|
|
140
140
|
*/
|
|
141
141
|
_id?: string;
|
|
142
142
|
}
|
|
143
143
|
export interface FormSettings {
|
|
144
|
-
/** Whether the service booking form should be hidden from the site.
|
|
144
|
+
/** Whether the service booking form should be hidden from the site. */
|
|
145
145
|
hidden?: boolean | null;
|
|
146
146
|
}
|
|
147
147
|
export interface Payment extends PaymentRateOneOf {
|
|
@@ -163,17 +163,21 @@ export interface Payment extends PaymentRateOneOf {
|
|
|
163
163
|
options?: PaymentOptions;
|
|
164
164
|
/**
|
|
165
165
|
* The details for the fixed price of the service.
|
|
166
|
-
*
|
|
166
|
+
*
|
|
167
|
+
* Required when: `rateType` is `FIXED`
|
|
167
168
|
*/
|
|
168
169
|
fixed?: FixedPayment;
|
|
169
170
|
/**
|
|
170
171
|
* The details for the custom price of the service.
|
|
171
|
-
*
|
|
172
|
+
*
|
|
173
|
+
* Required when: `rateType` is `CUSTOM`
|
|
172
174
|
*/
|
|
173
175
|
custom?: CustomPayment;
|
|
174
176
|
/**
|
|
175
177
|
* The details for the varied pricing of the service.
|
|
176
|
-
*
|
|
178
|
+
* Read more about [varied price options](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online#offering-varied-price-options).
|
|
179
|
+
*
|
|
180
|
+
* Required when: `rateType` is `VARIED`
|
|
177
181
|
*/
|
|
178
182
|
varied?: VariedPayment;
|
|
179
183
|
}
|
|
@@ -181,17 +185,21 @@ export interface Payment extends PaymentRateOneOf {
|
|
|
181
185
|
export interface PaymentRateOneOf {
|
|
182
186
|
/**
|
|
183
187
|
* The details for the fixed price of the service.
|
|
184
|
-
*
|
|
188
|
+
*
|
|
189
|
+
* Required when: `rateType` is `FIXED`
|
|
185
190
|
*/
|
|
186
191
|
fixed?: FixedPayment;
|
|
187
192
|
/**
|
|
188
193
|
* The details for the custom price of the service.
|
|
189
|
-
*
|
|
194
|
+
*
|
|
195
|
+
* Required when: `rateType` is `CUSTOM`
|
|
190
196
|
*/
|
|
191
197
|
custom?: CustomPayment;
|
|
192
198
|
/**
|
|
193
199
|
* The details for the varied pricing of the service.
|
|
194
|
-
*
|
|
200
|
+
* Read more about [varied price options](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online#offering-varied-price-options).
|
|
201
|
+
*
|
|
202
|
+
* Required when: `rateType` is `VARIED`
|
|
195
203
|
*/
|
|
196
204
|
varied?: VariedPayment;
|
|
197
205
|
}
|
|
@@ -209,10 +217,15 @@ export declare enum RateType {
|
|
|
209
217
|
export interface FixedPayment {
|
|
210
218
|
/**
|
|
211
219
|
* The fixed price required to book the service.
|
|
212
|
-
*
|
|
220
|
+
*
|
|
221
|
+
* Required when: `rateType` is `FIXED`
|
|
213
222
|
*/
|
|
214
223
|
price?: Money;
|
|
215
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* The deposit price required to book the service.
|
|
226
|
+
*
|
|
227
|
+
* Required when: `rateType` is `FIXED` and `paymentOptions.deposit` is `true`
|
|
228
|
+
*/
|
|
216
229
|
deposit?: Money;
|
|
217
230
|
}
|
|
218
231
|
/**
|
|
@@ -228,13 +241,17 @@ export interface Money {
|
|
|
228
241
|
formattedValue?: string | null;
|
|
229
242
|
}
|
|
230
243
|
export interface CustomPayment {
|
|
231
|
-
/** A custom description explaining the customer how to pay for the service. */
|
|
244
|
+
/** A custom description explaining to the customer how to pay for the service. */
|
|
232
245
|
description?: string | null;
|
|
233
246
|
}
|
|
234
247
|
export interface VariedPayment {
|
|
235
248
|
/** The default price for the service without any variants. It will also be used as the default price for any new variant. */
|
|
236
249
|
defaultPrice?: Money;
|
|
237
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* The deposit price required to book the service.
|
|
252
|
+
*
|
|
253
|
+
* Required when: `rateType` is `VARIED` and `paymentOptions.deposit` is `true`
|
|
254
|
+
*/
|
|
238
255
|
deposit?: Money;
|
|
239
256
|
/**
|
|
240
257
|
* The minimal price a customer may pay for this service, based on its variants.
|
|
@@ -252,7 +269,7 @@ export interface PaymentOptions {
|
|
|
252
269
|
* Customers can pay for the service online.
|
|
253
270
|
* When `true`:
|
|
254
271
|
* + `rateType` must be either `FIXED` or `VARIED`.
|
|
255
|
-
* + `fixed.price` or `varied.default_price` must be specified respectively. Read more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online)
|
|
272
|
+
* + `fixed.price` or `varied.default_price` must be specified respectively. Read more about [getting paid online](https://support.wix.com/en/article/wix-bookings-about-getting-paid-online).
|
|
256
273
|
*/
|
|
257
274
|
online?: boolean | null;
|
|
258
275
|
/** Customers can pay for the service in person. */
|
|
@@ -287,7 +304,7 @@ export interface Location extends LocationOptionsOneOf {
|
|
|
287
304
|
/**
|
|
288
305
|
* The type of location:
|
|
289
306
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
290
|
-
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations)
|
|
307
|
+
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
291
308
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
292
309
|
*/
|
|
293
310
|
type?: LocationType;
|
|
@@ -362,7 +379,7 @@ export interface BusinessLocationOptions {
|
|
|
362
379
|
*/
|
|
363
380
|
name?: string;
|
|
364
381
|
/**
|
|
365
|
-
* Whether this is the default location. There can only be
|
|
382
|
+
* Whether this is the default location. There can only be 1 default location per site. The default location can't be archived.
|
|
366
383
|
* @readonly
|
|
367
384
|
*/
|
|
368
385
|
default?: boolean | null;
|
|
@@ -575,22 +592,24 @@ export interface Schedule {
|
|
|
575
592
|
* @readonly
|
|
576
593
|
*/
|
|
577
594
|
_id?: string | null;
|
|
578
|
-
/** Limitations dictating the way session availability is calculated.
|
|
595
|
+
/** Limitations dictating the way session availability is calculated. For appointments only. */
|
|
579
596
|
availabilityConstraints?: AvailabilityConstraints;
|
|
580
597
|
}
|
|
581
598
|
export interface AvailabilityConstraints {
|
|
582
599
|
/**
|
|
583
600
|
* A list of duration options for sessions, in minutes.
|
|
584
601
|
*
|
|
585
|
-
* Min: 1 minute
|
|
586
|
-
*
|
|
587
602
|
* The availability calculation generates slots for sessions with these durations, unless there is a conflict with existing sessions or other availability constraints exist.
|
|
588
603
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
604
|
+
*
|
|
605
|
+
*
|
|
606
|
+
* Min: 1 minute
|
|
589
607
|
*/
|
|
590
608
|
sessionDurations?: number[];
|
|
591
609
|
/**
|
|
592
610
|
* The number of minutes between the end of a session and the start of the next.
|
|
593
611
|
*
|
|
612
|
+
*
|
|
594
613
|
* Min: 0 minutes
|
|
595
614
|
* Max: 720 minutes
|
|
596
615
|
*/
|
|
@@ -600,7 +619,7 @@ export interface Slug {
|
|
|
600
619
|
/** The unique part of service's URL that identifies the service's information page. For example, `service-1` in `https:/example.com/services/service-1`. */
|
|
601
620
|
name?: string;
|
|
602
621
|
/**
|
|
603
|
-
* Whether the slug was generated or customized. If `true`, the slug was
|
|
622
|
+
* Whether the slug was generated or customized. If `true`, the slug was customized manually by the business owner. Otherwise, the slug was automatically generated from the service name.
|
|
604
623
|
* @readonly
|
|
605
624
|
*/
|
|
606
625
|
custom?: boolean | null;
|
|
@@ -1021,6 +1040,26 @@ export declare enum InvalidSlugError {
|
|
|
1021
1040
|
*/
|
|
1022
1041
|
export declare function getService(serviceId: string): Promise<Service>;
|
|
1023
1042
|
/**
|
|
1043
|
+
* Retrieves a list of up to 100 services, given the provided limit in the query object.
|
|
1044
|
+
* paging, filtering, and sorting.
|
|
1045
|
+
*
|
|
1046
|
+
*
|
|
1047
|
+
* Define queries using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) with [Cursor paging](https://dev.wix.com/api/rest/getting-started/api-query-language#getting-started_api-query-language_cursor-paging).
|
|
1048
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
1049
|
+
* + `paging.limit` is `100`.
|
|
1050
|
+
* + `paging.offset` is `0`.
|
|
1051
|
+
*
|
|
1052
|
+
* For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/services/supported-filters-and-sorting).
|
|
1053
|
+
* To retrieve all services use an empty query:
|
|
1054
|
+
* ```javascript
|
|
1055
|
+
* {
|
|
1056
|
+
* "query": {}
|
|
1057
|
+
* }
|
|
1058
|
+
* ```
|
|
1059
|
+
* >**Notes:**
|
|
1060
|
+
* > + Use UTC format when filtering with dates.
|
|
1061
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
1062
|
+
* more than once in a query, only the first occurrence is processed.
|
|
1024
1063
|
* To learn about working with Query endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
1025
1064
|
* @public
|
|
1026
1065
|
* @documentationMaturity preview
|
|
@@ -192,6 +192,26 @@ function getService(serviceId) {
|
|
|
192
192
|
}
|
|
193
193
|
exports.getService = getService;
|
|
194
194
|
/**
|
|
195
|
+
* Retrieves a list of up to 100 services, given the provided limit in the query object.
|
|
196
|
+
* paging, filtering, and sorting.
|
|
197
|
+
*
|
|
198
|
+
*
|
|
199
|
+
* Define queries using [WQL - Wix Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) with [Cursor paging](https://dev.wix.com/api/rest/getting-started/api-query-language#getting-started_api-query-language_cursor-paging).
|
|
200
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
201
|
+
* + `paging.limit` is `100`.
|
|
202
|
+
* + `paging.offset` is `0`.
|
|
203
|
+
*
|
|
204
|
+
* For field support for filters and sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/services/supported-filters-and-sorting).
|
|
205
|
+
* To retrieve all services use an empty query:
|
|
206
|
+
* ```javascript
|
|
207
|
+
* {
|
|
208
|
+
* "query": {}
|
|
209
|
+
* }
|
|
210
|
+
* ```
|
|
211
|
+
* >**Notes:**
|
|
212
|
+
* > + Use UTC format when filtering with dates.
|
|
213
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
214
|
+
* more than once in a query, only the first occurrence is processed.
|
|
195
215
|
* To learn about working with Query endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
196
216
|
* @public
|
|
197
217
|
* @documentationMaturity preview
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-services-v2-service.universal.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAIiC;AAEjC,4GAA8F;AAC9F,aAAa;AACb,4FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAwF5B,IAAY,WAQX;AARD,WAAY,WAAW;IACrB,4DAA6C,CAAA;IAC7C,qCAAqC;IACrC,0CAA2B,CAAA;IAC3B,8BAA8B;IAC9B,8BAAe,CAAA;IACf,+BAA+B;IAC/B,gCAAiB,CAAA;AACnB,CAAC,EARW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAQtB;
|
|
1
|
+
{"version":3,"file":"bookings-services-v2-service.universal.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,5 +6,5 @@ export declare function deleteSession(httpClient: HttpClient): (sessionId: strin
|
|
|
6
6
|
export declare function querySessions(httpClient: HttpClient): (fromDate: Date, toDate: Date, options?: QuerySessionsOptions | undefined) => import("./bookings-calendar-v1-session.universal").SessionsQueryBuilder;
|
|
7
7
|
export declare function getSession(httpClient: HttpClient): (_id: string | null, options?: GetSessionOptions | undefined) => Promise<Session>;
|
|
8
8
|
export declare function listSessions(httpClient: HttpClient): (ids: string[] | null, options?: ListSessionsOptions | undefined) => Promise<import("./bookings-calendar-v1-session.universal").ListSessionsResponse>;
|
|
9
|
-
export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, CacheInfoStatus, } from './bookings-calendar-v1-session.universal';
|
|
9
|
+
export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, QuerySessionsRequestSessionType, CacheInfoStatus, } from './bookings-calendar-v1-session.universal';
|
|
10
10
|
export { Session, CalendarDateTime, LocalDateTime, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Participant, ExternalCalendarInfo, ExternalCalendarOverrides, CalendarConference, Version, CreateSessionRequest, CreateSessionResponse, UpdateSessionRequest, ParticipantNotification, UpdateSessionResponse, DeleteSessionRequest, DeleteSessionResponse, QuerySessionsRequest, QueryV2, QueryV2PagingMethodOneOf, CursorPaging, QuerySessionsResponse, CursorPagingMetadata, Cursors, GetSessionRequest, GetSessionResponse, ListSessionsRequest, ListSessionsResponse, QueryEventSessionInstancesRequest, CommonQueryV2, CommonQueryV2PagingMethodOneOf, CommonCursorPaging, QueryEventSessionInstancesResponse, PagingMetadataV2, CommonCursors, V2QuerySessionsRequest, V2QuerySessionsResponse, CacheRequest, CacheResponse, CacheInfo, UncacheRequest, UncacheResponse, ShortenCacheRequest, ShortenCacheResponse, GetCacheInfoRequest, GetCacheInfoResponse, FeedEvent, FeedEventTypeOneOf, SessionAddedOrUpdated, SessionRemoved, WindowExtended, WindowMoved, Empty, FeedReplayEvent, FeedReplayEventTypeOneOf, SessionAdded, ReplayCompleted, UpdateSession, UpdateSessionOptions, DeleteSessionOptions, QuerySessionsOptions, SessionsQueryResult, SessionsQueryBuilder, GetSessionOptions, ListSessionsOptions, } from './bookings-calendar-v1-session.universal';
|
|
@@ -29,5 +29,5 @@ export function listSessions(httpClient) {
|
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
{ httpClient });
|
|
31
31
|
}
|
|
32
|
-
export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, CacheInfoStatus, } from './bookings-calendar-v1-session.universal';
|
|
32
|
+
export { Transparency, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, CalendarType, Status, SessionType, ConferenceType, QuerySessionsRequestSessionType, CacheInfoStatus, } from './bookings-calendar-v1-session.universal';
|
|
33
33
|
//# sourceMappingURL=bookings-calendar-v1-session.public.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-calendar-v1-session.public.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v1-session.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,YAAY,IAAI,qBAAqB,GAQtC,MAAM,0CAA0C,CAAC;AAElD,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAAgB,EAAE,EAAE,CAC1B,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CACL,GAAkB,EAClB,OAAsB,EACtB,OAA8B,EAC9B,EAAE,CACF,sBAAsB,CACpB,GAAG,EACH,OAAO,EACP,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,SAAwB,EAAE,OAA8B,EAAE,EAAE,CAClE,sBAAsB,CACpB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,QAAc,EAAE,MAAY,EAAE,OAA8B,EAAE,EAAE,CACtE,sBAAsB,CACpB,QAAQ,EACR,MAAM,EACN,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB;IAC/C,OAAO,CAAC,GAAkB,EAAE,OAA2B,EAAE,EAAE,CACzD,mBAAmB,CACjB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,UAAsB;IACjD,OAAO,CAAC,GAAoB,EAAE,OAA6B,EAAE,EAAE,CAC7D,qBAAqB,CACnB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,YAAY,EACZ,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,MAAM,EACN,WAAW,EACX,cAAc,EACd,eAAe,GAChB,MAAM,0CAA0C,CAAC"}
|
|
1
|
+
{"version":3,"file":"bookings-calendar-v1-session.public.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v1-session.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,YAAY,IAAI,qBAAqB,GAQtC,MAAM,0CAA0C,CAAC;AAElD,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAAgB,EAAE,EAAE,CAC1B,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CACL,GAAkB,EAClB,OAAsB,EACtB,OAA8B,EAC9B,EAAE,CACF,sBAAsB,CACpB,GAAG,EACH,OAAO,EACP,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,SAAwB,EAAE,OAA8B,EAAE,EAAE,CAClE,sBAAsB,CACpB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,QAAc,EAAE,MAAY,EAAE,OAA8B,EAAE,EAAE,CACtE,sBAAsB,CACpB,QAAQ,EACR,MAAM,EACN,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB;IAC/C,OAAO,CAAC,GAAkB,EAAE,OAA2B,EAAE,EAAE,CACzD,mBAAmB,CACjB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,UAAsB;IACjD,OAAO,CAAC,GAAoB,EAAE,OAA6B,EAAE,EAAE,CAC7D,qBAAqB,CACnB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,YAAY,EACZ,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,MAAM,EACN,WAAW,EACX,cAAc,EACd,+BAA+B,EAC/B,eAAe,GAChB,MAAM,0CAA0C,CAAC"}
|
|
@@ -639,21 +639,21 @@ export interface DeleteSessionResponse {
|
|
|
639
639
|
}
|
|
640
640
|
export interface QuerySessionsRequest {
|
|
641
641
|
/**
|
|
642
|
-
*
|
|
643
|
-
*
|
|
644
|
-
* in [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).
|
|
642
|
+
* Start of the time range for which sessions are returned, in [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).
|
|
643
|
+
* Required, unless `query.cursorPaging` is provided.
|
|
645
644
|
*
|
|
646
|
-
* Sessions that begin before the `fromDate` but end after it are included in the results.
|
|
645
|
+
* Sessions, or recurring sessions, that begin before the `fromDate` but end after it are included in the results.
|
|
646
|
+
* The end for recurring sessions is, in this context, the `recurrence` UNTIL.
|
|
647
647
|
*/
|
|
648
648
|
fromDate?: Date;
|
|
649
649
|
/**
|
|
650
|
-
*
|
|
651
|
-
*
|
|
652
|
-
* in [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).
|
|
650
|
+
* End of the time range for which sessions are returned, in [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).
|
|
651
|
+
* Required, unless `query.cursorPaging` is provided.
|
|
653
652
|
*
|
|
654
|
-
* Sessions that begin before the `toDate` but end after it are included in the results.
|
|
653
|
+
* Sessions, or recurring sessions, that begin before the `toDate` but end after it are included in the results.
|
|
654
|
+
* The end for recurring sessions is, in this context, the `recurrence` UNTIL.
|
|
655
655
|
*
|
|
656
|
-
* Max: 1 year after `fromDate
|
|
656
|
+
* Max: 1 year after `fromDate` for session instances.
|
|
657
657
|
*/
|
|
658
658
|
toDate?: Date;
|
|
659
659
|
/** Query options. */
|
|
@@ -661,16 +661,23 @@ export interface QuerySessionsRequest {
|
|
|
661
661
|
/**
|
|
662
662
|
* Type of sessions to return.
|
|
663
663
|
*
|
|
664
|
-
* Default: `
|
|
664
|
+
* Default: `EVENT`. This returns sessions of type `EVENT`.
|
|
665
665
|
*/
|
|
666
|
-
type?:
|
|
666
|
+
type?: QuerySessionsRequestSessionType;
|
|
667
667
|
/**
|
|
668
668
|
* Whether to return only single sessions and individual instances of recurring sessions.
|
|
669
669
|
* To query for recurring session pattern definitions, set to `false`.
|
|
670
670
|
*
|
|
671
671
|
* Default: `true`.
|
|
672
|
+
* Note: currently cursor pagination is not supported for recurring sessions.
|
|
672
673
|
*/
|
|
673
674
|
instances?: boolean | null;
|
|
675
|
+
/**
|
|
676
|
+
* Whether to also include external calendar sessions.
|
|
677
|
+
*
|
|
678
|
+
* Default: `false`.
|
|
679
|
+
*/
|
|
680
|
+
includeExternal?: boolean | null;
|
|
674
681
|
}
|
|
675
682
|
export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
676
683
|
/**
|
|
@@ -720,6 +727,15 @@ export interface CursorPaging {
|
|
|
720
727
|
*/
|
|
721
728
|
cursor?: string | null;
|
|
722
729
|
}
|
|
730
|
+
export declare enum QuerySessionsRequestSessionType {
|
|
731
|
+
UNKNOWN_SESSION_TYPE = "UNKNOWN_SESSION_TYPE",
|
|
732
|
+
/** Filter sessions of type `EVENT`. This is the default. */
|
|
733
|
+
EVENT = "EVENT",
|
|
734
|
+
/** Filter sessions of type `WORKING_HOURS`. */
|
|
735
|
+
WORKING_HOURS = "WORKING_HOURS",
|
|
736
|
+
/** Return sessions of any type. */
|
|
737
|
+
ALL = "ALL"
|
|
738
|
+
}
|
|
723
739
|
export interface QuerySessionsResponse {
|
|
724
740
|
/** List of sessions matching the query. */
|
|
725
741
|
sessions?: Session[];
|
|
@@ -97,6 +97,16 @@ export var ConferenceType;
|
|
|
97
97
|
/** User-defined meeting. */
|
|
98
98
|
ConferenceType["CUSTOM"] = "CUSTOM";
|
|
99
99
|
})(ConferenceType || (ConferenceType = {}));
|
|
100
|
+
export var QuerySessionsRequestSessionType;
|
|
101
|
+
(function (QuerySessionsRequestSessionType) {
|
|
102
|
+
QuerySessionsRequestSessionType["UNKNOWN_SESSION_TYPE"] = "UNKNOWN_SESSION_TYPE";
|
|
103
|
+
/** Filter sessions of type `EVENT`. This is the default. */
|
|
104
|
+
QuerySessionsRequestSessionType["EVENT"] = "EVENT";
|
|
105
|
+
/** Filter sessions of type `WORKING_HOURS`. */
|
|
106
|
+
QuerySessionsRequestSessionType["WORKING_HOURS"] = "WORKING_HOURS";
|
|
107
|
+
/** Return sessions of any type. */
|
|
108
|
+
QuerySessionsRequestSessionType["ALL"] = "ALL";
|
|
109
|
+
})(QuerySessionsRequestSessionType || (QuerySessionsRequestSessionType = {}));
|
|
100
110
|
export var CacheInfoStatus;
|
|
101
111
|
(function (CacheInfoStatus) {
|
|
102
112
|
CacheInfoStatus["UNDEFINED"] = "UNDEFINED";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-calendar-v1-session.types.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v1-session.types.ts"],"names":[],"mappings":"AAgOA,MAAM,CAAN,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,gEAAgE;IAChE,6BAAa,CAAA;IACb,kFAAkF;IAClF,6BAAa,CAAA;AACf,CAAC,EANW,YAAY,KAAZ,YAAY,QAMvB;AAuBD,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iDAAiC,CAAA;IACjC,6CAA6B,CAAA;IAC7B,iCAAiB,CAAA;AACnB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AAkHD,qBAAqB;AACrB,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,uCAAqB,CAAA;AACvB,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAED,qBAAqB;AACrB,MAAM,CAAN,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC/B,4CAAmB,CAAA;IACnB,0CAAiB,CAAA;IACjB,4CAAmB,CAAA;IACnB,gDAAuB,CAAA;IACvB,sDAA6B,CAAA;AAC/B,CAAC,EANW,qBAAqB,KAArB,qBAAqB,QAMhC;AAmED,uCAAuC;AACvC,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;AACnB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB;AAuED,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,eAAe;IACf,yCAAuB,CAAA;IACvB,iCAAiC;IACjC,qCAAmB,CAAA;IACnB,gCAAgC;IAChC,uCAAqB,CAAA;IACrB,gCAAgC;IAChC,uCAAqB,CAAA;AACvB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB;AAOD,MAAM,CAAN,IAAY,YAUX;AAVD,WAAY,YAAY;IACtB,uCAAuB,CAAA;IACvB,iCAAiB,CAAA;IACjB,+BAAe,CAAA;IACf,+BAA+B;IAC/B,mCAAmB,CAAA;IACnB,+BAA+B;IAC/B,yCAAyB,CAAA;IACzB,uCAAuB,CAAA;IACvB,+BAAe,CAAA;AACjB,CAAC,EAVW,YAAY,KAAZ,YAAY,QAUvB;AASD,MAAM,CAAN,IAAY,MAUX;AAVD,WAAY,MAAM;IAChB,iCAAuB,CAAA;IACvB,gDAAgD;IAChD,iCAAuB,CAAA;IACvB;;;;OAIG;IACH,iCAAuB,CAAA;AACzB,CAAC,EAVW,MAAM,KAAN,MAAM,QAUjB;AAED,MAAM,CAAN,IAAY,WAaX;AAbD,WAAY,WAAW;IACrB,sCAAuB,CAAA;IACvB;;;OAGG;IACH,8BAAe,CAAA;IACf,mEAAmE;IACnE,8CAA+B,CAAA;IAC/B,2CAA2C;IAC3C,sDAAuC,CAAA;IACvC,gGAAgG;IAChG,4CAA6B,CAAA;AAC/B,CAAC,EAbW,WAAW,KAAX,WAAW,QAatB;AA8BD,MAAM,CAAN,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,oCAAoC;IACpC,qEAAmD,CAAA;IACnD,4BAA4B;IAC5B,mCAAiB,CAAA;AACnB,CAAC,EANW,cAAc,KAAd,cAAc,QAMzB;
|
|
1
|
+
{"version":3,"file":"bookings-calendar-v1-session.types.js","sourceRoot":"","sources":["../../../src/bookings-calendar-v1-session.types.ts"],"names":[],"mappings":"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"}
|