import { CreateCategoryRequest as CreateCategoryRequest$1, CreateCategoryResponse as CreateCategoryResponse$1, UpdateCategoryRequest as UpdateCategoryRequest$1, UpdateCategoryResponse as UpdateCategoryResponse$1, GetCategoryRequest as GetCategoryRequest$1, GetCategoryResponse as GetCategoryResponse$1, GetCategoryBySlugRequest as GetCategoryBySlugRequest$1, GetCategoryBySlugResponse as GetCategoryBySlugResponse$1, ListCategoriesRequest as ListCategoriesRequest$1, ListCategoriesResponse as ListCategoriesResponse$1, QueryCategoriesRequest as QueryCategoriesRequest$1, QueryCategoriesResponse as QueryCategoriesResponse$1, DeleteCategoryRequest as DeleteCategoryRequest$1, DeleteCategoryResponse as DeleteCategoryResponse$1 } from './index.typings.js'; import '@wix/sdk-types'; interface Category { /** * Category ID. * @immutable * @maxLength 38 */ id?: string; /** * Category label. Displayed in the Category Menu. * @maxLength 35 */ label?: string; /** * Number of posts in the category. * @readonly */ postCount?: number; /** * The `url` of the page that lists every post with the specified category. * @readonly */ url?: PageUrl; /** * Category description. * @maxLength 500 */ description?: string | null; /** * Category title. * @maxLength 200 * @deprecated Category title. * @targetRemovalDate 2025-07-16 */ title?: string; /** * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu). * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence. * * Default: `-1` */ displayPosition?: number | null; /** * ID of the category's translations. All translations of a single category share the same `translationId`. * @format GUID */ translationId?: string | null; /** * Category language. * * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. * @immutable */ language?: string | null; /** * Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`. * @maxLength 100 */ slug?: string; /** SEO data. */ seoData?: SeoSchema; /** Category cover image. */ coverImage?: Image; /** * Date and time the Category was last updated. * @readonly */ updatedDate?: Date | null; } interface PageUrl { /** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */ base?: string; /** The relative path for the page within the site. For example, `/product-page/a-product`. */ path?: string; } /** * The SEO schema object contains data about different types of meta tags. It makes sure that the information about your page is presented properly to search engines. * The search engines use this information for ranking purposes, or to display snippets in the search results. * This data will override other sources of tags (for example patterns) and will be included in the section of the HTML document, while not being displayed on the page itself. */ interface SeoSchema { /** SEO tag information. */ tags?: Tag[]; /** SEO general settings. */ settings?: Settings; } interface Keyword { /** Keyword value. */ term?: string; /** Whether the keyword is the main focus keyword. */ isMain?: boolean; /** * The source that added the keyword terms to the SEO settings. * @maxLength 1000 */ origin?: string | null; } interface Tag { /** * SEO tag type. * * * Supported values: `title`, `meta`, `script`, `link`. */ type?: string; /** * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value. * For example: `{"name": "description", "content": "the description itself"}`. */ props?: Record | null; /** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */ meta?: Record | null; /** SEO tag inner content. For example, ` inner content `. */ children?: string; /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */ custom?: boolean; /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */ disabled?: boolean; } interface Settings { /** * Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled. * * * Default: `false` (automatical redirect is enabled). */ preventAutoRedirect?: boolean; /** * User-selected keyword terms for a specific page. * @maxSize 5 */ keywords?: Keyword[]; } interface Image { /** WixMedia image ID. */ id?: string; /** Image URL. */ url?: string; /** * Original image height. * @readonly */ height?: number; /** * Original image width. * @readonly */ width?: number; /** Image alt text. */ altText?: string | null; /** * Image filename. * @readonly */ filename?: string | null; } interface FocalPoint { /** X-coordinate of the focal point. */ x?: number; /** Y-coordinate of the focal point. */ y?: number; /** crop by height */ height?: number | null; /** crop by width */ width?: number | null; } interface CategoryTranslation { /** * Category ID. * @format GUID */ id?: string; /** * Label displayed in the categories menu on the site. * @maxLength 100 */ label?: string | null; /** * Language of the category. * @format LANGUAGE_TAG */ language?: string | null; /** URL of this category page. */ url?: PageUrl; } interface InitialCategoriesCopied { /** Number of categories copied. */ count?: number; } interface CreateCategoryRequest { /** Category info. */ category: Category; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } declare enum Field { UNKNOWN = "UNKNOWN", /** Includes category URL. */ URL = "URL", /** Includes SEO data. */ SEO = "SEO" } /** @enumType */ type FieldWithLiterals = Field | 'UNKNOWN' | 'URL' | 'SEO'; interface CreateCategoryResponse { /** Category info. */ category?: Category; } interface BulkCreateCategoriesRequest { /** * Categories to create. * @minSize 1 * @maxSize 50 */ categories?: Category[]; /** Whether to return the full created category entities in the response. */ returnFullEntity?: boolean; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } interface BulkCreateCategoriesResponse { /** Categories created by bulk action. */ results?: BulkCategoryResult[]; /** Bulk action metadata. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkCategoryResult { /** Bulk actions metadata for category. */ itemMetadata?: ItemMetadata; /** Optional created category. */ item?: Category; } 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 BulkUpdateCategoriesRequest { /** * Categories to update. * @minSize 1 * @maxSize 100 */ categories?: MaskedCategory[]; /** Whether to return the full created category entities in the response. */ returnFullEntity?: boolean; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } interface MaskedCategory { /** Category */ category?: Category; /** Field mask of fields to update. */ fieldMask?: string[]; } interface BulkUpdateCategoriesResponse { /** Categories updated by bulk action. */ results?: BulkCategoryResult[]; /** Bulk action metadata. */ bulkActionMetadata?: BulkActionMetadata; } interface UpdateCategoryRequest { /** Category info. */ category: Category; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } interface UpdateCategoryResponse { /** Category info. */ category?: Category; } interface GetCategoriesCountByLanguageRequest { } interface GetCategoriesCountByLanguageResponse { /** The language and it's count. */ categoriesLanguageCount?: CategoryLanguageCount[]; } interface CategoryLanguageCount { /** * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. * @format LANGUAGE_TAG */ languageCode?: string | null; /** The count of Categories for the language. */ categoryCount?: number | null; } interface GetCategoryRequest { /** * Category ID. * @minLength 1 * @maxLength 38 */ categoryId: string; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } interface GetCategoryResponse { /** Category info. */ category?: Category; } interface GetCategoryBySlugRequest { /** * Slug of the category to retrieve. * @minLength 1 * @maxLength 100 */ slug: string; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; /** * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. * Language of the category to retrieve. * @format LANGUAGE_TAG */ language?: string | null; } interface GetCategoryBySlugResponse { /** Category info. */ category?: Category; } interface ListCategoriesRequest { /** Pagination options. */ paging?: BlogPaging; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; /** * Language filter. * * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. * Pass a language to only receive categories that are in that language. * If omitted, categories in all languages are returned. * @format LANGUAGE_TAG */ language?: string | null; } interface BlogPaging { /** * Number of items to skip in the current sort order. * * * Default: `0` */ offset?: number; /** * Number of items to return. * * * Default:`50` * @min 1 * @max 100 */ limit?: number; /** * Pointer to the next or previous page in the list of results. * @maxLength 2000 */ cursor?: string | null; } interface ListCategoriesResponse { /** List of categories. */ categories?: Category[]; /** Details on the paged set of results returned. */ metaData?: MetaData; } interface MetaData { /** Number of items returned in this response. */ count?: number; /** Requested offset. */ offset?: number; /** Total number of items that match the query. */ total?: number; /** * Pointer to the next or previous page in the list of results. * @maxLength 2000 */ cursor?: string | null; } interface QueryCategoriesRequest { /** Query options. */ query?: PlatformQuery; /** * List of additional category fields to include in the response. By default * only the category’s base fields are returned. Base fields are all category fields that don't appear in the fieldset enum. * * To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to * retrieve the url field in the response in addition to the category’s base fields. * @maxSize 10 */ fieldsets?: FieldWithLiterals[]; } interface PlatformQuery extends PlatformQueryPagingMethodOneOf { /** Paging options to limit and skip 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 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 3 */ sort?: Sorting[]; } /** @oneof */ interface PlatformQueryPagingMethodOneOf { /** Paging options to limit and skip 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 Paging { /** * Number of items to load. * @max 100 */ limit?: number | null; /** Number of items to skip in the current sort order. */ offset?: number | null; } interface CursorPaging { /** * Number of items to load. * @max 100 */ limit?: number | null; /** * Pointer to the next or previous page in the list of results. * * You can get the relevant cursor token * from the `pagingMetadata` object in the previous call's response. * Not relevant for the first request. * @maxLength 2000 */ cursor?: string | null; } interface QueryCategoriesResponse { /** List of categories. */ categories?: Category[]; /** Details on the paged set of results returned. */ pagingMetadata?: 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 pointing to next page in the list of results. * @maxLength 2000 */ next?: string | null; /** * Cursor pointing to previous page in the list of results. * @maxLength 2000 */ prev?: string | null; } interface BulkDeleteCategoryRequest { /** * Category IDs. * @minSize 1 * @maxSize 100 * @maxLength 38 */ categoryIds?: string[]; /** Should delete bypassing the trash-bin. */ permanent?: boolean; } interface BulkDeleteCategoryResponse { } interface DeleteCategoryRequest { /** * Category ID. * @minLength 1 * @maxLength 38 */ categoryId: string; } interface DeleteCategoryResponse { } 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 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; } type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function createCategory(): __PublicMethodMetaInfo<'POST', {}, CreateCategoryRequest$1, CreateCategoryRequest, CreateCategoryResponse$1, CreateCategoryResponse>; declare function updateCategory(): __PublicMethodMetaInfo<'PATCH', { categoryId: string; }, UpdateCategoryRequest$1, UpdateCategoryRequest, UpdateCategoryResponse$1, UpdateCategoryResponse>; declare function getCategory(): __PublicMethodMetaInfo<'GET', { categoryId: string; }, GetCategoryRequest$1, GetCategoryRequest, GetCategoryResponse$1, GetCategoryResponse>; declare function getCategoryBySlug(): __PublicMethodMetaInfo<'GET', { slug: string; }, GetCategoryBySlugRequest$1, GetCategoryBySlugRequest, GetCategoryBySlugResponse$1, GetCategoryBySlugResponse>; declare function listCategories(): __PublicMethodMetaInfo<'GET', {}, ListCategoriesRequest$1, ListCategoriesRequest, ListCategoriesResponse$1, ListCategoriesResponse>; declare function queryCategories(): __PublicMethodMetaInfo<'POST', {}, QueryCategoriesRequest$1, QueryCategoriesRequest, QueryCategoriesResponse$1, QueryCategoriesResponse>; declare function deleteCategory(): __PublicMethodMetaInfo<'DELETE', { categoryId: string; }, DeleteCategoryRequest$1, DeleteCategoryRequest, DeleteCategoryResponse$1, DeleteCategoryResponse>; export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BlogPaging as BlogPagingOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCategoryResult as BulkCategoryResultOriginal, type BulkCreateCategoriesRequest as BulkCreateCategoriesRequestOriginal, type BulkCreateCategoriesResponse as BulkCreateCategoriesResponseOriginal, type BulkDeleteCategoryRequest as BulkDeleteCategoryRequestOriginal, type BulkDeleteCategoryResponse as BulkDeleteCategoryResponseOriginal, type BulkUpdateCategoriesRequest as BulkUpdateCategoriesRequestOriginal, type BulkUpdateCategoriesResponse as BulkUpdateCategoriesResponseOriginal, type CategoryLanguageCount as CategoryLanguageCountOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CreateCategoryRequest as CreateCategoryRequestOriginal, type CreateCategoryResponse as CreateCategoryResponseOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DeleteCategoryRequest as DeleteCategoryRequestOriginal, type DeleteCategoryResponse as DeleteCategoryResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FocalPoint as FocalPointOriginal, type GetCategoriesCountByLanguageRequest as GetCategoriesCountByLanguageRequestOriginal, type GetCategoriesCountByLanguageResponse as GetCategoriesCountByLanguageResponseOriginal, type GetCategoryBySlugRequest as GetCategoryBySlugRequestOriginal, type GetCategoryBySlugResponse as GetCategoryBySlugResponseOriginal, type GetCategoryRequest as GetCategoryRequestOriginal, type GetCategoryResponse as GetCategoryResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type InitialCategoriesCopied as InitialCategoriesCopiedOriginal, type ItemMetadata as ItemMetadataOriginal, type Keyword as KeywordOriginal, type ListCategoriesRequest as ListCategoriesRequestOriginal, type ListCategoriesResponse as ListCategoriesResponseOriginal, type MaskedCategory as MaskedCategoryOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type QueryCategoriesRequest as QueryCategoriesRequestOriginal, type QueryCategoriesResponse as QueryCategoriesResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Tag as TagOriginal, type UpdateCategoryRequest as UpdateCategoryRequestOriginal, type UpdateCategoryResponse as UpdateCategoryResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, createCategory, deleteCategory, getCategory, getCategoryBySlug, listCategories, queryCategories, updateCategory };