import { CreateShippingOptionRequest as CreateShippingOptionRequest$1, CreateShippingOptionResponse as CreateShippingOptionResponse$1, GetShippingOptionRequest as GetShippingOptionRequest$1, GetShippingOptionResponse as GetShippingOptionResponse$1, UpdateShippingOptionRequest as UpdateShippingOptionRequest$1, UpdateShippingOptionResponse as UpdateShippingOptionResponse$1, DeleteShippingOptionRequest as DeleteShippingOptionRequest$1, DeleteShippingOptionResponse as DeleteShippingOptionResponse$1, QueryShippingOptionsRequest as QueryShippingOptionsRequest$1, QueryShippingOptionsResponse as QueryShippingOptionsResponse$1, UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse$1, AddDeliveryRegionRequest as AddDeliveryRegionRequest$1, AddDeliveryRegionResponse as AddDeliveryRegionResponse$1, RemoveDeliveryRegionRequest as RemoveDeliveryRegionRequest$1, RemoveDeliveryRegionResponse as RemoveDeliveryRegionResponse$1 } from './index.typings.js'; import '@wix/sdk-types'; interface ShippingOption { /** * ShippingOption ID. * @format GUID * @readonly */ id?: string | null; /** * Revision number, which increments by 1 each time the ShippingOption is updated. * To prevent conflicting changes, * the current revision must be passed when updating the ShippingOption. * * Ignored when creating a ShippingOption. * @readonly */ revision?: string | null; /** * Date and time the ShippingOption was created. * @readonly */ createdDate?: Date | null; /** * Date and time the ShippingOption was last updated. * @readonly */ updatedDate?: Date | null; /** * Associated delivery region id. * @format GUID * @immutable * @deprecated Associated delivery region id. * @replacedBy delivery_region_ids * @targetRemovalDate 2025-06-01 */ deliveryRegionId?: string; /** * This shipping option is active for the following delivery regions. * @maxSize 50 * @format GUID * @immutable */ deliveryRegionIds?: string[]; /** * Delivery option configured for the ShippingOption * @maxLength 1000 */ title?: string | null; /** * Estimated delivery time. For example, "2-3 business days". * @maxLength 500 */ estimatedDeliveryTime?: string | null; /** * at runtime for a given shipment input, up to one rate (price) should be returned in an option. If more than one rate is valid then we return the lowest one. * @minSize 1 * @maxSize 50 */ rates?: ConditionalRates[]; /** Data Extensions */ extendedFields?: ExtendedFields; } interface ConditionalRates { /** * there is an AND logic between all the conditions. Empty conditions means true. * The amount of the rate that will be returned if all conditions are met. * @decimalValue options { gte:0, lte:999999999, maxScale:3 } */ amount?: string; /** * For example: weight > 0 and weight <= 10 * @maxSize 10 */ conditions?: Condition[]; /** When this flag is set to true, multiply the amount by the number of line items passed on the request. */ multiplyByQuantity?: boolean; } interface Condition { type?: ConditionTypeWithLiterals; /** * The value in respective to the condition type * Weight values should be in the same weight units of the store: KG / LB * Total price is according to the store currency * Quantity of items should be integers * @decimalValue options { gte:0, lte:999999999, maxScale:6 } */ value?: string; /** Logical operator. */ operator?: LogicalOperatorWithLiterals; } declare enum ConditionType { BY_TOTAL_WEIGHT = "BY_TOTAL_WEIGHT", BY_TOTAL_PRICE = "BY_TOTAL_PRICE", BY_TOTAL_QUANTITY = "BY_TOTAL_QUANTITY" } /** @enumType */ type ConditionTypeWithLiterals = ConditionType | 'BY_TOTAL_WEIGHT' | 'BY_TOTAL_PRICE' | 'BY_TOTAL_QUANTITY'; declare enum LogicalOperator { EQ = "EQ", GT = "GT", GTE = "GTE", LT = "LT", LTE = "LTE" } /** @enumType */ type LogicalOperatorWithLiterals = LogicalOperator | 'EQ' | 'GT' | 'GTE' | 'LT' | 'LTE'; 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>; } interface CreateShippingOptionRequest { /** ShippingOption to be created. */ shippingOption: ShippingOption; } interface CreateShippingOptionResponse { /** The created ShippingOption. */ shippingOption?: ShippingOption; } interface GetShippingOptionRequest { /** * ID of the ShippingOption to retrieve. * @format GUID */ shippingOptionId: string; } interface GetShippingOptionResponse { /** The requested ShippingOption. */ shippingOption?: ShippingOption; } interface UpdateShippingOptionRequest { /** ShippingOption to be updated, may be partial. */ shippingOption: ShippingOption; } interface UpdateShippingOptionResponse { /** Updated ShippingOption. */ shippingOption?: ShippingOption; } interface DeleteShippingOptionRequest { /** * Id of the ShippingOption to delete. * @format GUID */ shippingOptionId: string; } interface DeleteShippingOptionResponse { } interface QueryShippingOptionsRequest { /** 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 QueryShippingOptionsResponse { /** * List of ShippingOptions. * @maxSize 100 */ shippingOptions?: ShippingOption[]; /** 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 UpdateExtendedFieldsRequest { /** ID of the entity to update. */ id: string; /** Identifier for the app whose extended fields are being updated. */ namespace: string; /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */ namespaceData: Record | null; } interface UpdateExtendedFieldsResponse { /** Updated ShippingOption. */ shippingOption?: ShippingOption; } 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 AddDeliveryRegionRequest { /** * ID of the delivery region that should use this ShippingOption. * @format GUID */ deliveryRegionId: string; /** * ID of the ShippingOption to be updated. * @format GUID */ shippingOptionId: string; /** Revision of the ShippingOption. */ revision: string | null; } interface AddDeliveryRegionResponse { /** Updated ShippingOption. */ shippingOption?: ShippingOption; } interface RemoveDeliveryRegionRequest { /** * ID of the delivery region that should not use this ShippingOption anymore. * @format GUID */ deliveryRegionId: string; /** * ID of the ShippingOption to be updated. * @format GUID */ shippingOptionId: string; /** Revision of the ShippingOption. */ revision: string | null; } interface RemoveDeliveryRegionResponse { /** Updated ShippingOption. */ shippingOption?: ShippingOption; } 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 CreateShippingOptionApplicationErrors = { code?: 'INVALID_QUANTITY_VALUE'; description?: string; data?: Record; }; /** @docsIgnore */ type UpdateShippingOptionApplicationErrors = { code?: 'INVALID_QUANTITY_VALUE'; 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 createShippingOption(): __PublicMethodMetaInfo<'POST', {}, CreateShippingOptionRequest$1, CreateShippingOptionRequest, CreateShippingOptionResponse$1, CreateShippingOptionResponse>; declare function getShippingOption(): __PublicMethodMetaInfo<'GET', { shippingOptionId: string; }, GetShippingOptionRequest$1, GetShippingOptionRequest, GetShippingOptionResponse$1, GetShippingOptionResponse>; declare function updateShippingOption(): __PublicMethodMetaInfo<'PATCH', { shippingOptionId: string; }, UpdateShippingOptionRequest$1, UpdateShippingOptionRequest, UpdateShippingOptionResponse$1, UpdateShippingOptionResponse>; declare function deleteShippingOption(): __PublicMethodMetaInfo<'DELETE', { shippingOptionId: string; }, DeleteShippingOptionRequest$1, DeleteShippingOptionRequest, DeleteShippingOptionResponse$1, DeleteShippingOptionResponse>; declare function queryShippingOptions(): __PublicMethodMetaInfo<'GET', {}, QueryShippingOptionsRequest$1, QueryShippingOptionsRequest, QueryShippingOptionsResponse$1, QueryShippingOptionsResponse>; declare function updateExtendedFields(): __PublicMethodMetaInfo<'POST', { id: string; }, UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsRequest, UpdateExtendedFieldsResponse$1, UpdateExtendedFieldsResponse>; declare function addDeliveryRegion(): __PublicMethodMetaInfo<'POST', { shippingOptionId: string; }, AddDeliveryRegionRequest$1, AddDeliveryRegionRequest, AddDeliveryRegionResponse$1, AddDeliveryRegionResponse>; declare function removeDeliveryRegion(): __PublicMethodMetaInfo<'POST', { shippingOptionId: string; }, RemoveDeliveryRegionRequest$1, RemoveDeliveryRegionRequest, RemoveDeliveryRegionResponse$1, RemoveDeliveryRegionResponse>; export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddDeliveryRegionRequest as AddDeliveryRegionRequestOriginal, type AddDeliveryRegionResponse as AddDeliveryRegionResponseOriginal, type Condition as ConditionOriginal, ConditionType as ConditionTypeOriginal, type ConditionTypeWithLiterals as ConditionTypeWithLiteralsOriginal, type ConditionalRates as ConditionalRatesOriginal, type CreateShippingOptionApplicationErrors as CreateShippingOptionApplicationErrorsOriginal, type CreateShippingOptionRequest as CreateShippingOptionRequestOriginal, type CreateShippingOptionResponse as CreateShippingOptionResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteShippingOptionRequest as DeleteShippingOptionRequestOriginal, type DeleteShippingOptionResponse as DeleteShippingOptionResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GetShippingOptionRequest as GetShippingOptionRequestOriginal, type GetShippingOptionResponse as GetShippingOptionResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, LogicalOperator as LogicalOperatorOriginal, type LogicalOperatorWithLiterals as LogicalOperatorWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type QueryShippingOptionsRequest as QueryShippingOptionsRequestOriginal, type QueryShippingOptionsResponse as QueryShippingOptionsResponseOriginal, type RemoveDeliveryRegionRequest as RemoveDeliveryRegionRequestOriginal, type RemoveDeliveryRegionResponse as RemoveDeliveryRegionResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type ShippingOption as ShippingOptionOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateShippingOptionApplicationErrors as UpdateShippingOptionApplicationErrorsOriginal, type UpdateShippingOptionRequest as UpdateShippingOptionRequestOriginal, type UpdateShippingOptionResponse as UpdateShippingOptionResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, addDeliveryRegion, createShippingOption, deleteShippingOption, getShippingOption, queryShippingOptions, removeDeliveryRegion, updateExtendedFields, updateShippingOption };