@wix/seatings 1.0.24 → 1.0.25
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.25",
|
|
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.20",
|
|
25
|
+
"@wix/seatings_seating-reservation": "1.0.19"
|
|
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": "07ab5c67001d371457f4b9fbdbaca68f6d638f212ce8009ea486b1cf"
|
|
51
51
|
}
|
|
@@ -1102,6 +1102,24 @@ declare enum WebhookIdentityType$1 {
|
|
|
1102
1102
|
WIX_USER = "WIX_USER",
|
|
1103
1103
|
APP = "APP"
|
|
1104
1104
|
}
|
|
1105
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
1106
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1107
|
+
}
|
|
1108
|
+
interface SeatingPlanThumbnail {
|
|
1109
|
+
/** @readonly */
|
|
1110
|
+
_id?: string | null;
|
|
1111
|
+
img?: string | null;
|
|
1112
|
+
}
|
|
1113
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1114
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1115
|
+
}
|
|
1116
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1117
|
+
/** @readonly */
|
|
1118
|
+
_id: string | null;
|
|
1119
|
+
}
|
|
1120
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1121
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1122
|
+
}
|
|
1105
1123
|
interface SaveSeatingPlanVersionRequest {
|
|
1106
1124
|
/** A plan version to be saved */
|
|
1107
1125
|
plan?: SeatingPlan$1;
|
|
@@ -1168,24 +1186,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1168
1186
|
/** Seating Plan */
|
|
1169
1187
|
plan?: SeatingPlan$1;
|
|
1170
1188
|
}
|
|
1171
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1172
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1173
|
-
}
|
|
1174
|
-
interface SeatingPlanThumbnail {
|
|
1175
|
-
/** @readonly */
|
|
1176
|
-
_id?: string | null;
|
|
1177
|
-
img?: string | null;
|
|
1178
|
-
}
|
|
1179
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1180
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1181
|
-
}
|
|
1182
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1183
|
-
/** @readonly */
|
|
1184
|
-
_id: string | null;
|
|
1185
|
-
}
|
|
1186
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1187
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1188
|
-
}
|
|
1189
1189
|
interface SequencingNonNullableFields$1 {
|
|
1190
1190
|
startAt: string;
|
|
1191
1191
|
labels: string[];
|
|
@@ -1329,11 +1329,11 @@ interface SeatingPlanCreatedEnvelope {
|
|
|
1329
1329
|
entity: SeatingPlan$1;
|
|
1330
1330
|
metadata: EventMetadata$1;
|
|
1331
1331
|
}
|
|
1332
|
-
interface
|
|
1332
|
+
interface SeatingPlanUpdatedEnvelope {
|
|
1333
1333
|
entity: SeatingPlan$1;
|
|
1334
1334
|
metadata: EventMetadata$1;
|
|
1335
1335
|
}
|
|
1336
|
-
interface
|
|
1336
|
+
interface SeatingPlanDeletedEnvelope {
|
|
1337
1337
|
entity: SeatingPlan$1;
|
|
1338
1338
|
metadata: EventMetadata$1;
|
|
1339
1339
|
}
|
|
@@ -1477,8 +1477,8 @@ interface GetSeatingPlanThumbnailSignature {
|
|
|
1477
1477
|
(_id: string | null): Promise<GetSeatingPlanThumbnailResponse>;
|
|
1478
1478
|
}
|
|
1479
1479
|
declare const onSeatingPlanCreated$1: EventDefinition<SeatingPlanCreatedEnvelope, "wix.seating.v1.seating_plan_created">;
|
|
1480
|
-
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1481
1480
|
declare const onSeatingPlanUpdated$1: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1481
|
+
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1482
1482
|
|
|
1483
1483
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1484
1484
|
|
|
@@ -1496,14 +1496,14 @@ type _publicOnSeatingPlanCreatedType = typeof onSeatingPlanCreated$1;
|
|
|
1496
1496
|
/** */
|
|
1497
1497
|
declare const onSeatingPlanCreated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanCreatedType>>;
|
|
1498
1498
|
|
|
1499
|
-
type _publicOnSeatingPlanDeletedType = typeof onSeatingPlanDeleted$1;
|
|
1500
|
-
/** */
|
|
1501
|
-
declare const onSeatingPlanDeleted: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanDeletedType>>;
|
|
1502
|
-
|
|
1503
1499
|
type _publicOnSeatingPlanUpdatedType = typeof onSeatingPlanUpdated$1;
|
|
1504
1500
|
/** */
|
|
1505
1501
|
declare const onSeatingPlanUpdated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanUpdatedType>>;
|
|
1506
1502
|
|
|
1503
|
+
type _publicOnSeatingPlanDeletedType = typeof onSeatingPlanDeleted$1;
|
|
1504
|
+
/** */
|
|
1505
|
+
declare const onSeatingPlanDeleted: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanDeletedType>>;
|
|
1506
|
+
|
|
1507
1507
|
type context$1_CapacityExceededViolation = CapacityExceededViolation;
|
|
1508
1508
|
type context$1_CopySeatingPlanOptions = CopySeatingPlanOptions;
|
|
1509
1509
|
type context$1_CopySeatingPlanRequest = CopySeatingPlanRequest;
|
|
@@ -1102,6 +1102,24 @@ declare enum WebhookIdentityType$1 {
|
|
|
1102
1102
|
WIX_USER = "WIX_USER",
|
|
1103
1103
|
APP = "APP"
|
|
1104
1104
|
}
|
|
1105
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
1106
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1107
|
+
}
|
|
1108
|
+
interface SeatingPlanThumbnail {
|
|
1109
|
+
/** @readonly */
|
|
1110
|
+
_id?: string | null;
|
|
1111
|
+
img?: string | null;
|
|
1112
|
+
}
|
|
1113
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1114
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1115
|
+
}
|
|
1116
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1117
|
+
/** @readonly */
|
|
1118
|
+
_id: string | null;
|
|
1119
|
+
}
|
|
1120
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1121
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1122
|
+
}
|
|
1105
1123
|
interface SaveSeatingPlanVersionRequest {
|
|
1106
1124
|
/** A plan version to be saved */
|
|
1107
1125
|
plan?: SeatingPlan$1;
|
|
@@ -1168,24 +1186,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1168
1186
|
/** Seating Plan */
|
|
1169
1187
|
plan?: SeatingPlan$1;
|
|
1170
1188
|
}
|
|
1171
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1172
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1173
|
-
}
|
|
1174
|
-
interface SeatingPlanThumbnail {
|
|
1175
|
-
/** @readonly */
|
|
1176
|
-
_id?: string | null;
|
|
1177
|
-
img?: string | null;
|
|
1178
|
-
}
|
|
1179
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1180
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1181
|
-
}
|
|
1182
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1183
|
-
/** @readonly */
|
|
1184
|
-
_id: string | null;
|
|
1185
|
-
}
|
|
1186
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1187
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1188
|
-
}
|
|
1189
1189
|
interface SequencingNonNullableFields$1 {
|
|
1190
1190
|
startAt: string;
|
|
1191
1191
|
labels: string[];
|
|
@@ -1329,11 +1329,11 @@ interface SeatingPlanCreatedEnvelope {
|
|
|
1329
1329
|
entity: SeatingPlan$1;
|
|
1330
1330
|
metadata: EventMetadata$1;
|
|
1331
1331
|
}
|
|
1332
|
-
interface
|
|
1332
|
+
interface SeatingPlanUpdatedEnvelope {
|
|
1333
1333
|
entity: SeatingPlan$1;
|
|
1334
1334
|
metadata: EventMetadata$1;
|
|
1335
1335
|
}
|
|
1336
|
-
interface
|
|
1336
|
+
interface SeatingPlanDeletedEnvelope {
|
|
1337
1337
|
entity: SeatingPlan$1;
|
|
1338
1338
|
metadata: EventMetadata$1;
|
|
1339
1339
|
}
|
|
@@ -1477,8 +1477,8 @@ interface GetSeatingPlanThumbnailSignature {
|
|
|
1477
1477
|
(_id: string | null): Promise<GetSeatingPlanThumbnailResponse>;
|
|
1478
1478
|
}
|
|
1479
1479
|
declare const onSeatingPlanCreated$1: EventDefinition<SeatingPlanCreatedEnvelope, "wix.seating.v1.seating_plan_created">;
|
|
1480
|
-
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1481
1480
|
declare const onSeatingPlanUpdated$1: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1481
|
+
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1482
1482
|
|
|
1483
1483
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1484
1484
|
|
|
@@ -1496,14 +1496,14 @@ type _publicOnSeatingPlanCreatedType = typeof onSeatingPlanCreated$1;
|
|
|
1496
1496
|
/** */
|
|
1497
1497
|
declare const onSeatingPlanCreated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanCreatedType>>;
|
|
1498
1498
|
|
|
1499
|
-
type _publicOnSeatingPlanDeletedType = typeof onSeatingPlanDeleted$1;
|
|
1500
|
-
/** */
|
|
1501
|
-
declare const onSeatingPlanDeleted: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanDeletedType>>;
|
|
1502
|
-
|
|
1503
1499
|
type _publicOnSeatingPlanUpdatedType = typeof onSeatingPlanUpdated$1;
|
|
1504
1500
|
/** */
|
|
1505
1501
|
declare const onSeatingPlanUpdated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanUpdatedType>>;
|
|
1506
1502
|
|
|
1503
|
+
type _publicOnSeatingPlanDeletedType = typeof onSeatingPlanDeleted$1;
|
|
1504
|
+
/** */
|
|
1505
|
+
declare const onSeatingPlanDeleted: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanDeletedType>>;
|
|
1506
|
+
|
|
1507
1507
|
type index_d$1_CapacityExceededViolation = CapacityExceededViolation;
|
|
1508
1508
|
type index_d$1_CopySeatingPlanOptions = CopySeatingPlanOptions;
|
|
1509
1509
|
type index_d$1_CopySeatingPlanRequest = CopySeatingPlanRequest;
|