@wix/bookings 1.0.44 → 1.0.45
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.http.d.ts +11 -11
- package/build/cjs/src/bookings-services-v2-service.http.js +11 -11
- package/build/cjs/src/bookings-services-v2-service.universal.d.ts +13 -14
- package/build/cjs/src/bookings-services-v2-service.universal.js +11 -11
- package/build/cjs/src/bookings-services-v2-service.universal.js.map +1 -1
- package/build/es/src/bookings-services-v2-service.http.d.ts +11 -11
- package/build/es/src/bookings-services-v2-service.http.js +11 -11
- package/build/es/src/bookings-services-v2-service.universal.d.ts +13 -14
- package/build/es/src/bookings-services-v2-service.universal.js +11 -11
- package/build/es/src/bookings-services-v2-service.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -3,26 +3,26 @@ import { GetServiceRequest, GetServiceResponse, QueryServicesRequest, QueryServi
|
|
|
3
3
|
/** Retrieves a service. */
|
|
4
4
|
export declare function getService(payload: GetServiceRequest): RequestOptionsFactory<GetServiceResponse>;
|
|
5
5
|
/**
|
|
6
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
6
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
7
|
+
* <!--ONLY:REST-->
|
|
10
8
|
* 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).
|
|
11
|
-
* `Query Services` runs with these defaults, which you can override:
|
|
12
|
-
* + `paging.limit` is `100`.
|
|
13
|
-
* + `paging.offset` is `0`.
|
|
14
|
-
*
|
|
15
9
|
* 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).
|
|
10
|
+
*
|
|
16
11
|
* To retrieve all services use an empty query:
|
|
12
|
+
*
|
|
17
13
|
* ```javascript
|
|
18
14
|
* {
|
|
19
15
|
* "query": {}
|
|
20
16
|
* }
|
|
21
17
|
* ```
|
|
18
|
+
* <!--END:ONLY:REST-->
|
|
19
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
20
|
+
* + `paging.limit` is `100`.
|
|
21
|
+
* + `paging.offset` is `0`.
|
|
22
|
+
*
|
|
23
|
+
*
|
|
22
24
|
* >**Notes:**
|
|
23
25
|
* > + Use UTC format when filtering with dates.
|
|
24
|
-
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
25
|
-
* more than once in a query, only the first occurrence is processed.
|
|
26
|
-
* 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).
|
|
26
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
27
27
|
*/
|
|
28
28
|
export declare function queryServices(payload: QueryServicesRequest): RequestOptionsFactory<QueryServicesResponse>;
|
|
@@ -123,27 +123,27 @@ function getService(payload) {
|
|
|
123
123
|
}
|
|
124
124
|
exports.getService = getService;
|
|
125
125
|
/**
|
|
126
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
126
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
127
|
+
* <!--ONLY:REST-->
|
|
130
128
|
* 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).
|
|
131
|
-
* `Query Services` runs with these defaults, which you can override:
|
|
132
|
-
* + `paging.limit` is `100`.
|
|
133
|
-
* + `paging.offset` is `0`.
|
|
134
|
-
*
|
|
135
129
|
* 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).
|
|
130
|
+
*
|
|
136
131
|
* To retrieve all services use an empty query:
|
|
132
|
+
*
|
|
137
133
|
* ```javascript
|
|
138
134
|
* {
|
|
139
135
|
* "query": {}
|
|
140
136
|
* }
|
|
141
137
|
* ```
|
|
138
|
+
* <!--END:ONLY:REST-->
|
|
139
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
140
|
+
* + `paging.limit` is `100`.
|
|
141
|
+
* + `paging.offset` is `0`.
|
|
142
|
+
*
|
|
143
|
+
*
|
|
142
144
|
* >**Notes:**
|
|
143
145
|
* > + Use UTC format when filtering with dates.
|
|
144
|
-
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
145
|
-
* more than once in a query, only the first occurrence is processed.
|
|
146
|
-
* 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).
|
|
146
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
147
147
|
*/
|
|
148
148
|
function queryServices(payload) {
|
|
149
149
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_queryServicesRequest, {});
|
|
@@ -135,8 +135,7 @@ export interface V2Category {
|
|
|
135
135
|
export interface Form {
|
|
136
136
|
/**
|
|
137
137
|
* ID of the form associated with the service.
|
|
138
|
-
*
|
|
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).
|
|
138
|
+
* Form information submitted when booking, including contact details, participants, and other form fields, set up for the service.
|
|
140
139
|
*/
|
|
141
140
|
_id?: string;
|
|
142
141
|
}
|
|
@@ -304,7 +303,7 @@ export interface Location extends LocationOptionsOneOf {
|
|
|
304
303
|
/**
|
|
305
304
|
* The type of location:
|
|
306
305
|
* - `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://
|
|
306
|
+
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://www.wix.com/velo/reference/wix-business-tools-v2/locations).
|
|
308
307
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
309
308
|
*/
|
|
310
309
|
type?: LocationType;
|
|
@@ -1040,27 +1039,27 @@ export declare enum InvalidSlugError {
|
|
|
1040
1039
|
*/
|
|
1041
1040
|
export declare function getService(serviceId: string): Promise<Service>;
|
|
1042
1041
|
/**
|
|
1043
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
1044
|
-
*
|
|
1045
|
-
*
|
|
1046
|
-
*
|
|
1042
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
1043
|
+
* <!--ONLY:REST-->
|
|
1047
1044
|
* 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
1045
|
* 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).
|
|
1046
|
+
*
|
|
1053
1047
|
* To retrieve all services use an empty query:
|
|
1048
|
+
*
|
|
1054
1049
|
* ```javascript
|
|
1055
1050
|
* {
|
|
1056
1051
|
* "query": {}
|
|
1057
1052
|
* }
|
|
1058
1053
|
* ```
|
|
1054
|
+
* <!--END:ONLY:REST-->
|
|
1055
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
1056
|
+
* + `paging.limit` is `100`.
|
|
1057
|
+
* + `paging.offset` is `0`.
|
|
1058
|
+
*
|
|
1059
|
+
*
|
|
1059
1060
|
* >**Notes:**
|
|
1060
1061
|
* > + 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.
|
|
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).
|
|
1062
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
1064
1063
|
* @public
|
|
1065
1064
|
* @documentationMaturity preview
|
|
1066
1065
|
* @requiredField query
|
|
@@ -192,27 +192,27 @@ function getService(serviceId) {
|
|
|
192
192
|
}
|
|
193
193
|
exports.getService = getService;
|
|
194
194
|
/**
|
|
195
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
196
|
-
*
|
|
197
|
-
*
|
|
198
|
-
*
|
|
195
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
196
|
+
* <!--ONLY:REST-->
|
|
199
197
|
* 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
198
|
* 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).
|
|
199
|
+
*
|
|
205
200
|
* To retrieve all services use an empty query:
|
|
201
|
+
*
|
|
206
202
|
* ```javascript
|
|
207
203
|
* {
|
|
208
204
|
* "query": {}
|
|
209
205
|
* }
|
|
210
206
|
* ```
|
|
207
|
+
* <!--END:ONLY:REST-->
|
|
208
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
209
|
+
* + `paging.limit` is `100`.
|
|
210
|
+
* + `paging.offset` is `0`.
|
|
211
|
+
*
|
|
212
|
+
*
|
|
211
213
|
* >**Notes:**
|
|
212
214
|
* > + 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.
|
|
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).
|
|
215
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
216
216
|
* @public
|
|
217
217
|
* @documentationMaturity preview
|
|
218
218
|
* @requiredField query
|
|
@@ -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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"}
|
|
@@ -3,26 +3,26 @@ import { GetServiceRequest, GetServiceResponse, QueryServicesRequest, QueryServi
|
|
|
3
3
|
/** Retrieves a service. */
|
|
4
4
|
export declare function getService(payload: GetServiceRequest): RequestOptionsFactory<GetServiceResponse>;
|
|
5
5
|
/**
|
|
6
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
6
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
7
|
+
* <!--ONLY:REST-->
|
|
10
8
|
* 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).
|
|
11
|
-
* `Query Services` runs with these defaults, which you can override:
|
|
12
|
-
* + `paging.limit` is `100`.
|
|
13
|
-
* + `paging.offset` is `0`.
|
|
14
|
-
*
|
|
15
9
|
* 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).
|
|
10
|
+
*
|
|
16
11
|
* To retrieve all services use an empty query:
|
|
12
|
+
*
|
|
17
13
|
* ```javascript
|
|
18
14
|
* {
|
|
19
15
|
* "query": {}
|
|
20
16
|
* }
|
|
21
17
|
* ```
|
|
18
|
+
* <!--END:ONLY:REST-->
|
|
19
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
20
|
+
* + `paging.limit` is `100`.
|
|
21
|
+
* + `paging.offset` is `0`.
|
|
22
|
+
*
|
|
23
|
+
*
|
|
22
24
|
* >**Notes:**
|
|
23
25
|
* > + Use UTC format when filtering with dates.
|
|
24
|
-
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
25
|
-
* more than once in a query, only the first occurrence is processed.
|
|
26
|
-
* 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).
|
|
26
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
27
27
|
*/
|
|
28
28
|
export declare function queryServices(payload: QueryServicesRequest): RequestOptionsFactory<QueryServicesResponse>;
|
|
@@ -119,27 +119,27 @@ export function getService(payload) {
|
|
|
119
119
|
return __getService;
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
122
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
123
|
+
* <!--ONLY:REST-->
|
|
126
124
|
* 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).
|
|
127
|
-
* `Query Services` runs with these defaults, which you can override:
|
|
128
|
-
* + `paging.limit` is `100`.
|
|
129
|
-
* + `paging.offset` is `0`.
|
|
130
|
-
*
|
|
131
125
|
* 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).
|
|
126
|
+
*
|
|
132
127
|
* To retrieve all services use an empty query:
|
|
128
|
+
*
|
|
133
129
|
* ```javascript
|
|
134
130
|
* {
|
|
135
131
|
* "query": {}
|
|
136
132
|
* }
|
|
137
133
|
* ```
|
|
134
|
+
* <!--END:ONLY:REST-->
|
|
135
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
136
|
+
* + `paging.limit` is `100`.
|
|
137
|
+
* + `paging.offset` is `0`.
|
|
138
|
+
*
|
|
139
|
+
*
|
|
138
140
|
* >**Notes:**
|
|
139
141
|
* > + Use UTC format when filtering with dates.
|
|
140
|
-
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
141
|
-
* more than once in a query, only the first occurrence is processed.
|
|
142
|
-
* 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).
|
|
142
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
143
143
|
*/
|
|
144
144
|
export function queryServices(payload) {
|
|
145
145
|
const { toJSON: toReq, fromJSON: fromReq } = serializer(_queryServicesRequest, {});
|
|
@@ -135,8 +135,7 @@ export interface V2Category {
|
|
|
135
135
|
export interface Form {
|
|
136
136
|
/**
|
|
137
137
|
* ID of the form associated with the service.
|
|
138
|
-
*
|
|
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).
|
|
138
|
+
* Form information submitted when booking, including contact details, participants, and other form fields, set up for the service.
|
|
140
139
|
*/
|
|
141
140
|
_id?: string;
|
|
142
141
|
}
|
|
@@ -304,7 +303,7 @@ export interface Location extends LocationOptionsOneOf {
|
|
|
304
303
|
/**
|
|
305
304
|
* The type of location:
|
|
306
305
|
* - `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://
|
|
306
|
+
* - `BUSINESS`: A business location, as defined for the by the Business Info [Locations API](https://www.wix.com/velo/reference/wix-business-tools-v2/locations).
|
|
308
307
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
309
308
|
*/
|
|
310
309
|
type?: LocationType;
|
|
@@ -1040,27 +1039,27 @@ export declare enum InvalidSlugError {
|
|
|
1040
1039
|
*/
|
|
1041
1040
|
export declare function getService(serviceId: string): Promise<Service>;
|
|
1042
1041
|
/**
|
|
1043
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
1044
|
-
*
|
|
1045
|
-
*
|
|
1046
|
-
*
|
|
1042
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
1043
|
+
* <!--ONLY:REST-->
|
|
1047
1044
|
* 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
1045
|
* 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).
|
|
1046
|
+
*
|
|
1053
1047
|
* To retrieve all services use an empty query:
|
|
1048
|
+
*
|
|
1054
1049
|
* ```javascript
|
|
1055
1050
|
* {
|
|
1056
1051
|
* "query": {}
|
|
1057
1052
|
* }
|
|
1058
1053
|
* ```
|
|
1054
|
+
* <!--END:ONLY:REST-->
|
|
1055
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
1056
|
+
* + `paging.limit` is `100`.
|
|
1057
|
+
* + `paging.offset` is `0`.
|
|
1058
|
+
*
|
|
1059
|
+
*
|
|
1059
1060
|
* >**Notes:**
|
|
1060
1061
|
* > + 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.
|
|
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).
|
|
1062
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
1064
1063
|
* @public
|
|
1065
1064
|
* @documentationMaturity preview
|
|
1066
1065
|
* @requiredField query
|
|
@@ -169,27 +169,27 @@ export function getService(serviceId) {
|
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* Retrieves a list of up to 100 services, given the provided
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
*
|
|
172
|
+
* Retrieves a list of up to 100 services, given the provided paging, filtering, and sorting.
|
|
173
|
+
* <!--ONLY:REST-->
|
|
176
174
|
* 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).
|
|
177
|
-
* `Query Services` runs with these defaults, which you can override:
|
|
178
|
-
* + `paging.limit` is `100`.
|
|
179
|
-
* + `paging.offset` is `0`.
|
|
180
|
-
*
|
|
181
175
|
* 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).
|
|
176
|
+
*
|
|
182
177
|
* To retrieve all services use an empty query:
|
|
178
|
+
*
|
|
183
179
|
* ```javascript
|
|
184
180
|
* {
|
|
185
181
|
* "query": {}
|
|
186
182
|
* }
|
|
187
183
|
* ```
|
|
184
|
+
* <!--END:ONLY:REST-->
|
|
185
|
+
* `Query Services` runs with these defaults, which you can override:
|
|
186
|
+
* + `paging.limit` is `100`.
|
|
187
|
+
* + `paging.offset` is `0`.
|
|
188
|
+
*
|
|
189
|
+
*
|
|
188
190
|
* >**Notes:**
|
|
189
191
|
* > + Use UTC format when filtering with dates.
|
|
190
|
-
* > + Only 1 use of each filter in the same query is supported. If a filter is defined
|
|
191
|
-
* more than once in a query, only the first occurrence is processed.
|
|
192
|
-
* 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).
|
|
192
|
+
* > + Only 1 use of each filter in the same query is supported. If a filter is defined more than once in a query, only the first occurrence is processed.
|
|
193
193
|
* @public
|
|
194
194
|
* @documentationMaturity preview
|
|
195
195
|
* @requiredField query
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-services-v2-service.universal.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,sCAAsC,MAAM,qCAAqC,CAAC;AAC9F,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;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;AAED,MAAM,CAAC,MAAM,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,MAAM,CAAN,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,KAAX,WAAW,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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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/bookings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
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": "acb6a2e22072e223b40fc6c15c81930ec5d5122537ff09d1a3bad02a"
|
|
37
37
|
}
|