@wix/auto_sdk_ecom_delivery-profile 1.0.87 → 1.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +22 -4
- package/build/cjs/index.js +127 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +185 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +22 -4
- package/build/es/index.mjs +121 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +185 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +22 -4
- package/build/internal/cjs/index.js +127 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +185 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +22 -4
- package/build/internal/es/index.mjs +121 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +185 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1644,6 +1644,190 @@ type UpdateCarrierSettingsApplicationErrors = {
|
|
|
1644
1644
|
description?: string;
|
|
1645
1645
|
data?: Record<string, any>;
|
|
1646
1646
|
};
|
|
1647
|
+
interface BaseEventMetadata {
|
|
1648
|
+
/**
|
|
1649
|
+
* App instance ID.
|
|
1650
|
+
* @format GUID
|
|
1651
|
+
*/
|
|
1652
|
+
instanceId?: string | null;
|
|
1653
|
+
/**
|
|
1654
|
+
* Event type.
|
|
1655
|
+
* @maxLength 150
|
|
1656
|
+
*/
|
|
1657
|
+
eventType?: string;
|
|
1658
|
+
/** The identification type and identity data. */
|
|
1659
|
+
identity?: IdentificationData;
|
|
1660
|
+
}
|
|
1661
|
+
interface EventMetadata extends BaseEventMetadata {
|
|
1662
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
1663
|
+
_id?: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
1666
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
1667
|
+
*/
|
|
1668
|
+
entityFqdn?: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
1671
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
1672
|
+
*/
|
|
1673
|
+
slug?: string;
|
|
1674
|
+
/** ID of the entity associated with the event. */
|
|
1675
|
+
entityId?: string;
|
|
1676
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
1677
|
+
eventTime?: Date | null;
|
|
1678
|
+
/**
|
|
1679
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
1680
|
+
* (for example, GDPR).
|
|
1681
|
+
*/
|
|
1682
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
1683
|
+
/** If present, indicates the action that triggered the event. */
|
|
1684
|
+
originatedFrom?: string | null;
|
|
1685
|
+
/**
|
|
1686
|
+
* 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.
|
|
1687
|
+
* 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.
|
|
1688
|
+
*/
|
|
1689
|
+
entityEventSequence?: string | null;
|
|
1690
|
+
}
|
|
1691
|
+
interface DeliveryProfileCreatedEnvelope {
|
|
1692
|
+
entity: DeliveryProfile;
|
|
1693
|
+
metadata: EventMetadata;
|
|
1694
|
+
}
|
|
1695
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1696
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1697
|
+
* @permissionScope Manage Stores
|
|
1698
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1699
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1700
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1701
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1702
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1703
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1704
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1705
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1706
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1707
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1708
|
+
* @webhook
|
|
1709
|
+
* @eventType wix.ecom.v1.delivery_profile_created
|
|
1710
|
+
* @slug created
|
|
1711
|
+
* @documentationMaturity preview
|
|
1712
|
+
*/
|
|
1713
|
+
declare function onDeliveryProfileCreated(handler: (event: DeliveryProfileCreatedEnvelope) => void | Promise<void>): void;
|
|
1714
|
+
interface DeliveryProfileDeletedEnvelope {
|
|
1715
|
+
entity: DeliveryProfile;
|
|
1716
|
+
metadata: EventMetadata;
|
|
1717
|
+
}
|
|
1718
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1719
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1720
|
+
* @permissionScope Manage Stores
|
|
1721
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1722
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1723
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1724
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1725
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1726
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1727
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1728
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1729
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1730
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1731
|
+
* @webhook
|
|
1732
|
+
* @eventType wix.ecom.v1.delivery_profile_deleted
|
|
1733
|
+
* @slug deleted
|
|
1734
|
+
* @documentationMaturity preview
|
|
1735
|
+
*/
|
|
1736
|
+
declare function onDeliveryProfileDeleted(handler: (event: DeliveryProfileDeletedEnvelope) => void | Promise<void>): void;
|
|
1737
|
+
interface DeliveryProfileRegionAddedEnvelope {
|
|
1738
|
+
data: DeliveryRegionAdded;
|
|
1739
|
+
metadata: EventMetadata;
|
|
1740
|
+
}
|
|
1741
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1742
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1743
|
+
* @permissionScope Manage Stores
|
|
1744
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1745
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1746
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1747
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1748
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1749
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1750
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1751
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1752
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1753
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1754
|
+
* @webhook
|
|
1755
|
+
* @eventType wix.ecom.v1.delivery_profile_region_added
|
|
1756
|
+
* @slug region_added
|
|
1757
|
+
* @documentationMaturity preview
|
|
1758
|
+
*/
|
|
1759
|
+
declare function onDeliveryProfileRegionAdded(handler: (event: DeliveryProfileRegionAddedEnvelope) => void | Promise<void>): void;
|
|
1760
|
+
interface DeliveryProfileRegionRemovedEnvelope {
|
|
1761
|
+
data: DeliveryRegionRemoved;
|
|
1762
|
+
metadata: EventMetadata;
|
|
1763
|
+
}
|
|
1764
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1765
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1766
|
+
* @permissionScope Manage Stores
|
|
1767
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1768
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1769
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1770
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1771
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1772
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1773
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1774
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1775
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1776
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1777
|
+
* @webhook
|
|
1778
|
+
* @eventType wix.ecom.v1.delivery_profile_region_removed
|
|
1779
|
+
* @slug region_removed
|
|
1780
|
+
* @documentationMaturity preview
|
|
1781
|
+
*/
|
|
1782
|
+
declare function onDeliveryProfileRegionRemoved(handler: (event: DeliveryProfileRegionRemovedEnvelope) => void | Promise<void>): void;
|
|
1783
|
+
interface DeliveryProfileRegionUpdatedEnvelope {
|
|
1784
|
+
data: DeliveryRegionUpdated;
|
|
1785
|
+
metadata: EventMetadata;
|
|
1786
|
+
}
|
|
1787
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1788
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1789
|
+
* @permissionScope Manage Stores
|
|
1790
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1791
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1792
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1793
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1794
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1795
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1796
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1797
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1798
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1799
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1800
|
+
* @webhook
|
|
1801
|
+
* @eventType wix.ecom.v1.delivery_profile_region_updated
|
|
1802
|
+
* @slug region_updated
|
|
1803
|
+
* @documentationMaturity preview
|
|
1804
|
+
*/
|
|
1805
|
+
declare function onDeliveryProfileRegionUpdated(handler: (event: DeliveryProfileRegionUpdatedEnvelope) => void | Promise<void>): void;
|
|
1806
|
+
interface DeliveryProfileUpdatedEnvelope {
|
|
1807
|
+
entity: DeliveryProfile;
|
|
1808
|
+
metadata: EventMetadata;
|
|
1809
|
+
/** @hidden */
|
|
1810
|
+
modifiedFields: Record<string, any>;
|
|
1811
|
+
}
|
|
1812
|
+
/** @permissionScope Manage Stores - all permissions
|
|
1813
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
1814
|
+
* @permissionScope Manage Stores
|
|
1815
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1816
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
1817
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
1818
|
+
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
1819
|
+
* @permissionScopeId SCOPE.MULTILINGUAL.NILE_WRAPPER_DOMAIN_EVENTS_READ
|
|
1820
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1821
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1822
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
1823
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
1824
|
+
* @permissionId ECOM.DELIVERY_PROFILE_READ
|
|
1825
|
+
* @webhook
|
|
1826
|
+
* @eventType wix.ecom.v1.delivery_profile_updated
|
|
1827
|
+
* @slug updated
|
|
1828
|
+
* @documentationMaturity preview
|
|
1829
|
+
*/
|
|
1830
|
+
declare function onDeliveryProfileUpdated(handler: (event: DeliveryProfileUpdatedEnvelope) => void | Promise<void>): void;
|
|
1647
1831
|
/**
|
|
1648
1832
|
* Creates a DeliveryProfile.
|
|
1649
1833
|
*
|
|
@@ -2215,4 +2399,4 @@ interface UpdateExtendedFieldsOptions {
|
|
|
2215
2399
|
namespaceData: Record<string, any> | null;
|
|
2216
2400
|
}
|
|
2217
2401
|
|
|
2218
|
-
export { type ActionEvent, type AddDeliveryCarrierApplicationErrors, type AddDeliveryCarrierOptions, type AddDeliveryCarrierRequest, type AddDeliveryCarrierResponse, type AddDeliveryCarrierValidationErrors, type AddDeliveryRegionApplicationErrors, type AddDeliveryRegionOptions, type AddDeliveryRegionRequest, type AddDeliveryRegionResponse, type AddDeliveryRegionValidationErrors, type AdditionalCharge, type ApplicationError, type Asset, type BackupRate, type BulkActionMetadata, ChargeType, type ChargeTypeWithLiterals, type Column, type CommonQueryWithEntityContext, type CountryDeliveryProperties, type CreateDeliveryProfileApplicationErrors, type CreateDeliveryProfileRequest, type CreateDeliveryProfileResponse, type CreatedBy, type CreatedByIdOneOf, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DashboardTable, type DeleteContext, type DeleteDefaultDeliveryProfileRequest, type DeleteDefaultDeliveryProfileResponse, type DeleteDeliveryProfileRequest, type DeleteDeliveryProfileResponse, DeleteStatus, type DeleteStatusWithLiterals, type DeliveryCarrier, type DeliveryCarrierDetails, type DeliveryCarrierRegionalSettings, type DeliveryDestinationProperties, type DeliveryProfile, type DeliveryProfileQuery, type DeliveryProfileQuerySpec, type DeliveryProfilesQueryBuilder, type DeliveryProfilesQueryResult, type DeliveryRegion, type DeliveryRegionAdded, type DeliveryRegionRemoved, type DeliveryRegionUpdated, type Destination, DestinationScope, type DestinationScopeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type GetDeliveryDestinationPropertiesRequest, type GetDeliveryDestinationPropertiesResponse, type GetDeliveryProfileByDeliveryRegionIdApplicationErrors, type GetDeliveryProfileByDeliveryRegionIdRequest, type GetDeliveryProfileByDeliveryRegionIdResponse, type GetDeliveryProfileRequest, type GetDeliveryProfileResponse, type IdentificationData, type IdentificationDataIdOneOf, type InstalledDeliveryCarrier, type ItemMetadata, type ListDeliveryCarriersApplicationErrors, type ListDeliveryCarriersOptions, type ListDeliveryCarriersRequest, type ListDeliveryCarriersResponse, type ListDeliveryCarriersResult, type ListDeliveryDestinationsRequest, type ListDeliveryDestinationsResponse, type ListInstalledDeliveryCarriersRequest, type ListInstalledDeliveryCarriersResponse, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type PicassoAssigned, type PicassoUnassigned, type QueryDeliveryProfilesRequest, type QueryDeliveryProfilesResponse, type RemoveDeliveryCarrierApplicationErrors, type RemoveDeliveryCarrierOptions, type RemoveDeliveryCarrierRequest, type RemoveDeliveryCarrierResponse, type RemoveDeliveryRegionApplicationErrors, type RemoveDeliveryRegionIdentifiers, type RemoveDeliveryRegionOptions, type RemoveDeliveryRegionRequest, type RemoveDeliveryRegionResponse, type RequiredZipcodeRequest, type RequiredZipcodeResponse, type RestoreInfo, type Row, type ServiceProvisioned, type ServiceRemoved, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type SubdivisionDeliveryProperties, type UpdateCarrierSettingsApplicationErrors, type UpdateCarrierSettingsOptions, type UpdateCarrierSettingsRequest, type UpdateCarrierSettingsResponse, type UpdateDeliveryCarrierApplicationErrors, type UpdateDeliveryCarrierOptions, type UpdateDeliveryCarrierRequest, type UpdateDeliveryCarrierResponse, type UpdateDeliveryProfile, type UpdateDeliveryProfileApplicationErrors, type UpdateDeliveryProfileRequest, type UpdateDeliveryProfileResponse, type UpdateDeliveryRegion, type UpdateDeliveryRegionApplicationErrors, type UpdateDeliveryRegionIdentifiers, type UpdateDeliveryRegionOptions, type UpdateDeliveryRegionRequest, type UpdateDeliveryRegionResponse, type UpdateDeliveryRegionValidationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, addDeliveryCarrier, addDeliveryRegion, createDeliveryProfile, deleteDeliveryProfile, getDeliveryDestinationProperties, getDeliveryProfile, getDeliveryProfileByDeliveryRegionId, listDeliveryCarriers, listInstalledDeliveryCarriers, queryDeliveryProfiles, removeDeliveryCarrier, removeDeliveryRegion, typedQueryDeliveryProfiles, updateDeliveryCarrier, updateDeliveryProfile, updateDeliveryRegion, updateExtendedFields };
|
|
2402
|
+
export { type ActionEvent, type AddDeliveryCarrierApplicationErrors, type AddDeliveryCarrierOptions, type AddDeliveryCarrierRequest, type AddDeliveryCarrierResponse, type AddDeliveryCarrierValidationErrors, type AddDeliveryRegionApplicationErrors, type AddDeliveryRegionOptions, type AddDeliveryRegionRequest, type AddDeliveryRegionResponse, type AddDeliveryRegionValidationErrors, type AdditionalCharge, type ApplicationError, type Asset, type BackupRate, type BaseEventMetadata, type BulkActionMetadata, ChargeType, type ChargeTypeWithLiterals, type Column, type CommonQueryWithEntityContext, type CountryDeliveryProperties, type CreateDeliveryProfileApplicationErrors, type CreateDeliveryProfileRequest, type CreateDeliveryProfileResponse, type CreatedBy, type CreatedByIdOneOf, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DashboardTable, type DeleteContext, type DeleteDefaultDeliveryProfileRequest, type DeleteDefaultDeliveryProfileResponse, type DeleteDeliveryProfileRequest, type DeleteDeliveryProfileResponse, DeleteStatus, type DeleteStatusWithLiterals, type DeliveryCarrier, type DeliveryCarrierDetails, type DeliveryCarrierRegionalSettings, type DeliveryDestinationProperties, type DeliveryProfile, type DeliveryProfileCreatedEnvelope, type DeliveryProfileDeletedEnvelope, type DeliveryProfileQuery, type DeliveryProfileQuerySpec, type DeliveryProfileRegionAddedEnvelope, type DeliveryProfileRegionRemovedEnvelope, type DeliveryProfileRegionUpdatedEnvelope, type DeliveryProfileUpdatedEnvelope, type DeliveryProfilesQueryBuilder, type DeliveryProfilesQueryResult, type DeliveryRegion, type DeliveryRegionAdded, type DeliveryRegionRemoved, type DeliveryRegionUpdated, type Destination, DestinationScope, type DestinationScopeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type GetDeliveryDestinationPropertiesRequest, type GetDeliveryDestinationPropertiesResponse, type GetDeliveryProfileByDeliveryRegionIdApplicationErrors, type GetDeliveryProfileByDeliveryRegionIdRequest, type GetDeliveryProfileByDeliveryRegionIdResponse, type GetDeliveryProfileRequest, type GetDeliveryProfileResponse, type IdentificationData, type IdentificationDataIdOneOf, type InstalledDeliveryCarrier, type ItemMetadata, type ListDeliveryCarriersApplicationErrors, type ListDeliveryCarriersOptions, type ListDeliveryCarriersRequest, type ListDeliveryCarriersResponse, type ListDeliveryCarriersResult, type ListDeliveryDestinationsRequest, type ListDeliveryDestinationsResponse, type ListInstalledDeliveryCarriersRequest, type ListInstalledDeliveryCarriersResponse, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type PicassoAssigned, type PicassoUnassigned, type QueryDeliveryProfilesRequest, type QueryDeliveryProfilesResponse, type RemoveDeliveryCarrierApplicationErrors, type RemoveDeliveryCarrierOptions, type RemoveDeliveryCarrierRequest, type RemoveDeliveryCarrierResponse, type RemoveDeliveryRegionApplicationErrors, type RemoveDeliveryRegionIdentifiers, type RemoveDeliveryRegionOptions, type RemoveDeliveryRegionRequest, type RemoveDeliveryRegionResponse, type RequiredZipcodeRequest, type RequiredZipcodeResponse, type RestoreInfo, type Row, type ServiceProvisioned, type ServiceRemoved, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type SubdivisionDeliveryProperties, type UpdateCarrierSettingsApplicationErrors, type UpdateCarrierSettingsOptions, type UpdateCarrierSettingsRequest, type UpdateCarrierSettingsResponse, type UpdateDeliveryCarrierApplicationErrors, type UpdateDeliveryCarrierOptions, type UpdateDeliveryCarrierRequest, type UpdateDeliveryCarrierResponse, type UpdateDeliveryProfile, type UpdateDeliveryProfileApplicationErrors, type UpdateDeliveryProfileRequest, type UpdateDeliveryProfileResponse, type UpdateDeliveryRegion, type UpdateDeliveryRegionApplicationErrors, type UpdateDeliveryRegionIdentifiers, type UpdateDeliveryRegionOptions, type UpdateDeliveryRegionRequest, type UpdateDeliveryRegionResponse, type UpdateDeliveryRegionValidationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, addDeliveryCarrier, addDeliveryRegion, createDeliveryProfile, deleteDeliveryProfile, getDeliveryDestinationProperties, getDeliveryProfile, getDeliveryProfileByDeliveryRegionId, listDeliveryCarriers, listInstalledDeliveryCarriers, onDeliveryProfileCreated, onDeliveryProfileDeleted, onDeliveryProfileRegionAdded, onDeliveryProfileRegionRemoved, onDeliveryProfileRegionUpdated, onDeliveryProfileUpdated, queryDeliveryProfiles, removeDeliveryCarrier, removeDeliveryRegion, typedQueryDeliveryProfiles, updateDeliveryCarrier, updateDeliveryProfile, updateDeliveryRegion, updateExtendedFields };
|