@commercetools/importapi-sdk 5.14.0 → 5.15.0

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
+ ## 5.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#844](https://github.com/commercetools/commercetools-sdk-typescript/pull/844) [`03e722b`](https://github.com/commercetools/commercetools-sdk-typescript/commit/03e722bbdc795382f4d8325eeb196ed772bf21cd) Thanks [@ct-sdks](https://github.com/apps/ct-sdks)! - **Import changes**
8
+
9
+ <details>
10
+ <summary>Added Type(s)</summary>
11
+
12
+ - added type `InvalidFieldsUpdateError`
13
+ - added type `NewMasterVariantAdditionNotAllowedError`
14
+ - added type `ReferencedResourceNotFound`
15
+ </details>
16
+
17
+ <details>
18
+ <summary>Deprecated Property(s)</summary>
19
+
20
+ - property `PriceImport::publish` is removed
21
+ - property `ProductVariantImport::publish` is removed
22
+ </details>
23
+
24
+ <details>
25
+ <summary>Added Enum(s)</summary>
26
+
27
+ - added enum `customer-group` to type `CustomFieldReferenceValue`
28
+ </details>
29
+
3
30
  ## 5.14.0
4
31
 
5
32
  ### Minor Changes
@@ -10,7 +10,7 @@ import { ImportResource, LocalizedString } from "./common.js";
10
10
  */
11
11
  export type TypeTextInputHint = 'MultiLine' | 'SingleLine' | string;
12
12
  /**
13
- * IDs indicating the [customizable resources and data types](/../api/projects/types#list-of-customizable-data-types). Maps to `Type.resourceTypeId`.
13
+ * With Types, you can model your own Custom Fields on the following resources and data types. Maps to `Type.resourceTypeId`.
14
14
  *
15
15
  */
16
16
  export type ResourceTypeId = 'address' | 'asset' | 'business-unit' | 'cart-discount' | 'category' | 'channel' | 'custom-line-item' | 'customer' | 'customer-group' | 'discount-code' | 'inventory-entry' | 'line-item' | 'order' | 'order-delivery' | 'order-edit' | 'order-parcel' | 'order-return-item' | 'payment' | 'payment-interface-interaction' | 'product-price' | 'product-selection' | 'quote' | 'review' | 'shipping' | 'shipping-method' | 'shopping-list' | 'shopping-list-text-line-item' | 'standalone-price' | 'store' | 'transaction' | string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@commercetools/importapi-sdk",
7
- "version": "5.14.0",
7
+ "version": "5.15.0",
8
8
  "engines": {
9
9
  "node": ">=14"
10
10
  },