@akinon/next 1.42.0-rc.10 → 1.42.0-rc.11

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,11 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.42.0-rc.11
4
+
5
+ ### Minor Changes
6
+
7
+ - 8d9ac9a: ZERO-2794: Add field to order type
8
+
3
9
  ## 1.42.0-rc.10
4
10
 
5
11
  ## 1.42.0-rc.9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.42.0-rc.10",
4
+ "version": "1.42.0-rc.11",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "set-cookie-parser": "2.6.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@akinon/eslint-plugin-projectzero": "1.42.0-rc.10",
33
+ "@akinon/eslint-plugin-projectzero": "1.42.0-rc.11",
34
34
  "@types/react-redux": "7.1.30",
35
35
  "@types/set-cookie-parser": "2.4.7",
36
36
  "@typescript-eslint/eslint-plugin": "6.7.4",
@@ -109,8 +109,13 @@ export interface Order {
109
109
  shipping_option: number;
110
110
  tracking_number: string;
111
111
  tracking_url: string;
112
+ [key: string]: any;
112
113
  bank: {
114
+ pk: number;
115
+ name: string;
116
+ slug: string;
113
117
  logo: string;
118
+ [key: string]: any;
114
119
  };
115
120
  }
116
121