@commercetools/history-sdk 2.5.0 → 2.5.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,17 @@
|
|
|
1
1
|
# @commercetools/history-sdk
|
|
2
2
|
|
|
3
|
+
## 2.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#258](https://github.com/commercetools/commercetools-sdk-typescript/pull/258) [`ba52d38`](https://github.com/commercetools/commercetools-sdk-typescript/commit/ba52d38a0a00299de61f554ae753cfb984401d79) Thanks [@github-actions](https://github.com/apps/github-actions)! - Update generated SDKs
|
|
8
|
+
|
|
9
|
+
- add support for Standalone Prices
|
|
10
|
+
|
|
11
|
+
* [#266](https://github.com/commercetools/commercetools-sdk-typescript/pull/266) [`fd29fa7`](https://github.com/commercetools/commercetools-sdk-typescript/commit/fd29fa759f906040d76a889c2d3fbfbdf2ac6617) Thanks [@github-actions](https://github.com/apps/github-actions)! - Platform SDK updates:
|
|
12
|
+
|
|
13
|
+
- Fix /me/email/confirm arguments and return type (https://github.com/commercetools/commercetools-sdk-typescript/issues/274)
|
|
14
|
+
|
|
3
15
|
## 2.5.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ export interface Record {
|
|
|
49
49
|
readonly previousLabel: Label;
|
|
50
50
|
/**
|
|
51
51
|
* Shows the differences in the resource between `previousVersion` and `version`.
|
|
52
|
-
* The value is not identical to the actual array of update actions
|
|
52
|
+
* The value is not identical to the actual array of update actions sent and is not limited to update actions (see, for example, [Optimistic Concurrency Control](/general-concepts#optimistic-concurrency-control)).
|
|
53
53
|
*
|
|
54
54
|
*
|
|
55
55
|
*/
|
|
@@ -99,7 +99,7 @@ export interface RecordPagedQueryResponse {
|
|
|
99
99
|
*/
|
|
100
100
|
readonly total: number;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Number of [elements skipped](/../api/general-concepts#offset).
|
|
103
103
|
*
|
|
104
104
|
*
|
|
105
105
|
*/
|
|
@@ -2308,12 +2308,14 @@ export interface SetCountryChange {
|
|
|
2308
2308
|
*/
|
|
2309
2309
|
readonly change: string;
|
|
2310
2310
|
/**
|
|
2311
|
-
*
|
|
2311
|
+
* Two-digit country code as per [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
2312
|
+
*
|
|
2312
2313
|
*
|
|
2313
2314
|
*/
|
|
2314
2315
|
readonly previousValue: string;
|
|
2315
2316
|
/**
|
|
2316
|
-
*
|
|
2317
|
+
* Two-digit country code as per [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
2318
|
+
*
|
|
2317
2319
|
*
|
|
2318
2320
|
*/
|
|
2319
2321
|
readonly nextValue: string;
|
|
@@ -8,6 +8,7 @@ export interface LocalizedString {
|
|
|
8
8
|
}
|
|
9
9
|
export interface Address {
|
|
10
10
|
/**
|
|
11
|
+
* Unique ID of the Address.
|
|
11
12
|
*
|
|
12
13
|
*/
|
|
13
14
|
readonly id: string;
|
|
@@ -60,7 +61,8 @@ export interface Address {
|
|
|
60
61
|
*/
|
|
61
62
|
readonly state: string;
|
|
62
63
|
/**
|
|
63
|
-
*
|
|
64
|
+
* Two-digit country code as per [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
65
|
+
*
|
|
64
66
|
*
|
|
65
67
|
*/
|
|
66
68
|
readonly country: string;
|
|
@@ -478,7 +480,8 @@ export interface LineItem {
|
|
|
478
480
|
*/
|
|
479
481
|
export interface Location {
|
|
480
482
|
/**
|
|
481
|
-
*
|
|
483
|
+
* Two-digit country code as per [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
484
|
+
*
|
|
482
485
|
*
|
|
483
486
|
*/
|
|
484
487
|
readonly country: string;
|
|
@@ -489,7 +492,7 @@ export interface Location {
|
|
|
489
492
|
}
|
|
490
493
|
export interface Money {
|
|
491
494
|
/**
|
|
492
|
-
*
|
|
495
|
+
* Currency code compliant to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).
|
|
493
496
|
*
|
|
494
497
|
*
|
|
495
498
|
*/
|
|
@@ -809,7 +812,8 @@ export interface TaxRate {
|
|
|
809
812
|
*/
|
|
810
813
|
readonly includedInPrice: boolean;
|
|
811
814
|
/**
|
|
812
|
-
*
|
|
815
|
+
* Two-digit country code as per [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
816
|
+
*
|
|
813
817
|
*
|
|
814
818
|
*/
|
|
815
819
|
readonly country: string;
|
package/package.json
CHANGED
|
@@ -4,9 +4,15 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"name": "@commercetools/history-sdk",
|
|
7
|
-
"version": "2.5.
|
|
8
|
-
"description": "
|
|
9
|
-
"keywords": [
|
|
7
|
+
"version": "2.5.1",
|
|
8
|
+
"description": "Typescript SDK for Composable Commerce Audit Log features",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"commercetools",
|
|
11
|
+
"composable commerce",
|
|
12
|
+
"typescript",
|
|
13
|
+
"sdk",
|
|
14
|
+
"history"
|
|
15
|
+
],
|
|
10
16
|
"homepage": "https://github.com/commercetools/commercetools-typescript-sdks/packages/history-sdk",
|
|
11
17
|
"bugs": "https://github.com/commercetools/commercetools-typescript-sdks/issues",
|
|
12
18
|
"repository": {
|
|
@@ -30,7 +36,7 @@
|
|
|
30
36
|
"querystring": "^0.2.1"
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
33
|
-
"@commercetools/platform-sdk": "2.
|
|
39
|
+
"@commercetools/platform-sdk": "2.8.0",
|
|
34
40
|
"@types/uuid": "8.3.4",
|
|
35
41
|
"organize-imports-cli": "0.9.0",
|
|
36
42
|
"tsconfig-replace-paths": "0.0.11",
|