@shopby/shop-sdk 1.78.72 → 1.78.74

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.
@@ -220,7 +220,9 @@ export interface ClaimOption {
220
220
  productNameEn: string;
221
221
  optionName: string;
222
222
  optionManagementCd: string;
223
- baseProductNo?: number;
223
+ baseProductNo: Nullable<number>;
224
+ baseProductName: Nullable<string>;
225
+ isExtraProduct: boolean;
224
226
  }
225
227
  export interface ClaimNextAction {
226
228
  nextActionType: NextActionType;
@@ -67,8 +67,6 @@ export interface CartOrderProduct {
67
67
  hsCode: string;
68
68
  brandNameEn: string;
69
69
  isRequiredOption: boolean;
70
- baseProductNo?: number;
71
- isExtraProduct: boolean;
72
70
  extraProductOnly: boolean;
73
71
  }
74
72
  export interface CartPrice {
@@ -464,6 +462,8 @@ export interface OrderProductOption {
464
462
  cartNo: number;
465
463
  productNo: number;
466
464
  isRequiredOption: boolean;
465
+ baseProductNo: Nullable<number>;
466
+ isExtraProduct: boolean;
467
467
  }
468
468
  export interface SetOption {
469
469
  usesOption: boolean;
@@ -940,7 +940,7 @@ export interface OrderOptionsGroupByDeliveryItem {
940
940
  receiverContact1: string;
941
941
  receiverContact2: string;
942
942
  receiverJibunAddress?: string;
943
- orderOptions: OrderOption[];
943
+ orderOptions: ProfileOrderOption[];
944
944
  partnerName: string;
945
945
  receiverName: string;
946
946
  deliveryCompanyTypeLabel?: string;
@@ -955,7 +955,8 @@ export interface OrderOptionsGroupByDeliveryItem {
955
955
  deliveryAmt: number;
956
956
  returnDeliveryAmt: number;
957
957
  shippingMethodType?: string;
958
- baseProductNo?: number;
958
+ baseProductNo: Nullable<number>;
959
+ baseProductName: Nullable<string>;
959
960
  }
960
961
  export interface OrderOption {
961
962
  reservationDeliveryYmdt?: DateYmdt;
@@ -998,7 +999,11 @@ export interface OrderOption {
998
999
  productNameEn?: string;
999
1000
  optionManagementCd?: string;
1000
1001
  optionName: string;
1001
- baseProductNo?: number;
1002
+ baseProductNo: Nullable<number>;
1003
+ baseProductName: Nullable<string>;
1004
+ }
1005
+ export interface ProfileOrderOption extends OrderOption {
1006
+ isExtraProduct: boolean;
1002
1007
  }
1003
1008
  export interface OrderStatusDate {
1004
1009
  reviewableYmdt: DateYmdt;
@@ -3,7 +3,7 @@ import { ProductFreeGiftCondition, ProductStickerInfo } from './core/index';
3
3
  import { ShippingAreaType, DeliveryConditionType } from './../order/unions';
4
4
  import { BrandNameType, PaymentMeansType, ProductSalePeriodType, ProductType, SaleStatus } from './core/unions/index';
5
5
  import { OptionalAccessTokenRequest, RequestConfig } from '../../http';
6
- import { OptionInputMatchingType, OptionSelectType, OptionType } from './option/unions';
6
+ import { OptionInputMatchingType, OptionSaleType, OptionSelectType, OptionType } from './option/unions';
7
7
  import { ProductFlatOption, ProductMultiLevelOption, ProductOptionInput } from './option';
8
8
  import { ProductReservation } from './reservation';
9
9
  import { RentalInfo } from './rental';
@@ -357,6 +357,7 @@ export interface ExtraProductFlatOption {
357
357
  addPrice: number;
358
358
  buyPrice: number;
359
359
  stockCnt: number;
360
+ saleType: OptionSaleType;
360
361
  }
361
362
  export interface ExtraProductMultiLevelOptionBase {
362
363
  optionName: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/product/index.ts"],"names":[],"mappings":"AAoDA,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/product/index.ts"],"names":[],"mappings":"AAqDA,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.78.72",
3
+ "version": "1.78.74",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",