import { CreatePageRequest as CreatePageRequest$1, CreatePageResponse as CreatePageResponse$1, GetPageRequest as GetPageRequest$1, GetPageResponse as GetPageResponse$1, UpdatePageRequest as UpdatePageRequest$1, UpdatePageResponse as UpdatePageResponse$1, SetPageRouteRequest as SetPageRouteRequest$1, SetPageRouteResponse as SetPageRouteResponse$1, RemovePageRouteRequest as RemovePageRouteRequest$1, RemovePageRouteResponse as RemovePageRouteResponse$1, PublishPageRequest as PublishPageRequest$1, PublishPageResponse as PublishPageResponse$1, UnpublishPageRequest as UnpublishPageRequest$1, UnpublishPageResponse as UnpublishPageResponse$1, ArchivePageRequest as ArchivePageRequest$1, ArchivePageResponse as ArchivePageResponse$1, UnarchivePageRequest as UnarchivePageRequest$1, UnarchivePageResponse as UnarchivePageResponse$1, SchedulePageRequest as SchedulePageRequest$1, SchedulePageResponse as SchedulePageResponse$1, DeletePageRequest as DeletePageRequest$1, DeletePageResponse as DeletePageResponse$1, QueryPagesRequest as QueryPagesRequest$1, QueryPagesResponse as QueryPagesResponse$1, BulkUpdatePageTagsRequest as BulkUpdatePageTagsRequest$1, BulkUpdatePageTagsResponse as BulkUpdatePageTagsResponse$1, BulkUpdatePageTagsByFilterRequest as BulkUpdatePageTagsByFilterRequest$1, BulkUpdatePageTagsByFilterResponse as BulkUpdatePageTagsByFilterResponse$1 } from './index.typings.mjs'; import '@wix/sdk-types'; /** QuickPage Page */ interface Page extends PageOriginOneOf { /** * The ID of a page from which the page was created. * @format GUID * @immutable */ originPageId?: string; /** * The ID of a template from which the page was created. * @format GUID * @immutable */ templateId?: string; /** * Page ID. * @format GUID * @readonly */ id?: string | null; /** * Revision number. Incremented on every update. * @readonly */ revision?: string | null; /** * Date and time the Page was created. * @readonly */ createdDate?: Date | null; /** * Date and time the Page was last updated. * @readonly */ updatedDate?: Date | null; /** * Date and time the Page was published or scheduled to be published depending on the status. * @readonly */ publishedDate?: Date | null; /** * Date and time the Page was unpublished or scheduled to be unpublished depending on the status. * @readonly */ unpublishedDate?: Date | null; /** * Page display name. * @minLength 5 * @maxLength 100 */ name?: string | null; /** * The status of the Page. * @readonly */ status?: StatusWithLiterals; /** An image specifically designated for display when the page URL is shared on social media platforms. */ socialPreviewImage?: Image; /** The small icon displayed in the browser tab, bookmarks, and potentially other areas. */ favicon?: Image; /** * The title of the page, visible in the browser tab and used as the primary clickable link in search engine results. * @maxLength 100 */ title?: string | null; /** * A brief summary of the page's content, often displayed below the title in search engine results. * @maxLength 300 */ description?: string | null; /** A flag to indicate whether search engines should be allowed to index this page and include it in their search results. */ searchEngineIndexingEnabled?: boolean; /** * The route information for the page. * @readonly */ pageRoute?: PageRoute; /** Data Extensions */ extendedFields?: ExtendedFields; /** Tags */ tags?: Tags; } /** @oneof */ interface PageOriginOneOf { /** * The ID of a page from which the page was created. * @format GUID * @immutable */ originPageId?: string; /** * The ID of a template from which the page was created. * @format GUID * @immutable */ templateId?: string; } declare enum Status { /** Unknown status. */ UNKNOWN_STATUS = "UNKNOWN_STATUS", /** The Page is draft. */ DRAFT = "DRAFT", /** The Page is published. */ PUBLISHED = "PUBLISHED", /** The Page is scheduled to be published. */ SCHEDULED = "SCHEDULED", /** The Page is archived. */ ARCHIVED = "ARCHIVED" } /** @enumType */ type StatusWithLiterals = Status | 'UNKNOWN_STATUS' | 'DRAFT' | 'PUBLISHED' | 'SCHEDULED' | 'ARCHIVED'; interface Image { /** * WixMedia image ID. * @maxLength 100 */ id?: string; /** * Image URL. * @format WEB_URL * @readonly */ url?: string; /** * Original image height. * @readonly */ height?: number; /** * Original image width. * @readonly */ width?: number; /** * Image alt text. * @maxLength 1000 */ altText?: string | null; } interface PageRoute { /** * The route ID from the Routes API * @internal * @format GUID * @readonly */ routeId?: string | null; /** * Page slug used in the URL. * @minLength 3 * @maxLength 100 */ slug?: string; /** The URL type for the page, determining how it's accessed (subdomain or path). */ urlType?: TypeWithLiterals; } declare enum Type { /** The page is accessed via a path. */ PATH = "PATH" } /** @enumType */ type TypeWithLiterals = Type | 'PATH'; interface ExtendedFields { /** * Extended field data. Each key corresponds to the namespace of the app that created the extended fields. * The value of each key is structured according to the schema defined when the extended fields were configured. * * You can only access fields for which you have the appropriate permissions. * * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields). */ namespaces?: Record>; } /** * Common object for tags. * Should be use as in this example: * message Foo { * string id = 1; * ... * Tags tags = 5 * } * * example of taggable entity * { * id: "123" * tags: { * tags: { * tag_ids:["11","22"] * }, * private_tags: { * tag_ids: ["33", "44"] * } * } * } */ interface Tags { /** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */ privateTags?: TagList; /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */ tags?: TagList; } interface TagList { /** * List of tag IDs * @maxSize 100 * @maxLength 5 */ tagIds?: string[]; } /** Page Published. */ interface PagePublished { /** Page. */ page?: Page; } /** Page Unpublished. */ interface PageUnpublished { /** Page. */ page?: Page; } /** Page Archived. */ interface PageArchived { /** Page. */ page?: Page; } /** Page Archived. */ interface PageUnarchived { /** Page. */ page?: Page; } /** Page Scheduled. */ interface PageScheduled { /** Page. */ page?: Page; } interface CreatePageRequest { /** Page to be created. */ page: Page; } interface CreatePageResponse { /** The created Page. */ page?: Page; } interface GetPageRequest { /** * ID of the Page to retrieve. * @format GUID */ pageId: string; } interface GetPageResponse { /** The requested Page. */ page?: Page; } interface UpdatePageRequest { /** Page to be updated, may be partial. */ page: Page; /** * Set of fields to update. * * Fields that aren't included in `fieldMask.paths` are ignored. * @internal */ fieldMask?: string[]; } interface UpdatePageResponse { /** Updated Page. */ page?: Page; } interface SetPageRouteRequest { /** * ID of the Page. * @format GUID */ pageId: string; /** Route to add. */ pageRoute: PageRoute; } interface SetPageRouteResponse { } interface RemovePageRouteRequest { /** * ID of the Page. * @format GUID */ pageId: string; } interface RemovePageRouteResponse { } interface PublishPageRequest { /** * ID of the Page to publish. * @format GUID */ pageId: string; /** Date and time when the page should be unpublished. */ unpublishedDate?: Date | null; } interface PublishPageResponse { /** Published Page. */ page?: Page; } interface UnpublishPageRequest { /** * ID of the Page to unpublish. * @format GUID */ pageId: string; } interface UnpublishPageResponse { /** Unpublished Page. */ page?: Page; } interface ArchivePageRequest { /** * ID of the Page to archive. * @format GUID */ pageId: string; } interface ArchivePageResponse { /** Archived Page. */ page?: Page; } interface UnarchivePageRequest { /** * ID of the Page to archive. * @format GUID */ pageId: string; } interface UnarchivePageResponse { /** Archived Page. */ page?: Page; } interface SchedulePageRequest { /** * ID of the Page to schedule. * @format GUID */ pageId: string; /** Date and time when the page should be published. */ publishedDate?: Date | null; /** Date and time when the page should be unpublished. */ unpublishedDate?: Date | null; } interface SchedulePageResponse { /** Scheduled Page. */ page?: Page; } interface DeletePageRequest { /** * Id of the Page to delete. * @format GUID */ pageId: string; } interface DeletePageResponse { } interface QueryPagesRequest { /** WQL expression. */ query?: CursorQuery; } interface CursorQuery extends CursorQueryPagingMethodOneOf { /** 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 in the following format: * `"filter" : { * "fieldName1": "value1", * "fieldName2":{"$operator":"value2"} * }` * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains` */ filter?: Record | null; /** * Sort object in the following format: * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]` * @maxSize 5 */ sort?: Sorting[]; } /** @oneof */ interface CursorQueryPagingMethodOneOf { /** 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 QueryPagesResponse { /** List of Pages. */ pages?: Page[]; /** Paging metadata */ pagingMetadata?: CursorPagingMetadata; } interface CursorPagingMetadata { /** Number of items returned in the response. */ count?: number | null; /** Cursor strings that point to the next page, previous page, or both. */ cursors?: Cursors; /** * Whether there are more pages to retrieve following the current page. * * + `true`: Another page of results can be retrieved. * + `false`: This is the last page. */ hasNext?: boolean | null; } 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 BulkUpdatePageTagsRequest { /** * List of NileProtoTagsEntities that their tags will update. * @minSize 1 * @maxSize 100 * @format GUID */ pageIds: string[]; /** List of Tags to assign */ assignTags?: Tags; /** List of Tags to unAssign */ unassignTags?: Tags; } interface BulkUpdatePageTagsResponse { /** * Results * @minSize 1 * @maxSize 100 */ results?: BulkUpdatePageTagsResult[]; /** Metadata regarding the bulk update operation */ bulkActionMetadata?: BulkActionMetadata; } interface ItemMetadata { /** * Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). * @format GUID */ 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 BulkUpdatePageTagsResult { /** Metadata regarding the specific single update operation */ itemMetadata?: ItemMetadata; } 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 BulkUpdatePageTagsByFilterRequest { /** Filter */ filter: Record | null; /** List of Tags to assign */ assignTags?: Tags; /** List of Tags to unAssign */ unassignTags?: Tags; } interface BulkUpdatePageTagsByFilterResponse { /** * Job ID * @format GUID */ jobId?: 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 * @internal */ triggeredByUndelete?: boolean | null; /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */ restoreInfo?: RestoreInfo; /** * Optional domain-specific metadata defined by the API owner, encoded as JSON. * @internal */ additionalMetadataAsJson?: string | null; } 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; /** * This field is currently part of the of the EntityUpdatedEvent msg, but scala/node libraries which implements the domain events standard * wont populate it / have any reference to it in the API. * The main reason for it is that fetching the old entity from the DB will have a performance hit on an update operation so unless truly needed, * the developer should send only the new (current) entity. * An additional reason is not wanting to send this additional entity over the wire (kafka) since in some cases it can be really big * Developers that must reflect the old entity will have to implement their own domain event sender mechanism which will follow the DomainEvent proto message. * @internal * @deprecated */ previousEntityAsJson?: string | null; /** * Map of fully qualified field paths to their previous values for fields that changed. * For more details please see [AIP](https://dev.wix.com/docs/rnd-general/articles/p13n-guidelines-aips/guidance-aips/design-patterns/7016-events#modified-fields-format) * @internal */ modifiedFields?: Record; /** * Optional domain-specific metadata defined by the API owner, encoded as JSON. * @internal */ additionalMetadataAsJson?: string | null; } interface EntityDeletedEvent { /** * Indicates if the entity is sent to trash-bin. only available when trash-bin is enabled * @internal */ movedToTrash?: boolean | null; /** Entity that was deleted. */ deletedEntityAsJson?: string | null; /** * Optional domain-specific metadata defined by the API owner, encoded as JSON. * @internal */ additionalMetadataAsJson?: string | null; } interface ActionEvent { bodyAsJson?: string; } 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; } /** @docsIgnore */ type BulkUpdatePageTagsApplicationErrors = { code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS'; description?: string; data?: Record; }; /** @docsIgnore */ type BulkUpdatePageTagsByFilterApplicationErrors = { code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS'; description?: string; data?: Record; }; type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function createPage(): __PublicMethodMetaInfo<'POST', {}, CreatePageRequest$1, CreatePageRequest, CreatePageResponse$1, CreatePageResponse>; declare function getPage(): __PublicMethodMetaInfo<'GET', { pageId: string; }, GetPageRequest$1, GetPageRequest, GetPageResponse$1, GetPageResponse>; declare function updatePage(): __PublicMethodMetaInfo<'PATCH', { pageId: string; }, UpdatePageRequest$1, UpdatePageRequest, UpdatePageResponse$1, UpdatePageResponse>; declare function setPageRoute(): __PublicMethodMetaInfo<'PATCH', { pageId: string; }, SetPageRouteRequest$1, SetPageRouteRequest, SetPageRouteResponse$1, SetPageRouteResponse>; declare function removePageRoute(): __PublicMethodMetaInfo<'DELETE', { pageId: string; }, RemovePageRouteRequest$1, RemovePageRouteRequest, RemovePageRouteResponse$1, RemovePageRouteResponse>; declare function publishPage(): __PublicMethodMetaInfo<'POST', { pageId: string; }, PublishPageRequest$1, PublishPageRequest, PublishPageResponse$1, PublishPageResponse>; declare function unpublishPage(): __PublicMethodMetaInfo<'POST', { pageId: string; }, UnpublishPageRequest$1, UnpublishPageRequest, UnpublishPageResponse$1, UnpublishPageResponse>; declare function archivePage(): __PublicMethodMetaInfo<'POST', { pageId: string; }, ArchivePageRequest$1, ArchivePageRequest, ArchivePageResponse$1, ArchivePageResponse>; declare function unarchivePage(): __PublicMethodMetaInfo<'POST', { pageId: string; }, UnarchivePageRequest$1, UnarchivePageRequest, UnarchivePageResponse$1, UnarchivePageResponse>; declare function schedulePage(): __PublicMethodMetaInfo<'POST', { pageId: string; }, SchedulePageRequest$1, SchedulePageRequest, SchedulePageResponse$1, SchedulePageResponse>; declare function deletePage(): __PublicMethodMetaInfo<'DELETE', { pageId: string; }, DeletePageRequest$1, DeletePageRequest, DeletePageResponse$1, DeletePageResponse>; declare function queryPages(): __PublicMethodMetaInfo<'GET', {}, QueryPagesRequest$1, QueryPagesRequest, QueryPagesResponse$1, QueryPagesResponse>; declare function bulkUpdatePageTags(): __PublicMethodMetaInfo<'POST', {}, BulkUpdatePageTagsRequest$1, BulkUpdatePageTagsRequest, BulkUpdatePageTagsResponse$1, BulkUpdatePageTagsResponse>; declare function bulkUpdatePageTagsByFilter(): __PublicMethodMetaInfo<'POST', {}, BulkUpdatePageTagsByFilterRequest$1, BulkUpdatePageTagsByFilterRequest, BulkUpdatePageTagsByFilterResponse$1, BulkUpdatePageTagsByFilterResponse>; export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type ArchivePageRequest as ArchivePageRequestOriginal, type ArchivePageResponse as ArchivePageResponseOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkUpdatePageTagsApplicationErrors as BulkUpdatePageTagsApplicationErrorsOriginal, type BulkUpdatePageTagsByFilterApplicationErrors as BulkUpdatePageTagsByFilterApplicationErrorsOriginal, type BulkUpdatePageTagsByFilterRequest as BulkUpdatePageTagsByFilterRequestOriginal, type BulkUpdatePageTagsByFilterResponse as BulkUpdatePageTagsByFilterResponseOriginal, type BulkUpdatePageTagsRequest as BulkUpdatePageTagsRequestOriginal, type BulkUpdatePageTagsResponse as BulkUpdatePageTagsResponseOriginal, type BulkUpdatePageTagsResult as BulkUpdatePageTagsResultOriginal, type CreatePageRequest as CreatePageRequestOriginal, type CreatePageResponse as CreatePageResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeletePageRequest as DeletePageRequestOriginal, type DeletePageResponse as DeletePageResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GetPageRequest as GetPageRequestOriginal, type GetPageResponse as GetPageResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type ItemMetadata as ItemMetadataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type PageArchived as PageArchivedOriginal, type PageOriginOneOf as PageOriginOneOfOriginal, type Page as PageOriginal, type PagePublished as PagePublishedOriginal, type PageRoute as PageRouteOriginal, type PageScheduled as PageScheduledOriginal, type PageUnarchived as PageUnarchivedOriginal, type PageUnpublished as PageUnpublishedOriginal, type PublishPageRequest as PublishPageRequestOriginal, type PublishPageResponse as PublishPageResponseOriginal, type QueryPagesRequest as QueryPagesRequestOriginal, type QueryPagesResponse as QueryPagesResponseOriginal, type RemovePageRouteRequest as RemovePageRouteRequestOriginal, type RemovePageRouteResponse as RemovePageRouteResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type SchedulePageRequest as SchedulePageRequestOriginal, type SchedulePageResponse as SchedulePageResponseOriginal, type SetPageRouteRequest as SetPageRouteRequestOriginal, type SetPageRouteResponse as SetPageRouteResponseOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type TagList as TagListOriginal, type Tags as TagsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnarchivePageRequest as UnarchivePageRequestOriginal, type UnarchivePageResponse as UnarchivePageResponseOriginal, type UnpublishPageRequest as UnpublishPageRequestOriginal, type UnpublishPageResponse as UnpublishPageResponseOriginal, type UpdatePageRequest as UpdatePageRequestOriginal, type UpdatePageResponse as UpdatePageResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, archivePage, bulkUpdatePageTags, bulkUpdatePageTagsByFilter, createPage, deletePage, getPage, publishPage, queryPages, removePageRoute, schedulePage, setPageRoute, unarchivePage, unpublishPage, updatePage };