@shopby/shop-sdk 1.33.2 → 1.33.3

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.33.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.33.2...v1.33.3) (2023-01-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * modify RecurringPaymentDelivery type ([#78](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/78)) ([1ef95c3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/1ef95c3f125d5d51578b1ad06d952d6cc6dd400b))
11
+
5
12
  ### [1.33.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.33.1...v1.33.2) (2023-01-26)
6
13
 
7
14
 
@@ -144,10 +144,10 @@ export interface OrderSheetsProduct {
144
144
  productNo: number;
145
145
  }
146
146
  export interface RecurringPaymentDelivery {
147
- date: number;
148
- cycleType: RecurringCycleType;
149
- firstRecurringDate: string;
150
- cycle: RecurringCycle;
147
+ date: Nullable<number>;
148
+ cycleType: Nullable<RecurringCycleType>;
149
+ firstRecurringDate: Nullable<string>;
150
+ cycle: Nullable<RecurringCycle>;
151
151
  }
152
152
  /**
153
153
  * path: /order-sheets/{orderSheetNo}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.33.2",
3
+ "version": "1.33.3",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",