import { CreateProjectItemRequest as CreateProjectItemRequest$1, CreateProjectItemResponse as CreateProjectItemResponse$1, BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequest$1, BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponse$1, GetProjectItemRequest as GetProjectItemRequest$1, GetProjectItemResponse as GetProjectItemResponse$1, ListProjectItemsRequest as ListProjectItemsRequest$1, ListProjectItemsResponse as ListProjectItemsResponse$1, UpdateProjectItemRequest as UpdateProjectItemRequest$1, UpdateProjectItemResponse as UpdateProjectItemResponse$1, BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequest$1, BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponse$1, DeleteProjectItemRequest as DeleteProjectItemRequest$1, DeleteProjectItemResponse as DeleteProjectItemResponse$1, BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequest$1, BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponse$1, DuplicateProjectItemsRequest as DuplicateProjectItemsRequest$1, DuplicateProjectItemsResponse as DuplicateProjectItemsResponse$1, GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequest$1, GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponse$1 } from './index.typings.js'; import '@wix/sdk-types'; interface Item extends ItemMetadataOneOf { /** Information about the Wix Media image. */ image?: Image; /** Information about the Wix Media video. */ video?: Video; /** * Project ID. * @format GUID */ projectId?: string | null; /** * Project item ID. * @readonly * @format GUID */ id?: string | null; /** * Index that determines which position a project is displayed in the project.
* * Default: [Epoch](https://www.epoch101.com/) timestamp.
*/ sortOrder?: number | null; /** Project item title. */ title?: string | null; /** Project item description. */ description?: string | null; /** * Project item data type. * @readonly */ type?: TypeWithLiterals; /** * Date and time the project item was created. * @readonly */ createdDate?: Date | null; /** * Date and time the project item was last updated. * @readonly */ updatedDate?: Date | null; /** Project item link. */ link?: Link; } /** @oneof */ interface ItemMetadataOneOf { /** Information about the Wix Media image. */ image?: Image; /** Information about the Wix Media video. */ video?: Video; } declare enum Type { /** Undefined item type. */ UNDEFINED = "UNDEFINED", /** Image item type. */ IMAGE = "IMAGE", /** Video item type. */ VIDEO = "VIDEO" } /** @enumType */ type TypeWithLiterals = Type | 'UNDEFINED' | 'IMAGE' | 'VIDEO'; interface Image { /** Information about the Wix Media image. */ imageInfo?: CommonImage; /** Focal point of the image. */ focalPoint?: Point; } declare enum ImageType { UNDEFINED = "UNDEFINED", WIX_MEDIA = "WIX_MEDIA", EXTERNAL = "EXTERNAL" } /** @enumType */ type ImageTypeWithLiterals = ImageType | 'UNDEFINED' | 'WIX_MEDIA' | 'EXTERNAL'; interface CommonImage { /** * WixMedia image ID. Required. * @maxLength 512 */ id?: string; /** * Image URL. * @readonly * @maxLength 8000 */ url?: string; /** Original image height. Required. */ height?: number; /** Original image width. Required. */ width?: number; /** * Image alt text. * @maxLength 5000 */ altText?: string | null; /** * Image filename. * @maxLength 512 */ filename?: string | null; } interface Point { /** X-coordinate of the focal point. */ x?: number; /** Y-coordinate of the focal point. */ y?: number; } interface UnsharpMasking { /** * Unsharp masking amount. Controls the sharpening strength.
* * Min: `0`
* Max: `5` * @max 5 */ amount?: number | null; /** Unsharp masking radius in pixels. Controls the sharpening width. */ radius?: number | null; /** * Unsharp masking threshold. Controls how different neighboring pixels must be for shapening to apply.
* * Min: `0`
* Max: `1` * @max 1 */ threshold?: number | null; } interface Video { /** Information about the Wix Media video. */ videoInfo?: VideoV2; /** Manually defined Video duration in milliseconds. */ durationInMillis?: number | null; } interface VideoV2 { /** * WixMedia ID. Required. * @maxLength 512 */ id?: string; /** * Video URL. * @maxLength 8000 */ url?: string; /** * Available resolutions for the video, starting with the optimal resolution. * @maxSize 100 */ resolutions?: VideoResolution[]; /** * Video filename. * @maxLength 512 */ filename?: string | null; /** * Video posters. * @maxSize 100 */ posters?: CommonImage[]; } interface VideoResolution { /** * Video URL. Required. * @maxLength 8000 */ url?: string; /** Video height. Required. */ height?: number; /** Video width. Required. */ width?: number; /** * Video format for example, mp4, hls. Required. * @maxLength 50 */ format?: string; /** * Video quality for example 480p, 720p. * @maxLength 50 */ quality?: string | null; /** * Video filename. * @maxLength 512 */ filename?: string | null; } interface Tags { /** * List of tags assigned to the media item. * @maxSize 50 * @maxLength 100 */ values?: string[]; } interface Link { /** Display text of the link. */ text?: string | null; /** * Target URL of the link. * @format WEB_URL */ url?: string | null; /** * Whether the link opens in a new tab or window. One of: * * `'_blank'`: The link opens in a new tab or window. * * `'_self'`: The link opens in the same tab or window. * @maxLength 50 */ target?: string | null; } interface InvalidateCache extends InvalidateCacheGetByOneOf { /** * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ metaSiteId?: string; /** * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ siteId?: string; /** Invalidate by App */ app?: App; /** Invalidate by page id */ page?: Page; /** Invalidate by URI path */ uri?: URI; /** Invalidate by file (for media files such as PDFs) */ file?: File; /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */ customTag?: CustomTag; /** Invalidate by multiple page ids */ pages?: Pages; /** Invalidate by multiple URI paths */ uris?: URIs; /** * tell us why you're invalidating the cache. You don't need to add your app name * @maxLength 256 */ reason?: string | null; /** Is local DS */ localDc?: boolean; hardPurge?: boolean; /** * Optional caller-provided ID for tracking this invalidation through the system. * When set, the corresponding CDN purge completion event will include this ID, * allowing you to confirm when the invalidation has fully propagated. * Example: generate a UUID, pass it here, and later match it in the CDN purge completion event. * @maxLength 256 */ correlationId?: string | null; } /** @oneof */ interface InvalidateCacheGetByOneOf { /** * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ metaSiteId?: string; /** * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ siteId?: string; /** Invalidate by App */ app?: App; /** Invalidate by page id */ page?: Page; /** Invalidate by URI path */ uri?: URI; /** Invalidate by file (for media files such as PDFs) */ file?: File; /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */ customTag?: CustomTag; /** Invalidate by multiple page ids */ pages?: Pages; /** Invalidate by multiple URI paths */ uris?: URIs; } interface App { /** * The AppDefId * @minLength 1 */ appDefId?: string; /** * The instance Id * @format GUID */ instanceId?: string; } interface Page { /** * the msid the page is on * @format GUID */ metaSiteId?: string; /** * Invalidate by Page ID * @minLength 1 */ pageId?: string; } interface URI { /** * the msid the URI is on * @format GUID */ metaSiteId?: string; /** * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes * @minLength 1 */ uriPath?: string; } interface File { /** * the msid the file is related to * @format GUID */ metaSiteId?: string; /** * Invalidate by filename (for media files such as PDFs) * @minLength 1 * @maxLength 256 */ fileName?: string; } interface CustomTag { /** * the msid the tag is related to * @format GUID */ metaSiteId?: string; /** * Tag to invalidate by * @minLength 1 * @maxLength 256 */ tag?: string; } interface Pages { /** * the msid the pages are on * @format GUID */ metaSiteId?: string; /** * Invalidate by multiple Page IDs in a single message * @maxSize 100 * @minLength 1 */ pageIds?: string[]; } interface URIs { /** * the msid the URIs are on * @format GUID */ metaSiteId?: string; /** * URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes * @maxSize 100 * @minLength 1 */ uriPaths?: string[]; } interface CreateProjectItemRequest { /** Project item to create. */ item: Item; } interface CreateProjectItemResponse { /** Newly created project item. */ item?: Item; } interface BulkCreateProjectItemsRequest { /** * Project items to create. * @minSize 1 * @maxSize 1000 */ items: Item[]; /** * Whether to return the created project items. * * Set to `true` to return the project items in the response. * * Default: `false` */ returnFullEntity?: boolean | null; } interface BulkCreateProjectItemsResponse { /** List of individual Bulk Create Project Items results. */ results?: BulkCreateProjectItemResult[]; /** Total number of successes and failures for Bulk Create Project Items. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkCreateProjectItemResult { /** * Information about the created project item. * Including its ID, index in the bulk request and whether it was successfully created. */ itemMetadata?: ItemMetadata; /** Created project item. Only returned if `returnEntity` is set to `true` in the request. */ item?: Item; } interface ItemMetadata { /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */ id?: string | null; /** Index of the item within the request array. Allows for correlation between request and response items. */ originalIndex?: number; /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */ success?: boolean; /** Details about the error in case of failure. */ error?: ApplicationError; } interface ApplicationError { /** Error code. */ code?: string; /** Description of the error. */ description?: string; /** Data related to the error. */ data?: Record | null; } interface BulkActionMetadata { /** Number of items that were successfully processed. */ totalSuccesses?: number; /** Number of items that couldn't be processed. */ totalFailures?: number; /** Number of failures without details because detailed failure threshold was exceeded. */ undetailedFailures?: number; } interface GetProjectItemRequest { /** * Project item ID. * @format GUID */ itemId: string; } interface GetProjectItemResponse { /** Project item. */ item?: Item; } interface ListProjectItemsRequest { /** * Project ID. * @format GUID */ projectId: string; /** Maximum number of items to return in the results. */ paging?: Paging; } interface Paging { /** Number of items to load. */ limit?: number | null; /** Number of items to skip in the current sort order. */ offset?: number | null; } interface ListProjectItemsResponse { /** Project items. */ items?: Item[]; /** * @deprecated * @targetRemovalDate 2025-05-25 */ pagingMetadataV2?: PagingMetadataV2; /** Paging metadata. */ metadata?: PagingMetadataV2; } interface PagingMetadataV2 { /** Number of items returned in the response. */ count?: number | null; /** Offset that was requested. */ offset?: number | null; /** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */ total?: number | null; /** Flag that indicates the server failed to calculate the `total` field. */ tooManyToCount?: boolean | null; /** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */ cursors?: Cursors; } interface Cursors { /** * Cursor string pointing to the next page in the list of results. * @maxLength 16000 */ next?: string | null; /** * Cursor pointing to the previous page in the list of results. * @maxLength 16000 */ prev?: string | null; } interface QueryProjectItemsRequest { /** WQL expression */ query?: QueryV2; } interface QueryV2 extends QueryV2PagingMethodOneOf { /** Paging options to limit and offset the number of items. */ paging?: Paging; /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; /** * Filter object. * * Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters). */ filter?: Record | null; /** * Sort object. * * Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting). */ sort?: Sorting[]; /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */ fields?: string[]; /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */ fieldsets?: string[]; } /** @oneof */ interface QueryV2PagingMethodOneOf { /** Paging options to limit and offset the number of items. */ paging?: Paging; /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; } interface Sorting { /** * Name of the field to sort by. * @maxLength 512 */ fieldName?: string; /** Sort order. */ order?: SortOrderWithLiterals; } declare enum SortOrder { ASC = "ASC", DESC = "DESC" } /** @enumType */ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC'; interface CursorPaging { /** * Maximum number of items to return in the results. * @max 100 */ limit?: number | null; /** * Pointer to the next or previous page in the list of results. * * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response. * Not relevant for the first request. * @maxLength 16000 */ cursor?: string | null; } interface QueryProjectItemsResponse { /** Project items. */ items?: Item[]; /** Paging metadata. */ metadata?: PagingMetadataV2; } interface UpdateProjectItemRequest { /** The project item to update. */ item: Item; } interface UpdateProjectItemResponse { /** The updated project item. */ item?: Item; } interface BulkUpdateProjectItemsRequest { /** * Project items to update. * @maxSize 100 */ items?: MaskedItem[]; /** * Whether to return the updated project items. * * Set to `true` to return the project items in the response. * * Default: `false` */ returnFullEntity?: boolean | null; } interface MaskedItem { /** Item to be updated. */ item?: Item; } interface BulkUpdateProjectItemsResponse { /** List of individual Bulk Update Project Items results. */ results?: BulkUpdateProjectItemResult[]; /** Total number of successes and failures for Bulk Update Project Items. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkUpdateProjectItemResult { /** * Information about the updated project item. * Including its ID, index in the bulk request and whether it was successfully updated. */ itemMetadata?: ItemMetadata; /** Updated project item. Only returned if `returnEntity` is set to `true` in the request. */ item?: Item; } interface DeleteProjectItemRequest { /** * ID of the project item to delete. * @format GUID */ itemId: string; } interface DeleteProjectItemResponse { /** * ID of the deleted project item. * @format GUID */ itemId?: string; } interface BulkDeleteProjectItemsRequest { /** * IDs of project items to delete. * @format GUID * @minSize 1 * @maxLength 100 */ itemIds: string[]; } interface BulkDeleteProjectItemsResponse { /** List of individual Bulk Delete Project Items results. */ results?: BulkDeleteProjectItemResult[]; /** Total number of successes and failures for Bulk Delete Project Items. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkDeleteProjectItemResult { /** * Information about the deleted project item. * Including its ID, index in the bulk request and whether it was successfully deleted. */ itemMetadata?: ItemMetadata; /** * ID of the deleted project item. * @format GUID */ itemId?: string; } interface CreateProjectGalleryRequest { /** * Id of Project to create * @format GUID */ projectId?: string; } interface CreateProjectGalleryResponse { /** * Id of created Project * @format GUID */ projectId?: string; /** * Id of created gallery * @format GUID */ galleryId?: string; } interface DomainEvent extends DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; /** Event ID. With this ID you can easily spot duplicated events and ignore them. */ id?: string; /** * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities. * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`. */ entityFqdn?: string; /** * Event action name, placed at the top level to make it easier for users to dispatch messages. * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`. */ slug?: string; /** ID of the entity associated with the event. */ entityId?: string; /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */ eventTime?: Date | null; /** * Whether the event was triggered as a result of a privacy regulation application * (for example, GDPR). */ triggeredByAnonymizeRequest?: boolean | null; /** If present, indicates the action that triggered the event. */ originatedFrom?: string | null; /** * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number. * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it. */ entityEventSequence?: string | null; } /** @oneof */ interface DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; } interface EntityCreatedEvent { entityAsJson?: string; /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */ restoreInfo?: RestoreInfo; } interface RestoreInfo { deletedDate?: Date | null; } interface EntityUpdatedEvent { /** * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff. * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects. * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it. */ currentEntityAsJson?: string; } interface EntityDeletedEvent { /** Entity that was deleted. */ deletedEntityAsJson?: string | null; } interface ActionEvent { bodyAsJson?: string; } interface Empty { } interface DeletedProjectRestored { /** * the id of the project that was restored * @format GUID */ projectId?: string; /** timestamp for when the project was originally deleted. */ deletionTimestamp?: Date | null; } interface DuplicateProjectItemsRequest { /** * ID of the project containing the items to duplicate. * @format GUID */ originProjectId: string; /** * ID of the project where the duplicated items will be added. * @format GUID */ targetProjectId: string; } interface DuplicateProjectItemsResponse { /** * Project ID where the duplicated items have been added. * @format GUID */ projectId?: string; /** Bulk action metadata. */ bulkActionMetadata?: BulkActionMetadata; } interface MessageEnvelope { /** * App instance ID. * @format GUID */ instanceId?: string | null; /** * Event type. * @maxLength 150 */ eventType?: string; /** The identification type and identity data. */ identity?: IdentificationData; /** Stringify payload. */ data?: string; /** Details related to the account */ accountInfo?: AccountInfo; } interface IdentificationData extends IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; /** @readonly */ identityType?: WebhookIdentityTypeWithLiterals; } /** @oneof */ interface IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; } declare enum WebhookIdentityType { UNKNOWN = "UNKNOWN", ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR", MEMBER = "MEMBER", WIX_USER = "WIX_USER", APP = "APP" } /** @enumType */ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP'; interface AccountInfo { /** * ID of the Wix account associated with the event. * @format GUID */ accountId?: string | null; /** * ID of the parent Wix account. Only included when accountId belongs to a child account. * @format GUID */ parentAccountId?: string | null; /** * ID of the Wix site associated with the event. Only included when the event is tied to a specific site. * @format GUID */ siteId?: string | null; } interface GenerateTokenForProjectItemsRequest { /** * Media ids of requested project items * @minSize 1 * @maxLength 100 */ mediaIds: string[]; } interface GenerateTokenForProjectItemsResponse { /** Generated media tokens for project items */ mediaTokens?: ProjectItemMediaToken[]; } interface ProjectItemMediaToken { /** Media id of project item */ mediaId?: string; /** Generated media token for project item */ mediaToken?: string; } type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function createProjectItem(): __PublicMethodMetaInfo<'POST', {}, CreateProjectItemRequest$1, CreateProjectItemRequest, CreateProjectItemResponse$1, CreateProjectItemResponse>; declare function bulkCreateProjectItems(): __PublicMethodMetaInfo<'POST', {}, BulkCreateProjectItemsRequest$1, BulkCreateProjectItemsRequest, BulkCreateProjectItemsResponse$1, BulkCreateProjectItemsResponse>; declare function getProjectItem(): __PublicMethodMetaInfo<'GET', { itemId: string; }, GetProjectItemRequest$1, GetProjectItemRequest, GetProjectItemResponse$1, GetProjectItemResponse>; declare function listProjectItems(): __PublicMethodMetaInfo<'GET', { projectId: string; }, ListProjectItemsRequest$1, ListProjectItemsRequest, ListProjectItemsResponse$1, ListProjectItemsResponse>; declare function updateProjectItem(): __PublicMethodMetaInfo<'PATCH', { itemId: string; }, UpdateProjectItemRequest$1, UpdateProjectItemRequest, UpdateProjectItemResponse$1, UpdateProjectItemResponse>; declare function bulkUpdateProjectItems(): __PublicMethodMetaInfo<'PATCH', {}, BulkUpdateProjectItemsRequest$1, BulkUpdateProjectItemsRequest, BulkUpdateProjectItemsResponse$1, BulkUpdateProjectItemsResponse>; declare function deleteProjectItem(): __PublicMethodMetaInfo<'DELETE', { itemId: string; }, DeleteProjectItemRequest$1, DeleteProjectItemRequest, DeleteProjectItemResponse$1, DeleteProjectItemResponse>; declare function bulkDeleteProjectItems(): __PublicMethodMetaInfo<'DELETE', {}, BulkDeleteProjectItemsRequest$1, BulkDeleteProjectItemsRequest, BulkDeleteProjectItemsResponse$1, BulkDeleteProjectItemsResponse>; declare function duplicateProjectItems(): __PublicMethodMetaInfo<'POST', {}, DuplicateProjectItemsRequest$1, DuplicateProjectItemsRequest, DuplicateProjectItemsResponse$1, DuplicateProjectItemsResponse>; declare function generateTokenForProjectItems(): __PublicMethodMetaInfo<'POST', {}, GenerateTokenForProjectItemsRequest$1, GenerateTokenForProjectItemsRequest, GenerateTokenForProjectItemsResponse$1, GenerateTokenForProjectItemsResponse>; export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type App as AppOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateProjectItemResult as BulkCreateProjectItemResultOriginal, type BulkCreateProjectItemsRequest as BulkCreateProjectItemsRequestOriginal, type BulkCreateProjectItemsResponse as BulkCreateProjectItemsResponseOriginal, type BulkDeleteProjectItemResult as BulkDeleteProjectItemResultOriginal, type BulkDeleteProjectItemsRequest as BulkDeleteProjectItemsRequestOriginal, type BulkDeleteProjectItemsResponse as BulkDeleteProjectItemsResponseOriginal, type BulkUpdateProjectItemResult as BulkUpdateProjectItemResultOriginal, type BulkUpdateProjectItemsRequest as BulkUpdateProjectItemsRequestOriginal, type BulkUpdateProjectItemsResponse as BulkUpdateProjectItemsResponseOriginal, type CommonImage as CommonImageOriginal, type CreateProjectGalleryRequest as CreateProjectGalleryRequestOriginal, type CreateProjectGalleryResponse as CreateProjectGalleryResponseOriginal, type CreateProjectItemRequest as CreateProjectItemRequestOriginal, type CreateProjectItemResponse as CreateProjectItemResponseOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DeleteProjectItemRequest as DeleteProjectItemRequestOriginal, type DeleteProjectItemResponse as DeleteProjectItemResponseOriginal, type DeletedProjectRestored as DeletedProjectRestoredOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DuplicateProjectItemsRequest as DuplicateProjectItemsRequestOriginal, type DuplicateProjectItemsResponse as DuplicateProjectItemsResponseOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type File as FileOriginal, type GenerateTokenForProjectItemsRequest as GenerateTokenForProjectItemsRequestOriginal, type GenerateTokenForProjectItemsResponse as GenerateTokenForProjectItemsResponseOriginal, type GetProjectItemRequest as GetProjectItemRequestOriginal, type GetProjectItemResponse as GetProjectItemResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, ImageType as ImageTypeOriginal, type ImageTypeWithLiterals as ImageTypeWithLiteralsOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemMetadataOneOf as ItemMetadataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type Link as LinkOriginal, type ListProjectItemsRequest as ListProjectItemsRequestOriginal, type ListProjectItemsResponse as ListProjectItemsResponseOriginal, type MaskedItem as MaskedItemOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Page as PageOriginal, type Pages as PagesOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type Point as PointOriginal, type ProjectItemMediaToken as ProjectItemMediaTokenOriginal, type QueryProjectItemsRequest as QueryProjectItemsRequestOriginal, type QueryProjectItemsResponse as QueryProjectItemsResponseOriginal, type QueryV2 as QueryV2Original, type QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOfOriginal, type RestoreInfo as RestoreInfoOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Tags as TagsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type URIs as URIsOriginal, type UnsharpMasking as UnsharpMaskingOriginal, type UpdateProjectItemRequest as UpdateProjectItemRequestOriginal, type UpdateProjectItemResponse as UpdateProjectItemResponseOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateProjectItems, bulkDeleteProjectItems, bulkUpdateProjectItems, createProjectItem, deleteProjectItem, duplicateProjectItems, generateTokenForProjectItems, getProjectItem, listProjectItems, updateProjectItem };