@wix/auto_sdk_seatings_seating-plan 1.0.56 → 1.0.57
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 +42 -25
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +42 -25
- 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 +42 -25
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +42 -25
- 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 +42 -25
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +42 -25
- 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 +42 -25
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +42 -25
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -977,36 +977,22 @@ declare enum WebhookIdentityType {
|
|
|
977
977
|
}
|
|
978
978
|
/** @enumType */
|
|
979
979
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
980
|
-
interface
|
|
981
|
-
/** Thumbnail to update with new image data. */
|
|
982
|
-
thumbnail: SeatingPlanThumbnail;
|
|
983
|
-
}
|
|
984
|
-
/** Thumbnail image data for a seating plan. */
|
|
985
|
-
interface SeatingPlanThumbnail {
|
|
980
|
+
interface AccountDetails {
|
|
986
981
|
/**
|
|
987
|
-
*
|
|
982
|
+
* ID of the account.
|
|
988
983
|
* @format GUID
|
|
989
|
-
* @readonly
|
|
990
984
|
*/
|
|
991
|
-
|
|
992
|
-
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
993
|
-
img?: string | null;
|
|
994
|
-
}
|
|
995
|
-
interface UpdateSeatingPlanThumbnailResponse {
|
|
996
|
-
/** Updated thumbnail with confirmation of changes. */
|
|
997
|
-
thumbnail?: SeatingPlanThumbnail;
|
|
998
|
-
}
|
|
999
|
-
interface GetSeatingPlanThumbnailRequest {
|
|
985
|
+
accountId?: string | null;
|
|
1000
986
|
/**
|
|
1001
|
-
*
|
|
987
|
+
* ID of the parent account.
|
|
1002
988
|
* @format GUID
|
|
1003
|
-
* @readonly
|
|
1004
989
|
*/
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
990
|
+
parentAccountId?: string | null;
|
|
991
|
+
/**
|
|
992
|
+
* ID of the site, if applicable.
|
|
993
|
+
* @format GUID
|
|
994
|
+
*/
|
|
995
|
+
siteId?: string | null;
|
|
1010
996
|
}
|
|
1011
997
|
interface SaveSeatingPlanVersionRequest {
|
|
1012
998
|
/** Seating plan version to be saved as a draft. Must include plan ID for existing plans. */
|
|
@@ -1079,6 +1065,37 @@ interface RestoreSeatingPlanResponse {
|
|
|
1079
1065
|
/** Restored seating plan with the specified version as the new current version and incremented version number. */
|
|
1080
1066
|
plan?: SeatingPlan;
|
|
1081
1067
|
}
|
|
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
|
+
}
|
|
1082
1099
|
/** @docsIgnore */
|
|
1083
1100
|
type CreateSeatingPlanApplicationErrors = {
|
|
1084
1101
|
code?: 'PLAN_MAX_CAPACITY_EXCEEDED';
|
|
@@ -1120,4 +1137,4 @@ declare function deleteSeatingPlan(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
1120
1137
|
declare function updateSeatingPlanThumbnail(): __PublicMethodMetaInfo<'POST', {}, UpdateSeatingPlanThumbnailRequest$1, UpdateSeatingPlanThumbnailRequest, UpdateSeatingPlanThumbnailResponse$1, UpdateSeatingPlanThumbnailResponse>;
|
|
1121
1138
|
declare function getSeatingPlanThumbnail(): __PublicMethodMetaInfo<'GET', {}, GetSeatingPlanThumbnailRequest$1, GetSeatingPlanThumbnailRequest, GetSeatingPlanThumbnailResponse$1, GetSeatingPlanThumbnailResponse>;
|
|
1122
1139
|
|
|
1123
|
-
export { 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 };
|
|
1140
|
+
export { type AccountDetails as AccountDetailsOriginal, 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 };
|