@wix/auto_sdk_ecom_delivery-profile 1.0.86 → 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.
@@ -1513,10 +1513,6 @@ type CreateDeliveryProfileApplicationErrors = {
1513
1513
  data?: Record<string, any>;
1514
1514
  };
1515
1515
  /** @docsIgnore */
1516
- type CreateDeliveryProfileValidationErrors = {
1517
- ruleName?: 'DESTINATION_NOT_SUPPORTED';
1518
- };
1519
- /** @docsIgnore */
1520
1516
  type UpdateDeliveryProfileApplicationErrors = {
1521
1517
  code?: 'DELIVERY_REGION_CANNOT_BE_UPDATED';
1522
1518
  description?: string;
@@ -1547,8 +1543,6 @@ type AddDeliveryRegionApplicationErrors = {
1547
1543
  /** @docsIgnore */
1548
1544
  type AddDeliveryRegionValidationErrors = {
1549
1545
  ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
1550
- } | {
1551
- ruleName?: 'DESTINATION_NOT_SUPPORTED';
1552
1546
  };
1553
1547
  /** @docsIgnore */
1554
1548
  type UpdateDeliveryRegionApplicationErrors = {
@@ -1571,8 +1565,6 @@ type UpdateDeliveryRegionApplicationErrors = {
1571
1565
  /** @docsIgnore */
1572
1566
  type UpdateDeliveryRegionValidationErrors = {
1573
1567
  ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
1574
- } | {
1575
- ruleName?: 'DESTINATION_NOT_SUPPORTED';
1576
1568
  };
1577
1569
  /** @docsIgnore */
1578
1570
  type GetDeliveryProfileByDeliveryRegionIdApplicationErrors = {
@@ -1652,6 +1644,190 @@ type UpdateCarrierSettingsApplicationErrors = {
1652
1644
  description?: string;
1653
1645
  data?: Record<string, any>;
1654
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;
1655
1831
  /**
1656
1832
  * Creates a DeliveryProfile.
1657
1833
  *
@@ -1673,7 +1849,6 @@ type UpdateCarrierSettingsApplicationErrors = {
1673
1849
  */
1674
1850
  declare function createDeliveryProfile(deliveryProfile: NonNullablePaths<DeliveryProfile, `deliveryRegions.${number}.destinations.${number}.countryCode` | `deliveryRegions.${number}.name` | `name`, 6>): Promise<NonNullablePaths<DeliveryProfile, `deliveryRegions`, 2> & {
1675
1851
  __applicationErrorsType?: CreateDeliveryProfileApplicationErrors;
1676
- __validationErrorsType?: CreateDeliveryProfileValidationErrors;
1677
1852
  }>;
1678
1853
  /**
1679
1854
  * Retrieves a DeliveryProfile.
@@ -2195,22 +2370,6 @@ interface ListDeliveryCarriersOptions {
2195
2370
  */
2196
2371
  appIds?: string[];
2197
2372
  }
2198
- /**
2199
- * Update carrier's external active settings
2200
- * @param carrierId - Carrier id.
2201
- * @public
2202
- * @documentationMaturity preview
2203
- * @requiredField carrierId
2204
- * @requiredField options
2205
- * @requiredField options.active
2206
- * @requiredField options.rowId
2207
- * @permissionId ECOM.DELIVERY_CARRIER_UPDATE
2208
- * @applicableIdentity APP
2209
- * @fqn wix.ecom.deliveryprofile.v1.DeliveryProfiles.UpdateCarrierSettings
2210
- */
2211
- declare function updateCarrierSettings(carrierId: string, options: NonNullablePaths<UpdateCarrierSettingsOptions, `active` | `rowId`, 2>): Promise<void & {
2212
- __applicationErrorsType?: UpdateCarrierSettingsApplicationErrors;
2213
- }>;
2214
2373
  interface UpdateCarrierSettingsOptions {
2215
2374
  /**
2216
2375
  * Row id triggered the change
@@ -2240,4 +2399,4 @@ interface UpdateExtendedFieldsOptions {
2240
2399
  namespaceData: Record<string, any> | null;
2241
2400
  }
2242
2401
 
2243
- 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 CreateDeliveryProfileValidationErrors, 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, updateCarrierSettings, 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 };