@akinon/next 1.48.0-rc.5 → 1.48.0-rc.7

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
  # @akinon/next
2
2
 
3
+ ## 1.48.0-rc.7
4
+
5
+ ### Minor Changes
6
+
7
+ - 26b809f: ZERO-2898: Add bags_fee property to PreOrder interface
8
+
9
+ ## 1.48.0-rc.6
10
+
11
+ ### Minor Changes
12
+
13
+ - 04115e5: ZERO-2898: Update PreOrder type
14
+
3
15
  ## 1.48.0-rc.5
4
16
 
5
17
  ### Minor Changes
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.48.0-rc.5",
4
+ "version": "1.48.0-rc.7",
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.48.0-rc.5",
33
+ "@akinon/eslint-plugin-projectzero": "1.48.0-rc.7",
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",
@@ -2,6 +2,7 @@ import { Address } from './address';
2
2
  import { Basket } from './basket';
3
3
  import { RetailStore } from './misc';
4
4
  import { PaymentOption } from './order';
5
+ import { Product } from './product';
5
6
 
6
7
  export enum CheckoutStep {
7
8
  Shipping = 'shipping',
@@ -97,6 +98,8 @@ export interface PreOrder {
97
98
  credit_payment_option?: CheckoutCreditPaymentOption;
98
99
  data_source_shipping_options: any;
99
100
  attribute_based_shipping_options?: AttributeBasedShippingOption[];
101
+ bags?: Product[];
102
+ bags_fee: string;
100
103
  }
101
104
 
102
105
  export interface GuestLoginFormParams {