@wix/auto_sdk_seatings_seating-reservation 1.0.5 → 1.0.7
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/index.d.ts +13 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{seating-v1-seating-reservation-seating-reservation.universal-CzABkBgJ.d.ts → index.typings.d.ts} +99 -5
- package/build/cjs/index.typings.js +527 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +6 -5
- package/build/es/index.d.mts +13 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/{seating-v1-seating-reservation-seating-reservation.universal-CzABkBgJ.d.mts → index.typings.d.mts} +99 -5
- package/build/es/index.typings.mjs +490 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +6 -5
- package/build/internal/cjs/index.d.ts +13 -8
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{seating-v1-seating-reservation-seating-reservation.universal-CzABkBgJ.d.ts → index.typings.d.ts} +99 -5
- package/build/internal/cjs/index.typings.js +527 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +6 -5
- package/build/internal/es/index.d.mts +13 -8
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{seating-v1-seating-reservation-seating-reservation.universal-CzABkBgJ.d.mts → index.typings.d.mts} +99 -5
- package/build/internal/es/index.typings.mjs +490 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +6 -5
- package/package.json +3 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CreateSeatingReservationRequest as CreateSeatingReservationRequest$1, CreateSeatingReservationResponse as CreateSeatingReservationResponse$1, GetReservationRequest as GetReservationRequest$1, GetReservationResponse as GetReservationResponse$1, QuerySeatingReservationRequest as QuerySeatingReservationRequest$1, QuerySeatingReservationResponse as QuerySeatingReservationResponse$1, DeleteSeatingReservationRequest as DeleteSeatingReservationRequest$1, DeleteSeatingReservationResponse as DeleteSeatingReservationResponse$1, GetSeatingCategorySummaryRequest as GetSeatingCategorySummaryRequest$1, GetSeatingCategorySummaryResponse as GetSeatingCategorySummaryResponse$1, GetSeatingReservationSummaryRequest as GetSeatingReservationSummaryRequest$1, GetSeatingReservationSummaryResponse as GetSeatingReservationSummaryResponse$1 } from './index.typings.mjs';
|
|
2
|
+
import '@wix/sdk-types';
|
|
2
3
|
|
|
3
4
|
interface SeatingReservation {
|
|
4
5
|
/**
|
|
@@ -136,20 +137,20 @@ interface QuerySeatingReservationRequest {
|
|
|
136
137
|
query: QueryV2;
|
|
137
138
|
}
|
|
138
139
|
interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
139
|
-
/** Paging options to limit and
|
|
140
|
+
/** Paging options to limit and offset the number of items. */
|
|
140
141
|
paging?: Paging;
|
|
141
142
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
142
143
|
cursorPaging?: CursorPaging;
|
|
143
144
|
/**
|
|
144
145
|
* Filter object.
|
|
145
146
|
*
|
|
146
|
-
* Learn more about
|
|
147
|
+
* Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
|
|
147
148
|
*/
|
|
148
149
|
filter?: Record<string, any> | null;
|
|
149
150
|
/**
|
|
150
151
|
* Sort object.
|
|
151
152
|
*
|
|
152
|
-
* Learn more about
|
|
153
|
+
* Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).
|
|
153
154
|
*/
|
|
154
155
|
sort?: Sorting[];
|
|
155
156
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -159,7 +160,7 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
159
160
|
}
|
|
160
161
|
/** @oneof */
|
|
161
162
|
interface QueryV2PagingMethodOneOf {
|
|
162
|
-
/** Paging options to limit and
|
|
163
|
+
/** Paging options to limit and offset the number of items. */
|
|
163
164
|
paging?: Paging;
|
|
164
165
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
165
166
|
cursorPaging?: CursorPaging;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_seatings_seating-reservation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"service-plugins"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@wix/sdk-runtime": "^0.3.
|
|
31
|
+
"@wix/sdk-runtime": "^0.3.55",
|
|
32
32
|
"@wix/sdk-types": "^1.13.28"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"fqdn": "wix.seating.v1.seating_reservation"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
-
"falconPackageHash": "
|
|
52
|
+
"falconPackageHash": "2041e5da26821cf4b855d829102331f819450d2b0f9acc8191ff82dc"
|
|
53
53
|
}
|