@akinon/eslint-plugin-projectzero 1.100.0-rc.72 → 1.101.0-rc.73
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,8 +1,6 @@
|
|
|
1
1
|
# @akinon/eslint-plugin-projectzero
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
4
|
-
|
|
5
|
-
## 1.100.0-rc.71
|
|
3
|
+
## 1.101.0-rc.73
|
|
6
4
|
|
|
7
5
|
### Minor Changes
|
|
8
6
|
|
|
@@ -15,6 +13,12 @@
|
|
|
15
13
|
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
16
14
|
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
17
15
|
|
|
16
|
+
## 1.100.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- e57cd93: ZERO-3460: prevent installment loop on payment method switch
|
|
21
|
+
|
|
18
22
|
## 1.99.0
|
|
19
23
|
|
|
20
24
|
### Minor Changes
|
|
@@ -4,6 +4,7 @@ const utils_1 = require("@typescript-eslint/utils");
|
|
|
4
4
|
const CORRECT_PRE_ORDER_MIDDLEWARE_ORDER = [
|
|
5
5
|
'shippingStepMiddleware',
|
|
6
6
|
'installmentOptionMiddleware',
|
|
7
|
+
'paymentOptionResetMiddleware',
|
|
7
8
|
'paymentOptionMiddleware',
|
|
8
9
|
'attributeBasedShippingOptionMiddleware',
|
|
9
10
|
'dataSourceShippingOptionMiddleware',
|
package/package.json
CHANGED
|
@@ -8,6 +8,7 @@ import { RuleContext } from '@typescript-eslint/utils/dist/ts-eslint';
|
|
|
8
8
|
const CORRECT_PRE_ORDER_MIDDLEWARE_ORDER = [
|
|
9
9
|
'shippingStepMiddleware',
|
|
10
10
|
'installmentOptionMiddleware',
|
|
11
|
+
'paymentOptionResetMiddleware',
|
|
11
12
|
'paymentOptionMiddleware',
|
|
12
13
|
'attributeBasedShippingOptionMiddleware',
|
|
13
14
|
'dataSourceShippingOptionMiddleware',
|