@wix/auto_sdk_ecom_delivery-profile 1.0.159 → 1.0.161

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.
@@ -1442,6 +1442,8 @@ interface MessageEnvelope {
1442
1442
  identity?: IdentificationData;
1443
1443
  /** Stringify payload. */
1444
1444
  data?: string;
1445
+ /** Details related to the account */
1446
+ accountInfo?: AccountInfo;
1445
1447
  }
1446
1448
  interface IdentificationData extends IdentificationDataIdOneOf {
1447
1449
  /**
package/build/es/meta.mjs CHANGED
@@ -6,50 +6,7 @@ import { transformSDKFieldMaskToRESTFieldMask } from "@wix/sdk-runtime/transform
6
6
  import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
7
7
  import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
8
8
  function resolveWixEcomDeliveryprofileV1DeliveryProfilesUrl(opts) {
9
- const domainToMappings = {
10
- "manage._base_domain_": [
11
- {
12
- srcPath: "/ecom/v1/delivery-profiles",
13
- destPath: "/v1/delivery-profiles"
14
- }
15
- ],
16
- "api._api_base_domain_": [
17
- {
18
- srcPath: "/delivery-profiles-service",
19
- destPath: ""
20
- }
21
- ],
22
- "www.wixapis.com": [
23
- {
24
- srcPath: "/ecom/v1/delivery-profiles",
25
- destPath: "/v1/delivery-profiles"
26
- },
27
- {
28
- srcPath: "/ecom/v1/delivery-profiles/update-carrier-settings",
29
- destPath: "/v1/delivery-carriers/update-settings"
30
- }
31
- ],
32
- "*.dev.wix-code.com": [
33
- {
34
- srcPath: "/ecom/v1/delivery-profiles",
35
- destPath: "/v1/delivery-profiles"
36
- },
37
- {
38
- srcPath: "/ecom/v1/delivery-profiles/update-carrier-settings",
39
- destPath: "/v1/delivery-carriers/update-settings"
40
- }
41
- ],
42
- _: [
43
- {
44
- srcPath: "/ecom/v1/delivery-profiles",
45
- destPath: "/v1/delivery-profiles"
46
- },
47
- {
48
- srcPath: "/ecom/v1/delivery-profiles/update-carrier-settings",
49
- destPath: "/v1/delivery-carriers/update-settings"
50
- }
51
- ]
52
- };
9
+ const domainToMappings = {};
53
10
  return resolveUrl(Object.assign(opts, { domainToMappings }));
54
11
  }
55
12
  var PACKAGE_NAME = "@wix/auto_sdk_ecom_delivery-profile";