@shopby/shop-sdk 1.30.2 → 1.30.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.30.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.2...v1.30.3) (2023-01-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add RentalInfo Type & modify incorrect type ([#63](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/63)) ([fd11a34](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/fd11a343814c117fc565590d0b500c7e9825754f))
11
+
5
12
  ### [1.30.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.1...v1.30.2) (2023-01-11)
6
13
 
7
14
  ### [1.30.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.0...v1.30.1) (2023-01-09)
@@ -4,6 +4,7 @@ import { ClaimClassType, ClaimStatusType, ClaimTypeWithNone, NextActionType, Ref
4
4
  import { ClaimAddress, ClaimReasonTypeInfo, ExchangePayInfo } from '../../domain/claim';
5
5
  import { OptionalAccessTokenRequest } from '../../http';
6
6
  import { OptionSelectType } from "../product/option/unions";
7
+ import { RentalInfo } from '../../domain/product';
7
8
  export * from './unions';
8
9
  /**
9
10
  * path: /cart
@@ -160,6 +161,7 @@ export interface GetOrderSheetsOrderSheetNoRequest extends OptionalAccessTokenRe
160
161
  };
161
162
  }
162
163
  export interface GetOrderSheetsOrderSheetNoResponse {
164
+ rentalInfos: Omit<RentalInfo, 'creditRating'>[];
163
165
  deliveryGroups: DeliveryGroup[];
164
166
  sellerPrivacyUsagePartners: Array<{
165
167
  partnerName: string;
@@ -170,10 +172,10 @@ export interface GetOrderSheetsOrderSheetNoResponse {
170
172
  pgTypes: PgType[];
171
173
  }>;
172
174
  tradeBankAccountInfos: TradeBankAccountInfo[];
173
- invalidProducts: OrderProduct[];
175
+ invalidProducts?: OrderProduct[];
174
176
  freeGiftInfos: FreeGiftInfo[];
175
177
  ordererContact: OrdererContact;
176
- agreementTypes: AgreementType;
178
+ agreementTypes: AgreementType[];
177
179
  requireCustomsIdNumber: boolean;
178
180
  lastPayType: PayType;
179
181
  orderSheetPromotionSummary?: OrderSheetPromotionSummary;
@@ -312,9 +314,9 @@ export interface OrderProduct {
312
314
  export interface DeliveryDate {
313
315
  period: {
314
316
  startYmdt: string;
315
- endYmdy: string;
317
+ endYmdt: string;
316
318
  };
317
- daysOfWeek: Week;
319
+ daysOfWeek: Week[];
318
320
  daysAfterPurchase: number;
319
321
  }
320
322
  export interface OrderProductOption {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAiDA,cAAc,UAAU,CAAC;AAmHxB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAkDA,cAAc,UAAU,CAAC;AAmHxB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.30.2",
3
+ "version": "1.30.3",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",