@wix/seatings 1.0.29 → 1.0.31
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/seatings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/seatings_seating-plan": "1.0.
|
|
25
|
-
"@wix/seatings_seating-reservation": "1.0.
|
|
24
|
+
"@wix/seatings_seating-plan": "1.0.26",
|
|
25
|
+
"@wix/seatings_seating-reservation": "1.0.22"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "c4e4e4bccabf5653ff318e135ee1024deb25ccf2e7c37532c12a8d18"
|
|
51
51
|
}
|
|
@@ -567,10 +567,7 @@ interface Element$1 {
|
|
|
567
567
|
categoryId?: number | null;
|
|
568
568
|
/** A place numbering meta data */
|
|
569
569
|
sequencing?: Sequencing$1;
|
|
570
|
-
/**
|
|
571
|
-
* Place override (by seq_id)
|
|
572
|
-
* @deprecated
|
|
573
|
-
*/
|
|
570
|
+
/** Place override (by seq_id) */
|
|
574
571
|
overrides?: Place$1[];
|
|
575
572
|
/**
|
|
576
573
|
* Final place sequence with overrides
|
|
@@ -1108,6 +1105,24 @@ declare enum WebhookIdentityType$1 {
|
|
|
1108
1105
|
WIX_USER = "WIX_USER",
|
|
1109
1106
|
APP = "APP"
|
|
1110
1107
|
}
|
|
1108
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
1109
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1110
|
+
}
|
|
1111
|
+
interface SeatingPlanThumbnail {
|
|
1112
|
+
/** @readonly */
|
|
1113
|
+
_id?: string | null;
|
|
1114
|
+
img?: string | null;
|
|
1115
|
+
}
|
|
1116
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1117
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1118
|
+
}
|
|
1119
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1120
|
+
/** @readonly */
|
|
1121
|
+
_id: string | null;
|
|
1122
|
+
}
|
|
1123
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1124
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1125
|
+
}
|
|
1111
1126
|
interface SaveSeatingPlanVersionRequest {
|
|
1112
1127
|
/** A plan version to be saved */
|
|
1113
1128
|
plan?: SeatingPlan$1;
|
|
@@ -1174,24 +1189,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1174
1189
|
/** Seating Plan */
|
|
1175
1190
|
plan?: SeatingPlan$1;
|
|
1176
1191
|
}
|
|
1177
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1178
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1179
|
-
}
|
|
1180
|
-
interface SeatingPlanThumbnail {
|
|
1181
|
-
/** @readonly */
|
|
1182
|
-
_id?: string | null;
|
|
1183
|
-
img?: string | null;
|
|
1184
|
-
}
|
|
1185
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1186
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1187
|
-
}
|
|
1188
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1189
|
-
/** @readonly */
|
|
1190
|
-
_id: string | null;
|
|
1191
|
-
}
|
|
1192
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1193
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1194
|
-
}
|
|
1195
1192
|
interface SequencingNonNullableFields$1 {
|
|
1196
1193
|
startAt: string;
|
|
1197
1194
|
labels: string[];
|
|
@@ -1991,10 +1988,7 @@ interface Element {
|
|
|
1991
1988
|
categoryId?: number | null;
|
|
1992
1989
|
/** A place numbering meta data */
|
|
1993
1990
|
sequencing?: Sequencing;
|
|
1994
|
-
/**
|
|
1995
|
-
* Place override (by seq_id)
|
|
1996
|
-
* @deprecated
|
|
1997
|
-
*/
|
|
1991
|
+
/** Place override (by seq_id) */
|
|
1998
1992
|
overrides?: Place[];
|
|
1999
1993
|
/**
|
|
2000
1994
|
* Final place sequence with overrides
|
|
@@ -567,10 +567,7 @@ interface Element$1 {
|
|
|
567
567
|
categoryId?: number | null;
|
|
568
568
|
/** A place numbering meta data */
|
|
569
569
|
sequencing?: Sequencing$1;
|
|
570
|
-
/**
|
|
571
|
-
* Place override (by seq_id)
|
|
572
|
-
* @deprecated
|
|
573
|
-
*/
|
|
570
|
+
/** Place override (by seq_id) */
|
|
574
571
|
overrides?: Place$1[];
|
|
575
572
|
/**
|
|
576
573
|
* Final place sequence with overrides
|
|
@@ -1108,6 +1105,24 @@ declare enum WebhookIdentityType$1 {
|
|
|
1108
1105
|
WIX_USER = "WIX_USER",
|
|
1109
1106
|
APP = "APP"
|
|
1110
1107
|
}
|
|
1108
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
1109
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1110
|
+
}
|
|
1111
|
+
interface SeatingPlanThumbnail {
|
|
1112
|
+
/** @readonly */
|
|
1113
|
+
_id?: string | null;
|
|
1114
|
+
img?: string | null;
|
|
1115
|
+
}
|
|
1116
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1117
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1118
|
+
}
|
|
1119
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1120
|
+
/** @readonly */
|
|
1121
|
+
_id: string | null;
|
|
1122
|
+
}
|
|
1123
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1124
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1125
|
+
}
|
|
1111
1126
|
interface SaveSeatingPlanVersionRequest {
|
|
1112
1127
|
/** A plan version to be saved */
|
|
1113
1128
|
plan?: SeatingPlan$1;
|
|
@@ -1174,24 +1189,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1174
1189
|
/** Seating Plan */
|
|
1175
1190
|
plan?: SeatingPlan$1;
|
|
1176
1191
|
}
|
|
1177
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1178
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1179
|
-
}
|
|
1180
|
-
interface SeatingPlanThumbnail {
|
|
1181
|
-
/** @readonly */
|
|
1182
|
-
_id?: string | null;
|
|
1183
|
-
img?: string | null;
|
|
1184
|
-
}
|
|
1185
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1186
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1187
|
-
}
|
|
1188
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1189
|
-
/** @readonly */
|
|
1190
|
-
_id: string | null;
|
|
1191
|
-
}
|
|
1192
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1193
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1194
|
-
}
|
|
1195
1192
|
interface SequencingNonNullableFields$1 {
|
|
1196
1193
|
startAt: string;
|
|
1197
1194
|
labels: string[];
|
|
@@ -1991,10 +1988,7 @@ interface Element {
|
|
|
1991
1988
|
categoryId?: number | null;
|
|
1992
1989
|
/** A place numbering meta data */
|
|
1993
1990
|
sequencing?: Sequencing;
|
|
1994
|
-
/**
|
|
1995
|
-
* Place override (by seq_id)
|
|
1996
|
-
* @deprecated
|
|
1997
|
-
*/
|
|
1991
|
+
/** Place override (by seq_id) */
|
|
1998
1992
|
overrides?: Place[];
|
|
1999
1993
|
/**
|
|
2000
1994
|
* Final place sequence with overrides
|
|
@@ -89,10 +89,7 @@ interface Element$3 {
|
|
|
89
89
|
categoryId?: number | null;
|
|
90
90
|
/** A place numbering meta data */
|
|
91
91
|
sequencing?: Sequencing$3;
|
|
92
|
-
/**
|
|
93
|
-
* Place override (by seq_id)
|
|
94
|
-
* @deprecated
|
|
95
|
-
*/
|
|
92
|
+
/** Place override (by seq_id) */
|
|
96
93
|
overrides?: Place$3[];
|
|
97
94
|
/**
|
|
98
95
|
* Final place sequence with overrides
|
|
@@ -715,10 +712,7 @@ interface Element$2 {
|
|
|
715
712
|
categoryId?: number | null;
|
|
716
713
|
/** A place numbering meta data */
|
|
717
714
|
sequencing?: Sequencing$2;
|
|
718
|
-
/**
|
|
719
|
-
* Place override (by seq_id)
|
|
720
|
-
* @deprecated
|
|
721
|
-
*/
|
|
715
|
+
/** Place override (by seq_id) */
|
|
722
716
|
overrides?: Place$2[];
|
|
723
717
|
/**
|
|
724
718
|
* Final place sequence with overrides
|
|
@@ -1596,10 +1590,7 @@ interface Element$1 {
|
|
|
1596
1590
|
categoryId?: number | null;
|
|
1597
1591
|
/** A place numbering meta data */
|
|
1598
1592
|
sequencing?: Sequencing$1;
|
|
1599
|
-
/**
|
|
1600
|
-
* Place override (by seq_id)
|
|
1601
|
-
* @deprecated
|
|
1602
|
-
*/
|
|
1593
|
+
/** Place override (by seq_id) */
|
|
1603
1594
|
overrides?: Place$1[];
|
|
1604
1595
|
/**
|
|
1605
1596
|
* Final place sequence with overrides
|
|
@@ -2293,10 +2284,7 @@ interface Element {
|
|
|
2293
2284
|
categoryId?: number | null;
|
|
2294
2285
|
/** A place numbering meta data */
|
|
2295
2286
|
sequencing?: Sequencing;
|
|
2296
|
-
/**
|
|
2297
|
-
* Place override (by seq_id)
|
|
2298
|
-
* @deprecated
|
|
2299
|
-
*/
|
|
2287
|
+
/** Place override (by seq_id) */
|
|
2300
2288
|
overrides?: Place[];
|
|
2301
2289
|
/**
|
|
2302
2290
|
* Final place sequence with overrides
|