@wix/table-reservations 1.0.155 → 1.0.156

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/table-reservations",
3
- "version": "1.0.155",
3
+ "version": "1.0.156",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@wix/table-reservations_reservation-locations": "1.0.65",
22
- "@wix/table-reservations_reservations": "1.0.53",
22
+ "@wix/table-reservations_reservations": "1.0.54",
23
23
  "@wix/table-reservations_time-slots": "1.0.47"
24
24
  },
25
25
  "devDependencies": {
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "4dee93214abf2ed769db390b586413d6c44eb46d2a8c6fde33134ec0"
48
+ "falconPackageHash": "8bb9fb3ed37f8c7f3999eb527306b92eb8ea3d9f9ccb62106f54a42b"
49
49
  }
@@ -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. */