@wix/auto_sdk_seatings_seating-plan 1.0.56 → 1.0.58
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
|
@@ -974,36 +974,22 @@ declare enum WebhookIdentityType {
|
|
|
974
974
|
}
|
|
975
975
|
/** @enumType */
|
|
976
976
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
977
|
-
interface
|
|
978
|
-
/** Thumbnail to update with new image data. */
|
|
979
|
-
thumbnail: SeatingPlanThumbnail;
|
|
980
|
-
}
|
|
981
|
-
/** Thumbnail image data for a seating plan. */
|
|
982
|
-
interface SeatingPlanThumbnail {
|
|
977
|
+
interface AccountInfo {
|
|
983
978
|
/**
|
|
984
|
-
*
|
|
979
|
+
* ID of the Wix account associated with the event.
|
|
985
980
|
* @format GUID
|
|
986
|
-
* @readonly
|
|
987
981
|
*/
|
|
988
|
-
|
|
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 {
|
|
982
|
+
accountId?: string | null;
|
|
997
983
|
/**
|
|
998
|
-
*
|
|
984
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
999
985
|
* @format GUID
|
|
1000
|
-
* @readonly
|
|
1001
986
|
*/
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
987
|
+
parentAccountId?: string | null;
|
|
988
|
+
/**
|
|
989
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
990
|
+
* @format GUID
|
|
991
|
+
*/
|
|
992
|
+
siteId?: string | null;
|
|
1007
993
|
}
|
|
1008
994
|
interface SaveSeatingPlanVersionRequest {
|
|
1009
995
|
/** Seating plan version to be saved as a draft. Must include plan ID for existing plans. */
|
|
@@ -1076,6 +1062,37 @@ interface RestoreSeatingPlanResponse {
|
|
|
1076
1062
|
/** Restored seating plan with the specified version as the new current version and incremented version number. */
|
|
1077
1063
|
plan?: SeatingPlan;
|
|
1078
1064
|
}
|
|
1065
|
+
interface UpdateSeatingPlanThumbnailRequest {
|
|
1066
|
+
/** Thumbnail to update with new image data. */
|
|
1067
|
+
thumbnail: SeatingPlanThumbnail;
|
|
1068
|
+
}
|
|
1069
|
+
/** Thumbnail image data for a seating plan. */
|
|
1070
|
+
interface SeatingPlanThumbnail {
|
|
1071
|
+
/**
|
|
1072
|
+
* Seating plan ID that this thumbnail represents.
|
|
1073
|
+
* @format GUID
|
|
1074
|
+
* @readonly
|
|
1075
|
+
*/
|
|
1076
|
+
_id?: string | null;
|
|
1077
|
+
/** Thumbnail image data or reference. Format depends on implementation (base64, URL, or image ID). */
|
|
1078
|
+
img?: string | null;
|
|
1079
|
+
}
|
|
1080
|
+
interface UpdateSeatingPlanThumbnailResponse {
|
|
1081
|
+
/** Updated thumbnail with confirmation of changes. */
|
|
1082
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1083
|
+
}
|
|
1084
|
+
interface GetSeatingPlanThumbnailRequest {
|
|
1085
|
+
/**
|
|
1086
|
+
* Seating plan ID to retrieve thumbnail for.
|
|
1087
|
+
* @format GUID
|
|
1088
|
+
* @readonly
|
|
1089
|
+
*/
|
|
1090
|
+
_id: string | null;
|
|
1091
|
+
}
|
|
1092
|
+
interface GetSeatingPlanThumbnailResponse {
|
|
1093
|
+
/** Retrieved thumbnail data, or empty if no thumbnail exists. */
|
|
1094
|
+
thumbnail?: SeatingPlanThumbnail;
|
|
1095
|
+
}
|
|
1079
1096
|
/** @docsIgnore */
|
|
1080
1097
|
type CreateSeatingPlanApplicationErrors = {
|
|
1081
1098
|
code?: 'PLAN_MAX_CAPACITY_EXCEEDED';
|
|
@@ -1424,4 +1441,4 @@ declare function updateSeatingPlanThumbnail(thumbnail: NonNullablePaths<SeatingP
|
|
|
1424
1441
|
*/
|
|
1425
1442
|
declare function getSeatingPlanThumbnail(_id: string): Promise<GetSeatingPlanThumbnailResponse>;
|
|
1426
1443
|
|
|
1427
|
-
export { type ActionEvent, type BaseEventMetadata, type CapacityExceededViolation, type Category, type CommonQueryWithEntityContext, type CopySeatingPlanOptions, type CopySeatingPlanRequest, type CopySeatingPlanResponse, type CreateSeatingPlanApplicationErrors, type CreateSeatingPlanRequest, type CreateSeatingPlanResponse, type CursorPaging, type Cursors, type DeleteSeatingPlanRequest, type DeleteSeatingPlanResponse, type DiscardSeatingPlanVersionsRequest, type DiscardSeatingPlanVersionsResponse, type DomainEvent, type DomainEventBodyOneOf, type Element, type ElementGroup, type ElementGroupUiProperties, type ElementUiProperties, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, Fieldset, type FieldsetWithLiterals, type FindSeatingPlanOptions, type FindSeatingPlanRequest, type FindSeatingPlanResponse, type GetSeatingPlanOptions, type GetSeatingPlanRequest, type GetSeatingPlanResponse, type GetSeatingPlanThumbnailRequest, type GetSeatingPlanThumbnailResponse, Icon, type IconWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Image, type MessageEnvelope, type MultiRowProperties, Numbering, type NumberingWithLiterals, type Paging, type PagingMetadataV2, type Place, PlaceTypeEnumType, type PlaceTypeEnumTypeWithLiterals, type PlansQueryBuilder, type PlansQueryResult, Position, type PositionWithLiterals, type QuerySeatingPlanOptions, type QuerySeatingPlanRequest, type QuerySeatingPlanResponse, type QuerySeatingPlanVersionsRequest, type QuerySeatingPlanVersionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, type ReservationOptions, type RestoreInfo, type RestoreSeatingPlanRequest, type RestoreSeatingPlanResponse, type RowElement, type RowElementUiProperties, type SaveSeatingPlanVersionRequest, type SaveSeatingPlanVersionResponse, type SeatingPlan, type SeatingPlanCreatedEnvelope, type SeatingPlanDeletedEnvelope, type SeatingPlanMask, type SeatingPlanQuery, type SeatingPlanQuerySpec, type SeatingPlanThumbnail, type SeatingPlanUiProperties, type SeatingPlanUpdatedEnvelope, type Section, type Sequencing, ShapeTypeEnumType, type ShapeTypeEnumTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Type, type TypeWithLiterals, type UpdateSeatingPlanApplicationErrors, type UpdateSeatingPlanOptions, type UpdateSeatingPlanRequest, type UpdateSeatingPlanResponse, type UpdateSeatingPlanThumbnailRequest, type UpdateSeatingPlanThumbnailResponse, type VerticalSequencing, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, copySeatingPlan, createSeatingPlan, deleteSeatingPlan, findSeatingPlan, getSeatingPlan, getSeatingPlanThumbnail, onSeatingPlanCreated, onSeatingPlanDeleted, onSeatingPlanUpdated, querySeatingPlan, typedQuerySeatingPlan, updateSeatingPlan, updateSeatingPlanThumbnail };
|
|
1444
|
+
export { type AccountInfo, type ActionEvent, type BaseEventMetadata, type CapacityExceededViolation, type Category, type CommonQueryWithEntityContext, type CopySeatingPlanOptions, type CopySeatingPlanRequest, type CopySeatingPlanResponse, type CreateSeatingPlanApplicationErrors, type CreateSeatingPlanRequest, type CreateSeatingPlanResponse, type CursorPaging, type Cursors, type DeleteSeatingPlanRequest, type DeleteSeatingPlanResponse, type DiscardSeatingPlanVersionsRequest, type DiscardSeatingPlanVersionsResponse, type DomainEvent, type DomainEventBodyOneOf, type Element, type ElementGroup, type ElementGroupUiProperties, type ElementUiProperties, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, Fieldset, type FieldsetWithLiterals, type FindSeatingPlanOptions, type FindSeatingPlanRequest, type FindSeatingPlanResponse, type GetSeatingPlanOptions, type GetSeatingPlanRequest, type GetSeatingPlanResponse, type GetSeatingPlanThumbnailRequest, type GetSeatingPlanThumbnailResponse, Icon, type IconWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Image, type MessageEnvelope, type MultiRowProperties, Numbering, type NumberingWithLiterals, type Paging, type PagingMetadataV2, type Place, PlaceTypeEnumType, type PlaceTypeEnumTypeWithLiterals, type PlansQueryBuilder, type PlansQueryResult, Position, type PositionWithLiterals, type QuerySeatingPlanOptions, type QuerySeatingPlanRequest, type QuerySeatingPlanResponse, type QuerySeatingPlanVersionsRequest, type QuerySeatingPlanVersionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, type ReservationOptions, type RestoreInfo, type RestoreSeatingPlanRequest, type RestoreSeatingPlanResponse, type RowElement, type RowElementUiProperties, type SaveSeatingPlanVersionRequest, type SaveSeatingPlanVersionResponse, type SeatingPlan, type SeatingPlanCreatedEnvelope, type SeatingPlanDeletedEnvelope, type SeatingPlanMask, type SeatingPlanQuery, type SeatingPlanQuerySpec, type SeatingPlanThumbnail, type SeatingPlanUiProperties, type SeatingPlanUpdatedEnvelope, type Section, type Sequencing, ShapeTypeEnumType, type ShapeTypeEnumTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Type, type TypeWithLiterals, type UpdateSeatingPlanApplicationErrors, type UpdateSeatingPlanOptions, type UpdateSeatingPlanRequest, type UpdateSeatingPlanResponse, type UpdateSeatingPlanThumbnailRequest, type UpdateSeatingPlanThumbnailResponse, type VerticalSequencing, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, copySeatingPlan, createSeatingPlan, deleteSeatingPlan, findSeatingPlan, getSeatingPlan, getSeatingPlanThumbnail, onSeatingPlanCreated, onSeatingPlanDeleted, onSeatingPlanUpdated, querySeatingPlan, typedQuerySeatingPlan, updateSeatingPlan, updateSeatingPlanThumbnail };
|