@wix/auto_sdk_ecom_delivery-profile 1.0.67 → 1.0.68

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.
@@ -219,6 +219,89 @@ interface ExtendedFields {
219
219
  */
220
220
  namespaces?: Record<string, Record<string, any>>;
221
221
  }
222
+ interface DeliveryRegionAdded {
223
+ /**
224
+ * The DeliveryProfile owns this region.
225
+ * @format GUID
226
+ */
227
+ deliveryProfileId?: string;
228
+ /**
229
+ * The delivery region id.
230
+ * @format GUID
231
+ * @readonly
232
+ */
233
+ deliveryRegionId?: string | null;
234
+ /**
235
+ * Optional name of the rule, for example: "Domestic".
236
+ * @minLength 1
237
+ * @maxLength 256
238
+ */
239
+ name?: string | null;
240
+ /** Indicates that this rule is active, default value is true. */
241
+ active?: boolean | null;
242
+ /**
243
+ * The spi implementers id of shipping-rates spi, assigned to this rule.
244
+ * @maxSize 25
245
+ * @readonly
246
+ */
247
+ deliveryCarriers?: DeliveryCarrier[];
248
+ /**
249
+ * The operation region of this rule, if empty than it is global.
250
+ * @maxSize 200
251
+ */
252
+ destinations?: Destination[];
253
+ /**
254
+ * Represents the time this Profile was created
255
+ * @readonly
256
+ */
257
+ createdDate?: Date | null;
258
+ }
259
+ interface DeliveryRegionRemoved {
260
+ /**
261
+ * The DeliveryProfile owns this region.
262
+ * @format GUID
263
+ */
264
+ deliveryProfileId?: string;
265
+ /** The removed DeliveryRegion id. */
266
+ deliveryRegionId?: string;
267
+ }
268
+ interface DeliveryRegionUpdated {
269
+ /**
270
+ * The DeliveryProfile owns this DeliveryRegion.
271
+ * @format GUID
272
+ */
273
+ deliveryProfileId?: string;
274
+ /**
275
+ * The delivery region id.
276
+ * @format GUID
277
+ * @readonly
278
+ */
279
+ deliveryRegionId?: string | null;
280
+ /**
281
+ * Optional name of the rule, for example: "Domestic".
282
+ * @minLength 1
283
+ * @maxLength 256
284
+ */
285
+ name?: string | null;
286
+ /** Indicates that this rule is active, default value is true. */
287
+ active?: boolean | null;
288
+ /**
289
+ * The spi implementers id of shipping-rates spi, assigned to this rule.
290
+ * @maxSize 25
291
+ * @readonly
292
+ */
293
+ deliveryCarriers?: DeliveryCarrier[];
294
+ /**
295
+ * The operation region of this rule, if empty than it is global.
296
+ * @maxSize 200
297
+ */
298
+ destinations?: Destination[];
299
+ /**
300
+ * Represents the time this Profile was created
301
+ * @readonly
302
+ */
303
+ createdDate?: Date | null;
304
+ }
222
305
  interface CreateDeliveryProfileRequest {
223
306
  /** DeliveryProfile to be created. */
224
307
  deliveryProfile: DeliveryProfile;
@@ -255,6 +338,15 @@ interface DeleteDeliveryProfileRequest {
255
338
  }
256
339
  interface DeleteDeliveryProfileResponse {
257
340
  }
341
+ interface DeleteDefaultDeliveryProfileRequest {
342
+ /**
343
+ * Id of the DeliveryProfile to delete.
344
+ * @format GUID
345
+ */
346
+ deliveryProfileId?: string;
347
+ }
348
+ interface DeleteDefaultDeliveryProfileResponse {
349
+ }
258
350
  interface QueryDeliveryProfilesRequest {
259
351
  /** WQL expression. */
260
352
  query?: CursorQuery;
@@ -504,6 +596,31 @@ interface InstalledDeliveryCarrier {
504
596
  /** feature toggle initialized with default value = false. should be true if implemented by spi provider */
505
597
  toggleGetCarrierSettingsEnabled?: boolean;
506
598
  }
599
+ interface ListDeliveryDestinationsRequest {
600
+ }
601
+ interface ListDeliveryDestinationsResponse {
602
+ /** Scope of destinations, when worldwide is selected, the destinations list will be empty. */
603
+ destinationScope?: DestinationScopeWithLiterals;
604
+ /**
605
+ * The list of destinations
606
+ * @maxSize 200
607
+ */
608
+ destinations?: Destination[];
609
+ }
610
+ declare enum DestinationScope {
611
+ /** No additional destinations are requested */
612
+ SPECIFIC_DESTINATIONS = "SPECIFIC_DESTINATIONS",
613
+ /** All Destinations */
614
+ WORLDWIDE = "WORLDWIDE"
615
+ }
616
+ /** @enumType */
617
+ type DestinationScopeWithLiterals = DestinationScope | 'SPECIFIC_DESTINATIONS' | 'WORLDWIDE';
618
+ interface RequiredZipcodeRequest {
619
+ }
620
+ interface RequiredZipcodeResponse {
621
+ /** If the site requires a zipcode for delivery */
622
+ requiredZipcode?: boolean;
623
+ }
507
624
  interface ListDeliveryCarriersRequest {
508
625
  /**
509
626
  * Delivery profile id.
@@ -690,6 +807,763 @@ interface UpdateExtendedFieldsResponse {
690
807
  /** Updated DeliveryProfile. */
691
808
  deliveryProfile?: DeliveryProfile;
692
809
  }
810
+ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
811
+ /** Emitted on a meta site creation. */
812
+ siteCreated?: SiteCreated;
813
+ /** Emitted on a meta site transfer completion. */
814
+ siteTransferred?: SiteTransferred;
815
+ /** Emitted on a meta site deletion. */
816
+ siteDeleted?: SiteDeleted;
817
+ /** Emitted on a meta site restoration. */
818
+ siteUndeleted?: SiteUndeleted;
819
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
820
+ sitePublished?: SitePublished;
821
+ /** Emitted on a meta site unpublish. */
822
+ siteUnpublished?: SiteUnpublished;
823
+ /** Emitted when meta site is marked as template. */
824
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
825
+ /** Emitted when meta site is marked as a WixSite. */
826
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
827
+ /** Emitted when an application is provisioned (installed). */
828
+ serviceProvisioned?: ServiceProvisioned;
829
+ /** Emitted when an application is removed (uninstalled). */
830
+ serviceRemoved?: ServiceRemoved;
831
+ /** Emitted when meta site name (URL slug) is changed. */
832
+ siteRenamedPayload?: SiteRenamed;
833
+ /** Emitted when meta site was permanently deleted. */
834
+ hardDeleted?: SiteHardDeleted;
835
+ /** Emitted on a namespace change. */
836
+ namespaceChanged?: NamespaceChanged;
837
+ /** Emitted when Studio is attached. */
838
+ studioAssigned?: StudioAssigned;
839
+ /** Emitted when Studio is detached. */
840
+ studioUnassigned?: StudioUnassigned;
841
+ /**
842
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
843
+ * the actual URL.
844
+ *
845
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
846
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
847
+ */
848
+ urlChanged?: SiteUrlChanged;
849
+ /** Site is marked as PurgedExternally */
850
+ sitePurgedExternally?: SitePurgedExternally;
851
+ /** Emitted when Odeditor is attached. */
852
+ odeditorAssigned?: OdeditorAssigned;
853
+ /** Emitted when Odeditor is detached. */
854
+ odeditorUnassigned?: OdeditorUnassigned;
855
+ /** Emitted when Picasso is attached. */
856
+ picassoAssigned?: PicassoAssigned;
857
+ /** Emitted when Picasso is detached. */
858
+ picassoUnassigned?: PicassoUnassigned;
859
+ /**
860
+ * A meta site id.
861
+ * @format GUID
862
+ */
863
+ metaSiteId?: string;
864
+ /** A meta site version. Monotonically increasing. */
865
+ version?: string;
866
+ /** A timestamp of the event. */
867
+ timestamp?: string;
868
+ /**
869
+ * TODO(meta-site): Change validation once validations are disabled for consumers
870
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
871
+ * @maxSize 4000
872
+ */
873
+ assets?: Asset[];
874
+ }
875
+ /** @oneof */
876
+ interface MetaSiteSpecialEventPayloadOneOf {
877
+ /** Emitted on a meta site creation. */
878
+ siteCreated?: SiteCreated;
879
+ /** Emitted on a meta site transfer completion. */
880
+ siteTransferred?: SiteTransferred;
881
+ /** Emitted on a meta site deletion. */
882
+ siteDeleted?: SiteDeleted;
883
+ /** Emitted on a meta site restoration. */
884
+ siteUndeleted?: SiteUndeleted;
885
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
886
+ sitePublished?: SitePublished;
887
+ /** Emitted on a meta site unpublish. */
888
+ siteUnpublished?: SiteUnpublished;
889
+ /** Emitted when meta site is marked as template. */
890
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
891
+ /** Emitted when meta site is marked as a WixSite. */
892
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
893
+ /** Emitted when an application is provisioned (installed). */
894
+ serviceProvisioned?: ServiceProvisioned;
895
+ /** Emitted when an application is removed (uninstalled). */
896
+ serviceRemoved?: ServiceRemoved;
897
+ /** Emitted when meta site name (URL slug) is changed. */
898
+ siteRenamedPayload?: SiteRenamed;
899
+ /** Emitted when meta site was permanently deleted. */
900
+ hardDeleted?: SiteHardDeleted;
901
+ /** Emitted on a namespace change. */
902
+ namespaceChanged?: NamespaceChanged;
903
+ /** Emitted when Studio is attached. */
904
+ studioAssigned?: StudioAssigned;
905
+ /** Emitted when Studio is detached. */
906
+ studioUnassigned?: StudioUnassigned;
907
+ /**
908
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
909
+ * the actual URL.
910
+ *
911
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
912
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
913
+ */
914
+ urlChanged?: SiteUrlChanged;
915
+ /** Site is marked as PurgedExternally */
916
+ sitePurgedExternally?: SitePurgedExternally;
917
+ /** Emitted when Odeditor is attached. */
918
+ odeditorAssigned?: OdeditorAssigned;
919
+ /** Emitted when Odeditor is detached. */
920
+ odeditorUnassigned?: OdeditorUnassigned;
921
+ /** Emitted when Picasso is attached. */
922
+ picassoAssigned?: PicassoAssigned;
923
+ /** Emitted when Picasso is detached. */
924
+ picassoUnassigned?: PicassoUnassigned;
925
+ }
926
+ interface Asset {
927
+ /**
928
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
929
+ * @maxLength 36
930
+ */
931
+ appDefId?: string;
932
+ /**
933
+ * An instance id. For legacy reasons may be UUID or a string.
934
+ * @maxLength 200
935
+ */
936
+ instanceId?: string;
937
+ /** An application state. */
938
+ state?: StateWithLiterals;
939
+ }
940
+ declare enum State {
941
+ UNKNOWN = "UNKNOWN",
942
+ ENABLED = "ENABLED",
943
+ DISABLED = "DISABLED",
944
+ PENDING = "PENDING",
945
+ DEMO = "DEMO"
946
+ }
947
+ /** @enumType */
948
+ type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
949
+ interface SiteCreated {
950
+ /**
951
+ * A template identifier (empty if not created from a template).
952
+ * @maxLength 36
953
+ */
954
+ originTemplateId?: string;
955
+ /**
956
+ * An account id of the owner.
957
+ * @format GUID
958
+ */
959
+ ownerId?: string;
960
+ /** A context in which meta site was created. */
961
+ context?: SiteCreatedContextWithLiterals;
962
+ /**
963
+ * A meta site id from which this site was created.
964
+ *
965
+ * In case of a creation from a template it's a template id.
966
+ * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
967
+ * @format GUID
968
+ */
969
+ originMetaSiteId?: string | null;
970
+ /**
971
+ * A meta site name (URL slug).
972
+ * @maxLength 20
973
+ */
974
+ siteName?: string;
975
+ /** A namespace. */
976
+ namespace?: NamespaceWithLiterals;
977
+ }
978
+ declare enum SiteCreatedContext {
979
+ /** A valid option, we don't expose all reasons why site might be created. */
980
+ OTHER = "OTHER",
981
+ /** A meta site was created from template. */
982
+ FROM_TEMPLATE = "FROM_TEMPLATE",
983
+ /** A meta site was created by copying of the transfferred meta site. */
984
+ DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
985
+ /** A copy of existing meta site. */
986
+ DUPLICATE = "DUPLICATE",
987
+ /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
988
+ OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
989
+ /** deprecated A meta site was created for Flash editor. */
990
+ FLASH = "FLASH"
991
+ }
992
+ /** @enumType */
993
+ type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
994
+ declare enum Namespace {
995
+ UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
996
+ /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
997
+ WIX = "WIX",
998
+ /** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
999
+ SHOUT_OUT = "SHOUT_OUT",
1000
+ /** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1001
+ ALBUMS = "ALBUMS",
1002
+ /** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1003
+ WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
1004
+ /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
1005
+ HOTELS = "HOTELS",
1006
+ /** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1007
+ CLUBS = "CLUBS",
1008
+ /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1009
+ ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
1010
+ /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
1011
+ DEV_SITE = "DEV_SITE",
1012
+ /** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1013
+ LOGOS = "LOGOS",
1014
+ /** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
1015
+ VIDEO_MAKER = "VIDEO_MAKER",
1016
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
1017
+ PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
1018
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
1019
+ DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
1020
+ /**
1021
+ * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
1022
+ *
1023
+ * Meta site with this namespace will *not* be shown in a user's site list by default.
1024
+ */
1025
+ HTML_DRAFT = "HTML_DRAFT",
1026
+ /**
1027
+ * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
1028
+ * Will be accessible from Site List and will not have a website app.
1029
+ * Once the user attaches a site, the site will become a regular wixsite.
1030
+ */
1031
+ SITELESS_BUSINESS = "SITELESS_BUSINESS",
1032
+ /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
1033
+ CREATOR_ECONOMY = "CREATOR_ECONOMY",
1034
+ /** It is to be used in the Business First efforts. */
1035
+ DASHBOARD_FIRST = "DASHBOARD_FIRST",
1036
+ /** Bookings business flow with no site. */
1037
+ ANYWHERE = "ANYWHERE",
1038
+ /** Namespace for Headless Backoffice with no editor */
1039
+ HEADLESS = "HEADLESS",
1040
+ /**
1041
+ * Namespace for master site that will exist in parent account that will be referenced by subaccounts
1042
+ * The site will be used for account level CSM feature for enterprise
1043
+ */
1044
+ ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
1045
+ /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
1046
+ RISE = "RISE",
1047
+ /**
1048
+ * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
1049
+ * There's a blank site behind the scene but it's blank).
1050
+ * The Mobile company will be the owner of this namespace.
1051
+ */
1052
+ BRANDED_FIRST = "BRANDED_FIRST",
1053
+ /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
1054
+ NOWNIA = "NOWNIA",
1055
+ /**
1056
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
1057
+ * The Partners company owns this namespace.
1058
+ */
1059
+ UGC_TEMPLATE = "UGC_TEMPLATE",
1060
+ /** Codux Headless Sites */
1061
+ CODUX = "CODUX",
1062
+ /** Bobb - AI Design Creator. */
1063
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
1064
+ /**
1065
+ * Shared Blog Site is a unique single site across Enterprise account,
1066
+ * This site will hold all Blog posts related to the Marketing product.
1067
+ */
1068
+ SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
1069
+ /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
1070
+ STANDALONE_FORMS = "STANDALONE_FORMS",
1071
+ /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
1072
+ STANDALONE_EVENTS = "STANDALONE_EVENTS",
1073
+ /** MIMIR - Siteless account for MIMIR Ai Job runner. */
1074
+ MIMIR = "MIMIR",
1075
+ /** Wix Twins platform. */
1076
+ TWINS = "TWINS",
1077
+ /** Wix Nano. */
1078
+ NANO = "NANO"
1079
+ }
1080
+ /** @enumType */
1081
+ type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO';
1082
+ /** Site transferred to another user. */
1083
+ interface SiteTransferred {
1084
+ /**
1085
+ * A previous owner id (user that transfers meta site).
1086
+ * @format GUID
1087
+ */
1088
+ oldOwnerId?: string;
1089
+ /**
1090
+ * A new owner id (user that accepts meta site).
1091
+ * @format GUID
1092
+ */
1093
+ newOwnerId?: string;
1094
+ }
1095
+ /** Soft deletion of the meta site. Could be restored. */
1096
+ interface SiteDeleted {
1097
+ /** A deletion context. */
1098
+ deleteContext?: DeleteContext;
1099
+ }
1100
+ interface DeleteContext {
1101
+ /** When the meta site was deleted. */
1102
+ dateDeleted?: Date | null;
1103
+ /** A status. */
1104
+ deleteStatus?: DeleteStatusWithLiterals;
1105
+ /**
1106
+ * A reason (flow).
1107
+ * @maxLength 255
1108
+ */
1109
+ deleteOrigin?: string;
1110
+ /**
1111
+ * A service that deleted it.
1112
+ * @maxLength 255
1113
+ */
1114
+ initiatorId?: string | null;
1115
+ }
1116
+ declare enum DeleteStatus {
1117
+ UNKNOWN = "UNKNOWN",
1118
+ TRASH = "TRASH",
1119
+ DELETED = "DELETED",
1120
+ PENDING_PURGE = "PENDING_PURGE",
1121
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
1122
+ }
1123
+ /** @enumType */
1124
+ type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
1125
+ /** Restoration of the meta site. */
1126
+ interface SiteUndeleted {
1127
+ }
1128
+ /** First publish of a meta site. Or subsequent publish after unpublish. */
1129
+ interface SitePublished {
1130
+ }
1131
+ interface SiteUnpublished {
1132
+ /**
1133
+ * A list of URLs previously associated with the meta site.
1134
+ * @maxLength 4000
1135
+ * @maxSize 10000
1136
+ */
1137
+ urls?: string[];
1138
+ }
1139
+ interface SiteMarkedAsTemplate {
1140
+ }
1141
+ interface SiteMarkedAsWixSite {
1142
+ }
1143
+ /**
1144
+ * Represents a service provisioned a site.
1145
+ *
1146
+ * Note on `origin_instance_id`:
1147
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
1148
+ * This is because of the following scenario:
1149
+ *
1150
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
1151
+ * such as a product catalog. When you create a site from this template, you inherit this
1152
+ * default product catalog. However, if the template's product catalog is modified,
1153
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
1154
+ * your site remains consistent with what you initially received and does not include any
1155
+ * changes made to the original template afterward.
1156
+ * To ensure this, the TPA on the template gets a new instance_id.
1157
+ */
1158
+ interface ServiceProvisioned {
1159
+ /**
1160
+ * Either UUID or EmbeddedServiceType.
1161
+ * @maxLength 36
1162
+ */
1163
+ appDefId?: string;
1164
+ /**
1165
+ * Not only UUID. Something here could be something weird.
1166
+ * @maxLength 36
1167
+ */
1168
+ instanceId?: string;
1169
+ /**
1170
+ * An instance id from which this instance is originated.
1171
+ * @maxLength 36
1172
+ */
1173
+ originInstanceId?: string;
1174
+ /**
1175
+ * A version.
1176
+ * @maxLength 500
1177
+ */
1178
+ version?: string | null;
1179
+ /**
1180
+ * The origin meta site id
1181
+ * @format GUID
1182
+ */
1183
+ originMetaSiteId?: string | null;
1184
+ }
1185
+ interface ServiceRemoved {
1186
+ /**
1187
+ * Either UUID or EmbeddedServiceType.
1188
+ * @maxLength 36
1189
+ */
1190
+ appDefId?: string;
1191
+ /**
1192
+ * Not only UUID. Something here could be something weird.
1193
+ * @maxLength 36
1194
+ */
1195
+ instanceId?: string;
1196
+ /**
1197
+ * A version.
1198
+ * @maxLength 500
1199
+ */
1200
+ version?: string | null;
1201
+ }
1202
+ /** Rename of the site. Meaning, free public url has been changed as well. */
1203
+ interface SiteRenamed {
1204
+ /**
1205
+ * A new meta site name (URL slug).
1206
+ * @maxLength 20
1207
+ */
1208
+ newSiteName?: string;
1209
+ /**
1210
+ * A previous meta site name (URL slug).
1211
+ * @maxLength 255
1212
+ */
1213
+ oldSiteName?: string;
1214
+ }
1215
+ /**
1216
+ * Hard deletion of the meta site.
1217
+ *
1218
+ * Could not be restored. Therefore it's desirable to cleanup data.
1219
+ */
1220
+ interface SiteHardDeleted {
1221
+ /** A deletion context. */
1222
+ deleteContext?: DeleteContext;
1223
+ }
1224
+ interface NamespaceChanged {
1225
+ /** A previous namespace. */
1226
+ oldNamespace?: NamespaceWithLiterals;
1227
+ /** A new namespace. */
1228
+ newNamespace?: NamespaceWithLiterals;
1229
+ }
1230
+ /** Assigned Studio editor */
1231
+ interface StudioAssigned {
1232
+ }
1233
+ /** Unassigned Studio editor */
1234
+ interface StudioUnassigned {
1235
+ }
1236
+ /**
1237
+ * Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
1238
+ *
1239
+ * This is an internal event, it's not propagated in special events, because it's non-actionable. If you need to keep up
1240
+ * with sites and its urls, you need to listen to another topic/event. Read about it:
1241
+ *
1242
+ * https://bo.wix.com/wix-docs/rest/meta-site/meta-site---urls-service
1243
+ */
1244
+ interface SiteUrlChanged {
1245
+ }
1246
+ /**
1247
+ * Used at the end of the deletion flow for both draft sites and when a user deletes a site.
1248
+ * Consumed by other teams to remove relevant data.
1249
+ */
1250
+ interface SitePurgedExternally {
1251
+ /**
1252
+ * @maxLength 2048
1253
+ * @maxSize 100
1254
+ * @deprecated
1255
+ * @targetRemovalDate 2025-04-15
1256
+ */
1257
+ appDefId?: string[];
1258
+ }
1259
+ /** Assigned Odeditor */
1260
+ interface OdeditorAssigned {
1261
+ }
1262
+ /** Unassigned Odeditor */
1263
+ interface OdeditorUnassigned {
1264
+ }
1265
+ /** Assigned Picasso editor */
1266
+ interface PicassoAssigned {
1267
+ }
1268
+ /** Unassigned Picasso */
1269
+ interface PicassoUnassigned {
1270
+ }
1271
+ interface Empty {
1272
+ }
1273
+ interface DomainEvent extends DomainEventBodyOneOf {
1274
+ createdEvent?: EntityCreatedEvent;
1275
+ updatedEvent?: EntityUpdatedEvent;
1276
+ deletedEvent?: EntityDeletedEvent;
1277
+ actionEvent?: ActionEvent;
1278
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
1279
+ id?: string;
1280
+ /**
1281
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
1282
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
1283
+ */
1284
+ entityFqdn?: string;
1285
+ /**
1286
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
1287
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
1288
+ */
1289
+ slug?: string;
1290
+ /** ID of the entity associated with the event. */
1291
+ entityId?: string;
1292
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
1293
+ eventTime?: Date | null;
1294
+ /**
1295
+ * Whether the event was triggered as a result of a privacy regulation application
1296
+ * (for example, GDPR).
1297
+ */
1298
+ triggeredByAnonymizeRequest?: boolean | null;
1299
+ /** If present, indicates the action that triggered the event. */
1300
+ originatedFrom?: string | null;
1301
+ /**
1302
+ * 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.
1303
+ * 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.
1304
+ */
1305
+ entityEventSequence?: string | null;
1306
+ }
1307
+ /** @oneof */
1308
+ interface DomainEventBodyOneOf {
1309
+ createdEvent?: EntityCreatedEvent;
1310
+ updatedEvent?: EntityUpdatedEvent;
1311
+ deletedEvent?: EntityDeletedEvent;
1312
+ actionEvent?: ActionEvent;
1313
+ }
1314
+ interface EntityCreatedEvent {
1315
+ entityAsJson?: string;
1316
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
1317
+ restoreInfo?: RestoreInfo;
1318
+ }
1319
+ interface RestoreInfo {
1320
+ deletedDate?: Date | null;
1321
+ }
1322
+ interface EntityUpdatedEvent {
1323
+ /**
1324
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
1325
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
1326
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
1327
+ */
1328
+ currentEntityAsJson?: string;
1329
+ }
1330
+ interface EntityDeletedEvent {
1331
+ /** Entity that was deleted. */
1332
+ deletedEntityAsJson?: string | null;
1333
+ }
1334
+ interface ActionEvent {
1335
+ bodyAsJson?: string;
1336
+ }
1337
+ interface MessageEnvelope {
1338
+ /**
1339
+ * App instance ID.
1340
+ * @format GUID
1341
+ */
1342
+ instanceId?: string | null;
1343
+ /**
1344
+ * Event type.
1345
+ * @maxLength 150
1346
+ */
1347
+ eventType?: string;
1348
+ /** The identification type and identity data. */
1349
+ identity?: IdentificationData;
1350
+ /** Stringify payload. */
1351
+ data?: string;
1352
+ }
1353
+ interface IdentificationData extends IdentificationDataIdOneOf {
1354
+ /**
1355
+ * ID of a site visitor that has not logged in to the site.
1356
+ * @format GUID
1357
+ */
1358
+ anonymousVisitorId?: string;
1359
+ /**
1360
+ * ID of a site visitor that has logged in to the site.
1361
+ * @format GUID
1362
+ */
1363
+ memberId?: string;
1364
+ /**
1365
+ * ID of a Wix user (site owner, contributor, etc.).
1366
+ * @format GUID
1367
+ */
1368
+ wixUserId?: string;
1369
+ /**
1370
+ * ID of an app.
1371
+ * @format GUID
1372
+ */
1373
+ appId?: string;
1374
+ /** @readonly */
1375
+ identityType?: WebhookIdentityTypeWithLiterals;
1376
+ }
1377
+ /** @oneof */
1378
+ interface IdentificationDataIdOneOf {
1379
+ /**
1380
+ * ID of a site visitor that has not logged in to the site.
1381
+ * @format GUID
1382
+ */
1383
+ anonymousVisitorId?: string;
1384
+ /**
1385
+ * ID of a site visitor that has logged in to the site.
1386
+ * @format GUID
1387
+ */
1388
+ memberId?: string;
1389
+ /**
1390
+ * ID of a Wix user (site owner, contributor, etc.).
1391
+ * @format GUID
1392
+ */
1393
+ wixUserId?: string;
1394
+ /**
1395
+ * ID of an app.
1396
+ * @format GUID
1397
+ */
1398
+ appId?: string;
1399
+ }
1400
+ declare enum WebhookIdentityType {
1401
+ UNKNOWN = "UNKNOWN",
1402
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
1403
+ MEMBER = "MEMBER",
1404
+ WIX_USER = "WIX_USER",
1405
+ APP = "APP"
1406
+ }
1407
+ /** @enumType */
1408
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1409
+ /** @docsIgnore */
1410
+ type CreateDeliveryProfileApplicationErrors = {
1411
+ code?: 'DESTINATIONS_COLLISION';
1412
+ description?: string;
1413
+ data?: Record<string, any>;
1414
+ } | {
1415
+ code?: 'SINGLE_DEFAULT_DELIVERY_PROFILE';
1416
+ description?: string;
1417
+ data?: Record<string, any>;
1418
+ } | {
1419
+ code?: 'UNKNOWN_DELIVERY_CARRIER';
1420
+ description?: string;
1421
+ data?: Record<string, any>;
1422
+ } | {
1423
+ code?: 'DELIVERY_CARRIER_MISSING_BACKUP_RATE';
1424
+ description?: string;
1425
+ data?: Record<string, any>;
1426
+ };
1427
+ /** @docsIgnore */
1428
+ type CreateDeliveryProfileValidationErrors = {
1429
+ ruleName?: 'DESTINATION_NOT_SUPPORTED';
1430
+ };
1431
+ /** @docsIgnore */
1432
+ type UpdateDeliveryProfileApplicationErrors = {
1433
+ code?: 'DELIVERY_REGION_CANNOT_BE_UPDATED';
1434
+ description?: string;
1435
+ data?: Record<string, any>;
1436
+ } | {
1437
+ code?: 'DEFAULT_CANNOT_BE_UPDATED';
1438
+ description?: string;
1439
+ data?: Record<string, any>;
1440
+ };
1441
+ /** @docsIgnore */
1442
+ type AddDeliveryRegionApplicationErrors = {
1443
+ code?: 'DELIVERY_PROFILE_NOT_FOUND';
1444
+ description?: string;
1445
+ data?: Record<string, any>;
1446
+ } | {
1447
+ code?: 'DESTINATIONS_COLLISION';
1448
+ description?: string;
1449
+ data?: Record<string, any>;
1450
+ } | {
1451
+ code?: 'UNKNOWN_DELIVERY_CARRIER';
1452
+ description?: string;
1453
+ data?: Record<string, any>;
1454
+ } | {
1455
+ code?: 'DELIVERY_CARRIER_MISSING_BACKUP_RATE';
1456
+ description?: string;
1457
+ data?: Record<string, any>;
1458
+ };
1459
+ /** @docsIgnore */
1460
+ type AddDeliveryRegionValidationErrors = {
1461
+ ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
1462
+ } | {
1463
+ ruleName?: 'DESTINATION_NOT_SUPPORTED';
1464
+ };
1465
+ /** @docsIgnore */
1466
+ type UpdateDeliveryRegionApplicationErrors = {
1467
+ code?: 'DELIVERY_PROFILE_NOT_FOUND';
1468
+ description?: string;
1469
+ data?: Record<string, any>;
1470
+ } | {
1471
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1472
+ description?: string;
1473
+ data?: Record<string, any>;
1474
+ } | {
1475
+ code?: 'DESTINATIONS_COLLISION';
1476
+ description?: string;
1477
+ data?: Record<string, any>;
1478
+ } | {
1479
+ code?: 'DELIVERY_CARRIER_CANNOT_BE_UPDATED';
1480
+ description?: string;
1481
+ data?: Record<string, any>;
1482
+ };
1483
+ /** @docsIgnore */
1484
+ type UpdateDeliveryRegionValidationErrors = {
1485
+ ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
1486
+ } | {
1487
+ ruleName?: 'DESTINATION_NOT_SUPPORTED';
1488
+ };
1489
+ /** @docsIgnore */
1490
+ type GetDeliveryProfileByDeliveryRegionIdApplicationErrors = {
1491
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1492
+ description?: string;
1493
+ data?: Record<string, any>;
1494
+ };
1495
+ /** @docsIgnore */
1496
+ type RemoveDeliveryRegionApplicationErrors = {
1497
+ code?: 'DELIVERY_PROFILE_NOT_FOUND';
1498
+ description?: string;
1499
+ data?: Record<string, any>;
1500
+ } | {
1501
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1502
+ description?: string;
1503
+ data?: Record<string, any>;
1504
+ };
1505
+ /** @docsIgnore */
1506
+ type AddDeliveryCarrierApplicationErrors = {
1507
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1508
+ description?: string;
1509
+ data?: Record<string, any>;
1510
+ } | {
1511
+ code?: 'CARRIER_ALREADY_EXISTS_IN_REGION';
1512
+ description?: string;
1513
+ data?: Record<string, any>;
1514
+ } | {
1515
+ code?: 'DELIVERY_CARRIER_MISSING_BACKUP_RATE';
1516
+ description?: string;
1517
+ data?: Record<string, any>;
1518
+ } | {
1519
+ code?: 'UNKNOWN_DELIVERY_CARRIER';
1520
+ description?: string;
1521
+ data?: Record<string, any>;
1522
+ };
1523
+ /** @docsIgnore */
1524
+ type AddDeliveryCarrierValidationErrors = {
1525
+ ruleName?: 'DELIVERY_CARRIER_MISSING_BACKUP_RATE';
1526
+ };
1527
+ /** @docsIgnore */
1528
+ type RemoveDeliveryCarrierApplicationErrors = {
1529
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1530
+ description?: string;
1531
+ data?: Record<string, any>;
1532
+ };
1533
+ /** @docsIgnore */
1534
+ type UpdateDeliveryCarrierApplicationErrors = {
1535
+ code?: 'DELIVERY_REGION_NOT_FOUND';
1536
+ description?: string;
1537
+ data?: Record<string, any>;
1538
+ } | {
1539
+ code?: 'DELIVERY_CARRIER_NOT_FOUND';
1540
+ description?: string;
1541
+ data?: Record<string, any>;
1542
+ } | {
1543
+ code?: 'UNKNOWN_DELIVERY_CARRIER';
1544
+ description?: string;
1545
+ data?: Record<string, any>;
1546
+ } | {
1547
+ code?: 'APP_ID_CANNOT_BE_UPDATED';
1548
+ description?: string;
1549
+ data?: Record<string, any>;
1550
+ };
1551
+ /** @docsIgnore */
1552
+ type ListDeliveryCarriersApplicationErrors = {
1553
+ code?: 'DELIVERY_CARRIER_NOT_FOUND';
1554
+ description?: string;
1555
+ data?: Record<string, any>;
1556
+ } | {
1557
+ code?: 'DELIVERY_PROFILE_NOT_FOUND';
1558
+ description?: string;
1559
+ data?: Record<string, any>;
1560
+ };
1561
+ /** @docsIgnore */
1562
+ type UpdateCarrierSettingsApplicationErrors = {
1563
+ code?: 'DELIVERY_CARRIER_NOT_FOUND';
1564
+ description?: string;
1565
+ data?: Record<string, any>;
1566
+ };
693
1567
 
694
1568
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
695
1569
  getUrl: (context: any) => string;
@@ -738,4 +1612,4 @@ declare function updateExtendedFields(): __PublicMethodMetaInfo<'POST', {
738
1612
  id: string;
739
1613
  }, UpdateExtendedFieldsRequest$1, UpdateExtendedFieldsRequest, UpdateExtendedFieldsResponse$1, UpdateExtendedFieldsResponse>;
740
1614
 
741
- export { type __PublicMethodMetaInfo, addDeliveryCarrier, addDeliveryRegion, createDeliveryProfile, deleteDeliveryProfile, getDeliveryProfile, getDeliveryProfileByDeliveryRegionId, listDeliveryCarriers, listInstalledDeliveryCarriers, queryDeliveryProfiles, removeDeliveryCarrier, removeDeliveryRegion, updateCarrierSettings, updateDeliveryCarrier, updateDeliveryProfile, updateDeliveryRegion, updateExtendedFields };
1615
+ export { type ActionEvent as ActionEventOriginal, type AddDeliveryCarrierApplicationErrors as AddDeliveryCarrierApplicationErrorsOriginal, type AddDeliveryCarrierRequest as AddDeliveryCarrierRequestOriginal, type AddDeliveryCarrierResponse as AddDeliveryCarrierResponseOriginal, type AddDeliveryCarrierValidationErrors as AddDeliveryCarrierValidationErrorsOriginal, type AddDeliveryRegionApplicationErrors as AddDeliveryRegionApplicationErrorsOriginal, type AddDeliveryRegionRequest as AddDeliveryRegionRequestOriginal, type AddDeliveryRegionResponse as AddDeliveryRegionResponseOriginal, type AddDeliveryRegionValidationErrors as AddDeliveryRegionValidationErrorsOriginal, type AdditionalCharge as AdditionalChargeOriginal, type ApplicationError as ApplicationErrorOriginal, type Asset as AssetOriginal, type BackupRate as BackupRateOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, ChargeType as ChargeTypeOriginal, type ChargeTypeWithLiterals as ChargeTypeWithLiteralsOriginal, type Column as ColumnOriginal, type CreateDeliveryProfileApplicationErrors as CreateDeliveryProfileApplicationErrorsOriginal, type CreateDeliveryProfileRequest as CreateDeliveryProfileRequestOriginal, type CreateDeliveryProfileResponse as CreateDeliveryProfileResponseOriginal, type CreateDeliveryProfileValidationErrors as CreateDeliveryProfileValidationErrorsOriginal, type CreatedByIdOneOf as CreatedByIdOneOfOriginal, type CreatedBy as CreatedByOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DashboardTable as DashboardTableOriginal, type DeleteContext as DeleteContextOriginal, type DeleteDefaultDeliveryProfileRequest as DeleteDefaultDeliveryProfileRequestOriginal, type DeleteDefaultDeliveryProfileResponse as DeleteDefaultDeliveryProfileResponseOriginal, type DeleteDeliveryProfileRequest as DeleteDeliveryProfileRequestOriginal, type DeleteDeliveryProfileResponse as DeleteDeliveryProfileResponseOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type DeliveryCarrierDetails as DeliveryCarrierDetailsOriginal, type DeliveryCarrier as DeliveryCarrierOriginal, type DeliveryCarrierRegionalSettings as DeliveryCarrierRegionalSettingsOriginal, type DeliveryProfile as DeliveryProfileOriginal, type DeliveryRegionAdded as DeliveryRegionAddedOriginal, type DeliveryRegion as DeliveryRegionOriginal, type DeliveryRegionRemoved as DeliveryRegionRemovedOriginal, type DeliveryRegionUpdated as DeliveryRegionUpdatedOriginal, type Destination as DestinationOriginal, DestinationScope as DestinationScopeOriginal, type DestinationScopeWithLiterals as DestinationScopeWithLiteralsOriginal, 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 GetDeliveryProfileByDeliveryRegionIdApplicationErrors as GetDeliveryProfileByDeliveryRegionIdApplicationErrorsOriginal, type GetDeliveryProfileByDeliveryRegionIdRequest as GetDeliveryProfileByDeliveryRegionIdRequestOriginal, type GetDeliveryProfileByDeliveryRegionIdResponse as GetDeliveryProfileByDeliveryRegionIdResponseOriginal, type GetDeliveryProfileRequest as GetDeliveryProfileRequestOriginal, type GetDeliveryProfileResponse as GetDeliveryProfileResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InstalledDeliveryCarrier as InstalledDeliveryCarrierOriginal, type ItemMetadata as ItemMetadataOriginal, type ListDeliveryCarriersApplicationErrors as ListDeliveryCarriersApplicationErrorsOriginal, type ListDeliveryCarriersRequest as ListDeliveryCarriersRequestOriginal, type ListDeliveryCarriersResponse as ListDeliveryCarriersResponseOriginal, type ListDeliveryCarriersResult as ListDeliveryCarriersResultOriginal, type ListDeliveryDestinationsRequest as ListDeliveryDestinationsRequestOriginal, type ListDeliveryDestinationsResponse as ListDeliveryDestinationsResponseOriginal, type ListInstalledDeliveryCarriersRequest as ListInstalledDeliveryCarriersRequestOriginal, type ListInstalledDeliveryCarriersResponse as ListInstalledDeliveryCarriersResponseOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, type QueryDeliveryProfilesRequest as QueryDeliveryProfilesRequestOriginal, type QueryDeliveryProfilesResponse as QueryDeliveryProfilesResponseOriginal, type RemoveDeliveryCarrierApplicationErrors as RemoveDeliveryCarrierApplicationErrorsOriginal, type RemoveDeliveryCarrierRequest as RemoveDeliveryCarrierRequestOriginal, type RemoveDeliveryCarrierResponse as RemoveDeliveryCarrierResponseOriginal, type RemoveDeliveryRegionApplicationErrors as RemoveDeliveryRegionApplicationErrorsOriginal, type RemoveDeliveryRegionRequest as RemoveDeliveryRegionRequestOriginal, type RemoveDeliveryRegionResponse as RemoveDeliveryRegionResponseOriginal, type RequiredZipcodeRequest as RequiredZipcodeRequestOriginal, type RequiredZipcodeResponse as RequiredZipcodeResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type Row as RowOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, SiteCreatedContext as SiteCreatedContextOriginal, type SiteCreatedContextWithLiterals as SiteCreatedContextWithLiteralsOriginal, type SiteCreated as SiteCreatedOriginal, type SiteDeleted as SiteDeletedOriginal, type SiteHardDeleted as SiteHardDeletedOriginal, type SiteMarkedAsTemplate as SiteMarkedAsTemplateOriginal, type SiteMarkedAsWixSite as SiteMarkedAsWixSiteOriginal, type SitePublished as SitePublishedOriginal, type SitePurgedExternally as SitePurgedExternallyOriginal, type SiteRenamed as SiteRenamedOriginal, type SiteTransferred as SiteTransferredOriginal, type SiteUndeleted as SiteUndeletedOriginal, type SiteUnpublished as SiteUnpublishedOriginal, type SiteUrlChanged as SiteUrlChangedOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, type UpdateCarrierSettingsApplicationErrors as UpdateCarrierSettingsApplicationErrorsOriginal, type UpdateCarrierSettingsRequest as UpdateCarrierSettingsRequestOriginal, type UpdateCarrierSettingsResponse as UpdateCarrierSettingsResponseOriginal, type UpdateDeliveryCarrierApplicationErrors as UpdateDeliveryCarrierApplicationErrorsOriginal, type UpdateDeliveryCarrierRequest as UpdateDeliveryCarrierRequestOriginal, type UpdateDeliveryCarrierResponse as UpdateDeliveryCarrierResponseOriginal, type UpdateDeliveryProfileApplicationErrors as UpdateDeliveryProfileApplicationErrorsOriginal, type UpdateDeliveryProfileRequest as UpdateDeliveryProfileRequestOriginal, type UpdateDeliveryProfileResponse as UpdateDeliveryProfileResponseOriginal, type UpdateDeliveryRegionApplicationErrors as UpdateDeliveryRegionApplicationErrorsOriginal, type UpdateDeliveryRegionRequest as UpdateDeliveryRegionRequestOriginal, type UpdateDeliveryRegionResponse as UpdateDeliveryRegionResponseOriginal, type UpdateDeliveryRegionValidationErrors as UpdateDeliveryRegionValidationErrorsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, addDeliveryCarrier, addDeliveryRegion, createDeliveryProfile, deleteDeliveryProfile, getDeliveryProfile, getDeliveryProfileByDeliveryRegionId, listDeliveryCarriers, listInstalledDeliveryCarriers, queryDeliveryProfiles, removeDeliveryCarrier, removeDeliveryRegion, updateCarrierSettings, updateDeliveryCarrier, updateDeliveryProfile, updateDeliveryRegion, updateExtendedFields };