@shopby/shop-sdk 1.30.2 → 1.30.4
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,20 @@
|
|
|
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.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.3...v1.30.4) (2023-01-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add a util type named Nullable ([#63](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/63)) ([b49990e](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/b49990e7ee67d1c5be5c9ae55dbb38ffc9d5b208))
|
|
11
|
+
|
|
12
|
+
### [1.30.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.2...v1.30.3) (2023-01-13)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* 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))
|
|
18
|
+
|
|
5
19
|
### [1.30.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.1...v1.30.2) (2023-01-11)
|
|
6
20
|
|
|
7
21
|
### [1.30.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.0...v1.30.1) (2023-01-09)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AgreementType, CountryCode, Week, Yn, DateYmdt, DateYmd, PhoneNumberString, NumberString } from '../../common';
|
|
1
|
+
import { AgreementType, CountryCode, Week, Yn, DateYmdt, DateYmd, PhoneNumberString, NumberString, Nullable } from '../../common';
|
|
2
2
|
import { ActionGroupType, AddressType, CashReceiptIssuePurposeType, DefaultOrderStatusType, DeliveryCompanyType, DeliveryConditionType, DeliveryPayType, DeliveryType, GroupDeliveryAmtType, OrderChannelType, OrderOptionType, OrderRequestType, PayType, PgType, ReceiptType, RecurringCycle, RecurringCycleType, ShippingAreaType, TaxType, Bank, BankLabel, Card } from './unions';
|
|
3
3
|
import { ClaimClassType, ClaimStatusType, ClaimTypeWithNone, NextActionType, RefundType, ReturnWayType } from '../claim/unions';
|
|
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: Nullable<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
|
-
|
|
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":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAkDA,cAAc,UAAU,CAAC;AAmHxB,CAAC"}
|