@wix/auto_sdk_seatings_seating-plan 1.0.57 → 1.0.59
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.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +36 -42
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +36 -36
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +36 -42
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +36 -36
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +36 -42
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +36 -36
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +36 -42
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +36 -36
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -977,23 +977,54 @@ declare enum WebhookIdentityType {
|
|
|
977
977
|
}
|
|
978
978
|
/** @enumType */
|
|
979
979
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
980
|
-
interface
|
|
980
|
+
interface AccountInfo {
|
|
981
981
|
/**
|
|
982
|
-
* ID of the account.
|
|
982
|
+
* ID of the Wix account associated with the event.
|
|
983
983
|
* @format GUID
|
|
984
984
|
*/
|
|
985
985
|
accountId?: string | null;
|
|
986
986
|
/**
|
|
987
|
-
* ID of the parent account.
|
|
987
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
988
988
|
* @format GUID
|
|
989
989
|
*/
|
|
990
990
|
parentAccountId?: string | null;
|
|
991
991
|
/**
|
|
992
|
-
* ID of the site
|
|
992
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
993
993
|
* @format GUID
|
|
994
994
|
*/
|
|
995
995
|
siteId?: string | null;
|
|
996
996
|
}
|
|
997
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
998
|
+
/** Thumbnail to update with new image data. */
|
|
999
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1000
|
+
}
|
|
1001
|
+
/** Thumbnail image data for a seating plan. */
|
|
1002
|
+
interface SeatingPlanThumbnail {
|
|
1003
|
+
/**
|
|
1004
|
+
* Seating plan ID that this thumbnail represents.
|
|
1005
|
+
* @format GUID
|
|
1006
|
+
* @readonly
|
|
1007
|
+
*/
|
|
1008
|
+
id?: string | null;
|
|
1009
|
+
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
1010
|
+
img?: string | null;
|
|
1011
|
+
}
|
|
1012
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1013
|
+
/** Updated thumbnail with confirmation of changes. */
|
|
1014
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1015
|
+
}
|
|
1016
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1017
|
+
/**
|
|
1018
|
+
* Seating plan ID to retrieve thumbnail for.
|
|
1019
|
+
* @format GUID
|
|
1020
|
+
* @readonly
|
|
1021
|
+
*/
|
|
1022
|
+
id: string | null;
|
|
1023
|
+
}
|
|
1024
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1025
|
+
/** Retrieved thumbnail data, or empty if no thumbnail exists. */
|
|
1026
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1027
|
+
}
|
|
997
1028
|
interface SaveSeatingPlanVersionRequest {
|
|
998
1029
|
/** Seating plan version to be saved as a draft. Must include plan ID for existing plans. */
|
|
999
1030
|
plan?: SeatingPlan;
|
|
@@ -1065,37 +1096,6 @@ interface RestoreSeatingPlanResponse {
|
|
|
1065
1096
|
/** Restored seating plan with the specified version as the new current version and incremented version number. */
|
|
1066
1097
|
plan?: SeatingPlan;
|
|
1067
1098
|
}
|
|
1068
|
-
interface UpdateSeatingPlanThumbnailRequest {
|
|
1069
|
-
/** Thumbnail to update with new image data. */
|
|
1070
|
-
thumbnail: SeatingPlanThumbnail;
|
|
1071
|
-
}
|
|
1072
|
-
/** Thumbnail image data for a seating plan. */
|
|
1073
|
-
interface SeatingPlanThumbnail {
|
|
1074
|
-
/**
|
|
1075
|
-
* Seating plan ID that this thumbnail represents.
|
|
1076
|
-
* @format GUID
|
|
1077
|
-
* @readonly
|
|
1078
|
-
*/
|
|
1079
|
-
id?: string | null;
|
|
1080
|
-
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
1081
|
-
img?: string | null;
|
|
1082
|
-
}
|
|
1083
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
1084
|
-
/** Updated thumbnail with confirmation of changes. */
|
|
1085
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1086
|
-
}
|
|
1087
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
1088
|
-
/**
|
|
1089
|
-
* Seating plan ID to retrieve thumbnail for.
|
|
1090
|
-
* @format GUID
|
|
1091
|
-
* @readonly
|
|
1092
|
-
*/
|
|
1093
|
-
id: string | null;
|
|
1094
|
-
}
|
|
1095
|
-
interface GetSeatingPlanThumbnailResponse {
|
|
1096
|
-
/** Retrieved thumbnail data, or empty if no thumbnail exists. */
|
|
1097
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
1098
|
-
}
|
|
1099
1099
|
/** @docsIgnore */
|
|
1100
1100
|
type CreateSeatingPlanApplicationErrors = {
|
|
1101
1101
|
code?: 'PLAN_MAX_CAPACITY_EXCEEDED';
|
|
@@ -1137,4 +1137,4 @@ declare function deleteSeatingPlan(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
1137
1137
|
declare function updateSeatingPlanThumbnail(): __PublicMethodMetaInfo<'POST', {}, UpdateSeatingPlanThumbnailRequest$1, UpdateSeatingPlanThumbnailRequest, UpdateSeatingPlanThumbnailResponse$1, UpdateSeatingPlanThumbnailResponse>;
|
|
1138
1138
|
declare function getSeatingPlanThumbnail(): __PublicMethodMetaInfo<'GET', {}, GetSeatingPlanThumbnailRequest$1, GetSeatingPlanThumbnailRequest, GetSeatingPlanThumbnailResponse$1, GetSeatingPlanThumbnailResponse>;
|
|
1139
1139
|
|
|
1140
|
-
export { type
|
|
1140
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type CapacityExceededViolation as CapacityExceededViolationOriginal, type Category as CategoryOriginal, type CopySeatingPlanRequest as CopySeatingPlanRequestOriginal, type CopySeatingPlanResponse as CopySeatingPlanResponseOriginal, type CreateSeatingPlanApplicationErrors as CreateSeatingPlanApplicationErrorsOriginal, type CreateSeatingPlanRequest as CreateSeatingPlanRequestOriginal, type CreateSeatingPlanResponse as CreateSeatingPlanResponseOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DeleteSeatingPlanRequest as DeleteSeatingPlanRequestOriginal, type DeleteSeatingPlanResponse as DeleteSeatingPlanResponseOriginal, type DiscardSeatingPlanVersionsRequest as DiscardSeatingPlanVersionsRequestOriginal, type DiscardSeatingPlanVersionsResponse as DiscardSeatingPlanVersionsResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type ElementGroup as ElementGroupOriginal, type ElementGroupUiProperties as ElementGroupUiPropertiesOriginal, type Element as ElementOriginal, type ElementUiProperties as ElementUiPropertiesOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, Fieldset as FieldsetOriginal, type FieldsetWithLiterals as FieldsetWithLiteralsOriginal, type FindSeatingPlanRequest as FindSeatingPlanRequestOriginal, type FindSeatingPlanResponse as FindSeatingPlanResponseOriginal, type GetSeatingPlanRequest as GetSeatingPlanRequestOriginal, type GetSeatingPlanResponse as GetSeatingPlanResponseOriginal, type GetSeatingPlanThumbnailRequest as GetSeatingPlanThumbnailRequestOriginal, type GetSeatingPlanThumbnailResponse as GetSeatingPlanThumbnailResponseOriginal, Icon as IconOriginal, type IconWithLiterals as IconWithLiteralsOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MultiRowProperties as MultiRowPropertiesOriginal, Numbering as NumberingOriginal, type NumberingWithLiterals as NumberingWithLiteralsOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type Place as PlaceOriginal, PlaceTypeEnumType as PlaceTypeEnumTypeOriginal, type PlaceTypeEnumTypeWithLiterals as PlaceTypeEnumTypeWithLiteralsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type QuerySeatingPlanRequest as QuerySeatingPlanRequestOriginal, type QuerySeatingPlanResponse as QuerySeatingPlanResponseOriginal, type QuerySeatingPlanVersionsRequest as QuerySeatingPlanVersionsRequestOriginal, type QuerySeatingPlanVersionsResponse as QuerySeatingPlanVersionsResponseOriginal, type QueryV2 as QueryV2Original, type QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOfOriginal, type ReservationOptions as ReservationOptionsOriginal, type RestoreInfo as RestoreInfoOriginal, type RestoreSeatingPlanRequest as RestoreSeatingPlanRequestOriginal, type RestoreSeatingPlanResponse as RestoreSeatingPlanResponseOriginal, type RowElement as RowElementOriginal, type RowElementUiProperties as RowElementUiPropertiesOriginal, type SaveSeatingPlanVersionRequest as SaveSeatingPlanVersionRequestOriginal, type SaveSeatingPlanVersionResponse as SaveSeatingPlanVersionResponseOriginal, type SeatingPlanMask as SeatingPlanMaskOriginal, type SeatingPlan as SeatingPlanOriginal, type SeatingPlanThumbnail as SeatingPlanThumbnailOriginal, type SeatingPlanUiProperties as SeatingPlanUiPropertiesOriginal, type Section as SectionOriginal, type Sequencing as SequencingOriginal, ShapeTypeEnumType as ShapeTypeEnumTypeOriginal, type ShapeTypeEnumTypeWithLiterals as ShapeTypeEnumTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateSeatingPlanApplicationErrors as UpdateSeatingPlanApplicationErrorsOriginal, type UpdateSeatingPlanRequest as UpdateSeatingPlanRequestOriginal, type UpdateSeatingPlanResponse as UpdateSeatingPlanResponseOriginal, type UpdateSeatingPlanThumbnailRequest as UpdateSeatingPlanThumbnailRequestOriginal, type UpdateSeatingPlanThumbnailResponse as UpdateSeatingPlanThumbnailResponseOriginal, type VerticalSequencing as VerticalSequencingOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, copySeatingPlan, createSeatingPlan, deleteSeatingPlan, findSeatingPlan, getSeatingPlan, getSeatingPlanThumbnail, querySeatingPlan, updateSeatingPlan, updateSeatingPlanThumbnail };
|