@shopby/shop-sdk 1.30.3 → 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,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.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
+
5
12
  ### [1.30.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.2...v1.30.3) (2023-01-13)
6
13
 
7
14
 
@@ -1 +1,2 @@
1
1
  export declare type ValueOf<T> = T[keyof T];
2
+ export declare type Nullable<T> = T | null;
@@ -1,4 +1,4 @@
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';
@@ -172,7 +172,7 @@ export interface GetOrderSheetsOrderSheetNoResponse {
172
172
  pgTypes: PgType[];
173
173
  }>;
174
174
  tradeBankAccountInfos: TradeBankAccountInfo[];
175
- invalidProducts?: OrderProduct[];
175
+ invalidProducts: Nullable<OrderProduct[]>;
176
176
  freeGiftInfos: FreeGiftInfo[];
177
177
  ordererContact: OrdererContact;
178
178
  agreementTypes: AgreementType[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.30.3",
3
+ "version": "1.30.4",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",