@commercetools/importapi-sdk 4.3.0 → 4.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @commercetools/importapi-sdk
2
2
 
3
+ ## 4.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#453](https://github.com/commercetools/commercetools-sdk-typescript/pull/453) [`a83e653`](https://github.com/commercetools/commercetools-sdk-typescript/commit/a83e653c986e50f31f71546edc721263d29990b5) Thanks [@ajimae](https://github.com/ajimae)! - - Remove all `querystring` dependency
8
+ - Add qs dependency to requiring package
9
+ - Refactor code to accommodate new implementation
10
+ - Updated dependencies [[`a83e653`](https://github.com/commercetools/commercetools-sdk-typescript/commit/a83e653c986e50f31f71546edc721263d29990b5)]:
11
+ - @commercetools/sdk-client-v2@2.1.6
12
+
13
+ ## 4.4.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [`dad68dc`](https://github.com/commercetools/commercetools-sdk-typescript/commit/dad68dcabc0d8995b1c628b6cf431c14e9504888) Thanks [@jenschude](https://github.com/jenschude)! - **Import changes**
18
+
19
+ <details>
20
+ <summary>Added Property(s)</summary>
21
+
22
+ - added property `custom` to type `Parcel`
23
+ </details>
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [[`057e260`](https://github.com/commercetools/commercetools-sdk-typescript/commit/057e260b3330b7ab8df33171bb2d4aa2de0444d9)]:
28
+ - @commercetools/sdk-client-v2@2.1.5
29
+
3
30
  ## 4.3.0
4
31
 
5
32
  ### Minor Changes
@@ -580,7 +580,7 @@ export interface Address {
580
580
  */
581
581
  readonly externalId?: string;
582
582
  /**
583
- * Custom Fields for the address.
583
+ * Custom Fields defined for the Address. Custom Fields can only be applied to `shippingAddress`.
584
584
  *
585
585
  */
586
586
  readonly custom?: Custom;
@@ -317,6 +317,11 @@ export interface Parcel {
317
317
  *
318
318
  */
319
319
  readonly items?: DeliveryItem[];
320
+ /**
321
+ * The representation to be sent to the server when creating a resource with custom fields.
322
+ *
323
+ */
324
+ readonly custom?: Custom;
320
325
  }
321
326
  export interface Delivery {
322
327
  /**
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@commercetools/importapi-sdk",
7
- "version": "4.3.0",
7
+ "version": "4.4.1",
8
8
  "engines": {
9
9
  "node": ">=14"
10
10
  },
@@ -32,16 +32,15 @@
32
32
  "./dist/commercetools-importapi-sdk.esm.js": "./dist/commercetools-importapi-sdk.browser.esm.js"
33
33
  },
34
34
  "dependencies": {
35
- "@commercetools/sdk-client-v2": "^2.1.4",
35
+ "@commercetools/sdk-client-v2": "^2.1.6",
36
36
  "@commercetools/sdk-middleware-auth": "^7.0.0",
37
37
  "@commercetools/sdk-middleware-http": "^7.0.0",
38
- "@commercetools/sdk-middleware-logger": "^3.0.0",
39
- "querystring": "^0.2.1"
38
+ "@commercetools/sdk-middleware-logger": "^3.0.0"
40
39
  },
41
40
  "devDependencies": {
42
- "@types/uuid": "9.0.0",
41
+ "@types/uuid": "9.0.1",
43
42
  "organize-imports-cli": "0.10.0",
44
- "tsconfig-replace-paths": "0.0.11",
43
+ "tsconfig-replace-paths": "0.0.14",
45
44
  "uuid": "9.0.0"
46
45
  },
47
46
  "scripts": {