@wix/table-reservations 1.0.55 → 1.0.56
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/table-reservations-v1-reservation.types.d.ts +3 -3
- package/build/cjs/src/table-reservations-v1-reservation.universal.d.ts +7 -7
- package/build/cjs/src/table-reservations-v1-reservation.universal.js +1 -1
- package/build/es/src/table-reservations-v1-reservation.types.d.ts +3 -3
- package/build/es/src/table-reservations-v1-reservation.universal.d.ts +7 -7
- package/build/es/src/table-reservations-v1-reservation.universal.js +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** The reservation domain object. */
|
|
2
2
|
export interface Reservation {
|
|
3
3
|
/**
|
|
4
|
-
* Reservation ID.
|
|
4
|
+
* Reservation ID.
|
|
5
5
|
* @readonly
|
|
6
6
|
*/
|
|
7
7
|
id?: string | null;
|
|
@@ -52,12 +52,12 @@ export interface Reservation {
|
|
|
52
52
|
*/
|
|
53
53
|
teamMessage?: string | null;
|
|
54
54
|
/**
|
|
55
|
-
* Date and time
|
|
55
|
+
* Date and time the reservation was created.
|
|
56
56
|
* @readonly
|
|
57
57
|
*/
|
|
58
58
|
createdDate?: Date;
|
|
59
59
|
/**
|
|
60
|
-
* Date and time
|
|
60
|
+
* Date and time the reservation was changed.
|
|
61
61
|
* @readonly
|
|
62
62
|
*/
|
|
63
63
|
updatedDate?: Date;
|
|
@@ -7,7 +7,7 @@ export declare const __debug: {
|
|
|
7
7
|
/** The reservation domain object. */
|
|
8
8
|
export interface Reservation {
|
|
9
9
|
/**
|
|
10
|
-
* Reservation ID.
|
|
10
|
+
* Reservation ID.
|
|
11
11
|
* @readonly
|
|
12
12
|
*/
|
|
13
13
|
_id?: string | null;
|
|
@@ -61,12 +61,12 @@ export interface Reservation {
|
|
|
61
61
|
*/
|
|
62
62
|
teamMessage?: string | null;
|
|
63
63
|
/**
|
|
64
|
-
* Date and time
|
|
64
|
+
* Date and time the reservation was created.
|
|
65
65
|
* @readonly
|
|
66
66
|
*/
|
|
67
67
|
_createdDate?: Date;
|
|
68
68
|
/**
|
|
69
|
-
* Date and time
|
|
69
|
+
* Date and time the reservation was changed.
|
|
70
70
|
* @readonly
|
|
71
71
|
*/
|
|
72
72
|
_updatedDate?: Date;
|
|
@@ -954,7 +954,7 @@ export interface GetReservationOptions {
|
|
|
954
954
|
* Including the fields `status`, `source`, `reservation.details.tableIds`, `reservation.details.endDate`, `ignoreReservationLocationConflicts`, and `ignoreTableCombinationConflicts` in the request requires additional permissions. See this API's Introduction article for more information.
|
|
955
955
|
*
|
|
956
956
|
* Each time the reservation is updated, revision increments by 1. The existing revision must be included when updating the reservation. This ensures you're working with the latest reservation information, and it prevents unintended overwrites.
|
|
957
|
-
* @param _id - Reservation ID.
|
|
957
|
+
* @param _id - Reservation ID.
|
|
958
958
|
* @public
|
|
959
959
|
* @documentationMaturity preview
|
|
960
960
|
* @requiredField _id
|
|
@@ -970,7 +970,7 @@ export interface GetReservationOptions {
|
|
|
970
970
|
export declare function updateReservation(_id: string | null, reservation: UpdateReservation, options?: UpdateReservationOptions): Promise<Reservation & NonNullable<UpdateReservationResponseNonNullableFields>['reservation']>;
|
|
971
971
|
export interface UpdateReservation {
|
|
972
972
|
/**
|
|
973
|
-
* Reservation ID.
|
|
973
|
+
* Reservation ID.
|
|
974
974
|
* @readonly
|
|
975
975
|
*/
|
|
976
976
|
_id?: string | null;
|
|
@@ -1012,12 +1012,12 @@ export interface UpdateReservation {
|
|
|
1012
1012
|
*/
|
|
1013
1013
|
teamMessage?: string | null;
|
|
1014
1014
|
/**
|
|
1015
|
-
* Date and time
|
|
1015
|
+
* Date and time the reservation was created.
|
|
1016
1016
|
* @readonly
|
|
1017
1017
|
*/
|
|
1018
1018
|
_createdDate?: Date;
|
|
1019
1019
|
/**
|
|
1020
|
-
* Date and time
|
|
1020
|
+
* Date and time the reservation was changed.
|
|
1021
1021
|
* @readonly
|
|
1022
1022
|
*/
|
|
1023
1023
|
_updatedDate?: Date;
|
|
@@ -350,7 +350,7 @@ exports.getReservation = getReservation;
|
|
|
350
350
|
* Including the fields `status`, `source`, `reservation.details.tableIds`, `reservation.details.endDate`, `ignoreReservationLocationConflicts`, and `ignoreTableCombinationConflicts` in the request requires additional permissions. See this API's Introduction article for more information.
|
|
351
351
|
*
|
|
352
352
|
* Each time the reservation is updated, revision increments by 1. The existing revision must be included when updating the reservation. This ensures you're working with the latest reservation information, and it prevents unintended overwrites.
|
|
353
|
-
* @param _id - Reservation ID.
|
|
353
|
+
* @param _id - Reservation ID.
|
|
354
354
|
* @public
|
|
355
355
|
* @documentationMaturity preview
|
|
356
356
|
* @requiredField _id
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** The reservation domain object. */
|
|
2
2
|
export interface Reservation {
|
|
3
3
|
/**
|
|
4
|
-
* Reservation ID.
|
|
4
|
+
* Reservation ID.
|
|
5
5
|
* @readonly
|
|
6
6
|
*/
|
|
7
7
|
id?: string | null;
|
|
@@ -52,12 +52,12 @@ export interface Reservation {
|
|
|
52
52
|
*/
|
|
53
53
|
teamMessage?: string | null;
|
|
54
54
|
/**
|
|
55
|
-
* Date and time
|
|
55
|
+
* Date and time the reservation was created.
|
|
56
56
|
* @readonly
|
|
57
57
|
*/
|
|
58
58
|
createdDate?: Date;
|
|
59
59
|
/**
|
|
60
|
-
* Date and time
|
|
60
|
+
* Date and time the reservation was changed.
|
|
61
61
|
* @readonly
|
|
62
62
|
*/
|
|
63
63
|
updatedDate?: Date;
|
|
@@ -7,7 +7,7 @@ export declare const __debug: {
|
|
|
7
7
|
/** The reservation domain object. */
|
|
8
8
|
export interface Reservation {
|
|
9
9
|
/**
|
|
10
|
-
* Reservation ID.
|
|
10
|
+
* Reservation ID.
|
|
11
11
|
* @readonly
|
|
12
12
|
*/
|
|
13
13
|
_id?: string | null;
|
|
@@ -61,12 +61,12 @@ export interface Reservation {
|
|
|
61
61
|
*/
|
|
62
62
|
teamMessage?: string | null;
|
|
63
63
|
/**
|
|
64
|
-
* Date and time
|
|
64
|
+
* Date and time the reservation was created.
|
|
65
65
|
* @readonly
|
|
66
66
|
*/
|
|
67
67
|
_createdDate?: Date;
|
|
68
68
|
/**
|
|
69
|
-
* Date and time
|
|
69
|
+
* Date and time the reservation was changed.
|
|
70
70
|
* @readonly
|
|
71
71
|
*/
|
|
72
72
|
_updatedDate?: Date;
|
|
@@ -954,7 +954,7 @@ export interface GetReservationOptions {
|
|
|
954
954
|
* Including the fields `status`, `source`, `reservation.details.tableIds`, `reservation.details.endDate`, `ignoreReservationLocationConflicts`, and `ignoreTableCombinationConflicts` in the request requires additional permissions. See this API's Introduction article for more information.
|
|
955
955
|
*
|
|
956
956
|
* Each time the reservation is updated, revision increments by 1. The existing revision must be included when updating the reservation. This ensures you're working with the latest reservation information, and it prevents unintended overwrites.
|
|
957
|
-
* @param _id - Reservation ID.
|
|
957
|
+
* @param _id - Reservation ID.
|
|
958
958
|
* @public
|
|
959
959
|
* @documentationMaturity preview
|
|
960
960
|
* @requiredField _id
|
|
@@ -970,7 +970,7 @@ export interface GetReservationOptions {
|
|
|
970
970
|
export declare function updateReservation(_id: string | null, reservation: UpdateReservation, options?: UpdateReservationOptions): Promise<Reservation & NonNullable<UpdateReservationResponseNonNullableFields>['reservation']>;
|
|
971
971
|
export interface UpdateReservation {
|
|
972
972
|
/**
|
|
973
|
-
* Reservation ID.
|
|
973
|
+
* Reservation ID.
|
|
974
974
|
* @readonly
|
|
975
975
|
*/
|
|
976
976
|
_id?: string | null;
|
|
@@ -1012,12 +1012,12 @@ export interface UpdateReservation {
|
|
|
1012
1012
|
*/
|
|
1013
1013
|
teamMessage?: string | null;
|
|
1014
1014
|
/**
|
|
1015
|
-
* Date and time
|
|
1015
|
+
* Date and time the reservation was created.
|
|
1016
1016
|
* @readonly
|
|
1017
1017
|
*/
|
|
1018
1018
|
_createdDate?: Date;
|
|
1019
1019
|
/**
|
|
1020
|
-
* Date and time
|
|
1020
|
+
* Date and time the reservation was changed.
|
|
1021
1021
|
* @readonly
|
|
1022
1022
|
*/
|
|
1023
1023
|
_updatedDate?: Date;
|
|
@@ -322,7 +322,7 @@ export function getReservation(reservationId, options) {
|
|
|
322
322
|
* Including the fields `status`, `source`, `reservation.details.tableIds`, `reservation.details.endDate`, `ignoreReservationLocationConflicts`, and `ignoreTableCombinationConflicts` in the request requires additional permissions. See this API's Introduction article for more information.
|
|
323
323
|
*
|
|
324
324
|
* Each time the reservation is updated, revision increments by 1. The existing revision must be included when updating the reservation. This ensures you're working with the latest reservation information, and it prevents unintended overwrites.
|
|
325
|
-
* @param _id - Reservation ID.
|
|
325
|
+
* @param _id - Reservation ID.
|
|
326
326
|
* @public
|
|
327
327
|
* @documentationMaturity preview
|
|
328
328
|
* @requiredField _id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/table-reservations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
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": "ddc42b9ea4b116f8446a343ebb2de55d223ca15e3ef1d5864a912d67"
|
|
37
37
|
}
|