@shopby/shop-sdk 1.30.4 → 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 +9 -0
- package/build/src/domain/admin/index.d.ts +2 -2
- package/build/src/index.d.ts +1 -1
- package/build/types/common/unions.d.ts +2 -3
- package/build/types/domain/admin/index.d.ts +1 -1
- package/build/types/domain/claim/index.js.map +1 -1
- package/build/types/domain/display/index.d.ts +55 -55
- package/build/types/domain/manage/index.d.ts +5 -5
- package/build/types/domain/manage/index.js.map +1 -1
- package/build/types/domain/product/index.d.ts +3 -3
- package/build/types/domain/product/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
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
|
+
|
|
5
14
|
### [1.30.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.30.3...v1.30.4) (2023-01-13)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ResponseData } from '../../../types/http';
|
|
2
|
-
import {
|
|
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<
|
|
7
|
+
getMalls(): Promise<ResponseData<Mall>>;
|
|
8
8
|
getMallsPartners(): Promise<ResponseData<MallsPartnersResponse[]>>;
|
|
9
9
|
getMallsSsl(): Promise<ResponseData<MallsSslResponse[]>>;
|
|
10
10
|
};
|
package/build/src/index.d.ts
CHANGED
|
@@ -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").
|
|
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,8 +1,7 @@
|
|
|
1
1
|
export declare type Yn = 'Y' | 'N';
|
|
2
2
|
import { AGREEMENT_TYPE_MAP } from './../../src';
|
|
3
|
-
export declare type
|
|
4
|
-
export declare type
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/claim/index.ts"],"names":[],"mappings":"
|
|
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<
|
|
14
|
-
flatCategories?: Array<
|
|
13
|
+
multiLevelCategories?: Array<MultiLevelCategory>;
|
|
14
|
+
flatCategories?: Array<FlatCategory>;
|
|
15
15
|
}
|
|
16
|
-
export interface
|
|
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
|
|
44
|
+
export interface MultiLevelCategory {
|
|
45
45
|
depth?: number;
|
|
46
|
-
children?: Array<
|
|
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<
|
|
54
|
-
multiLevelCategories?: Array<
|
|
55
|
-
flatCategories?: Array<
|
|
53
|
+
brands?: Array<Brand>;
|
|
54
|
+
multiLevelCategories?: Array<MultiLevelCategory>;
|
|
55
|
+
flatCategories?: Array<FlatCategory>;
|
|
56
56
|
}
|
|
57
|
-
export interface
|
|
57
|
+
export interface Brand {
|
|
58
58
|
productCnt?: number;
|
|
59
59
|
name?: string;
|
|
60
60
|
brandNo?: number;
|
|
61
61
|
}
|
|
62
|
-
export interface
|
|
62
|
+
export interface CategoryProductReview {
|
|
63
63
|
rate?: number;
|
|
64
64
|
reviewRatingResponses?: Array<object | boolean | string | number>;
|
|
65
65
|
totalCount?: number;
|
|
66
|
-
items?: Array<
|
|
66
|
+
items?: Array<CategoryProductReviewsItem>;
|
|
67
67
|
}
|
|
68
|
-
export interface
|
|
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
|
|
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<
|
|
106
|
+
items?: Array<DisplayEventsCloseItem>;
|
|
107
107
|
}
|
|
108
|
-
export interface
|
|
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<
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
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<
|
|
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<
|
|
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
|
|
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
|
-
|
|
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<
|
|
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<
|
|
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<
|
|
396
|
+
products?: Array<DisplaySectionsSectionNoProduct>;
|
|
397
397
|
promotionText?: string;
|
|
398
398
|
}
|
|
399
|
-
export interface
|
|
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
|
-
|
|
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<
|
|
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<
|
|
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
|
|
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
|
|
668
|
+
export interface GetProductsInquiriesResponse {
|
|
669
669
|
totalCount?: number;
|
|
670
|
-
items?: Array<
|
|
670
|
+
items?: Array<ProductInquiry>;
|
|
671
671
|
}
|
|
672
|
-
export interface
|
|
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
|
|
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<
|
|
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
|
|
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
|
|
764
|
+
export interface ProductsProductNoProductReview {
|
|
765
765
|
rate?: number;
|
|
766
766
|
reviewRatingResponses?: Array<ProductsProductNoProductReviewsReviewRatingResponses>;
|
|
767
767
|
totalCount?: number;
|
|
768
|
-
items?: Array<
|
|
768
|
+
items?: Array<ProductsProductNoProductReviewsItem>;
|
|
769
769
|
}
|
|
770
|
-
export interface
|
|
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<
|
|
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
|
|
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<
|
|
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
|
|
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
|
|
901
|
+
export interface ProductsProductReview {
|
|
902
902
|
totalCount?: number;
|
|
903
|
-
items?: Array<
|
|
903
|
+
items?: Array<ProductsProductReviewsItem>;
|
|
904
904
|
}
|
|
905
|
-
export interface
|
|
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<
|
|
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
|
|
934
|
+
export interface ProfileOrderOptionsProductReviewableInput {
|
|
935
935
|
inputLabel?: string;
|
|
936
936
|
inputValue?: string;
|
|
937
937
|
}
|
|
938
|
-
export interface
|
|
938
|
+
export interface ProfileOrderOptionsProductReviewableItem {
|
|
939
939
|
claimNo?: number;
|
|
940
940
|
reservationDeliveryYmdt?: string;
|
|
941
|
-
inputs?: Array<
|
|
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<
|
|
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
|
|
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<
|
|
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 {
|
|
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?:
|
|
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:
|
|
387
|
+
pageTypes: PageType;
|
|
388
388
|
};
|
|
389
389
|
}
|
|
390
390
|
export interface PageScriptsResponse {
|
|
391
391
|
deviceType: string;
|
|
392
|
-
pageType:
|
|
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?:
|
|
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":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/manage/index.ts"],"names":[],"mappings":"AAmBA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
|
|
@@ -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 {
|
|
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
|
-
|
|
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<
|
|
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":"
|
|
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"}
|