@wix/table-reservations 1.0.155 → 1.0.157
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/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/table-reservations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.157",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"wix-sdk-module=backend,page,public"
|
|
10
|
+
],
|
|
8
11
|
"sideEffects": false,
|
|
9
12
|
"module": "build/es/index.js",
|
|
10
13
|
"main": "build/cjs/index.js",
|
|
@@ -19,7 +22,7 @@
|
|
|
19
22
|
],
|
|
20
23
|
"dependencies": {
|
|
21
24
|
"@wix/table-reservations_reservation-locations": "1.0.65",
|
|
22
|
-
"@wix/table-reservations_reservations": "1.0.
|
|
25
|
+
"@wix/table-reservations_reservations": "1.0.54",
|
|
23
26
|
"@wix/table-reservations_time-slots": "1.0.47"
|
|
24
27
|
},
|
|
25
28
|
"devDependencies": {
|
|
@@ -45,5 +48,5 @@
|
|
|
45
48
|
"fqdn": ""
|
|
46
49
|
}
|
|
47
50
|
},
|
|
48
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "6f2708609c228f5e165c258b22a735881d66c3e3ceff13575b53f840"
|
|
49
52
|
}
|
|
@@ -610,6 +610,8 @@ interface Details {
|
|
|
610
610
|
* @targetRemovalDate 2024-12-31
|
|
611
611
|
*/
|
|
612
612
|
tableIds?: string[] | null;
|
|
613
|
+
/** Tables used for this reservation. */
|
|
614
|
+
tables?: Tables;
|
|
613
615
|
/** Start date and time of the reservation. */
|
|
614
616
|
startDate?: Date | null;
|
|
615
617
|
/** End date and time of the reservation. */
|
|
@@ -610,6 +610,8 @@ interface Details {
|
|
|
610
610
|
* @targetRemovalDate 2024-12-31
|
|
611
611
|
*/
|
|
612
612
|
tableIds?: string[] | null;
|
|
613
|
+
/** Tables used for this reservation. */
|
|
614
|
+
tables?: Tables;
|
|
613
615
|
/** Start date and time of the reservation. */
|
|
614
616
|
startDate?: Date | null;
|
|
615
617
|
/** End date and time of the reservation. */
|
|
@@ -84,6 +84,11 @@ interface Reservation$1 {
|
|
|
84
84
|
*/
|
|
85
85
|
extendedFields?: ExtendedFields$3;
|
|
86
86
|
}
|
|
87
|
+
/** Tables used for the reservation. If you don't pass a `tables` object, the server attempts to assign tables automatically. */
|
|
88
|
+
interface Tables$1 {
|
|
89
|
+
/** IDs of tables used for this reservation. If you don't pass an `ids` array, or you pass an empty array, no tables are assigned. */
|
|
90
|
+
ids?: string[];
|
|
91
|
+
}
|
|
87
92
|
declare enum Status$3 {
|
|
88
93
|
UNKNOWN = "UNKNOWN",
|
|
89
94
|
/** The reservation is held for 10 minutes, during which time the reservee should fill in their details. */
|
|
@@ -125,6 +130,8 @@ interface Details$1 {
|
|
|
125
130
|
* @targetRemovalDate 2024-12-31
|
|
126
131
|
*/
|
|
127
132
|
tableIds?: string[] | null;
|
|
133
|
+
/** Tables used for this reservation. */
|
|
134
|
+
tables?: Tables$1;
|
|
128
135
|
/** Start date and time of the reservation. */
|
|
129
136
|
startDate?: Date | null;
|
|
130
137
|
/** End date and time of the reservation. */
|
|
@@ -1063,6 +1070,11 @@ interface Reservation {
|
|
|
1063
1070
|
*/
|
|
1064
1071
|
extendedFields?: ExtendedFields$2;
|
|
1065
1072
|
}
|
|
1073
|
+
/** Tables used for the reservation. If you don't pass a `tables` object, the server attempts to assign tables automatically. */
|
|
1074
|
+
interface Tables {
|
|
1075
|
+
/** IDs of tables used for this reservation. If you don't pass an `ids` array, or you pass an empty array, no tables are assigned. */
|
|
1076
|
+
ids?: string[];
|
|
1077
|
+
}
|
|
1066
1078
|
declare enum Status$2 {
|
|
1067
1079
|
UNKNOWN = "UNKNOWN",
|
|
1068
1080
|
/** The reservation is held for 10 minutes, during which time the reservee should fill in their details. */
|
|
@@ -1104,6 +1116,8 @@ interface Details {
|
|
|
1104
1116
|
* @targetRemovalDate 2024-12-31
|
|
1105
1117
|
*/
|
|
1106
1118
|
tableIds?: string[] | null;
|
|
1119
|
+
/** Tables used for this reservation. */
|
|
1120
|
+
tables?: Tables;
|
|
1107
1121
|
/** Start date and time of the reservation. */
|
|
1108
1122
|
startDate?: Date | null;
|
|
1109
1123
|
/** End date and time of the reservation. */
|