@wix/bookings 1.0.168 → 1.0.170
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-services-v2-service.types.d.ts +1 -1
- package/build/cjs/src/bookings-services-v2-service.universal.d.ts +1 -1
- package/build/cjs/src/bookings-v2-attendance.http.d.ts +2 -2
- package/build/cjs/src/bookings-v2-attendance.http.js +2 -2
- package/build/cjs/src/bookings-v2-attendance.types.d.ts +2 -2
- package/build/cjs/src/bookings-v2-attendance.universal.d.ts +4 -4
- package/build/cjs/src/bookings-v2-attendance.universal.js +2 -2
- package/build/es/src/bookings-services-v2-service.types.d.ts +1 -1
- package/build/es/src/bookings-services-v2-service.universal.d.ts +1 -1
- package/build/es/src/bookings-v2-attendance.http.d.ts +2 -2
- package/build/es/src/bookings-v2-attendance.http.js +2 -2
- package/build/es/src/bookings-v2-attendance.types.d.ts +2 -2
- package/build/es/src/bookings-v2-attendance.universal.d.ts +4 -4
- package/build/es/src/bookings-v2-attendance.universal.js +2 -2
- package/package.json +2 -2
|
@@ -670,7 +670,7 @@ export interface AvailabilityConstraints {
|
|
|
670
670
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
671
671
|
*
|
|
672
672
|
*
|
|
673
|
-
* Min: 1 minute
|
|
673
|
+
* Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
|
|
674
674
|
*/
|
|
675
675
|
sessionDurations?: number[];
|
|
676
676
|
/**
|
|
@@ -650,7 +650,7 @@ export interface AvailabilityConstraints {
|
|
|
650
650
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
651
651
|
*
|
|
652
652
|
*
|
|
653
|
-
* Min: 1 minute
|
|
653
|
+
* Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
|
|
654
654
|
*/
|
|
655
655
|
sessionDurations?: number[];
|
|
656
656
|
/**
|
|
@@ -41,10 +41,10 @@ export declare function setAttendance(payload: SetAttendanceRequest): RequestOpt
|
|
|
41
41
|
* - `id` sorted in `ASC` order
|
|
42
42
|
* - `cursorPaging.limit` is `50`
|
|
43
43
|
*
|
|
44
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
44
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
45
45
|
*
|
|
46
46
|
* > __Notes__:
|
|
47
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
47
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
48
48
|
* > + Up to 100 results can be returned per request.
|
|
49
49
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
50
50
|
*
|
|
@@ -156,10 +156,10 @@ exports.setAttendance = setAttendance;
|
|
|
156
156
|
* - `id` sorted in `ASC` order
|
|
157
157
|
* - `cursorPaging.limit` is `50`
|
|
158
158
|
*
|
|
159
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
159
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
160
160
|
*
|
|
161
161
|
* > __Notes__:
|
|
162
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
162
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
163
163
|
* > + Up to 100 results can be returned per request.
|
|
164
164
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
165
165
|
*
|
|
@@ -70,7 +70,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
70
70
|
/**
|
|
71
71
|
* Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
|
|
72
72
|
*
|
|
73
|
-
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
73
|
+
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
74
74
|
*
|
|
75
75
|
* Max: 1 filter
|
|
76
76
|
*/
|
|
@@ -79,7 +79,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
79
79
|
* Sort object in the following format:
|
|
80
80
|
* `[ {"fieldName":"sortField1","order":"ASC"}, {"fieldName":"sortField2","order":"DESC"} ]`
|
|
81
81
|
*
|
|
82
|
-
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
82
|
+
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
83
83
|
*/
|
|
84
84
|
sort?: Sorting[];
|
|
85
85
|
}
|
|
@@ -76,7 +76,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
76
76
|
/**
|
|
77
77
|
* Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
|
|
78
78
|
*
|
|
79
|
-
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
79
|
+
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
80
80
|
*
|
|
81
81
|
* Max: 1 filter
|
|
82
82
|
*/
|
|
@@ -85,7 +85,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
85
85
|
* Sort object in the following format:
|
|
86
86
|
* `[ {"fieldName":"sortField1","order":"ASC"}, {"fieldName":"sortField2","order":"DESC"} ]`
|
|
87
87
|
*
|
|
88
|
-
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
88
|
+
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
89
89
|
*/
|
|
90
90
|
sort?: Sorting[];
|
|
91
91
|
}
|
|
@@ -218,10 +218,10 @@ export declare function setAttendance(attendance: Attendance): Promise<SetAttend
|
|
|
218
218
|
* - `id` sorted in `ASC` order
|
|
219
219
|
* - `cursorPaging.limit` is `50`
|
|
220
220
|
*
|
|
221
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
221
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
222
222
|
*
|
|
223
223
|
* > __Notes__:
|
|
224
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
224
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
225
225
|
* > + Up to 100 results can be returned per request.
|
|
226
226
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
227
227
|
*
|
|
@@ -217,10 +217,10 @@ exports.setAttendance = setAttendance;
|
|
|
217
217
|
* - `id` sorted in `ASC` order
|
|
218
218
|
* - `cursorPaging.limit` is `50`
|
|
219
219
|
*
|
|
220
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
220
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
221
221
|
*
|
|
222
222
|
* > __Notes__:
|
|
223
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
223
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
224
224
|
* > + Up to 100 results can be returned per request.
|
|
225
225
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
226
226
|
*
|
|
@@ -670,7 +670,7 @@ export interface AvailabilityConstraints {
|
|
|
670
670
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
671
671
|
*
|
|
672
672
|
*
|
|
673
|
-
* Min: 1 minute
|
|
673
|
+
* Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
|
|
674
674
|
*/
|
|
675
675
|
sessionDurations?: number[];
|
|
676
676
|
/**
|
|
@@ -650,7 +650,7 @@ export interface AvailabilityConstraints {
|
|
|
650
650
|
* Required for services of type `APPOINTMENT` to allow the customer to book a session of the service. Not relevant for other service types.
|
|
651
651
|
*
|
|
652
652
|
*
|
|
653
|
-
* Min: 1 minute
|
|
653
|
+
* Min: 1 minute, Max: 30 days, 23 hours, and 59 minutes
|
|
654
654
|
*/
|
|
655
655
|
sessionDurations?: number[];
|
|
656
656
|
/**
|
|
@@ -41,10 +41,10 @@ export declare function setAttendance(payload: SetAttendanceRequest): RequestOpt
|
|
|
41
41
|
* - `id` sorted in `ASC` order
|
|
42
42
|
* - `cursorPaging.limit` is `50`
|
|
43
43
|
*
|
|
44
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
44
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
45
45
|
*
|
|
46
46
|
* > __Notes__:
|
|
47
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
47
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
48
48
|
* > + Up to 100 results can be returned per request.
|
|
49
49
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
50
50
|
*
|
|
@@ -151,10 +151,10 @@ export function setAttendance(payload) {
|
|
|
151
151
|
* - `id` sorted in `ASC` order
|
|
152
152
|
* - `cursorPaging.limit` is `50`
|
|
153
153
|
*
|
|
154
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
154
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
155
155
|
*
|
|
156
156
|
* > __Notes__:
|
|
157
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
157
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
158
158
|
* > + Up to 100 results can be returned per request.
|
|
159
159
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
160
160
|
*
|
|
@@ -70,7 +70,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
70
70
|
/**
|
|
71
71
|
* Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
|
|
72
72
|
*
|
|
73
|
-
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
73
|
+
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
74
74
|
*
|
|
75
75
|
* Max: 1 filter
|
|
76
76
|
*/
|
|
@@ -79,7 +79,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
79
79
|
* Sort object in the following format:
|
|
80
80
|
* `[ {"fieldName":"sortField1","order":"ASC"}, {"fieldName":"sortField2","order":"DESC"} ]`
|
|
81
81
|
*
|
|
82
|
-
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
82
|
+
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
83
83
|
*/
|
|
84
84
|
sort?: Sorting[];
|
|
85
85
|
}
|
|
@@ -76,7 +76,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
76
76
|
/**
|
|
77
77
|
* Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
|
|
78
78
|
*
|
|
79
|
-
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
79
|
+
* For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
80
80
|
*
|
|
81
81
|
* Max: 1 filter
|
|
82
82
|
*/
|
|
@@ -85,7 +85,7 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
85
85
|
* Sort object in the following format:
|
|
86
86
|
* `[ {"fieldName":"sortField1","order":"ASC"}, {"fieldName":"sortField2","order":"DESC"} ]`
|
|
87
87
|
*
|
|
88
|
-
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/
|
|
88
|
+
* For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
89
89
|
*/
|
|
90
90
|
sort?: Sorting[];
|
|
91
91
|
}
|
|
@@ -218,10 +218,10 @@ export declare function setAttendance(attendance: Attendance): Promise<SetAttend
|
|
|
218
218
|
* - `id` sorted in `ASC` order
|
|
219
219
|
* - `cursorPaging.limit` is `50`
|
|
220
220
|
*
|
|
221
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
221
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
222
222
|
*
|
|
223
223
|
* > __Notes__:
|
|
224
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
224
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
225
225
|
* > + Up to 100 results can be returned per request.
|
|
226
226
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
227
227
|
*
|
|
@@ -193,10 +193,10 @@ export function setAttendance(attendance) {
|
|
|
193
193
|
* - `id` sorted in `ASC` order
|
|
194
194
|
* - `cursorPaging.limit` is `50`
|
|
195
195
|
*
|
|
196
|
-
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/
|
|
196
|
+
* For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/attendance/supported-filters).
|
|
197
197
|
*
|
|
198
198
|
* > __Notes__:
|
|
199
|
-
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo`
|
|
199
|
+
* > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` as `true`.
|
|
200
200
|
* > + Up to 100 results can be returned per request.
|
|
201
201
|
* > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
|
|
202
202
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/bookings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.170",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "c4c0b9d03df471d72b1fe00cf5c150c0b1632d806904636995125197"
|
|
37
37
|
}
|