@shopby/shop-sdk 1.30.3 → 1.30.6

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,22 @@
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.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.5...v1.30.6) (2023-01-16)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 빌드 오류 수정 ([f1baac0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f1baac06c9c5e0205b79bb44c861756a4b4af038))
11
+
12
+ ### [1.30.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.4...v1.30.5) (2023-01-16)
13
+
14
+ ### [1.30.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.3...v1.30.4) (2023-01-13)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * 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))
20
+
5
21
  ### [1.30.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.2...v1.30.3) (2023-01-13)
6
22
 
7
23
 
@@ -1,10 +1,10 @@
1
1
  import { ResponseData } from '../../../types/http';
2
- import { Malls, MallsPartnersResponse, MallsSslResponse } from '../../../types/domain/admin';
2
+ import { Mall, MallsPartnersResponse, MallsSslResponse } from '../../../types/domain/admin';
3
3
  declare const admin: (httpRequest: Function) => {
4
4
  /**
5
5
  * Mall
6
6
  */
7
- getMalls(): Promise<ResponseData<Malls>>;
7
+ getMalls(): Promise<ResponseData<Mall>>;
8
8
  getMallsPartners(): Promise<ResponseData<MallsPartnersResponse[]>>;
9
9
  getMallsSsl(): Promise<ResponseData<MallsSslResponse[]>>;
10
10
  };
@@ -1,7 +1,7 @@
1
1
  import { CreateOptions, RequestOption } from '../types/http';
2
2
  export declare const create: ({ baseURL, headerOption, customHttpRequest, version, }: CreateOptions) => {
3
3
  admin: {
4
- getMalls(): Promise<import("../types/http").ResponseData<import("../types").Malls>>;
4
+ getMalls(): Promise<import("../types/http").ResponseData<import("../types").Mall>>;
5
5
  getMallsPartners(): Promise<import("../types/http").ResponseData<import("../types").MallsPartnersResponse[]>>;
6
6
  getMallsSsl(): Promise<import("../types/http").ResponseData<import("../types").MallsSslResponse[]>>;
7
7
  };
@@ -1 +1,2 @@
1
1
  export declare type ValueOf<T> = T[keyof T];
2
+ export declare type Nullable<T> = T | null;
@@ -1,8 +1,7 @@
1
1
  export declare type Yn = 'Y' | 'N';
2
2
  import { AGREEMENT_TYPE_MAP } from './../../src';
3
- export declare type PageTypes = 'MAIN' | 'COMMON_HEAD' | 'COMMON_FOOTER' | 'PRODUCT' | 'CART' | 'ORDER' | 'ORDER_COMPLETE';
4
- export declare type SearchTypes = 'ALL' | 'title' | 'content' | 'writer';
5
- export declare type DirectionTypes = 'ASC' | 'DESC';
3
+ export declare type PageType = 'MAIN' | 'COMMON_HEAD' | 'COMMON_FOOTER' | 'PRODUCT' | 'CART' | 'ORDER' | 'ORDER_COMPLETE';
4
+ export declare type InquirySearchType = 'ALL' | 'title' | 'content' | 'writer';
6
5
  export declare type InquiryStatus = 'ISSUED' | 'ANSWERED' | 'IN_PROGRESS' | 'ASKED';
7
6
  export declare type OrderByType = 'ADMIN_SETTING' | 'SALE' | 'LOW_PRICE' | 'HIGH_PRICE' | 'REVIEW' | 'REGISTER';
8
7
  export declare type SaleStatusType = 'READY_ONSALE' | 'ONSALE' | 'RESERVATION_AND_ONSALE';
@@ -1,4 +1,4 @@
1
- export interface Malls {
1
+ export interface Mall {
2
2
  memberJoinConfig?: MallsMemberJoinConfig;
3
3
  inquiryType?: MallsInquiryType[];
4
4
  bankAccountInfo?: MallsBankAccountInfo;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/claim/index.ts"],"names":[],"mappings":"AAyBA,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/claim/index.ts"],"names":[],"mappings":"AAiCA,cAAc,UAAU,CAAC"}
@@ -10,10 +10,10 @@ export interface GetCategoriesRequest extends RequestConfig {
10
10
  };
11
11
  }
12
12
  export interface CategoriesResponse {
13
- multiLevelCategories?: Array<CategoriesMultiLevelCategories>;
14
- flatCategories?: Array<CategoriesFlatCategories>;
13
+ multiLevelCategories?: Array<MultiLevelCategory>;
14
+ flatCategories?: Array<FlatCategory>;
15
15
  }
16
- export interface CategoriesFlatCategories {
16
+ export interface FlatCategory {
17
17
  depth5CategoryNo?: number;
18
18
  depth2DisplayOrder?: number;
19
19
  depth3Icon?: string;
@@ -41,31 +41,31 @@ export interface CategoriesFlatCategories {
41
41
  depth4Content?: string;
42
42
  depth3DisplayOrder?: number;
43
43
  }
44
- export interface CategoriesMultiLevelCategories {
44
+ export interface MultiLevelCategory {
45
45
  depth?: number;
46
- children?: Array<object | boolean | string | number>;
46
+ children?: Array<MultiLevelCategory>;
47
47
  icon?: string;
48
48
  categoryNo?: number;
49
49
  label?: string;
50
50
  content?: string;
51
51
  }
52
52
  export interface CategoriesCategoryNo {
53
- brands?: Array<CategoriesCategoryNoBrands>;
54
- multiLevelCategories?: Array<CategoriesMultiLevelCategories>;
55
- flatCategories?: Array<CategoriesFlatCategories>;
53
+ brands?: Array<Brand>;
54
+ multiLevelCategories?: Array<MultiLevelCategory>;
55
+ flatCategories?: Array<FlatCategory>;
56
56
  }
57
- export interface CategoriesCategoryNoBrands {
57
+ export interface Brand {
58
58
  productCnt?: number;
59
59
  name?: string;
60
60
  brandNo?: number;
61
61
  }
62
- export interface CategoryProductReviews {
62
+ export interface CategoryProductReview {
63
63
  rate?: number;
64
64
  reviewRatingResponses?: Array<object | boolean | string | number>;
65
65
  totalCount?: number;
66
- items?: Array<CategoryProductReviewsItems>;
66
+ items?: Array<CategoryProductReviewsItem>;
67
67
  }
68
- export interface CategoryProductReviewsItems {
68
+ export interface CategoryProductReviewsItem {
69
69
  productTotalCount?: number;
70
70
  myReview?: boolean;
71
71
  platformType?: string;
@@ -97,15 +97,15 @@ export interface CategoryProductReviewsItems {
97
97
  extraJson?: string;
98
98
  registerName?: string;
99
99
  }
100
- export interface DesignPopups {
100
+ export interface DesignPopup {
101
101
  displayUrl?: string;
102
102
  parameter?: string;
103
103
  }
104
104
  export interface DisplayEventsClose {
105
105
  totalCount?: number;
106
- items?: Array<DisplayEventsCloseItems>;
106
+ items?: Array<DisplayEventsCloseItem>;
107
107
  }
108
- export interface DisplayEventsCloseItems {
108
+ export interface DisplayEventsCloseItem {
109
109
  pcImageUrl?: string;
110
110
  startYmdt?: string;
111
111
  urlType?: string;
@@ -143,7 +143,7 @@ export interface DisplayEventsEventNoCoupon {
143
143
  alreadyIssuedImageUrl?: string;
144
144
  guideImageUrl?: string;
145
145
  soldOutImageUrl?: string;
146
- coupons?: Array<DisplayEventsEventNoCouponCoupons>;
146
+ coupons?: Array<EventCoupon>;
147
147
  dateExpiredImageUrl?: string;
148
148
  issuedImageUrl?: string;
149
149
  }
@@ -155,7 +155,7 @@ export interface DisplayEventsEventNoCouponCouponStatus {
155
155
  myIssuedCntToday?: number;
156
156
  totalIssuedCntToday?: number;
157
157
  }
158
- export interface DisplayEventsEventNoCouponCoupons {
158
+ export interface EventCoupon {
159
159
  downloadable?: boolean;
160
160
  couponName?: string;
161
161
  discountInfo?: DisplayEventsEventNoCouponDiscountInfo;
@@ -202,14 +202,14 @@ export interface DisplayEventsEventNoCouponUseConstraint {
202
202
  minDeliveryAmt?: number;
203
203
  maxSalePrice?: number;
204
204
  }
205
- export interface DisplayEventsEventNoHasCoupons {
205
+ export interface EventCouponByProduct {
206
206
  product?: boolean;
207
207
  partner?: boolean;
208
208
  event?: boolean;
209
209
  category?: boolean;
210
210
  brand?: boolean;
211
211
  }
212
- export interface DisplayEventsEventNoOptionValues {
212
+ export interface DisplayEventsEventNoOptionValue {
213
213
  optionValue?: string;
214
214
  stockCnt?: number;
215
215
  mallProductNo?: number;
@@ -228,7 +228,7 @@ export interface DisplayEventsEventNoProducts {
228
228
  listImageUrls?: Array<object | boolean | string | number>;
229
229
  immediateDiscountAmt?: number;
230
230
  stickerLabels?: Array<object | boolean | string | number>;
231
- hasCoupons?: DisplayEventsEventNoHasCoupons;
231
+ eventCouponByProduct?: EventCouponByProduct;
232
232
  immediateDiscountUnitType?: string;
233
233
  additionDiscountUnitType?: string;
234
234
  frontDisplayYn?: boolean;
@@ -237,7 +237,7 @@ export interface DisplayEventsEventNoProducts {
237
237
  sectionProductEndYmdt?: string;
238
238
  adult?: boolean;
239
239
  displayCategoryNos?: string;
240
- optionValues?: Array<DisplayEventsEventNoOptionValues>;
240
+ optionValues?: Array<DisplayEventsEventNoOptionValue>;
241
241
  productManagementCd?: string;
242
242
  reservationData?: DisplayEventsEventNoReservationData;
243
243
  deliveryConditionType?: string;
@@ -257,7 +257,7 @@ export interface DisplayEventsEventNoProducts {
257
257
  salePeriodType?: string;
258
258
  maxSalePrice?: number;
259
259
  promotionText?: string;
260
- stickerInfos?: Array<DisplayEventsEventNoStickerInfos>;
260
+ stickerInfos?: Array<DisplayEventsEventNoStickerInfo>;
261
261
  hsCode?: string;
262
262
  imageUrls?: Array<object | boolean | string | number>;
263
263
  brandNameEn?: string;
@@ -281,7 +281,7 @@ export interface DisplayEventsEventNoSection {
281
281
  label?: string;
282
282
  products?: Array<DisplayEventsEventNoProducts>;
283
283
  }
284
- export interface DisplayEventsEventNoStickerInfos {
284
+ export interface DisplayEventsEventNoStickerInfo {
285
285
  label?: string;
286
286
  type?: string;
287
287
  }
@@ -340,7 +340,7 @@ export interface DisplaySectionsIdsSectionIdRecommendedProducts {
340
340
  listImageUrls?: Array<object | boolean | string | number>;
341
341
  immediateDiscountAmt?: number;
342
342
  stickerLabels?: Array<object | boolean | string | number>;
343
- hasCoupons?: DisplayEventsEventNoHasCoupons;
343
+ eventCouponByProduct?: EventCouponByProduct;
344
344
  immediateDiscountUnitType?: string;
345
345
  additionDiscountUnitType?: string;
346
346
  frontDisplayYn?: boolean;
@@ -349,7 +349,7 @@ export interface DisplaySectionsIdsSectionIdRecommendedProducts {
349
349
  sectionProductEndYmdt?: string;
350
350
  adult?: boolean;
351
351
  displayCategoryNos?: string;
352
- optionValues?: Array<DisplayEventsEventNoOptionValues>;
352
+ optionValues?: Array<DisplayEventsEventNoOptionValue>;
353
353
  productManagementCd?: string;
354
354
  reservationData?: DisplaySectionsIdsSectionIdReservationData;
355
355
  deliveryConditionType?: string;
@@ -369,7 +369,7 @@ export interface DisplaySectionsIdsSectionIdRecommendedProducts {
369
369
  salePeriodType?: string;
370
370
  maxSalePrice?: number;
371
371
  promotionText?: string;
372
- stickerInfos?: Array<DisplayEventsEventNoStickerInfos>;
372
+ stickerInfos?: Array<DisplayEventsEventNoStickerInfo>;
373
373
  hsCode?: string;
374
374
  imageUrls?: Array<object | boolean | string | number>;
375
375
  brandNameEn?: string;
@@ -393,10 +393,10 @@ export interface DisplaySectionsSectionNo {
393
393
  imageUrl?: string;
394
394
  label?: string;
395
395
  sectionNo?: number;
396
- products?: Array<DisplaySectionsSectionNoProducts>;
396
+ products?: Array<DisplaySectionsSectionNoProduct>;
397
397
  promotionText?: string;
398
398
  }
399
- export interface DisplaySectionsSectionNoProducts {
399
+ export interface DisplaySectionsSectionNoProduct {
400
400
  minSalePrice?: number;
401
401
  likeCount?: number;
402
402
  totalReviewCount?: number;
@@ -410,7 +410,7 @@ export interface DisplaySectionsSectionNoProducts {
410
410
  listImageUrls?: Array<object | boolean | string | number>;
411
411
  immediateDiscountAmt?: number;
412
412
  stickerLabels?: Array<object | boolean | string | number>;
413
- hasCoupons?: DisplayEventsEventNoHasCoupons;
413
+ eventCouponByProduct?: EventCouponByProduct;
414
414
  immediateDiscountUnitType?: string;
415
415
  additionDiscountUnitType?: string;
416
416
  frontDisplayYn?: boolean;
@@ -419,7 +419,7 @@ export interface DisplaySectionsSectionNoProducts {
419
419
  sectionProductEndYmdt?: string;
420
420
  adult?: boolean;
421
421
  displayCategoryNos?: string;
422
- optionValues?: Array<DisplayEventsEventNoOptionValues>;
422
+ optionValues?: Array<DisplayEventsEventNoOptionValue>;
423
423
  productManagementCd?: string;
424
424
  reservationData?: DisplaySectionsSectionNoReservationData;
425
425
  deliveryConditionType?: string;
@@ -439,7 +439,7 @@ export interface DisplaySectionsSectionNoProducts {
439
439
  salePeriodType?: string;
440
440
  maxSalePrice?: number;
441
441
  promotionText?: string;
442
- stickerInfos?: Array<DisplayEventsEventNoStickerInfos>;
442
+ stickerInfos?: Array<DisplayEventsEventNoStickerInfo>;
443
443
  hsCode?: string;
444
444
  imageUrls?: Array<object | boolean | string | number>;
445
445
  brandNameEn?: string;
@@ -653,7 +653,7 @@ export interface ProfileProductInquiriesAnswer {
653
653
  memberId: string;
654
654
  inquiryNo: number;
655
655
  }
656
- export interface ProductReviewsConfigurations {
656
+ export interface ProductReviewsConfiguration {
657
657
  canReply?: boolean;
658
658
  boardType?: string;
659
659
  memberWriteable?: boolean;
@@ -665,11 +665,11 @@ export interface ProductReviewsConfigurations {
665
665
  guestWriteable?: boolean;
666
666
  canAttach?: boolean;
667
667
  }
668
- export interface ProductsInquiries {
668
+ export interface GetProductsInquiriesResponse {
669
669
  totalCount?: number;
670
- items?: Array<ProductsInquiriesItems>;
670
+ items?: Array<ProductInquiry>;
671
671
  }
672
- export interface ProductsInquiriesItems {
672
+ export interface ProductInquiry {
673
673
  orderNo?: number;
674
674
  replied?: boolean;
675
675
  myInquiry?: boolean;
@@ -690,7 +690,7 @@ export interface ProductsInquiriesItems {
690
690
  registerYmdt?: string;
691
691
  inquiryNo?: number;
692
692
  }
693
- export interface ProductsInquiriesConfigurations {
693
+ export interface GetProductsInquiriesConfigurationsResponse {
694
694
  canReply?: boolean;
695
695
  boardType?: string;
696
696
  memberWriteable?: boolean;
@@ -723,7 +723,7 @@ export interface ProductsProductNoInquiries {
723
723
  export interface ProductsProductNoInquiriesInquiryNo {
724
724
  productManagementCd?: string;
725
725
  replied?: boolean;
726
- answers?: Array<ProductsProductNoInquiriesInquiryNoAnswers>;
726
+ answers?: Array<ProductsProductNoInquiriesInquiryNoAnswer>;
727
727
  type?: string;
728
728
  title?: string;
729
729
  productName?: string;
@@ -748,7 +748,7 @@ export interface ProductsProductNoInquiriesInquiryNo {
748
748
  displayStatusType?: string;
749
749
  inquiryNo?: number;
750
750
  }
751
- export interface ProductsProductNoInquiriesInquiryNoAnswers {
751
+ export interface ProductsProductNoInquiriesInquiryNoAnswer {
752
752
  administrator?: boolean;
753
753
  updateYmdt?: string;
754
754
  adminType?: string;
@@ -761,13 +761,13 @@ export interface ProductsProductNoInquiriesInquiryNoAnswers {
761
761
  memberId?: string;
762
762
  inquiryNo?: number;
763
763
  }
764
- export interface ProductsProductNoProductReviews {
764
+ export interface ProductsProductNoProductReview {
765
765
  rate?: number;
766
766
  reviewRatingResponses?: Array<ProductsProductNoProductReviewsReviewRatingResponses>;
767
767
  totalCount?: number;
768
- items?: Array<ProductsProductNoProductReviewsItems>;
768
+ items?: Array<ProductsProductNoProductReviewsItem>;
769
769
  }
770
- export interface ProductsProductNoProductReviewsItems {
770
+ export interface ProductsProductNoProductReviewsItem {
771
771
  productTotalCount?: number;
772
772
  myReview?: boolean;
773
773
  platformType?: string;
@@ -802,7 +802,7 @@ export interface ProductsProductNoProductReviewsItems {
802
802
  export interface ProductsProductNoProductReviewsOrderedOption {
803
803
  optionType?: string;
804
804
  optionTitle?: string;
805
- inputs?: Array<ProductsProductNoProductReviewsOrderedOptionInputs>;
805
+ inputs?: Array<ProductsProductNoProductReviewsOrderedOptionInput>;
806
806
  orderStatusType?: string;
807
807
  optionValue?: string;
808
808
  orderCnt?: number;
@@ -811,7 +811,7 @@ export interface ProductsProductNoProductReviewsOrderedOption {
811
811
  optionUsed?: boolean;
812
812
  orderOptionNo?: number;
813
813
  }
814
- export interface ProductsProductNoProductReviewsOrderedOptionInputs {
814
+ export interface ProductsProductNoProductReviewsOrderedOptionInput {
815
815
  inputValue?: string;
816
816
  inputLabel?: string;
817
817
  }
@@ -867,7 +867,7 @@ export interface ProductsProductNoProductReviewsReviewNo {
867
867
  export interface ProductsProductNoProductReviewsReviewNoOrderedOption {
868
868
  optionType?: string;
869
869
  optionTitle?: string;
870
- inputs?: Array<ProductsProductNoProductReviewsOrderedOptionInputs>;
870
+ inputs?: Array<ProductsProductNoProductReviewsOrderedOptionInput>;
871
871
  orderStatusType?: string;
872
872
  optionValue?: string;
873
873
  orderCnt?: number;
@@ -890,7 +890,7 @@ export interface ProductsProductNoProductReviewsReviewNoReport {
890
890
  reportReasonCd?: string;
891
891
  content?: string;
892
892
  }
893
- export interface ProductsProductNoReviewableOptions {
893
+ export interface ProductsProductNoReviewableOption {
894
894
  item?: Array<ProductsProductNoReviewableOptionsItem>;
895
895
  reviewable?: boolean;
896
896
  }
@@ -898,11 +898,11 @@ export interface ProductsProductNoReviewableOptionsItem {
898
898
  mallOptionNo?: number;
899
899
  orderProductOptionNo?: number;
900
900
  }
901
- export interface ProductsProductReviews {
901
+ export interface ProductsProductReview {
902
902
  totalCount?: number;
903
- items?: Array<ProductsProductReviewsItems>;
903
+ items?: Array<ProductsProductReviewsItem>;
904
904
  }
905
- export interface ProductsProductReviewsItems {
905
+ export interface ProductsProductReviewsItem {
906
906
  myReview?: boolean;
907
907
  bestReviewYn?: string;
908
908
  rate?: number;
@@ -923,7 +923,7 @@ export interface ProductsProductReviewsOrderedOption {
923
923
  }
924
924
  export interface ProfileOrderOptionsProductReviewable {
925
925
  totalCount?: number;
926
- items?: Array<ProfileOrderOptionsProductReviewableItems>;
926
+ items?: Array<ProfileOrderOptionsProductReviewableItem>;
927
927
  }
928
928
  export interface ProfileOrderOptionsProductReviewableDelivery {
929
929
  deliveryCompanyTypeLabel?: string;
@@ -931,14 +931,14 @@ export interface ProfileOrderOptionsProductReviewableDelivery {
931
931
  retrieveInvoiceUrl?: string;
932
932
  invoiceNo?: string;
933
933
  }
934
- export interface ProfileOrderOptionsProductReviewableInputs {
934
+ export interface ProfileOrderOptionsProductReviewableInput {
935
935
  inputLabel?: string;
936
936
  inputValue?: string;
937
937
  }
938
- export interface ProfileOrderOptionsProductReviewableItems {
938
+ export interface ProfileOrderOptionsProductReviewableItem {
939
939
  claimNo?: number;
940
940
  reservationDeliveryYmdt?: string;
941
- inputs?: Array<ProfileOrderOptionsProductReviewableInputs>;
941
+ inputs?: Array<ProfileOrderOptionsProductReviewableInput>;
942
942
  deliverable?: boolean;
943
943
  optionUsed?: boolean;
944
944
  productName?: string;
@@ -948,7 +948,7 @@ export interface ProfileOrderOptionsProductReviewableItems {
948
948
  deliveryInternationalYn?: boolean;
949
949
  price?: ProfileOrderOptionsProductReviewablePrice;
950
950
  imageUrl?: string;
951
- nextActions?: Array<ProfileOrderOptionsProductReviewableNextActions>;
951
+ nextActions?: Array<ProfileOrderOptionsProductReviewableNextAction>;
952
952
  reservation?: boolean;
953
953
  refundable?: boolean;
954
954
  optionNo?: number;
@@ -969,7 +969,7 @@ export interface ProfileOrderOptionsProductReviewableItems {
969
969
  optionManagementCd?: string;
970
970
  optionName?: string;
971
971
  }
972
- export interface ProfileOrderOptionsProductReviewableNextActions {
972
+ export interface ProfileOrderOptionsProductReviewableNextAction {
973
973
  nextActionType?: string;
974
974
  uri?: string;
975
975
  }
@@ -998,7 +998,7 @@ export interface ProfileProductInquiries {
998
998
  export interface ProfileProductInquiriesItems {
999
999
  productManagementCd?: string;
1000
1000
  replied?: boolean;
1001
- answers?: Array<ProductsProductNoInquiriesInquiryNoAnswers>;
1001
+ answers?: Array<ProductsProductNoInquiriesInquiryNoAnswer>;
1002
1002
  type?: string;
1003
1003
  title?: string;
1004
1004
  productName?: string;
@@ -1,5 +1,5 @@
1
1
  import { RequestConfig } from '../../http';
2
- import { DirectionTypes, InquiryStatus, PageTypes, SearchTypes } from '../../common/unions';
2
+ import { InquiryStatus, PageType, InquirySearchType } from '../../common/unions';
3
3
  import { DateYmd, DateYmdt } from '../../common';
4
4
  import { AccumulationReasonType, ProfileAccumulationsItems } from './accumulation';
5
5
  import { OptionalAccessTokenRequest } from '../../http';
@@ -271,7 +271,7 @@ export interface GetInquiriesRequest {
271
271
  startYmd?: string;
272
272
  endYmd?: string;
273
273
  keyward?: string;
274
- searchType?: SearchTypes;
274
+ searchType?: InquirySearchType;
275
275
  };
276
276
  }
277
277
  export interface GetInquiriesResponse {
@@ -384,12 +384,12 @@ export interface InquiriesInquiryNoInquiryType {
384
384
  }
385
385
  export interface PageScriptsRequest extends RequestConfig {
386
386
  queryString: {
387
- pageTypes: PageTypes;
387
+ pageTypes: PageType;
388
388
  };
389
389
  }
390
390
  export interface PageScriptsResponse {
391
391
  deviceType: string;
392
- pageType: PageTypes;
392
+ pageType: PageType;
393
393
  pageTypeLabel: string;
394
394
  content: string;
395
395
  }
@@ -400,7 +400,7 @@ export interface GetProfileAccumulationsRequest extends OptionalAccessTokenReque
400
400
  accumulationReason?: AccumulationReasonType;
401
401
  startYmd?: DateYmd;
402
402
  endYmd?: DateYmd;
403
- direction?: DirectionTypes;
403
+ direction?: DirectionType;
404
404
  };
405
405
  }
406
406
  export interface GetProfileAccumulationsResponse {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/manage/index.ts"],"names":[],"mappings":"AAoBA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/manage/index.ts"],"names":[],"mappings":"AAmBA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
@@ -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[];
@@ -15,7 +15,7 @@ import { ProductNestingCategory } from './category';
15
15
  import { ProductDeliveryDate, ProductDeliveryFee } from './delivery';
16
16
  import { Partner } from './partner';
17
17
  import { MallsCategoriesMultiLevelCategories } from '../admin';
18
- import { DisplayEventsEventNoHasCoupons, DisplayEventsEventNoOptionValues, DisplayEventsEventNoReservationData } from '../display';
18
+ import { EventCouponByProduct, DisplayEventsEventNoOptionValue, DisplayEventsEventNoReservationData } from '../display';
19
19
  export * from './core';
20
20
  export * from './amount';
21
21
  export * from './category';
@@ -112,7 +112,7 @@ interface getProductSearchResponseItems {
112
112
  listImageUrls: Array<object | boolean | string | number>;
113
113
  immediateDiscountAmt: number;
114
114
  stickerLabels: Array<object | boolean | string | number>;
115
- hasCoupons: DisplayEventsEventNoHasCoupons;
115
+ eventCouponByProduct: EventCouponByProduct;
116
116
  immediateDiscountUnitType: string;
117
117
  additionDiscountUnitType: string;
118
118
  frontDisplayYn: boolean;
@@ -122,7 +122,7 @@ interface getProductSearchResponseItems {
122
122
  sectionProductEndYmdt: string;
123
123
  isSoldOut: boolean;
124
124
  adult: boolean;
125
- optionValues: Array<DisplayEventsEventNoOptionValues>;
125
+ optionValues: Array<DisplayEventsEventNoOptionValue>;
126
126
  displayCategoryNos: string;
127
127
  productManagementCd: string;
128
128
  reservationData: DisplayEventsEventNoReservationData;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/product/index.ts"],"names":[],"mappings":"AA2CA,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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/product/index.ts"],"names":[],"mappings":"AA0CA,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"}
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.6",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",