@wearejh/m2-pwa-checkout 0.19.0 → 0.20.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
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.20.0](https://github.com/WeareJH/mage-mono/compare/v0.19.0...v0.20.0) (2023-03-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @wearejh/m2-pwa-checkout
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [0.19.0](https://github.com/WeareJH/mage-mono/compare/v0.18.0...v0.19.0) (2023-03-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @wearejh/m2-pwa-checkout
|
|
@@ -85,7 +85,7 @@ export function getOrderIncrementId(action$: Observable<any>, state$: any, deps:
|
|
|
85
85
|
* The Order increment ID for
|
|
86
86
|
* Guest users.
|
|
87
87
|
*/
|
|
88
|
-
return getGuestJHOrderIDQuery({ entityId:
|
|
88
|
+
return getGuestJHOrderIDQuery({ entityId: orderId }, deps).pipe(
|
|
89
89
|
/**
|
|
90
90
|
* Handle the success response from the
|
|
91
91
|
* API query.
|
|
@@ -7,7 +7,7 @@ export const method = 'GET';
|
|
|
7
7
|
export const operationId = 'woodiesSalesOrderIdMapperServiceV1GetIncrementIdByEntityIdGet';
|
|
8
8
|
export const path = '/V1/get-increment-id/{entityId}';
|
|
9
9
|
export interface PathParams {
|
|
10
|
-
entityId:
|
|
10
|
+
entityId: number;
|
|
11
11
|
}
|
|
12
12
|
export type Response = Response200 | ResponseDefault;
|
|
13
13
|
export type Response200 = string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wearejh/m2-pwa-checkout",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "Shane Osbourne <shane.osbourne8@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wearejh/m2-pwa-addresses": "^0.
|
|
22
|
-
"@wearejh/m2-pwa-cart": "^0.
|
|
23
|
-
"@wearejh/m2-pwa-engine": "^0.
|
|
24
|
-
"@wearejh/m2-pwa-user": "^0.
|
|
25
|
-
"@wearejh/rx-form": "^0.
|
|
26
|
-
"@wearejh/swagger-rxjs": "^0.
|
|
21
|
+
"@wearejh/m2-pwa-addresses": "^0.20.0",
|
|
22
|
+
"@wearejh/m2-pwa-cart": "^0.20.0",
|
|
23
|
+
"@wearejh/m2-pwa-engine": "^0.20.0",
|
|
24
|
+
"@wearejh/m2-pwa-user": "^0.20.0",
|
|
25
|
+
"@wearejh/rx-form": "^0.20.0",
|
|
26
|
+
"@wearejh/swagger-rxjs": "^0.20.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@reach/dialog": "0.8.2"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "187f06965f8f6c3f9e6d5393c6526f3c76144b0a"
|
|
32
32
|
}
|