sk-front-lib 0.17.48 → 0.17.49
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/api/model/api-config.d.ts +6 -0
- package/api/model/api-pageable-param.d.ts +11 -0
- package/api/model/api-pageable.d.ts +11 -0
- package/api/model/api-response.d.ts +8 -0
- package/api/model/index.d.ts +4 -0
- package/api/package.json +10 -0
- package/api/public_api.d.ts +3 -0
- package/api/sk-api.module.d.ts +12 -0
- package/api/sk-api.service.d.ts +34 -0
- package/api/sk-front-lib-api.d.ts +5 -0
- package/article/package.json +10 -0
- package/article/public_api.d.ts +6 -0
- package/article/sk-article-editor-server.component.d.ts +23 -0
- package/article/sk-article-editor.component.d.ts +27 -0
- package/article/sk-article-server.module.d.ts +10 -0
- package/article/sk-article.module.d.ts +9 -0
- package/article/sk-article.service.d.ts +96 -0
- package/article/sk-froala-editor.directive.d.ts +40 -0
- package/article/sk-front-lib-article.d.ts +5 -0
- package/crud/package.json +10 -0
- package/crud/public_api.d.ts +24 -0
- package/crud/sk-account.service.d.ts +16 -0
- package/crud/sk-affiliate.service.d.ts +38 -0
- package/crud/sk-auth-admin.guard.d.ts +13 -0
- package/crud/sk-auth.guard.d.ts +13 -0
- package/crud/sk-auth.service.d.ts +33 -0
- package/crud/sk-board.service.d.ts +21 -0
- package/crud/sk-brand.service.d.ts +19 -0
- package/crud/sk-cart.service.d.ts +72 -0
- package/crud/sk-category.service.d.ts +28 -0
- package/crud/sk-comment.service.d.ts +15 -0
- package/crud/sk-config.service.d.ts +13 -0
- package/crud/sk-contact.service.d.ts +15 -0
- package/crud/sk-coupon.service.d.ts +24 -0
- package/crud/sk-document.service.d.ts +51 -0
- package/crud/sk-etc.service.d.ts +12 -0
- package/crud/sk-file.service.d.ts +18 -0
- package/crud/sk-front-lib-crud.d.ts +5 -0
- package/crud/sk-keyword.service.d.ts +19 -0
- package/crud/sk-order.service.d.ts +45 -0
- package/crud/sk-point.service.d.ts +17 -0
- package/crud/sk-product.service.d.ts +84 -0
- package/crud/sk-promotion.service.d.ts +41 -0
- package/crud/sk-search.service.d.ts +12 -0
- package/crud/sk-store.service.d.ts +17 -0
- package/crud/sk-user.service.d.ts +25 -0
- package/esm2020/api/model/api-config.mjs +2 -0
- package/esm2020/api/model/api-pageable-param.mjs +29 -0
- package/esm2020/api/model/api-pageable.mjs +3 -0
- package/esm2020/api/model/api-response.mjs +3 -0
- package/esm2020/api/model/index.mjs +4 -0
- package/esm2020/api/public_api.mjs +4 -0
- package/esm2020/api/sk-api.module.mjs +35 -0
- package/esm2020/api/sk-api.service.mjs +145 -0
- package/esm2020/api/sk-front-lib-api.mjs +5 -0
- package/esm2020/article/public_api.mjs +7 -0
- package/esm2020/article/sk-article-editor-server.component.mjs +51 -0
- package/esm2020/article/sk-article-editor.component.mjs +93 -0
- package/esm2020/article/sk-article-server.module.mjs +33 -0
- package/esm2020/article/sk-article.module.mjs +32 -0
- package/esm2020/article/sk-article.service.mjs +248 -0
- package/esm2020/article/sk-froala-editor.directive.mjs +325 -0
- package/esm2020/article/sk-front-lib-article.mjs +5 -0
- package/esm2020/crud/public_api.mjs +25 -0
- package/esm2020/crud/sk-account.service.mjs +36 -0
- package/esm2020/crud/sk-affiliate.service.mjs +94 -0
- package/esm2020/crud/sk-auth-admin.guard.mjs +31 -0
- package/esm2020/crud/sk-auth.guard.mjs +31 -0
- package/esm2020/crud/sk-auth.service.mjs +67 -0
- package/esm2020/crud/sk-board.service.mjs +54 -0
- package/esm2020/crud/sk-brand.service.mjs +46 -0
- package/esm2020/crud/sk-cart.service.mjs +256 -0
- package/esm2020/crud/sk-category.service.mjs +63 -0
- package/esm2020/crud/sk-comment.service.mjs +43 -0
- package/esm2020/crud/sk-config.service.mjs +31 -0
- package/esm2020/crud/sk-contact.service.mjs +39 -0
- package/esm2020/crud/sk-coupon.service.mjs +62 -0
- package/esm2020/crud/sk-document.service.mjs +110 -0
- package/esm2020/crud/sk-etc.service.mjs +25 -0
- package/esm2020/crud/sk-file.service.mjs +37 -0
- package/esm2020/crud/sk-front-lib-crud.mjs +5 -0
- package/esm2020/crud/sk-keyword.service.mjs +46 -0
- package/esm2020/crud/sk-order.service.mjs +133 -0
- package/esm2020/crud/sk-point.service.mjs +45 -0
- package/esm2020/crud/sk-product.service.mjs +168 -0
- package/esm2020/crud/sk-promotion.service.mjs +84 -0
- package/esm2020/crud/sk-search.service.mjs +25 -0
- package/esm2020/crud/sk-store.service.mjs +47 -0
- package/esm2020/crud/sk-user.service.mjs +73 -0
- package/esm2020/google-analytics/google-analytics-router.module.mjs +30 -0
- package/esm2020/google-analytics/google-analytics.module.mjs +40 -0
- package/esm2020/google-analytics/initializers/google-analytics-router.initializer.mjs +24 -0
- package/esm2020/google-analytics/initializers/google-analytics.initializer.mjs +46 -0
- package/esm2020/google-analytics/interfaces/google-analytics-command.mjs +2 -0
- package/esm2020/google-analytics/interfaces/google-analytics-settings.mjs +2 -0
- package/esm2020/google-analytics/public_api.mjs +11 -0
- package/esm2020/google-analytics/services/google-analytics.service.mjs +223 -0
- package/esm2020/google-analytics/sk-front-lib-google-analytics.mjs +5 -0
- package/esm2020/google-analytics/tokens/google-analytics-settings-token.mjs +5 -0
- package/esm2020/google-analytics/types/ga-action.type.mjs +2 -0
- package/esm2020/google-analytics/types/ga-bind.type.mjs +2 -0
- package/esm2020/image/public_api.mjs +3 -0
- package/esm2020/image/sk-front-lib-image.mjs +5 -0
- package/esm2020/image/sk-image.component.mjs +262 -0
- package/esm2020/image/sk-image.module.mjs +43 -0
- package/esm2020/lib/sk-byte.pipe.mjs +4 -4
- package/esm2020/lib/sk-date-time.pipe.mjs +4 -4
- package/esm2020/lib/sk-date.pipe.mjs +4 -4
- package/esm2020/lib/sk-front-lib.module.mjs +5 -5
- package/esm2020/lib/sk-keys.pipe.mjs +4 -4
- package/esm2020/lib/sk-time.pipe.mjs +4 -4
- package/esm2020/model/lib/article.mjs +11 -0
- package/esm2020/model/lib/audit.mjs +12 -0
- package/esm2020/model/lib/auth.mjs +2 -0
- package/esm2020/model/lib/board.mjs +21 -0
- package/esm2020/model/lib/cart.mjs +29 -0
- package/esm2020/model/lib/comment.mjs +25 -0
- package/esm2020/model/lib/contact.mjs +28 -0
- package/esm2020/model/lib/coupon.mjs +23 -0
- package/esm2020/model/lib/document.mjs +49 -0
- package/esm2020/model/lib/etc.mjs +57 -0
- package/esm2020/model/lib/file.mjs +8 -0
- package/esm2020/model/lib/filetype.mjs +179 -0
- package/esm2020/model/lib/grid.mjs +83 -0
- package/esm2020/model/lib/nicepay.mjs +81 -0
- package/esm2020/model/lib/order.mjs +106 -0
- package/esm2020/model/lib/payment.mjs +35 -0
- package/esm2020/model/lib/point.mjs +47 -0
- package/esm2020/model/lib/product-series.mjs +2 -0
- package/esm2020/model/lib/product.mjs +156 -0
- package/esm2020/model/lib/promotion.mjs +80 -0
- package/esm2020/model/lib/shipping.mjs +37 -0
- package/esm2020/model/lib/tosspay.mjs +61 -0
- package/esm2020/model/lib/user.mjs +61 -0
- package/esm2020/model/public_api.mjs +24 -0
- package/esm2020/model/sk-front-lib-model.mjs +5 -0
- package/esm2020/search-address/dialog/dialog.component.mjs +27 -0
- package/esm2020/search-address/public_api.mjs +4 -0
- package/esm2020/search-address/sk-front-lib-search-address.mjs +5 -0
- package/esm2020/search-address/sk-search-address.directive.mjs +41 -0
- package/esm2020/search-address/sk-search-address.model.mjs +8 -0
- package/esm2020/search-address/sk-search-address.module.mjs +52 -0
- package/esm2020/search-address/sk-search-address.service.mjs +65 -0
- package/esm2020/uploader/public_api.mjs +4 -0
- package/esm2020/uploader/sk-front-lib-uploader.mjs +5 -0
- package/esm2020/uploader/sk-uploader-file-item.model.mjs +95 -0
- package/esm2020/uploader/sk-uploader.animation.mjs +47 -0
- package/esm2020/uploader/sk-uploader.class.mjs +188 -0
- package/esm2020/uploader/sk-uploader.component.mjs +120 -0
- package/esm2020/uploader/sk-uploader.directive.mjs +44 -0
- package/esm2020/uploader/sk-uploader.module.mjs +62 -0
- package/fesm2015/sk-front-lib-api.mjs +218 -0
- package/fesm2015/sk-front-lib-api.mjs.map +1 -0
- package/fesm2015/sk-front-lib-article.mjs +762 -0
- package/fesm2015/sk-front-lib-article.mjs.map +1 -0
- package/fesm2015/sk-front-lib-crud.mjs +1529 -0
- package/fesm2015/sk-front-lib-crud.mjs.map +1 -0
- package/fesm2015/sk-front-lib-google-analytics.mjs +361 -0
- package/fesm2015/sk-front-lib-google-analytics.mjs.map +1 -0
- package/fesm2015/sk-front-lib-image.mjs +306 -0
- package/fesm2015/sk-front-lib-image.mjs.map +1 -0
- package/fesm2015/sk-front-lib-model.mjs +1171 -0
- package/fesm2015/sk-front-lib-model.mjs.map +1 -0
- package/fesm2015/sk-front-lib-search-address.mjs +188 -0
- package/fesm2015/sk-front-lib-search-address.mjs.map +1 -0
- package/fesm2015/sk-front-lib-uploader.mjs +551 -0
- package/fesm2015/sk-front-lib-uploader.mjs.map +1 -0
- package/fesm2015/sk-front-lib.mjs +19 -19
- package/fesm2015/sk-front-lib.mjs.map +1 -1
- package/fesm2020/sk-front-lib-api.mjs +216 -0
- package/fesm2020/sk-front-lib-api.mjs.map +1 -0
- package/fesm2020/sk-front-lib-article.mjs +771 -0
- package/fesm2020/sk-front-lib-article.mjs.map +1 -0
- package/fesm2020/sk-front-lib-crud.mjs +1525 -0
- package/fesm2020/sk-front-lib-crud.mjs.map +1 -0
- package/fesm2020/sk-front-lib-google-analytics.mjs +358 -0
- package/fesm2020/sk-front-lib-google-analytics.mjs.map +1 -0
- package/fesm2020/sk-front-lib-image.mjs +309 -0
- package/fesm2020/sk-front-lib-image.mjs.map +1 -0
- package/fesm2020/sk-front-lib-model.mjs +1171 -0
- package/fesm2020/sk-front-lib-model.mjs.map +1 -0
- package/fesm2020/sk-front-lib-search-address.mjs +186 -0
- package/fesm2020/sk-front-lib-search-address.mjs.map +1 -0
- package/fesm2020/sk-front-lib-uploader.mjs +549 -0
- package/fesm2020/sk-front-lib-uploader.mjs.map +1 -0
- package/fesm2020/sk-front-lib.mjs +19 -19
- package/fesm2020/sk-front-lib.mjs.map +1 -1
- package/google-analytics/google-analytics-router.module.d.ts +8 -0
- package/google-analytics/google-analytics.module.d.ts +10 -0
- package/google-analytics/initializers/google-analytics-router.initializer.d.ts +5 -0
- package/google-analytics/initializers/google-analytics.initializer.d.ts +4 -0
- package/google-analytics/interfaces/google-analytics-command.d.ts +4 -0
- package/google-analytics/interfaces/google-analytics-settings.d.ts +6 -0
- package/google-analytics/package.json +10 -0
- package/google-analytics/public_api.d.ts +10 -0
- package/google-analytics/services/google-analytics.service.d.ts +85 -0
- package/google-analytics/sk-front-lib-google-analytics.d.ts +5 -0
- package/google-analytics/tokens/google-analytics-settings-token.d.ts +3 -0
- package/google-analytics/types/ga-action.type.d.ts +1 -0
- package/google-analytics/types/ga-bind.type.d.ts +1 -0
- package/image/package.json +10 -0
- package/image/public_api.d.ts +3 -0
- package/image/sk-front-lib-image.d.ts +5 -0
- package/image/sk-image.component.d.ts +112 -0
- package/image/sk-image.module.d.ts +12 -0
- package/lib/sk-byte.pipe.d.ts +1 -1
- package/lib/sk-date-time.pipe.d.ts +1 -1
- package/lib/sk-date.pipe.d.ts +1 -1
- package/lib/sk-keys.pipe.d.ts +1 -1
- package/lib/sk-time.pipe.d.ts +1 -1
- package/model/lib/article.d.ts +13 -0
- package/model/lib/audit.d.ts +13 -0
- package/model/lib/auth.d.ts +8 -0
- package/model/lib/board.d.ts +39 -0
- package/model/lib/cart.d.ts +45 -0
- package/model/lib/comment.d.ts +43 -0
- package/model/lib/contact.d.ts +40 -0
- package/model/lib/coupon.d.ts +116 -0
- package/model/lib/document.d.ts +104 -0
- package/model/lib/etc.d.ts +220 -0
- package/model/lib/file.d.ts +24 -0
- package/model/lib/filetype.d.ts +10 -0
- package/model/lib/grid.d.ts +97 -0
- package/model/lib/nicepay.d.ts +39 -0
- package/model/lib/order.d.ts +163 -0
- package/model/lib/payment.d.ts +32 -0
- package/model/lib/point.d.ts +30 -0
- package/model/lib/product-series.d.ts +25 -0
- package/model/lib/product.d.ts +309 -0
- package/model/lib/promotion.d.ts +169 -0
- package/model/lib/shipping.d.ts +44 -0
- package/model/lib/tosspay.d.ts +29 -0
- package/model/lib/user.d.ts +54 -0
- package/model/package.json +10 -0
- package/model/public_api.d.ts +23 -0
- package/model/sk-front-lib-model.d.ts +5 -0
- package/package.json +67 -3
- package/search-address/dialog/dialog.component.d.ts +13 -0
- package/search-address/package.json +10 -0
- package/search-address/public_api.d.ts +3 -0
- package/search-address/sk-front-lib-search-address.d.ts +5 -0
- package/search-address/sk-search-address.directive.d.ts +15 -0
- package/search-address/sk-search-address.model.d.ts +40 -0
- package/search-address/sk-search-address.module.d.ts +14 -0
- package/search-address/sk-search-address.service.d.ts +13 -0
- package/uploader/package.json +10 -0
- package/uploader/public_api.d.ts +4 -0
- package/uploader/sk-front-lib-uploader.d.ts +5 -0
- package/uploader/sk-uploader-file-item.model.d.ts +29 -0
- package/uploader/sk-uploader.animation.d.ts +1 -0
- package/uploader/sk-uploader.class.d.ts +47 -0
- package/uploader/sk-uploader.component.d.ts +28 -0
- package/uploader/sk-uploader.directive.d.ts +15 -0
- package/uploader/sk-uploader.module.d.ts +16 -0
- /package/{index.d.ts → sk-front-lib.d.ts} +0 -0
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import { ISkArticle } from './article';
|
|
2
|
+
import { Audit, IAudit } from './audit';
|
|
3
|
+
import { ISkDocumentPublicList } from './document';
|
|
4
|
+
import { SkBrand, SkCatalogEmbed, SkCategory, SkKeyword, SkNaverEpEmbed, SkOpengraph, SkSubCategoryItem, SkValueType } from './etc';
|
|
5
|
+
import { ISkFile, SkFile } from './file';
|
|
6
|
+
import { ISkPromotionGiftGroupItem, ISkPromotionPublicList } from './promotion';
|
|
7
|
+
export interface SkProductCount {
|
|
8
|
+
total?: number;
|
|
9
|
+
trash?: number;
|
|
10
|
+
}
|
|
11
|
+
export interface SkProductStockCount {
|
|
12
|
+
totalIn?: number;
|
|
13
|
+
totalOut?: number;
|
|
14
|
+
current?: number;
|
|
15
|
+
}
|
|
16
|
+
export declare enum SkProductType {
|
|
17
|
+
Package = "PACKAGE",
|
|
18
|
+
Single = "SINGLE"
|
|
19
|
+
}
|
|
20
|
+
export declare enum SkProductStuffType {
|
|
21
|
+
Hardware = "HARDWARE",
|
|
22
|
+
Software = "SOFTWARE",
|
|
23
|
+
Furniture = "FURNITURE"
|
|
24
|
+
}
|
|
25
|
+
export declare enum SkProductStatus {
|
|
26
|
+
Preorder = "PREORDER",
|
|
27
|
+
Onsale = "ONSALE",
|
|
28
|
+
Soldout = "SOLDOUT",
|
|
29
|
+
Deactivate = "DEACTIVATE"
|
|
30
|
+
}
|
|
31
|
+
export declare enum SkProductAccessPolicy {
|
|
32
|
+
Public = "PUBLIC",
|
|
33
|
+
Hidden = "HIDDEN",
|
|
34
|
+
PrivateLink = "PRIVATE_LINK",
|
|
35
|
+
PrivateUser = "PRIVATE_USER"
|
|
36
|
+
}
|
|
37
|
+
export interface ISkProductBrand {
|
|
38
|
+
id?: number;
|
|
39
|
+
product?: ISkProduct;
|
|
40
|
+
brand?: SkBrand;
|
|
41
|
+
isDefault?: boolean;
|
|
42
|
+
}
|
|
43
|
+
export declare class SkProductBrand {
|
|
44
|
+
id: number;
|
|
45
|
+
product: SkProduct;
|
|
46
|
+
brand: SkBrand;
|
|
47
|
+
isDefault: boolean;
|
|
48
|
+
constructor(data?: ISkProductBrand);
|
|
49
|
+
}
|
|
50
|
+
export interface ISkProductCategory {
|
|
51
|
+
id?: number;
|
|
52
|
+
product?: ISkProduct;
|
|
53
|
+
category?: SkCategory;
|
|
54
|
+
isDefault?: boolean;
|
|
55
|
+
}
|
|
56
|
+
export declare class SkProductCategory {
|
|
57
|
+
id: number;
|
|
58
|
+
product: SkProduct;
|
|
59
|
+
category: SkCategory;
|
|
60
|
+
isDefault: boolean;
|
|
61
|
+
constructor(data?: ISkProductCategory);
|
|
62
|
+
}
|
|
63
|
+
export interface ISkProductImage {
|
|
64
|
+
id?: number;
|
|
65
|
+
product?: ISkProduct;
|
|
66
|
+
file?: ISkFile;
|
|
67
|
+
orderIndex?: number;
|
|
68
|
+
}
|
|
69
|
+
export declare class SkProductImage {
|
|
70
|
+
id: number;
|
|
71
|
+
product: SkProduct;
|
|
72
|
+
file: SkFile;
|
|
73
|
+
orderIndex: number;
|
|
74
|
+
constructor(data?: ISkProductImage);
|
|
75
|
+
}
|
|
76
|
+
export declare enum SkProductOptionType {
|
|
77
|
+
Base = "BASE",
|
|
78
|
+
Additional = "ADDITIONAL",
|
|
79
|
+
Multiple = "MULTIPLE"
|
|
80
|
+
}
|
|
81
|
+
export interface ISkProductOption {
|
|
82
|
+
id?: number;
|
|
83
|
+
type?: SkProductOptionType;
|
|
84
|
+
title?: string;
|
|
85
|
+
values?: ISkProductOptionValue[];
|
|
86
|
+
promotionOption?: boolean;
|
|
87
|
+
}
|
|
88
|
+
export interface ISkProductOptionValue {
|
|
89
|
+
id?: number;
|
|
90
|
+
title?: string;
|
|
91
|
+
value?: string;
|
|
92
|
+
addedPrice?: number;
|
|
93
|
+
}
|
|
94
|
+
export interface ISkProductOptionAnswer {
|
|
95
|
+
id?: number;
|
|
96
|
+
value?: any;
|
|
97
|
+
}
|
|
98
|
+
export interface ISkProductPackage {
|
|
99
|
+
id?: number;
|
|
100
|
+
children?: ISkProduct;
|
|
101
|
+
hidden?: boolean;
|
|
102
|
+
share?: number;
|
|
103
|
+
amount?: number;
|
|
104
|
+
}
|
|
105
|
+
export declare class SkProductPackage {
|
|
106
|
+
id: number;
|
|
107
|
+
children: SkProduct;
|
|
108
|
+
hidden: boolean;
|
|
109
|
+
share: number;
|
|
110
|
+
amount: number;
|
|
111
|
+
constructor(data?: ISkProductPackage);
|
|
112
|
+
}
|
|
113
|
+
export interface SkProductPrice {
|
|
114
|
+
message?: string;
|
|
115
|
+
quotaFree?: boolean;
|
|
116
|
+
paymentNaver?: boolean;
|
|
117
|
+
original?: number;
|
|
118
|
+
retail?: number;
|
|
119
|
+
pointAmount?: number;
|
|
120
|
+
pointType?: SkValueType;
|
|
121
|
+
rebateAmount?: number;
|
|
122
|
+
rebateType?: SkValueType;
|
|
123
|
+
maxUsablePoint?: number;
|
|
124
|
+
maxBuyCount?: number;
|
|
125
|
+
wholesaleNormal?: number;
|
|
126
|
+
wholesaleDealer?: number;
|
|
127
|
+
wholesaleConditionA?: number;
|
|
128
|
+
wholesaleConditionB?: number;
|
|
129
|
+
wholesaleConditionC?: number;
|
|
130
|
+
useVarPrice?: boolean;
|
|
131
|
+
useVarPriceXc?: boolean;
|
|
132
|
+
varCurrency?: string;
|
|
133
|
+
varFormula?: string;
|
|
134
|
+
varMap?: number;
|
|
135
|
+
varCost?: number;
|
|
136
|
+
varAddAmount?: number;
|
|
137
|
+
varAddPercent?: number;
|
|
138
|
+
varUpdatedDate?: string;
|
|
139
|
+
}
|
|
140
|
+
export interface SkProductStock {
|
|
141
|
+
useStockHistory?: boolean;
|
|
142
|
+
useAutoStatusChange?: boolean;
|
|
143
|
+
useXchangeApi?: boolean;
|
|
144
|
+
}
|
|
145
|
+
export interface SkProductEDelivery {
|
|
146
|
+
sku?: string;
|
|
147
|
+
downloadLink?: string;
|
|
148
|
+
template?: string;
|
|
149
|
+
}
|
|
150
|
+
export interface ISkProductStockHistory extends IAudit {
|
|
151
|
+
id?: number;
|
|
152
|
+
used?: boolean;
|
|
153
|
+
serial?: string;
|
|
154
|
+
memo?: string;
|
|
155
|
+
}
|
|
156
|
+
export interface ISkProduct extends IAudit {
|
|
157
|
+
id?: number;
|
|
158
|
+
title?: string;
|
|
159
|
+
code?: string;
|
|
160
|
+
url?: string;
|
|
161
|
+
type?: SkProductType;
|
|
162
|
+
stuffType?: SkProductStuffType;
|
|
163
|
+
status?: SkProductStatus;
|
|
164
|
+
preorderStartDate?: string;
|
|
165
|
+
brands?: ISkProductBrand[];
|
|
166
|
+
categories?: ISkProductCategory[];
|
|
167
|
+
keywords?: SkKeyword[];
|
|
168
|
+
images?: ISkProductImage[];
|
|
169
|
+
accessPolicy?: SkProductAccessPolicy;
|
|
170
|
+
accessPolicyValue?: string;
|
|
171
|
+
price?: SkProductPrice;
|
|
172
|
+
stockConfig?: SkProductStock;
|
|
173
|
+
edelivery?: SkProductEDelivery;
|
|
174
|
+
furnitureAssembly?: boolean;
|
|
175
|
+
opengraph?: SkOpengraph;
|
|
176
|
+
naverep?: SkNaverEpEmbed;
|
|
177
|
+
catalog?: SkCatalogEmbed;
|
|
178
|
+
options?: ISkProductOption[];
|
|
179
|
+
articleDesc?: ISkArticle;
|
|
180
|
+
articleSpec?: ISkArticle;
|
|
181
|
+
packages?: ISkProductPackage[];
|
|
182
|
+
activated?: boolean;
|
|
183
|
+
listOrder?: number;
|
|
184
|
+
viewCount?: number;
|
|
185
|
+
simpleText?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare class SkProduct extends Audit {
|
|
188
|
+
id: number;
|
|
189
|
+
title: string;
|
|
190
|
+
code?: string;
|
|
191
|
+
url?: string;
|
|
192
|
+
type: SkProductType;
|
|
193
|
+
stuffType: SkProductStuffType;
|
|
194
|
+
status: SkProductStatus;
|
|
195
|
+
preorderStartDate: string;
|
|
196
|
+
brands: SkProductBrand[];
|
|
197
|
+
categories: SkProductCategory[];
|
|
198
|
+
keywords: SkKeyword[];
|
|
199
|
+
images: SkProductImage[];
|
|
200
|
+
accessPolicy: SkProductAccessPolicy;
|
|
201
|
+
accessPolicyValue: string;
|
|
202
|
+
price: SkProductPrice;
|
|
203
|
+
stockConfig: SkProductStock;
|
|
204
|
+
edelivery: SkProductEDelivery;
|
|
205
|
+
furnitureAssembly: boolean;
|
|
206
|
+
opengraph: SkOpengraph;
|
|
207
|
+
naverep: SkNaverEpEmbed;
|
|
208
|
+
catalog: SkCatalogEmbed;
|
|
209
|
+
options: ISkProductOption[];
|
|
210
|
+
articleDesc: ISkArticle;
|
|
211
|
+
articleSpec: ISkArticle;
|
|
212
|
+
packages: SkProductPackage[];
|
|
213
|
+
activated: boolean;
|
|
214
|
+
listOrder: number;
|
|
215
|
+
viewCount: number;
|
|
216
|
+
simpleText: string;
|
|
217
|
+
constructor(data?: ISkProduct);
|
|
218
|
+
isEmpty(): boolean;
|
|
219
|
+
}
|
|
220
|
+
export interface SkProductListItem {
|
|
221
|
+
id?: number;
|
|
222
|
+
title?: string;
|
|
223
|
+
code?: string;
|
|
224
|
+
url?: string;
|
|
225
|
+
type?: SkProductType;
|
|
226
|
+
stuffType?: SkProductStuffType;
|
|
227
|
+
status?: SkProductStatus;
|
|
228
|
+
hasPromotion?: boolean;
|
|
229
|
+
hasGift?: boolean;
|
|
230
|
+
realtimeSoftware?: boolean;
|
|
231
|
+
furnitureAssembly?: boolean;
|
|
232
|
+
brandName?: string;
|
|
233
|
+
brandId?: number;
|
|
234
|
+
brands?: ISkProductBrandItem[];
|
|
235
|
+
wishlistCount?: number;
|
|
236
|
+
wishlistMe?: boolean;
|
|
237
|
+
image?: ISkFile;
|
|
238
|
+
quotaFree?: boolean;
|
|
239
|
+
priceMessage?: string;
|
|
240
|
+
priceOriginal?: number;
|
|
241
|
+
priceDiscounted?: number;
|
|
242
|
+
priceMin?: number;
|
|
243
|
+
priceMax?: number;
|
|
244
|
+
packageItems?: ISkProductPackageListItem[];
|
|
245
|
+
accessPolicy?: SkProductAccessPolicy;
|
|
246
|
+
accessPolicyValue?: string;
|
|
247
|
+
}
|
|
248
|
+
export interface ISkProductDetail extends SkProductListItem {
|
|
249
|
+
point?: number;
|
|
250
|
+
includedInPackage?: boolean;
|
|
251
|
+
images?: ISkFile[];
|
|
252
|
+
simpleText?: string;
|
|
253
|
+
articleDesc?: ISkArticle;
|
|
254
|
+
articleSpec?: ISkArticle;
|
|
255
|
+
opengraph?: SkOpengraph;
|
|
256
|
+
paymentNaver?: boolean;
|
|
257
|
+
packageItems?: ISkProductPackageListItem[];
|
|
258
|
+
linkedSeries?: ISkProductDetailSeries[];
|
|
259
|
+
linkedDocuments?: ISkDocumentPublicList[];
|
|
260
|
+
linkedPromotions?: ISkPromotionPublicList[];
|
|
261
|
+
linkedPromotionGiftGroups?: ISkPromotionGiftGroupItem[];
|
|
262
|
+
}
|
|
263
|
+
export interface ISkProductPackageListItem {
|
|
264
|
+
id?: number;
|
|
265
|
+
product?: SkProductListItem;
|
|
266
|
+
showSpec?: boolean;
|
|
267
|
+
showDesc?: boolean;
|
|
268
|
+
orderIndex?: number;
|
|
269
|
+
amount?: number;
|
|
270
|
+
}
|
|
271
|
+
export interface SkProductWishlist {
|
|
272
|
+
wishlistCount?: number;
|
|
273
|
+
wishlistMe?: boolean;
|
|
274
|
+
}
|
|
275
|
+
export interface ISkProductDetailSeriesItem {
|
|
276
|
+
id?: number;
|
|
277
|
+
title?: string;
|
|
278
|
+
url?: string;
|
|
279
|
+
}
|
|
280
|
+
export interface ISkProductDetailSeries {
|
|
281
|
+
id?: number;
|
|
282
|
+
title?: string;
|
|
283
|
+
items?: ISkProductDetailSeriesItem[];
|
|
284
|
+
}
|
|
285
|
+
export interface ISkProductFilterData {
|
|
286
|
+
lowestPrice?: number;
|
|
287
|
+
highestPrice?: number;
|
|
288
|
+
minPrice?: number;
|
|
289
|
+
maxPrice?: number;
|
|
290
|
+
availableBrands?: SkBrand[];
|
|
291
|
+
availableCategories?: SkCategory[];
|
|
292
|
+
availableSubCategories?: SkCategory[];
|
|
293
|
+
selectedSubCategoryItems?: SkSubCategoryItem[];
|
|
294
|
+
}
|
|
295
|
+
export interface ISkProductBrandItem {
|
|
296
|
+
id: number;
|
|
297
|
+
name: string;
|
|
298
|
+
}
|
|
299
|
+
export interface ISkProductPublish {
|
|
300
|
+
id?: number;
|
|
301
|
+
productId?: number;
|
|
302
|
+
status?: SkProductStatus;
|
|
303
|
+
preorderStartDate?: string;
|
|
304
|
+
accessPolicy?: SkProductAccessPolicy;
|
|
305
|
+
actionDate?: string;
|
|
306
|
+
activated?: boolean;
|
|
307
|
+
}
|
|
308
|
+
export declare function getSkProductStatusText(status: SkProductStatus): "판매 중지" | "판매중" | "예약판매" | "품절";
|
|
309
|
+
export declare function getSkProductAccessPolicyText(accessPolicy: SkProductAccessPolicy): "어드민 외 접근불가" | "링크로만 접근 가능" | "해당 유저만 접근 가능" | "공개";
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { ISkArticle, SkArticle } from './article';
|
|
2
|
+
import { Audit, IAudit } from './audit';
|
|
3
|
+
import { SkCategory, SkGiftType, SkOpengraph, SkValueType } from './etc';
|
|
4
|
+
import { ISkFile, SkFile } from './file';
|
|
5
|
+
import { ISkProduct, ISkProductOption, SkProduct, SkProductListItem } from './product';
|
|
6
|
+
export declare enum SkPromotionAccessPolicy {
|
|
7
|
+
Public = "PUBLIC",
|
|
8
|
+
Hidden = "HIDDEN"
|
|
9
|
+
}
|
|
10
|
+
export declare enum SkPromotionGiftServeType {
|
|
11
|
+
All = "ALL",
|
|
12
|
+
Select = "SELECT"
|
|
13
|
+
}
|
|
14
|
+
export interface SkPromotionCount {
|
|
15
|
+
total?: number;
|
|
16
|
+
trash?: number;
|
|
17
|
+
}
|
|
18
|
+
export interface ISkPromotionGift {
|
|
19
|
+
id?: number;
|
|
20
|
+
product?: ISkProduct;
|
|
21
|
+
amount?: number;
|
|
22
|
+
type?: SkGiftType;
|
|
23
|
+
optionTitle?: string;
|
|
24
|
+
optionValueTitle?: string;
|
|
25
|
+
optionAddedPrice?: number;
|
|
26
|
+
customTitle?: string;
|
|
27
|
+
customImage?: ISkFile;
|
|
28
|
+
customBrandName?: string;
|
|
29
|
+
customPrice?: number;
|
|
30
|
+
}
|
|
31
|
+
export declare class SkPromotionGift {
|
|
32
|
+
id: number;
|
|
33
|
+
product: SkProduct;
|
|
34
|
+
amount: number;
|
|
35
|
+
type: SkGiftType;
|
|
36
|
+
optionTitle: string;
|
|
37
|
+
optionValueTitle: string;
|
|
38
|
+
optionAddedPrice: number;
|
|
39
|
+
customTitle: string;
|
|
40
|
+
customImage: ISkFile;
|
|
41
|
+
customBrandName: string;
|
|
42
|
+
customPrice: number;
|
|
43
|
+
constructor(data?: ISkPromotionGift);
|
|
44
|
+
}
|
|
45
|
+
export interface ISkPromotionGiftGroup {
|
|
46
|
+
id?: number;
|
|
47
|
+
serveType?: SkPromotionGiftServeType;
|
|
48
|
+
gifts?: ISkPromotionGift[];
|
|
49
|
+
}
|
|
50
|
+
export declare class SkPromotionGiftGroup {
|
|
51
|
+
id: number;
|
|
52
|
+
serveType: SkPromotionGiftServeType;
|
|
53
|
+
gifts: ISkPromotionGift[];
|
|
54
|
+
constructor(data?: ISkPromotionGiftGroup);
|
|
55
|
+
}
|
|
56
|
+
export interface ISkPromotionTarget {
|
|
57
|
+
id?: number;
|
|
58
|
+
promotion?: ISkPromotion;
|
|
59
|
+
product?: ISkProduct;
|
|
60
|
+
isLimited?: boolean;
|
|
61
|
+
stockAmount?: number;
|
|
62
|
+
discountType?: SkValueType;
|
|
63
|
+
discountValue?: number;
|
|
64
|
+
giftGroups?: ISkPromotionGiftGroup[];
|
|
65
|
+
}
|
|
66
|
+
export declare class SkPromotionTarget {
|
|
67
|
+
id: number;
|
|
68
|
+
promotion: SkPromotion;
|
|
69
|
+
product: SkProduct;
|
|
70
|
+
isLimited: boolean;
|
|
71
|
+
stockAmount: number;
|
|
72
|
+
discountType: SkValueType;
|
|
73
|
+
discountValue: number;
|
|
74
|
+
giftGroups: SkPromotionGiftGroup[];
|
|
75
|
+
constructor(data?: ISkPromotionTarget);
|
|
76
|
+
}
|
|
77
|
+
export interface ISkPromotionCategory {
|
|
78
|
+
id?: number;
|
|
79
|
+
category?: SkCategory;
|
|
80
|
+
}
|
|
81
|
+
export declare class SkPromotionCategory {
|
|
82
|
+
id: number;
|
|
83
|
+
category: SkCategory;
|
|
84
|
+
constructor(data?: ISkPromotionCategory);
|
|
85
|
+
}
|
|
86
|
+
export interface ISkPromotion extends IAudit {
|
|
87
|
+
id?: number;
|
|
88
|
+
title?: string;
|
|
89
|
+
startDate?: string;
|
|
90
|
+
endDate?: string;
|
|
91
|
+
endDateString?: string;
|
|
92
|
+
rebateString?: string;
|
|
93
|
+
accessPolicy?: SkPromotionAccessPolicy;
|
|
94
|
+
categories?: ISkPromotionCategory[];
|
|
95
|
+
image?: ISkFile;
|
|
96
|
+
imageAlt?: ISkFile;
|
|
97
|
+
article?: ISkArticle;
|
|
98
|
+
benefit?: ISkArticle;
|
|
99
|
+
targets?: ISkPromotionTarget[];
|
|
100
|
+
opengraph?: SkOpengraph;
|
|
101
|
+
listOrder?: number;
|
|
102
|
+
activated?: boolean;
|
|
103
|
+
}
|
|
104
|
+
export declare class SkPromotion extends Audit {
|
|
105
|
+
id: number;
|
|
106
|
+
title: string;
|
|
107
|
+
startDate: string;
|
|
108
|
+
endDate: string;
|
|
109
|
+
endDateString: string;
|
|
110
|
+
rebateString: string;
|
|
111
|
+
accessPolicy?: SkPromotionAccessPolicy;
|
|
112
|
+
categories?: SkPromotionCategory[];
|
|
113
|
+
image: SkFile;
|
|
114
|
+
imageAlt: SkFile;
|
|
115
|
+
article: SkArticle;
|
|
116
|
+
benefit: SkArticle;
|
|
117
|
+
targets: SkPromotionTarget[];
|
|
118
|
+
opengraph: SkOpengraph;
|
|
119
|
+
listOrder: number;
|
|
120
|
+
activated: boolean;
|
|
121
|
+
constructor(data?: ISkPromotion);
|
|
122
|
+
isEmpty(): boolean;
|
|
123
|
+
}
|
|
124
|
+
export interface ISkPromotionGiftItem {
|
|
125
|
+
id?: number;
|
|
126
|
+
product?: SkProductListItem;
|
|
127
|
+
amount?: number;
|
|
128
|
+
type: SkGiftType;
|
|
129
|
+
optionTitle: string;
|
|
130
|
+
optionValueTitle: string;
|
|
131
|
+
optionAddedPrice: number;
|
|
132
|
+
customTitle: string;
|
|
133
|
+
customImage: ISkFile;
|
|
134
|
+
customBrandName: string;
|
|
135
|
+
customPrice: number;
|
|
136
|
+
}
|
|
137
|
+
export interface ISkPromotionGiftGroupItem {
|
|
138
|
+
serveType?: SkPromotionGiftServeType;
|
|
139
|
+
gifts?: ISkPromotionGiftItem[];
|
|
140
|
+
}
|
|
141
|
+
export interface ISkPromotionTargetItem {
|
|
142
|
+
productId?: number;
|
|
143
|
+
product?: SkProductListItem;
|
|
144
|
+
isLimited?: boolean;
|
|
145
|
+
stockAmount?: number;
|
|
146
|
+
discountType?: SkValueType;
|
|
147
|
+
discountValue?: number;
|
|
148
|
+
giftGroups?: ISkPromotionGiftGroupItem[];
|
|
149
|
+
options?: ISkProductOption[];
|
|
150
|
+
}
|
|
151
|
+
export interface ISkPromotionUpdateImage {
|
|
152
|
+
image?: number;
|
|
153
|
+
imageAlt?: number;
|
|
154
|
+
}
|
|
155
|
+
export interface ISkPromotionPublicList {
|
|
156
|
+
id?: number;
|
|
157
|
+
image?: ISkFile;
|
|
158
|
+
imageAlt?: ISkFile;
|
|
159
|
+
title?: string;
|
|
160
|
+
endDate?: string;
|
|
161
|
+
endDateString?: string;
|
|
162
|
+
rebateString?: string;
|
|
163
|
+
}
|
|
164
|
+
export interface ISkPromotionPublicDetail extends ISkPromotionPublicList {
|
|
165
|
+
content?: string;
|
|
166
|
+
benefit?: string;
|
|
167
|
+
targets?: ISkPromotionTargetItem[];
|
|
168
|
+
opengraph?: SkOpengraph;
|
|
169
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { SkProductListItem } from "./product";
|
|
2
|
+
export declare enum SkShippingStatus {
|
|
3
|
+
Prepare = "PREPARE",
|
|
4
|
+
Progress = "PROGRESS",
|
|
5
|
+
Done = "DONE",
|
|
6
|
+
Fail = "FAIL"
|
|
7
|
+
}
|
|
8
|
+
export declare enum SkShippingMethod {
|
|
9
|
+
Normal = "NORMAL",
|
|
10
|
+
Normal2 = "NORMAL2",
|
|
11
|
+
Quick = "QUICK",
|
|
12
|
+
Visit = "VISIT",
|
|
13
|
+
Software = "SOFTWARE",
|
|
14
|
+
SoftwareRealtime = "SOFTWARE_REALTIME",
|
|
15
|
+
Howser = "HOWSER",
|
|
16
|
+
Howser2 = "HOWSER2"
|
|
17
|
+
}
|
|
18
|
+
export interface ISkShippingInfo {
|
|
19
|
+
id?: number;
|
|
20
|
+
memo?: string;
|
|
21
|
+
method?: SkShippingMethod;
|
|
22
|
+
status?: SkShippingStatus;
|
|
23
|
+
orderItemId?: number;
|
|
24
|
+
productInfo?: SkProductListItem;
|
|
25
|
+
amount?: number;
|
|
26
|
+
shippingCompanyName?: string;
|
|
27
|
+
shippingCompanyCode?: string;
|
|
28
|
+
trackingCode?: string;
|
|
29
|
+
edeliveryInfo?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface ISkShipping {
|
|
32
|
+
id?: number;
|
|
33
|
+
receiverName?: string;
|
|
34
|
+
email?: string;
|
|
35
|
+
phone?: string;
|
|
36
|
+
phone2?: string;
|
|
37
|
+
zipCode?: string;
|
|
38
|
+
address?: string;
|
|
39
|
+
address2?: string;
|
|
40
|
+
infoList?: ISkShippingInfo[];
|
|
41
|
+
hardwareShipping?: boolean;
|
|
42
|
+
softwareShipping?: boolean;
|
|
43
|
+
}
|
|
44
|
+
export declare function getSkShippingMethodText(method: SkShippingMethod): "택배 배송" | "착불 배송" | "퀵 배송 (착불)" | "방문 수령" | "전자배송(수동)" | "전자배송(실시간)" | "가구 전문 배송(착불)";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare enum SkTossPayCreditCards {
|
|
2
|
+
BC = "31",
|
|
3
|
+
KB = "11",
|
|
4
|
+
Samsung = "51",
|
|
5
|
+
Shinhan = "41",
|
|
6
|
+
Hyundae = "61",
|
|
7
|
+
Lotte = "71",
|
|
8
|
+
City = "36",
|
|
9
|
+
NH = "91",
|
|
10
|
+
SuHyup = "34",
|
|
11
|
+
Woori = "33",
|
|
12
|
+
HanaSK = "21",
|
|
13
|
+
DongName = "17",
|
|
14
|
+
Gwangju = "46",
|
|
15
|
+
Jeonbuk = "35",
|
|
16
|
+
Jeju = "42",
|
|
17
|
+
VISA = "4V",
|
|
18
|
+
MASTER = "4M",
|
|
19
|
+
Diners = "6D",
|
|
20
|
+
AMX = "7A",
|
|
21
|
+
JCB = "4J",
|
|
22
|
+
ePost = "37",
|
|
23
|
+
UnionPay = "3C",
|
|
24
|
+
KFCC = "38",
|
|
25
|
+
KDB = "30",
|
|
26
|
+
Kakao = "15",
|
|
27
|
+
KBank = "3A"
|
|
28
|
+
}
|
|
29
|
+
export declare function getTossPayCreditCardTitle(value: SkTossPayCreditCards): string;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Audit, IAudit } from './audit';
|
|
2
|
+
export interface SkUserCount {
|
|
3
|
+
total?: number;
|
|
4
|
+
trash?: number;
|
|
5
|
+
}
|
|
6
|
+
export declare enum SkUserRoleName {
|
|
7
|
+
Admin = "ROLE_ADMIN",
|
|
8
|
+
Developer = "ROLE_DEVELOPER",
|
|
9
|
+
Manager = "ROLE_MANAGER",
|
|
10
|
+
User = "ROLE_USER",
|
|
11
|
+
Dealer = "ROLE_DEALER",
|
|
12
|
+
Leave = "ROLE_LEAVE",
|
|
13
|
+
Affiliate = "ROLE_AFFILIATE"
|
|
14
|
+
}
|
|
15
|
+
export interface ISkUserRole {
|
|
16
|
+
name: SkUserRoleName;
|
|
17
|
+
}
|
|
18
|
+
export interface ISkUser extends IAudit {
|
|
19
|
+
id?: number;
|
|
20
|
+
email?: string;
|
|
21
|
+
nickname?: string;
|
|
22
|
+
emailValid?: boolean;
|
|
23
|
+
roles?: ISkUserRole[];
|
|
24
|
+
}
|
|
25
|
+
export declare class SkUser extends Audit {
|
|
26
|
+
id: number;
|
|
27
|
+
email: string;
|
|
28
|
+
nickname: string;
|
|
29
|
+
emailValid: boolean;
|
|
30
|
+
roles: ISkUserRole[];
|
|
31
|
+
roleNames: SkUserRoleName[];
|
|
32
|
+
constructor(data?: ISkUser);
|
|
33
|
+
hasRole(role: SkUserRoleName): boolean;
|
|
34
|
+
hasRoleFromArray(roles?: SkUserRoleName[]): boolean;
|
|
35
|
+
isEmpty(): boolean;
|
|
36
|
+
isAnonymous(): boolean;
|
|
37
|
+
isAdmin(): boolean;
|
|
38
|
+
isDeveloper(): boolean;
|
|
39
|
+
isManager(): boolean;
|
|
40
|
+
isDealer(): boolean;
|
|
41
|
+
isUser(): boolean;
|
|
42
|
+
isAdminAccessable(): boolean;
|
|
43
|
+
}
|
|
44
|
+
export interface SkUserSignup {
|
|
45
|
+
email: string;
|
|
46
|
+
password: string;
|
|
47
|
+
passwordConfirm: string;
|
|
48
|
+
nickname: string;
|
|
49
|
+
}
|
|
50
|
+
export interface ISkAuthor {
|
|
51
|
+
id?: number;
|
|
52
|
+
nickname?: number;
|
|
53
|
+
email?: number;
|
|
54
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module": "../fesm2015/sk-front-lib-model.mjs",
|
|
3
|
+
"es2020": "../fesm2020/sk-front-lib-model.mjs",
|
|
4
|
+
"esm2020": "../esm2020/model/sk-front-lib-model.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/sk-front-lib-model.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/sk-front-lib-model.mjs",
|
|
7
|
+
"typings": "sk-front-lib-model.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "sk-front-lib/model"
|
|
10
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './lib/audit';
|
|
2
|
+
export * from './lib/auth';
|
|
3
|
+
export * from './lib/user';
|
|
4
|
+
export * from './lib/file';
|
|
5
|
+
export * from './lib/filetype';
|
|
6
|
+
export * from './lib/article';
|
|
7
|
+
export * from './lib/document';
|
|
8
|
+
export * from './lib/board';
|
|
9
|
+
export * from './lib/product';
|
|
10
|
+
export * from './lib/product-series';
|
|
11
|
+
export * from './lib/cart';
|
|
12
|
+
export * from './lib/promotion';
|
|
13
|
+
export * from './lib/order';
|
|
14
|
+
export * from './lib/payment';
|
|
15
|
+
export * from './lib/shipping';
|
|
16
|
+
export * from './lib/etc';
|
|
17
|
+
export * from './lib/nicepay';
|
|
18
|
+
export * from './lib/tosspay';
|
|
19
|
+
export * from './lib/point';
|
|
20
|
+
export * from './lib/coupon';
|
|
21
|
+
export * from './lib/comment';
|
|
22
|
+
export * from './lib/contact';
|
|
23
|
+
export * from './lib/grid';
|