@wix/auto_sdk_seatings_seating-plan 1.0.44 → 1.0.46
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/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +31 -31
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +31 -31
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +31 -31
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +31 -31
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -31
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +31 -31
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -31
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +31 -31
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -974,6 +974,37 @@ declare enum WebhookIdentityType {
|
|
|
974
974
|
}
|
|
975
975
|
/** @enumType */
|
|
976
976
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
977
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
978
|
+
/** Thumbnail to update with new image data. */
|
|
979
|
+
thumbnail: SeatingPlanThumbnail;
|
|
980
|
+
}
|
|
981
|
+
/** Thumbnail image data for a seating plan. */
|
|
982
|
+
interface SeatingPlanThumbnail {
|
|
983
|
+
/**
|
|
984
|
+
* Seating plan ID that this thumbnail represents.
|
|
985
|
+
* @format GUID
|
|
986
|
+
* @readonly
|
|
987
|
+
*/
|
|
988
|
+
_id?: string | null;
|
|
989
|
+
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
990
|
+
img?: string | null;
|
|
991
|
+
}
|
|
992
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
993
|
+
/** Updated thumbnail with confirmation of changes. */
|
|
994
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
995
|
+
}
|
|
996
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
997
|
+
/**
|
|
998
|
+
* Seating plan ID to retrieve thumbnail for.
|
|
999
|
+
* @format GUID
|
|
1000
|
+
* @readonly
|
|
1001
|
+
*/
|
|
1002
|
+
_id: string | null;
|
|
1003
|
+
}
|
|
1004
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1005
|
+
/** Retrieved thumbnail data, or empty if no thumbnail exists. */
|
|
1006
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1007
|
+
}
|
|
977
1008
|
interface SaveSeatingPlanVersionRequest {
|
|
978
1009
|
/** Seating plan version to be saved as a draft. Must include plan ID for existing plans. */
|
|
979
1010
|
plan?: SeatingPlan;
|
|
@@ -1045,37 +1076,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1045
1076
|
/** Restored seating plan with the specified version as the new current version and incremented version number. */
|
|
1046
1077
|
plan?: SeatingPlan;
|
|
1047
1078
|
}
|
|
1048
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1049
|
-
/** Thumbnail to update with new image data. */
|
|
1050
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1051
|
-
}
|
|
1052
|
-
/** Thumbnail image data for a seating plan. */
|
|
1053
|
-
interface SeatingPlanThumbnail {
|
|
1054
|
-
/**
|
|
1055
|
-
* Seating plan ID that this thumbnail represents.
|
|
1056
|
-
* @format GUID
|
|
1057
|
-
* @readonly
|
|
1058
|
-
*/
|
|
1059
|
-
_id?: string | null;
|
|
1060
|
-
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
1061
|
-
img?: string | null;
|
|
1062
|
-
}
|
|
1063
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1064
|
-
/** Updated thumbnail with confirmation of changes. */
|
|
1065
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1066
|
-
}
|
|
1067
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1068
|
-
/**
|
|
1069
|
-
* Seating plan ID to retrieve thumbnail for.
|
|
1070
|
-
* @format GUID
|
|
1071
|
-
* @readonly
|
|
1072
|
-
*/
|
|
1073
|
-
_id: string | null;
|
|
1074
|
-
}
|
|
1075
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1076
|
-
/** Retrieved thumbnail data, or empty if no thumbnail exists. */
|
|
1077
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1078
|
-
}
|
|
1079
1079
|
/** @docsIgnore */
|
|
1080
1080
|
type CreateSeatingPlanApplicationErrors = {
|
|
1081
1081
|
code?: 'PLAN_MAX_CAPACITY_EXCEEDED';
|