@shopby/shop-sdk 1.0.2 → 1.0.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/README.md +32 -1
- package/build/src/claim.d.ts +15 -14
- package/build/src/claim.js.map +1 -1
- package/build/src/display.d.ts +4 -4
- package/build/src/display.js +5 -5
- package/build/src/display.js.map +1 -1
- package/build/types/claim.d.ts +637 -0
- package/build/types/claim.js +2 -0
- package/build/types/claim.js.map +1 -0
- package/build/types/design.d.ts +4 -0
- package/build/types/design.js +2 -0
- package/build/types/design.js.map +1 -0
- package/build/types/root.d.ts +16 -1
- package/build/types/root.js +7 -1
- package/build/types/root.js.map +1 -1
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -1 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Shopby-Shop-SDK for front API
|
|
2
|
+
|
|
3
|
+
### @shopby/shop-sdk
|
|
4
|
+
|
|
5
|
+
- Typescript support
|
|
6
|
+
- based on the fetch API
|
|
7
|
+
- [Shopby api swagger](https://docs.shopby.co.kr/)
|
|
8
|
+
- [Shopby shop sdk 개발 가이드](https://nhnent.dooray.com/project/pages/3150685762077733029)
|
|
9
|
+
|
|
10
|
+
### How to use
|
|
11
|
+
|
|
12
|
+
```shell script
|
|
13
|
+
npm install @shopby/shop-sdk
|
|
14
|
+
# or
|
|
15
|
+
yarn add @shopby/shop-sdk
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
```js
|
|
19
|
+
import { create } from '@shopby/shop-sdk';
|
|
20
|
+
|
|
21
|
+
const api = create('https://alpha-shop-api.e-ncp.com', 'ACCESS_TOKEN', {
|
|
22
|
+
clientId: '{your client id}',
|
|
23
|
+
'Content-type': 'application/json'
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
const response = await api.admin.getMalls();
|
|
27
|
+
const data = await response.json();
|
|
28
|
+
|
|
29
|
+
console.log(data);
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
|
package/build/src/claim.d.ts
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
import { ResponseData } from '../types/root';
|
|
1
|
+
import { RequestOption, ResponseData } from '../types/root';
|
|
2
|
+
import { ClaimOrderOptionNoPath, GuestClaimsCancelRequest, GuestClaimsClaimNoResult, GuestClaimsClaimNoResultClaimPriceInfo, GuestOrderOptionOrderOptionNoClaimsRequest, GuestOrderOptionsOrderOptionNoClaimsEstimate, ProfileClaims, ProfileClaimsClaimNoCheckWithdraw, ProfileClaimsClaimNoPath, ProfileClaimsEstimate, ProfileClaimsRequest, ProfileOrderOptionsOrderOptionNoClaims, ProfileOrderOptionsOrderOptionNoClaimsCancel } from '../types/claim';
|
|
2
3
|
declare const claim: (createOption: Function) => {
|
|
3
4
|
/**
|
|
4
5
|
* Guest
|
|
5
6
|
*/
|
|
6
|
-
postGuestClaimsCancel(request:
|
|
7
|
-
postGuestClaimsEstimate(request:
|
|
8
|
-
postGuestClaimsReturn(request:
|
|
9
|
-
getGuestClaimsClaimNoCheckWithdraw(request:
|
|
10
|
-
getGuestClaimsClaimNoResult(request:
|
|
11
|
-
putGuestClaimsClaimNoWithdraw(request:
|
|
12
|
-
getGuestOrderOptionOrderOptionNoClaims(request:
|
|
13
|
-
postGuestOrderOptionOrderOptionNoClaimsCancel(request:
|
|
14
|
-
getGuestOrderOptionOrderOptionNoClaimsEstimate(request:
|
|
15
|
-
getGuestOrderOptionOrderOptionNoClaimsResult(request:
|
|
16
|
-
postGuestOrderOptionOrderOptionNoClaimsReturn(request:
|
|
17
|
-
putGuestOrderOptionOrderOptionNoClaimsWithdraw(request:
|
|
7
|
+
postGuestClaimsCancel(request: RequestOption<null, GuestClaimsCancelRequest>): Promise<ResponseData<void>>;
|
|
8
|
+
postGuestClaimsEstimate(request: RequestOption<null, GuestClaimsCancelRequest>): Promise<ResponseData<GuestClaimsClaimNoResultClaimPriceInfo>>;
|
|
9
|
+
postGuestClaimsReturn(request: RequestOption<null, GuestClaimsClaimNoResult>): Promise<ResponseData<void>>;
|
|
10
|
+
getGuestClaimsClaimNoCheckWithdraw(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<ProfileClaimsClaimNoCheckWithdraw>>;
|
|
11
|
+
getGuestClaimsClaimNoResult(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<GuestClaimsClaimNoResult>>;
|
|
12
|
+
putGuestClaimsClaimNoWithdraw(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<void>>;
|
|
13
|
+
getGuestOrderOptionOrderOptionNoClaims(request: RequestOption<GuestOrderOptionOrderOptionNoClaimsRequest['queryString'], null, GuestOrderOptionOrderOptionNoClaimsRequest['pathVariable']>): Promise<ResponseData<ProfileOrderOptionsOrderOptionNoClaims>>;
|
|
14
|
+
postGuestOrderOptionOrderOptionNoClaimsCancel(request: RequestOption<null, ProfileOrderOptionsOrderOptionNoClaimsCancel, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
15
|
+
getGuestOrderOptionOrderOptionNoClaimsEstimate(request: RequestOption<ProfileClaimsEstimate, null, ClaimOrderOptionNoPath>): Promise<ResponseData<GuestOrderOptionsOrderOptionNoClaimsEstimate>>;
|
|
16
|
+
getGuestOrderOptionOrderOptionNoClaimsResult(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<GuestClaimsClaimNoResult>>;
|
|
17
|
+
postGuestOrderOptionOrderOptionNoClaimsReturn(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
18
|
+
putGuestOrderOptionOrderOptionNoClaimsWithdraw(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
18
19
|
/**
|
|
19
20
|
* Profile
|
|
20
21
|
*/
|
|
21
|
-
getProfileClaims(request:
|
|
22
|
+
getProfileClaims(request: RequestOption<ProfileClaimsRequest, null>): Promise<ResponseData<ProfileClaims>>;
|
|
22
23
|
getProfileClaimsClaimNoResult(request: any): Promise<ResponseData<any>>;
|
|
23
24
|
postProfileClaimsCancel(request: any): Promise<ResponseData<void>>;
|
|
24
25
|
postProfileClaimsEstimate(request: any): Promise<ResponseData<any>>;
|
package/build/src/claim.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claim.js","sourceRoot":"","sources":["../../src/claim.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"claim.js","sourceRoot":"","sources":["../../src/claim.ts"],"names":[],"mappings":"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"}
|
package/build/src/display.d.ts
CHANGED
|
@@ -3,14 +3,14 @@ declare const display: (createOption: Function) => {
|
|
|
3
3
|
/**
|
|
4
4
|
* Category
|
|
5
5
|
*/
|
|
6
|
-
getCategories(
|
|
7
|
-
getCategoriesNewProductCategories(
|
|
6
|
+
getCategories(): Promise<ResponseData<any>>;
|
|
7
|
+
getCategoriesNewProductCategories(): Promise<number[]>;
|
|
8
8
|
getCategoriesCategoryNo(request: any): Promise<ResponseData<any>>;
|
|
9
9
|
/**
|
|
10
10
|
* Review
|
|
11
11
|
*/
|
|
12
12
|
getCategoryProductReviews(request: any): Promise<ResponseData<any>>;
|
|
13
|
-
getProductReviewsConfigurations(
|
|
13
|
+
getProductReviewsConfigurations(): Promise<ResponseData<any>>;
|
|
14
14
|
getProductsProductNoProductReviews(request: any): Promise<ResponseData<any>>;
|
|
15
15
|
postProductsProductNoProductReviews(request: any): Promise<ResponseData<any>>;
|
|
16
16
|
getProductsProductNoReviewableOptions(request: any): Promise<ResponseData<any>>;
|
|
@@ -51,7 +51,7 @@ declare const display: (createOption: Function) => {
|
|
|
51
51
|
/**
|
|
52
52
|
* Inquiry
|
|
53
53
|
*/
|
|
54
|
-
getProductsInquiresConfigurations(
|
|
54
|
+
getProductsInquiresConfigurations(): Promise<ResponseData<any>>;
|
|
55
55
|
putProductsInquiresInquiryNo(request: any): Promise<ResponseData<void>>;
|
|
56
56
|
deleteProductsInquiresInquiryNo(request: any): Promise<ResponseData<void>>;
|
|
57
57
|
getProductsProductNoInquires(request: any): Promise<ResponseData<void>>;
|
package/build/src/display.js
CHANGED
|
@@ -2,13 +2,13 @@ var display = function (createOption) { return ({
|
|
|
2
2
|
/**
|
|
3
3
|
* Category
|
|
4
4
|
*/
|
|
5
|
-
getCategories: function (
|
|
5
|
+
getCategories: function () {
|
|
6
6
|
return createOption({
|
|
7
7
|
method: 'GET',
|
|
8
8
|
url: '/categories',
|
|
9
9
|
});
|
|
10
10
|
},
|
|
11
|
-
getCategoriesNewProductCategories: function (
|
|
11
|
+
getCategoriesNewProductCategories: function () {
|
|
12
12
|
return createOption({
|
|
13
13
|
method: 'GET',
|
|
14
14
|
url: '/categories/new-product-categories',
|
|
@@ -32,7 +32,7 @@ var display = function (createOption) { return ({
|
|
|
32
32
|
queryString: queryString,
|
|
33
33
|
});
|
|
34
34
|
},
|
|
35
|
-
getProductReviewsConfigurations: function (
|
|
35
|
+
getProductReviewsConfigurations: function () {
|
|
36
36
|
return createOption({
|
|
37
37
|
method: 'GET',
|
|
38
38
|
url: '/category/product-reviews',
|
|
@@ -85,7 +85,7 @@ var display = function (createOption) { return ({
|
|
|
85
85
|
});
|
|
86
86
|
},
|
|
87
87
|
postProductsProductNoProductReviewsReviewNoCheckPassword: function (request) {
|
|
88
|
-
var _a = request.pathVariable, productNo = _a.productNo, reviewNo = _a.reviewNo
|
|
88
|
+
var _a = request.pathVariable, productNo = _a.productNo, reviewNo = _a.reviewNo;
|
|
89
89
|
return createOption({
|
|
90
90
|
method: 'POST',
|
|
91
91
|
url: "/products/".concat(productNo, "/product-reviews/").concat(reviewNo, "/check-password"),
|
|
@@ -225,7 +225,7 @@ var display = function (createOption) { return ({
|
|
|
225
225
|
/**
|
|
226
226
|
* Inquiry
|
|
227
227
|
*/
|
|
228
|
-
getProductsInquiresConfigurations: function (
|
|
228
|
+
getProductsInquiresConfigurations: function () {
|
|
229
229
|
return createOption({
|
|
230
230
|
method: 'GET',
|
|
231
231
|
url: '/products/inquiries/configurations',
|
package/build/src/display.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display.js","sourceRoot":"","sources":["../../src/display.ts"],"names":[],"mappings":"AAEA,IAAM,OAAO,GAAG,UAAC,YAAsB,IAAK,OAAA,CAAC;IAC3C;;OAEG;IACH,aAAa,EAAb
|
|
1
|
+
{"version":3,"file":"display.js","sourceRoot":"","sources":["../../src/display.ts"],"names":[],"mappings":"AAEA,IAAM,OAAO,GAAG,UAAC,YAAsB,IAAK,OAAA,CAAC;IAC3C;;OAEG;IACH,aAAa,EAAb;QACE,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,aAAa;SACnB,CAAC,CAAC;IACL,CAAC;IACD,iCAAiC,EAAjC;QACE,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oCAAoC;SAC1C,CAAC,CAAC;IACL,CAAC;IACD,uBAAuB,EAAvB,UAAwB,OAAY;QAEjB,IAAA,UAAU,GACvB,OAAO,wBADgB,CACf;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,sBAAe,UAAU,CAAE;SACjC,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,yBAAyB,EAAzB,UAA0B,OAAY;QAC7B,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,2BAA2B;YAChC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,+BAA+B,EAA/B;QACE,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,2BAA2B;SACjC,CAAC,CAAC;IACL,CAAC;IACD,kCAAkC,EAAlC,UAAmC,OAAY;QAE5B,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,qBAAkB;YAC7C,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,mCAAmC,EAAnC,UACE,OAAY;QAGK,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,oBAAa,SAAS,qBAAkB;YAC7C,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,qCAAqC,EAArC,UACE,OAAY;QAGK,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,wBAAqB;YAChD,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,0CAA0C,EAA1C,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAC,CACzB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,CAAE;SAC1D,CAAC,CAAC;IACL,CAAC;IACD,0CAA0C,EAA1C,UACE,OAAY;QAGV,IAAA,KAEE,OAAO,aAF0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAA,EAClC,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,CAAE;YACzD,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,6CAA6C,EAA7C,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAC,CACzB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,QAAQ;YAChB,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,CAAE;SAC1D,CAAC,CAAC;IACL,CAAC;IACD,wDAAwD,EAAxD,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAC,CACzB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,oBAAiB;SACzE,CAAC,CAAC;IACL,CAAC;IACD,oDAAoD,EAApD,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAC,CACzB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,eAAY;SACpE,CAAC,CAAC;IACL,CAAC;IACD,sDAAsD,EAAtD,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAC,CACzB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,QAAQ;YAChB,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,eAAY;SACpE,CAAC,CAAC;IACL,CAAC;IACD,iDAAiD,EAAjD,UACE,OAAY;QAGV,IAAA,KAEE,OAAO,aAF0B,EAApB,SAAS,eAAA,EAAE,QAAQ,cAAA,EAClC,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,oBAAa,SAAS,8BAAoB,QAAQ,YAAS;YAChE,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,wBAAwB,EAAxB,UAAyB,OAAY;QAC5B,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,0BAA0B;YAC/B,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,uCAAuC,EAAvC,UACE,OAAY;QAEL,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,2CAA2C;YAChD,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,gBAAgB,EAAhB,UAAiB,OAAY;QACpB,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,gBAAgB;YACrB,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,gBAAgB,EAAhB,UAAiB,OAAY;QACpB,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,iBAAiB;YACtB,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,uBAAuB,EAAvB,UAAwB,OAAY;QAEjB,IAAA,OAAO,GAEpB,OAAO,qBAFa,EACtB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,0BAAmB,OAAO,CAAE;YACjC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,iCAAiC,EAAjC,UAAkC,OAAY;QAE3B,IAAA,SAAS,GACtB,OAAO,uBADe,CACd;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,mCAA4B,SAAS,CAAE;SAC7C,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,gBAAgB,EAAhB,UAAiB,OAAY;QACpB,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,iBAAiB;YACtB,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,wBAAwB,EAAxB,UAAyB,OAAY;QAElB,IAAA,QAAQ,GAErB,OAAO,sBAFc,EACvB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,0BAAmB,QAAQ,CAAE;YAClC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,mCAAmC,EAAnC,UACE,OAAY;QAGK,IAAA,kBAAkB,GAC/B,OAAO,gCADwB,CACvB;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,2BAAoB,kBAAkB,CAAE;SAC9C,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,4BAA4B,EAA5B,UAA6B,OAAY;QAEtB,IAAA,WAAW,GAExB,OAAO,yBAFiB,EAC1B,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,4BAAqB,WAAW,CAAE;YACvC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,2BAA2B,EAA3B,UAA4B,OAAY;QAErB,IAAA,UAAU,GAEvB,OAAO,wBAFgB,EACzB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,4BAAqB,UAAU,CAAE;YACtC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,8BAA8B,EAA9B,UAA+B,OAAY;QAExB,IAAA,UAAU,GAEvB,OAAO,wBAFgB,EACzB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,gCAAyB,UAAU,CAAE;YAC1C,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,iCAAiC,EAAjC;QACE,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oCAAoC;SAC1C,CAAC,CAAC;IACL,CAAC;IACD,4BAA4B,EAA5B,UAA6B,OAAY;QAEtB,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,8BAAuB,SAAS,CAAE;YACvC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,+BAA+B,EAA/B,UAAgC,OAAY;QAEzB,IAAA,SAAS,GACtB,OAAO,uBADe,CACd;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,QAAQ;YAChB,GAAG,EAAE,8BAAuB,SAAS,CAAE;SACxC,CAAC,CAAC;IACL,CAAC;IACD,4BAA4B,EAA5B,UAA6B,OAAY;QAEtB,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,eAAY;YACvC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,6BAA6B,EAA7B,UAA8B,OAAY;QAEvB,IAAA,SAAS,GAEtB,OAAO,uBAFe,EACxB,WAAW,GACT,OAAO,YADE,CACD;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,oBAAa,SAAS,eAAY;YACvC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,qCAAqC,EAArC,UACE,OAAY;QAGV,IAAA,KACE,OAAO,aAD2B,EAArB,SAAS,eAAA,EAAE,SAAS,eAAC,CAC1B;QAEZ,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oBAAa,SAAS,wBAAc,SAAS,CAAE;SACrD,CAAC,CAAC;IACL,CAAC;IACD,0BAA0B,EAA1B,UAA2B,OAAY;QAC9B,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,4BAA4B;YACjC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,+BAA+B,EAA/B,UAAgC,OAAY;QACnC,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,kCAAkC;YACvC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD;;OAEG;IACH,cAAc,EAAd,UAAe,OAAY;QAClB,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,eAAe;YACpB,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;IACD,0BAA0B,EAA1B,UAA2B,OAAY;QAC9B,IAAA,WAAW,GAAI,OAAO,YAAX,CAAY;QAE9B,OAAO,YAAY,CAAC;YAClB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,8BAA8B;YACnC,WAAW,aAAA;SACZ,CAAC,CAAC;IACL,CAAC;CACF,CAAC,EAta0C,CAsa1C,CAAC;AAEH,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,637 @@
|
|
|
1
|
+
export interface GuestClaimsCancelRequest {
|
|
2
|
+
claimReasonDetail?: string;
|
|
3
|
+
responsibleObjectType?: string;
|
|
4
|
+
claimType?: string;
|
|
5
|
+
claimedProductOptions?: Array<ProfileClaimsEstimateClaimedProductOptions>;
|
|
6
|
+
saveBankAccountInfo?: boolean;
|
|
7
|
+
bankAccountInfo?: ProfileOrderOptionsOrderOptionNoClaimsCancelBankAccountInfo;
|
|
8
|
+
claimReasonType?: string;
|
|
9
|
+
refundsImmediately?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface GuestClaimsClaimNoAccount {
|
|
12
|
+
depositorName?: string;
|
|
13
|
+
bank?: string;
|
|
14
|
+
account?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface GuestClaimsClaimNoResult {
|
|
17
|
+
claimReasonDetail?: string;
|
|
18
|
+
returnDelivery?: GuestClaimsClaimNoResultReturnDelivery;
|
|
19
|
+
claimedOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
20
|
+
claimNo?: number;
|
|
21
|
+
exchangedOption?: GuestClaimsClaimNoResultExchangedOption;
|
|
22
|
+
claimReasonType?: string;
|
|
23
|
+
returnWayType?: string;
|
|
24
|
+
orderProductOptionNo?: number;
|
|
25
|
+
claimYmdt?: string;
|
|
26
|
+
exchangePayInfo?: GuestClaimsClaimNoResultExchangePayInfo;
|
|
27
|
+
exchangeBeforeDelivery?: boolean;
|
|
28
|
+
claimImageUrls?: Array<object | boolean | string | number>;
|
|
29
|
+
claimedOption?: GuestClaimsClaimNoResultClaimedOption;
|
|
30
|
+
returnAddress?: GuestClaimsClaimNoResultReturnAddress;
|
|
31
|
+
refundType?: string;
|
|
32
|
+
claimType?: string;
|
|
33
|
+
exchangeAddress?: GuestClaimsClaimNoResultExchangeAddress;
|
|
34
|
+
claimClassType?: string;
|
|
35
|
+
claimPriceInfo?: GuestClaimsClaimNoResultClaimPriceInfo;
|
|
36
|
+
refundBankAccount?: GuestClaimsClaimNoResultRefundBankAccount;
|
|
37
|
+
}
|
|
38
|
+
export interface ClaimOrderOptionNoPath {
|
|
39
|
+
orderOptionNo: string;
|
|
40
|
+
}
|
|
41
|
+
export interface GuestOrderOptionOrderOptionNoClaimsRequest {
|
|
42
|
+
pathVariable: ClaimOrderOptionNoPath;
|
|
43
|
+
queryString: {
|
|
44
|
+
claimType: string;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
export interface GuestClaimsClaimNoResultClaimPriceInfo {
|
|
48
|
+
subtractionAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateSubtractionAmtInfo;
|
|
49
|
+
refundTypeLabel?: string;
|
|
50
|
+
refundMainPayAmt?: number;
|
|
51
|
+
refundType?: string;
|
|
52
|
+
deliveryAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateDeliveryAmtInfo;
|
|
53
|
+
refundSubPayAmt?: number;
|
|
54
|
+
refundPayAmt?: number;
|
|
55
|
+
additionalPayAmt?: number;
|
|
56
|
+
refundPayType?: string;
|
|
57
|
+
productAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateProductAmtInfo;
|
|
58
|
+
}
|
|
59
|
+
export interface GuestClaimsClaimNoResultClaimedOption {
|
|
60
|
+
reservationDeliveryYmdt?: string;
|
|
61
|
+
claimNo?: number;
|
|
62
|
+
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
63
|
+
claimReasonType?: string;
|
|
64
|
+
deliverable?: boolean;
|
|
65
|
+
optionUsed?: boolean;
|
|
66
|
+
productName?: string;
|
|
67
|
+
claimStatusTypeLabel?: string;
|
|
68
|
+
claimStatusType?: string;
|
|
69
|
+
additionalProductNo?: number;
|
|
70
|
+
optionType?: string;
|
|
71
|
+
payType?: string;
|
|
72
|
+
deliveryInternationalYn?: boolean;
|
|
73
|
+
price?: GuestClaimsClaimNoResultPrice;
|
|
74
|
+
imageUrl?: string;
|
|
75
|
+
member?: boolean;
|
|
76
|
+
reservation?: boolean;
|
|
77
|
+
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
78
|
+
refundable?: boolean;
|
|
79
|
+
optionNo?: number;
|
|
80
|
+
orderOptionNo?: number;
|
|
81
|
+
productNo?: number;
|
|
82
|
+
claimReasonDetail?: string;
|
|
83
|
+
optionTitle?: string;
|
|
84
|
+
delivery?: GuestClaimsClaimNoResultDelivery;
|
|
85
|
+
brandName?: string;
|
|
86
|
+
pgType?: string;
|
|
87
|
+
orderNo?: string;
|
|
88
|
+
orderStatusType?: string;
|
|
89
|
+
optionValue?: string;
|
|
90
|
+
orderCnt?: number;
|
|
91
|
+
exchangeYn?: string;
|
|
92
|
+
accumulationAmt?: number;
|
|
93
|
+
orderStatusDate?: GuestClaimsClaimNoResultOrderStatusDate;
|
|
94
|
+
brandNameEn?: string;
|
|
95
|
+
productNameEn?: string;
|
|
96
|
+
optionName?: string;
|
|
97
|
+
optionManagementCd?: string;
|
|
98
|
+
}
|
|
99
|
+
export interface GuestClaimsClaimNoResultClaimedOptions {
|
|
100
|
+
reservationDeliveryYmdt?: string;
|
|
101
|
+
claimNo?: number;
|
|
102
|
+
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
103
|
+
claimReasonType?: string;
|
|
104
|
+
deliverable?: boolean;
|
|
105
|
+
optionUsed?: boolean;
|
|
106
|
+
productName?: string;
|
|
107
|
+
claimStatusTypeLabel?: string;
|
|
108
|
+
claimStatusType?: string;
|
|
109
|
+
additionalProductNo?: number;
|
|
110
|
+
optionType?: string;
|
|
111
|
+
payType?: string;
|
|
112
|
+
deliveryInternationalYn?: boolean;
|
|
113
|
+
price?: GuestClaimsClaimNoResultPrice;
|
|
114
|
+
imageUrl?: string;
|
|
115
|
+
member?: boolean;
|
|
116
|
+
reservation?: boolean;
|
|
117
|
+
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
118
|
+
refundable?: boolean;
|
|
119
|
+
optionNo?: number;
|
|
120
|
+
orderOptionNo?: number;
|
|
121
|
+
productNo?: number;
|
|
122
|
+
claimReasonDetail?: string;
|
|
123
|
+
optionTitle?: string;
|
|
124
|
+
delivery?: GuestClaimsClaimNoResultDelivery;
|
|
125
|
+
brandName?: string;
|
|
126
|
+
pgType?: string;
|
|
127
|
+
orderNo?: string;
|
|
128
|
+
orderStatusType?: string;
|
|
129
|
+
optionValue?: string;
|
|
130
|
+
orderCnt?: number;
|
|
131
|
+
exchangeYn?: string;
|
|
132
|
+
accumulationAmt?: number;
|
|
133
|
+
orderStatusDate?: GuestClaimsClaimNoResultOrderStatusDate;
|
|
134
|
+
brandNameEn?: string;
|
|
135
|
+
productNameEn?: string;
|
|
136
|
+
optionName?: string;
|
|
137
|
+
optionManagementCd?: string;
|
|
138
|
+
}
|
|
139
|
+
export interface GuestClaimsClaimNoResultDelivery {
|
|
140
|
+
deliveryCompanyTypeLabel?: string;
|
|
141
|
+
deliveryCompanyType?: string;
|
|
142
|
+
retrieveInvoiceUrl?: string;
|
|
143
|
+
invoiceNo?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface GuestClaimsClaimNoResultExchangeAddress {
|
|
146
|
+
note?: string;
|
|
147
|
+
addressStr?: string;
|
|
148
|
+
address?: string;
|
|
149
|
+
name?: string;
|
|
150
|
+
jibunAddress?: string;
|
|
151
|
+
detailAddress?: string;
|
|
152
|
+
zipCd?: string;
|
|
153
|
+
contact?: string;
|
|
154
|
+
}
|
|
155
|
+
export interface GuestClaimsClaimNoResultExchangePayInfo {
|
|
156
|
+
exchangePayAmt?: number;
|
|
157
|
+
bankAccount?: GuestClaimsClaimNoResultExchangePayInfoBankAccount;
|
|
158
|
+
payType?: string;
|
|
159
|
+
remitter?: string;
|
|
160
|
+
}
|
|
161
|
+
export interface GuestClaimsClaimNoResultExchangePayInfoBankAccount {
|
|
162
|
+
bankAccount?: string;
|
|
163
|
+
bankDepositorName?: string;
|
|
164
|
+
bank?: string;
|
|
165
|
+
bankName?: string;
|
|
166
|
+
}
|
|
167
|
+
export interface GuestClaimsClaimNoResultExchangedOption {
|
|
168
|
+
reservationDeliveryYmdt?: string;
|
|
169
|
+
claimNo?: number;
|
|
170
|
+
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
171
|
+
claimReasonType?: string;
|
|
172
|
+
deliverable?: boolean;
|
|
173
|
+
optionUsed?: boolean;
|
|
174
|
+
productName?: string;
|
|
175
|
+
claimStatusTypeLabel?: string;
|
|
176
|
+
claimStatusType?: string;
|
|
177
|
+
additionalProductNo?: number;
|
|
178
|
+
optionType?: string;
|
|
179
|
+
payType?: string;
|
|
180
|
+
deliveryInternationalYn?: boolean;
|
|
181
|
+
price?: GuestClaimsClaimNoResultExchangedOptionPrice;
|
|
182
|
+
imageUrl?: string;
|
|
183
|
+
member?: boolean;
|
|
184
|
+
reservation?: boolean;
|
|
185
|
+
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
186
|
+
refundable?: boolean;
|
|
187
|
+
optionNo?: number;
|
|
188
|
+
orderOptionNo?: number;
|
|
189
|
+
productNo?: number;
|
|
190
|
+
claimReasonDetail?: string;
|
|
191
|
+
optionTitle?: string;
|
|
192
|
+
delivery?: GuestClaimsClaimNoResultExchangedOptionDelivery;
|
|
193
|
+
brandName?: string;
|
|
194
|
+
pgType?: string;
|
|
195
|
+
orderNo?: string;
|
|
196
|
+
orderStatusType?: string;
|
|
197
|
+
optionValue?: string;
|
|
198
|
+
orderCnt?: number;
|
|
199
|
+
exchangeYn?: string;
|
|
200
|
+
accumulationAmt?: number;
|
|
201
|
+
orderStatusDate?: GuestClaimsClaimNoResultExchangedOptionOrderStatusDate;
|
|
202
|
+
brandNameEn?: string;
|
|
203
|
+
productNameEn?: string;
|
|
204
|
+
optionName?: string;
|
|
205
|
+
optionManagementCd?: string;
|
|
206
|
+
}
|
|
207
|
+
export interface GuestClaimsClaimNoResultExchangedOptionDelivery {
|
|
208
|
+
deliveryCompanyTypeLabel?: string;
|
|
209
|
+
deliveryCompanyType?: string;
|
|
210
|
+
retrieveInvoiceUrl?: string;
|
|
211
|
+
invoiceNo?: string;
|
|
212
|
+
}
|
|
213
|
+
export interface GuestClaimsClaimNoResultExchangedOptionOrderStatusDate {
|
|
214
|
+
reviewableYmdt?: string;
|
|
215
|
+
buyConfirmYmdt?: string;
|
|
216
|
+
registerYmdt?: string;
|
|
217
|
+
}
|
|
218
|
+
export interface GuestClaimsClaimNoResultExchangedOptionPrice {
|
|
219
|
+
buyPrice?: number;
|
|
220
|
+
buyAmt?: number;
|
|
221
|
+
immediateDiscountedAmt?: number;
|
|
222
|
+
immediateDiscountAmt?: number;
|
|
223
|
+
additionalDiscountAmt?: number;
|
|
224
|
+
salePrice?: number;
|
|
225
|
+
standardAmt?: number;
|
|
226
|
+
immediateDiscountedPrice?: number;
|
|
227
|
+
standardPrice?: number;
|
|
228
|
+
addPrice?: number;
|
|
229
|
+
accumulationRate?: number;
|
|
230
|
+
}
|
|
231
|
+
export interface GuestClaimsClaimNoResultInputs {
|
|
232
|
+
inputValue?: string;
|
|
233
|
+
inputLabel?: string;
|
|
234
|
+
}
|
|
235
|
+
export interface GuestClaimsClaimNoResultNextActions {
|
|
236
|
+
nextActionType?: string;
|
|
237
|
+
uri?: string;
|
|
238
|
+
}
|
|
239
|
+
export interface GuestClaimsClaimNoResultOrderStatusDate {
|
|
240
|
+
reviewableYmdt?: string;
|
|
241
|
+
buyConfirmYmdt?: string;
|
|
242
|
+
registerYmdt?: string;
|
|
243
|
+
}
|
|
244
|
+
export interface GuestClaimsClaimNoResultPrice {
|
|
245
|
+
buyPrice?: number;
|
|
246
|
+
buyAmt?: number;
|
|
247
|
+
immediateDiscountedAmt?: number;
|
|
248
|
+
immediateDiscountAmt?: number;
|
|
249
|
+
additionalDiscountAmt?: number;
|
|
250
|
+
salePrice?: number;
|
|
251
|
+
standardAmt?: number;
|
|
252
|
+
immediateDiscountedPrice?: number;
|
|
253
|
+
standardPrice?: number;
|
|
254
|
+
addPrice?: number;
|
|
255
|
+
accumulationRate?: number;
|
|
256
|
+
}
|
|
257
|
+
export interface GuestClaimsClaimNoResultRefundBankAccount {
|
|
258
|
+
bankAccount?: string;
|
|
259
|
+
bankDepositorName?: string;
|
|
260
|
+
bank?: string;
|
|
261
|
+
bankName?: string;
|
|
262
|
+
}
|
|
263
|
+
export interface GuestClaimsClaimNoResultReturnAddress {
|
|
264
|
+
note?: string;
|
|
265
|
+
addressStr?: string;
|
|
266
|
+
address?: string;
|
|
267
|
+
name?: string;
|
|
268
|
+
jibunAddress?: string;
|
|
269
|
+
detailAddress?: string;
|
|
270
|
+
zipCd?: string;
|
|
271
|
+
contact?: string;
|
|
272
|
+
}
|
|
273
|
+
export interface GuestClaimsClaimNoResultReturnDelivery {
|
|
274
|
+
deliveryCompanyTypeLabel?: string;
|
|
275
|
+
deliveryCompanyType?: string;
|
|
276
|
+
invoiceNo?: string;
|
|
277
|
+
evadesReturnProcess?: boolean;
|
|
278
|
+
}
|
|
279
|
+
export interface GuestOrderOptionsOrderOptionNoClaimsEstimate {
|
|
280
|
+
subtractionAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateSubtractionAmtInfo;
|
|
281
|
+
refundTypeLabel?: string;
|
|
282
|
+
refundMainPayAmt?: number;
|
|
283
|
+
refundType?: string;
|
|
284
|
+
deliveryAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateDeliveryAmtInfo;
|
|
285
|
+
refundSubPayAmt?: number;
|
|
286
|
+
refundPayAmt?: number;
|
|
287
|
+
additionalPayAmt?: number;
|
|
288
|
+
refundPayType?: string;
|
|
289
|
+
productAmtInfo?: GuestOrderOptionsOrderOptionNoClaimsEstimateProductAmtInfo;
|
|
290
|
+
}
|
|
291
|
+
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateDeliveryAmtInfo {
|
|
292
|
+
afterDeliveryAmt?: number;
|
|
293
|
+
beforeDeliveryAmt?: number;
|
|
294
|
+
totalAmt?: number;
|
|
295
|
+
exchangeDeliveryAmt?: number;
|
|
296
|
+
buyerReturn?: boolean;
|
|
297
|
+
returnDeliveryAmt?: number;
|
|
298
|
+
payOnDelivery?: boolean;
|
|
299
|
+
sellerFault?: boolean;
|
|
300
|
+
refundDeliveryAmt?: number;
|
|
301
|
+
exchangeAdjustAmt?: number;
|
|
302
|
+
returnAdjustAmt?: number;
|
|
303
|
+
}
|
|
304
|
+
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateProductAmtInfo {
|
|
305
|
+
discountAmt?: number;
|
|
306
|
+
totalAmt?: number;
|
|
307
|
+
immediateDiscountAmt?: number;
|
|
308
|
+
exchangeImmediateDiscountedPrice?: number;
|
|
309
|
+
additionalDiscountAmt?: number;
|
|
310
|
+
immediateDiscountedPrice?: number;
|
|
311
|
+
standardPrice?: number;
|
|
312
|
+
exchangeAdjustAmt?: number;
|
|
313
|
+
productCouponDiscountAmt?: number;
|
|
314
|
+
exchangeDiscountAmt?: number;
|
|
315
|
+
}
|
|
316
|
+
export interface GuestOrderOptionsOrderOptionNoClaimsEstimateSubtractionAmtInfo {
|
|
317
|
+
totalAmt?: number;
|
|
318
|
+
deliveryCouponAmt?: number;
|
|
319
|
+
refundAdjustReason?: string;
|
|
320
|
+
refundAdjustAmt?: number;
|
|
321
|
+
cartCouponAmt?: number;
|
|
322
|
+
}
|
|
323
|
+
export interface ProfileClaimsRequest {
|
|
324
|
+
claimTypes: string;
|
|
325
|
+
endYmd: string;
|
|
326
|
+
hasTotalCount: string;
|
|
327
|
+
pageNumber: string;
|
|
328
|
+
pageSize: string;
|
|
329
|
+
}
|
|
330
|
+
export interface ProfileClaims {
|
|
331
|
+
totalCount?: number;
|
|
332
|
+
items?: Array<ProfileClaimsItems>;
|
|
333
|
+
}
|
|
334
|
+
export interface ProfileClaimsClaimPriceInfo {
|
|
335
|
+
subtractionAmtInfo?: ProfileClaimsClaimPriceInfoSubtractionAmtInfo;
|
|
336
|
+
refundTypeLabel?: string;
|
|
337
|
+
refundMainPayAmt?: number;
|
|
338
|
+
refundType?: string;
|
|
339
|
+
deliveryAmtInfo?: ProfileClaimsClaimPriceInfoDeliveryAmtInfo;
|
|
340
|
+
refundSubPayAmt?: number;
|
|
341
|
+
refundPayAmt?: number;
|
|
342
|
+
additionalPayAmt?: number;
|
|
343
|
+
refundPayType?: string;
|
|
344
|
+
productAmtInfo?: ProfileClaimsClaimPriceInfoProductAmtInfo;
|
|
345
|
+
}
|
|
346
|
+
export interface ProfileClaimsClaimPriceInfoDeliveryAmtInfo {
|
|
347
|
+
afterDeliveryAmt?: number;
|
|
348
|
+
beforeDeliveryAmt?: number;
|
|
349
|
+
totalAmt?: number;
|
|
350
|
+
exchangeDeliveryAmt?: number;
|
|
351
|
+
buyerReturn?: boolean;
|
|
352
|
+
returnDeliveryAmt?: number;
|
|
353
|
+
payOnDelivery?: boolean;
|
|
354
|
+
sellerFault?: boolean;
|
|
355
|
+
refundDeliveryAmt?: number;
|
|
356
|
+
exchangeAdjustAmt?: number;
|
|
357
|
+
returnAdjustAmt?: number;
|
|
358
|
+
}
|
|
359
|
+
export interface ProfileClaimsClaimPriceInfoProductAmtInfo {
|
|
360
|
+
discountAmt?: number;
|
|
361
|
+
totalAmt?: number;
|
|
362
|
+
immediateDiscountAmt?: number;
|
|
363
|
+
exchangeImmediateDiscountedPrice?: number;
|
|
364
|
+
additionalDiscountAmt?: number;
|
|
365
|
+
immediateDiscountedPrice?: number;
|
|
366
|
+
standardPrice?: number;
|
|
367
|
+
exchangeAdjustAmt?: number;
|
|
368
|
+
productCouponDiscountAmt?: number;
|
|
369
|
+
exchangeDiscountAmt?: number;
|
|
370
|
+
}
|
|
371
|
+
export interface ProfileClaimsClaimPriceInfoSubtractionAmtInfo {
|
|
372
|
+
totalAmt?: number;
|
|
373
|
+
deliveryCouponAmt?: number;
|
|
374
|
+
refundAdjustReason?: string;
|
|
375
|
+
refundAdjustAmt?: number;
|
|
376
|
+
cartCouponAmt?: number;
|
|
377
|
+
}
|
|
378
|
+
export interface ProfileClaimsItems {
|
|
379
|
+
claimReasonDetail?: string;
|
|
380
|
+
claimedOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
381
|
+
claimType?: string;
|
|
382
|
+
claimNo?: number;
|
|
383
|
+
orderNo?: string;
|
|
384
|
+
claimReasonType?: string;
|
|
385
|
+
orderYmdt?: string;
|
|
386
|
+
claimYmdt?: string;
|
|
387
|
+
claimPriceInfo?: ProfileClaimsClaimPriceInfo;
|
|
388
|
+
}
|
|
389
|
+
export interface ProfileClaimsClaimNoCheckWithdraw {
|
|
390
|
+
claimNo?: number;
|
|
391
|
+
afterClaimNos?: Array<object | boolean | string | number>;
|
|
392
|
+
validationType?: string;
|
|
393
|
+
shippingNos?: Array<object | boolean | string | number>;
|
|
394
|
+
}
|
|
395
|
+
export interface ProfileClaimsClaimNoPath {
|
|
396
|
+
claimNo: string;
|
|
397
|
+
}
|
|
398
|
+
export interface ProfileClaimsEstimate {
|
|
399
|
+
responsibleObjectType?: string;
|
|
400
|
+
claimedProductOptions?: Array<ProfileClaimsEstimateClaimedProductOptions>;
|
|
401
|
+
claimType?: string;
|
|
402
|
+
productCnt?: number;
|
|
403
|
+
claimReasonType?: string;
|
|
404
|
+
returnWayType?: string;
|
|
405
|
+
}
|
|
406
|
+
export interface ProfileClaimsEstimateClaimedProductOptions {
|
|
407
|
+
productCnt?: number;
|
|
408
|
+
orderProductOptionNo?: number;
|
|
409
|
+
}
|
|
410
|
+
export interface ProfileClaimsReturn {
|
|
411
|
+
claimReasonDetail?: string;
|
|
412
|
+
responsibleObjectType?: string;
|
|
413
|
+
bankAccountInfo?: ProfileClaimsReturnBankAccountInfo;
|
|
414
|
+
productCnt?: number;
|
|
415
|
+
claimReasonType?: string;
|
|
416
|
+
returnWayType?: string;
|
|
417
|
+
deliveryCompanyType?: string;
|
|
418
|
+
claimImageUrls?: Array<object | boolean | string | number>;
|
|
419
|
+
returnAddress?: ProfileClaimsReturnReturnAddress;
|
|
420
|
+
claimedProductOptions?: Array<ProfileClaimsEstimateClaimedProductOptions>;
|
|
421
|
+
claimType?: string;
|
|
422
|
+
saveBankAccountInfo?: boolean;
|
|
423
|
+
invoiceNo?: string;
|
|
424
|
+
}
|
|
425
|
+
export interface ProfileClaimsReturnBankAccountInfo {
|
|
426
|
+
bankAccount?: string;
|
|
427
|
+
bankDepositorName?: string;
|
|
428
|
+
bank?: string;
|
|
429
|
+
bankName?: string;
|
|
430
|
+
}
|
|
431
|
+
export interface ProfileClaimsReturnReturnAddress {
|
|
432
|
+
receiverAddress?: string;
|
|
433
|
+
receiverJibunAddress?: string;
|
|
434
|
+
addressNo?: number;
|
|
435
|
+
receiverName?: string;
|
|
436
|
+
customsIdNumber?: string;
|
|
437
|
+
countryCd?: string;
|
|
438
|
+
receiverZipCd?: string;
|
|
439
|
+
addressName?: string;
|
|
440
|
+
receiverDetailAddress?: string;
|
|
441
|
+
deliveryMemo?: string;
|
|
442
|
+
receiverContact?: string;
|
|
443
|
+
}
|
|
444
|
+
export interface ProfileOrderOptionsOrderOptionNoClaims {
|
|
445
|
+
deliveryCompanyTypes?: Array<object | boolean | string | number>;
|
|
446
|
+
originalOption?: ProfileOrderOptionsOrderOptionNoClaimsOriginalOption;
|
|
447
|
+
claimReasonTypes?: Array<ProfileOrderOptionsOrderOptionNoClaimsClaimReasonTypes>;
|
|
448
|
+
returnAddress?: ProfileOrderOptionsOrderOptionNoClaimsReturnAddress;
|
|
449
|
+
claimType?: string;
|
|
450
|
+
payType?: string;
|
|
451
|
+
exchangeAddress?: ProfileOrderOptionsOrderOptionNoClaimsExchangeAddress;
|
|
452
|
+
claimableOptions?: Array<GuestClaimsClaimNoResultClaimedOptions>;
|
|
453
|
+
responsibleObjectTypes?: Array<object | boolean | string | number>;
|
|
454
|
+
availableBanks?: Array<ProfileOrderOptionsOrderOptionNoClaimsAvailableBanks>;
|
|
455
|
+
refundAccount?: ProfileOrderOptionsOrderOptionNoClaimsRefundAccount;
|
|
456
|
+
deliveryCompanyTypeWithLabels?: Array<ProfileOrderOptionsOrderOptionNoClaimsDeliveryCompanyTypeWithLabels>;
|
|
457
|
+
returnWarehouse?: ProfileOrderOptionsOrderOptionNoClaimsReturnWarehouse;
|
|
458
|
+
}
|
|
459
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsAvailableBanks {
|
|
460
|
+
bank?: string;
|
|
461
|
+
label?: string;
|
|
462
|
+
}
|
|
463
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsClaimReasonTypes {
|
|
464
|
+
responsibleObjectType?: string;
|
|
465
|
+
claimReasonType?: string;
|
|
466
|
+
label?: string;
|
|
467
|
+
}
|
|
468
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsDeliveryCompanyTypeWithLabels {
|
|
469
|
+
deliveryCompanyType?: string;
|
|
470
|
+
label?: string;
|
|
471
|
+
}
|
|
472
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsExchangeAddress {
|
|
473
|
+
receiverAddress?: string;
|
|
474
|
+
addressView?: string;
|
|
475
|
+
receiverJibunAddress?: string;
|
|
476
|
+
receiverName?: string;
|
|
477
|
+
customsIdNumber?: string;
|
|
478
|
+
countryCd?: string;
|
|
479
|
+
receiverZipCd?: string;
|
|
480
|
+
receiverDetailAddress?: string;
|
|
481
|
+
deliveryMemo?: string;
|
|
482
|
+
receiverContact?: string;
|
|
483
|
+
}
|
|
484
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsOriginalOption {
|
|
485
|
+
reservationDeliveryYmdt?: string;
|
|
486
|
+
claimNo?: number;
|
|
487
|
+
inputs?: Array<GuestClaimsClaimNoResultInputs>;
|
|
488
|
+
claimReasonType?: string;
|
|
489
|
+
deliverable?: boolean;
|
|
490
|
+
optionUsed?: boolean;
|
|
491
|
+
productName?: string;
|
|
492
|
+
claimStatusTypeLabel?: string;
|
|
493
|
+
claimStatusType?: string;
|
|
494
|
+
additionalProductNo?: number;
|
|
495
|
+
optionType?: string;
|
|
496
|
+
payType?: string;
|
|
497
|
+
deliveryInternationalYn?: boolean;
|
|
498
|
+
price?: GuestClaimsClaimNoResultPrice;
|
|
499
|
+
imageUrl?: string;
|
|
500
|
+
member?: boolean;
|
|
501
|
+
reservation?: boolean;
|
|
502
|
+
nextActions?: Array<GuestClaimsClaimNoResultNextActions>;
|
|
503
|
+
refundable?: boolean;
|
|
504
|
+
optionNo?: number;
|
|
505
|
+
orderOptionNo?: number;
|
|
506
|
+
productNo?: number;
|
|
507
|
+
claimReasonDetail?: string;
|
|
508
|
+
optionTitle?: string;
|
|
509
|
+
delivery?: GuestClaimsClaimNoResultDelivery;
|
|
510
|
+
brandName?: string;
|
|
511
|
+
pgType?: string;
|
|
512
|
+
orderNo?: string;
|
|
513
|
+
orderStatusType?: string;
|
|
514
|
+
optionValue?: string;
|
|
515
|
+
orderCnt?: number;
|
|
516
|
+
exchangeYn?: string;
|
|
517
|
+
accumulationAmt?: number;
|
|
518
|
+
orderStatusDate?: GuestClaimsClaimNoResultOrderStatusDate;
|
|
519
|
+
brandNameEn?: string;
|
|
520
|
+
productNameEn?: string;
|
|
521
|
+
optionName?: string;
|
|
522
|
+
optionManagementCd?: string;
|
|
523
|
+
}
|
|
524
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsRefundAccount {
|
|
525
|
+
bankAccount?: string;
|
|
526
|
+
bankDepositorName?: string;
|
|
527
|
+
bank?: string;
|
|
528
|
+
bankName?: string;
|
|
529
|
+
}
|
|
530
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsReturnAddress {
|
|
531
|
+
receiverAddress?: string;
|
|
532
|
+
addressView?: string;
|
|
533
|
+
receiverJibunAddress?: string;
|
|
534
|
+
receiverName?: string;
|
|
535
|
+
customsIdNumber?: string;
|
|
536
|
+
countryCd?: string;
|
|
537
|
+
receiverZipCd?: string;
|
|
538
|
+
receiverDetailAddress?: string;
|
|
539
|
+
deliveryMemo?: string;
|
|
540
|
+
receiverContact?: string;
|
|
541
|
+
}
|
|
542
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsReturnWarehouse {
|
|
543
|
+
summary?: string;
|
|
544
|
+
address?: string;
|
|
545
|
+
receiverName?: string;
|
|
546
|
+
contact?: string;
|
|
547
|
+
jibunAddress?: string;
|
|
548
|
+
detailAddress?: string;
|
|
549
|
+
zipCd?: string;
|
|
550
|
+
substitutionText?: string;
|
|
551
|
+
}
|
|
552
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsCancel {
|
|
553
|
+
claimReasonDetail?: string;
|
|
554
|
+
responsibleObjectType?: string;
|
|
555
|
+
claimType?: string;
|
|
556
|
+
saveBankAccountInfo?: boolean;
|
|
557
|
+
bankAccountInfo?: ProfileOrderOptionsOrderOptionNoClaimsCancelBankAccountInfo;
|
|
558
|
+
productCnt?: number;
|
|
559
|
+
claimReasonType?: string;
|
|
560
|
+
refundsImmediately?: boolean;
|
|
561
|
+
}
|
|
562
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsCancelBankAccountInfo {
|
|
563
|
+
bankAccount?: string;
|
|
564
|
+
bankDepositorName?: string;
|
|
565
|
+
bank?: string;
|
|
566
|
+
bankName?: string;
|
|
567
|
+
}
|
|
568
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsExchange {
|
|
569
|
+
claimReasonDetail?: string;
|
|
570
|
+
responsibleObjectType?: string;
|
|
571
|
+
bankAccountInfo?: ProfileClaimsReturnBankAccountInfo;
|
|
572
|
+
productCnt?: number;
|
|
573
|
+
claimReasonType?: string;
|
|
574
|
+
returnWayType?: string;
|
|
575
|
+
deliveryCompanyType?: string;
|
|
576
|
+
claimImageUrls?: Array<object | boolean | string | number>;
|
|
577
|
+
returnAddress?: ProfileOrderOptionsOrderOptionNoClaimsExchangeReturnAddress;
|
|
578
|
+
claimType?: string;
|
|
579
|
+
saveBankAccountInfo?: boolean;
|
|
580
|
+
exchangeAddress?: ProfileOrderOptionsOrderOptionNoClaimsExchangeExchangeAddress;
|
|
581
|
+
exchangeOption?: ProfileOrderOptionsOrderOptionNoClaimsExchangeExchangeOption;
|
|
582
|
+
invoiceNo?: string;
|
|
583
|
+
}
|
|
584
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsExchangeExchangeAddress {
|
|
585
|
+
receiverAddress?: string;
|
|
586
|
+
addressView?: string;
|
|
587
|
+
receiverJibunAddress?: string;
|
|
588
|
+
receiverName?: string;
|
|
589
|
+
customsIdNumber?: string;
|
|
590
|
+
countryCd?: string;
|
|
591
|
+
receiverZipCd?: string;
|
|
592
|
+
receiverDetailAddress?: string;
|
|
593
|
+
deliveryMemo?: string;
|
|
594
|
+
receiverContact?: string;
|
|
595
|
+
}
|
|
596
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsExchangeExchangeOption {
|
|
597
|
+
inputTexts?: Array<GuestClaimsClaimNoResultInputs>;
|
|
598
|
+
orderCnt?: number;
|
|
599
|
+
optionNo?: number;
|
|
600
|
+
productNo?: number;
|
|
601
|
+
additionalProductNo?: number;
|
|
602
|
+
}
|
|
603
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsExchangeReturnAddress {
|
|
604
|
+
receiverAddress?: string;
|
|
605
|
+
addressView?: string;
|
|
606
|
+
receiverJibunAddress?: string;
|
|
607
|
+
receiverName?: string;
|
|
608
|
+
customsIdNumber?: string;
|
|
609
|
+
countryCd?: string;
|
|
610
|
+
receiverZipCd?: string;
|
|
611
|
+
receiverDetailAddress?: string;
|
|
612
|
+
deliveryMemo?: string;
|
|
613
|
+
receiverContact?: string;
|
|
614
|
+
}
|
|
615
|
+
export interface ProfileOrderOptionsOrderOptionNoClaimsReturn {
|
|
616
|
+
claimReasonDetail?: string;
|
|
617
|
+
responsibleObjectType?: string;
|
|
618
|
+
claimType?: string;
|
|
619
|
+
saveBankAccountInfo?: boolean;
|
|
620
|
+
bankAccountInfo?: ProfileClaimsReturnBankAccountInfo;
|
|
621
|
+
productCnt?: number;
|
|
622
|
+
claimReasonType?: string;
|
|
623
|
+
returnWayType?: string;
|
|
624
|
+
deliveryCompanyType?: string;
|
|
625
|
+
claimImageUrls?: Array<object | boolean | string | number>;
|
|
626
|
+
invoiceNo?: string;
|
|
627
|
+
returnAddress?: ProfileClaimsReturnReturnAddress;
|
|
628
|
+
}
|
|
629
|
+
export interface ProfileOrdersOrderNoClaimsCancel {
|
|
630
|
+
claimReasonDetail?: string;
|
|
631
|
+
responsibleObjectType?: string;
|
|
632
|
+
claimType?: string;
|
|
633
|
+
saveBankAccountInfo?: boolean;
|
|
634
|
+
bankAccountInfo?: ProfileOrderOptionsOrderOptionNoClaimsCancelBankAccountInfo;
|
|
635
|
+
claimReasonType?: string;
|
|
636
|
+
refundsImmediately?: boolean;
|
|
637
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claim.js","sourceRoot":"","sources":["../../types/claim.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"design.js","sourceRoot":"","sources":["../../types/design.ts"],"names":[],"mappings":""}
|
package/build/types/root.d.ts
CHANGED
|
@@ -11,11 +11,19 @@ export interface CreatorType {
|
|
|
11
11
|
Version: string;
|
|
12
12
|
} & HeadersInit;
|
|
13
13
|
}
|
|
14
|
-
export interface RequestOption<QueryStringType, BodyType> {
|
|
14
|
+
export interface RequestOption<QueryStringType, BodyType, PathType = null> {
|
|
15
15
|
method?: Method;
|
|
16
16
|
url?: string;
|
|
17
17
|
queryString?: QueryStringType;
|
|
18
18
|
requestBody?: BodyType;
|
|
19
|
+
pathVariable: PathType;
|
|
20
|
+
}
|
|
21
|
+
export interface RequestConfig {
|
|
22
|
+
method?: Method;
|
|
23
|
+
url?: string;
|
|
24
|
+
queryString?: any;
|
|
25
|
+
requestBody?: any;
|
|
26
|
+
pathVariable?: any;
|
|
19
27
|
}
|
|
20
28
|
export interface ResponseData<T> extends Response {
|
|
21
29
|
data: T;
|
|
@@ -294,3 +302,10 @@ export interface CreatedOutput {
|
|
|
294
302
|
postCouponsCouponNoDownload(request: any): Promise<ResponseData<any>>;
|
|
295
303
|
};
|
|
296
304
|
}
|
|
305
|
+
export * from './admin';
|
|
306
|
+
export * from './auth';
|
|
307
|
+
export * from './design';
|
|
308
|
+
export * from './manage';
|
|
309
|
+
export * from './member';
|
|
310
|
+
export * from './product';
|
|
311
|
+
export * from '../src/index';
|
package/build/types/root.js
CHANGED
package/build/types/root.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"root.js","sourceRoot":"","sources":["../../types/root.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"root.js","sourceRoot":"","sources":["../../types/root.ts"],"names":[],"mappings":"AA4dA,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopby/shop-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/types/root.d.ts",
|
|
@@ -13,24 +13,34 @@
|
|
|
13
13
|
"clean": "gts clean",
|
|
14
14
|
"compile": "tsc",
|
|
15
15
|
"fix": "gts fix",
|
|
16
|
-
"prepare": "
|
|
16
|
+
"prepare": "husky install & tsc",
|
|
17
17
|
"pretest": "npm run compile",
|
|
18
18
|
"posttest": "npm run lint",
|
|
19
|
-
"upload": "npm
|
|
19
|
+
"upload": "npm publish --access public",
|
|
20
|
+
"release": "standard-version"
|
|
20
21
|
},
|
|
21
22
|
"repository": {
|
|
22
23
|
"type": "git",
|
|
23
24
|
"url": "http://gitlab.e-ncp.com/ncp-client/shop-sdk.git"
|
|
24
25
|
},
|
|
25
|
-
"author": "",
|
|
26
|
+
"author": "nhn-commerce",
|
|
26
27
|
"license": "ISC",
|
|
27
28
|
"dependencies": {
|
|
28
29
|
"lodash.curry": "^4.1.1"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
32
|
+
"@commitlint/cli": "15.0.0",
|
|
33
|
+
"@commitlint/config-conventional": "15.0.0",
|
|
31
34
|
"@types/lodash.curry": "^4.1.6",
|
|
32
35
|
"@types/node": "^16.11.10",
|
|
33
36
|
"gts": "^3.1.0",
|
|
37
|
+
"husky": "7.0.4",
|
|
38
|
+
"standard-version": "9.3.2",
|
|
34
39
|
"typescript": "^4.5.2"
|
|
40
|
+
},
|
|
41
|
+
"husky": {
|
|
42
|
+
"hooks": {
|
|
43
|
+
"commit-msg": "echo -E HUSKY_GIT_PARAMS"
|
|
44
|
+
}
|
|
35
45
|
}
|
|
36
46
|
}
|