@shopby/shop-sdk 1.52.1 → 1.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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.53.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.52.2...v1.53.0) (2023-03-20)
6
+
7
+
8
+ ### Features
9
+
10
+ * add types for some guest claim api ([#180](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/180)) ([0f07727](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/0f077278da3de9fd3b4540901a6d2f7034f77457))
11
+
12
+ ### [1.52.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.52.1...v1.52.2) (2023-03-20)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * fix getProfileLikeProducts type upper-case ([7041546](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/704154687d6e47a903f6a662fda113d2e8aad445))
18
+
5
19
  ### [1.52.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.52.0...v1.52.1) (2023-03-20)
6
20
 
7
21
 
@@ -1,21 +1,22 @@
1
1
  import { ResponseData } from '../../../types/http';
2
- import { GetProfileClaimsClaimNoCheckWithdrawRequest, GetProfileClaimsClaimNoCheckWithdrawResponse, GetProfileClaimsClaimNoResultRequest, GetProfileClaimsClaimNoResultResponse, GetProfileOrderOptionsOrderOptionNoClaimsEstimateRequest, GetProfileOrderOptionsOrderOptionNoClaimsEstimateResponse, GetProfileOrderOptionsOrderOptionNoClaimsRequest, GetProfileOrderOptionsOrderOptionNoClaimsResponse, PostProfileClaimsCancelRequest, PostProfileClaimsEstimateRequest, PostProfileClaimsEstimateResponse, PostProfileClaimsReturnRequest, PostProfileOrderOptionsOrderOptionNoClaimsCancelRequest, PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequest, PostProfileOrderOptionsOrderOptionNoClaimsReturnRequest, PostProfileOrdersOrderNoClaimsCancelRequest, PutProfileClaimsClaimNoAccountRequest, PutProfileClaimsClaimNoWithdrawRequest, PutProfileOrderOptionsOrderOptionNoClaimsWithDrawRequest } from '../../../types/domain/claim';
2
+ import { GetGuestOrderOptionsOrderOptionNoClaimsRequest, GetGuestOrderOptionsOrderOptionNoClaimsResponse, GetProfileClaimsClaimNoCheckWithdrawRequest, GetProfileClaimsClaimNoCheckWithdrawResponse, GetProfileClaimsClaimNoResultRequest, GetProfileClaimsClaimNoResultResponse, GetProfileOrderOptionsOrderOptionNoClaimsEstimateRequest, GetProfileOrderOptionsOrderOptionNoClaimsEstimateResponse, GetProfileOrderOptionsOrderOptionNoClaimsRequest, GetProfileOrderOptionsOrderOptionNoClaimsResponse, PostGuestClaimsCancelRequest, PostGuestClaimsReturnRequest, PostGuestOrderOptionsOrderOptionNoClaimsReturnRequest, PostGuestOrdersOrderNoClaimsCancelRequest, PostProfileClaimsCancelRequest, PostProfileClaimsEstimateRequest, PostProfileClaimsEstimateResponse, PostProfileClaimsReturnRequest, PostProfileOrderOptionsOrderOptionNoClaimsCancelRequest, PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequest, PostProfileOrderOptionsOrderOptionNoClaimsReturnRequest, PostProfileOrdersOrderNoClaimsCancelRequest, PutProfileClaimsClaimNoAccountRequest, PutProfileClaimsClaimNoWithdrawRequest, PutProfileOrderOptionsOrderOptionNoClaimsWithDrawRequest } from '../../../types/domain/claim';
3
3
  declare const claim: (httpRequest: Function) => {
4
4
  /**
5
5
  * Guest
6
6
  */
7
- postGuestClaimsCancel(request: any): Promise<ResponseData<void>>;
7
+ postGuestClaimsCancel(request: PostGuestClaimsCancelRequest): Promise<ResponseData<void>>;
8
8
  postGuestClaimsEstimate(request: any): Promise<ResponseData<any>>;
9
- postGuestClaimsReturn(request: any): Promise<ResponseData<void>>;
9
+ postGuestClaimsReturn(request: PostGuestClaimsReturnRequest): Promise<ResponseData<void>>;
10
10
  getGuestClaimsClaimNoCheckWithdraw(request: any): Promise<ResponseData<any>>;
11
11
  getGuestClaimsClaimNoResult(request: any): Promise<ResponseData<any>>;
12
12
  putGuestClaimsClaimNoWithdraw(request: any): Promise<ResponseData<void>>;
13
- getGuestOrderOptionOrderOptionNoClaims(request: any): Promise<ResponseData<any>>;
13
+ getGuestOrderOptionOrderOptionNoClaims(request: GetGuestOrderOptionsOrderOptionNoClaimsRequest): Promise<ResponseData<GetGuestOrderOptionsOrderOptionNoClaimsResponse>>;
14
14
  postGuestOrderOptionOrderOptionNoClaimsCancel(request: any): Promise<ResponseData<void>>;
15
15
  getGuestOrderOptionOrderOptionNoClaimsEstimate(request: any): Promise<ResponseData<any>>;
16
16
  getGuestOrderOptionOrderOptionNoClaimsResult(request: any): Promise<ResponseData<any>>;
17
- postGuestOrderOptionOrderOptionNoClaimsReturn(request: any): Promise<ResponseData<void>>;
17
+ postGuestOrderOptionOrderOptionNoClaimsReturn(request: PostGuestOrderOptionsOrderOptionNoClaimsReturnRequest): Promise<ResponseData<void>>;
18
18
  putGuestOrderOptionOrderOptionNoClaimsWithdraw(request: any): Promise<ResponseData<void>>;
19
+ postGuestOrdersOrderNoClaimsCancel(request: PostGuestOrdersOrderNoClaimsCancelRequest): Promise<ResponseData<void>>;
19
20
  /**
20
21
  * Profile
21
22
  */
@@ -3,10 +3,11 @@ var claim = function (httpRequest) { return ({
3
3
  * Guest
4
4
  */
5
5
  postGuestClaimsCancel: function (request) {
6
- var requestBody = request.requestBody;
6
+ var requestBody = request.requestBody, headers = request.headers;
7
7
  return httpRequest({
8
8
  method: 'POST',
9
9
  url: '/guest/claims/cancel',
10
+ headers: headers,
10
11
  requestBody: requestBody,
11
12
  key: 'postGuestClaimsCancel',
12
13
  });
@@ -21,10 +22,11 @@ var claim = function (httpRequest) { return ({
21
22
  });
22
23
  },
23
24
  postGuestClaimsReturn: function (request) {
24
- var requestBody = request.requestBody;
25
+ var requestBody = request.requestBody, headers = request.headers;
25
26
  return httpRequest({
26
27
  method: 'POST',
27
28
  url: '/guest/claims/return',
29
+ headers: headers,
28
30
  requestBody: requestBody,
29
31
  key: 'postGuestClaimsReturn',
30
32
  });
@@ -54,10 +56,11 @@ var claim = function (httpRequest) { return ({
54
56
  });
55
57
  },
56
58
  getGuestOrderOptionOrderOptionNoClaims: function (request) {
57
- var orderOptionNo = request.pathVariable.orderOptionNo, queryString = request.queryString;
59
+ var orderOptionNo = request.pathVariable.orderOptionNo, queryString = request.queryString, headers = request.headers;
58
60
  return httpRequest({
59
61
  method: 'GET',
60
62
  url: "/guest/order-options/".concat(orderOptionNo, "/claims"),
63
+ headers: headers,
61
64
  queryString: queryString,
62
65
  key: 'getGuestOrderOptionOrderOptionNoClaims',
63
66
  });
@@ -89,10 +92,11 @@ var claim = function (httpRequest) { return ({
89
92
  });
90
93
  },
91
94
  postGuestOrderOptionOrderOptionNoClaimsReturn: function (request) {
92
- var orderOptionNo = request.pathVariable.orderOptionNo, requestBody = request.requestBody;
95
+ var orderOptionNo = request.pathVariable.orderOptionNo, requestBody = request.requestBody, headers = request.headers;
93
96
  return httpRequest({
94
97
  method: 'POST',
95
98
  url: "/guest/order-options/".concat(orderOptionNo, "/claims/return"),
99
+ headers: headers,
96
100
  requestBody: requestBody,
97
101
  key: 'postGuestOrderOptionOrderOptionNoClaimsReturn',
98
102
  });
@@ -105,6 +109,16 @@ var claim = function (httpRequest) { return ({
105
109
  key: 'putGuestOrderOptionOrderOptionNoClaimsWithdraw',
106
110
  });
107
111
  },
112
+ postGuestOrdersOrderNoClaimsCancel: function (request) {
113
+ var headers = request.headers, orderNo = request.pathVariable.orderNo, requestBody = request.requestBody;
114
+ return httpRequest({
115
+ method: 'POST',
116
+ url: "/guest/orders/".concat(orderNo, "/claims/cancel"),
117
+ headers: headers,
118
+ requestBody: requestBody,
119
+ key: 'postGuestOrdersOrderNoClaimsCancel',
120
+ });
121
+ },
108
122
  /**
109
123
  * Profile
110
124
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/claim/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/claim/index.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { GetGuestRecentProductsRequest, GetGuestRecentProductsResponse, GetProductsProductNoOptionsRequest, GetProductsProductNoOptionsResponse, GetProductsProductNoRelatedProductsRequest, GetProductsProductNoRelatedProductsResponse, GetProductsProductNoRequest, GetProductsProductNoResponse, GetProductsSearchRequest, GetProductsSearchResponse, getProfileLikeProductsRequest, getProfileLikeProductsResponse, PostProfileLikeProductsRequest, PostProfileLikeProductsResponse, PostProfileRecentProductsRequest } from '../../../types/domain/product';
1
+ import { GetGuestRecentProductsRequest, GetGuestRecentProductsResponse, GetProductsProductNoOptionsRequest, GetProductsProductNoOptionsResponse, GetProductsProductNoRelatedProductsRequest, GetProductsProductNoRelatedProductsResponse, GetProductsProductNoRequest, GetProductsProductNoResponse, GetProductsSearchRequest, GetProductsSearchResponse, GetProfileLikeProductsRequest, GetProfileLikeProductsResponse, PostProfileLikeProductsRequest, PostProfileLikeProductsResponse, PostProfileRecentProductsRequest } from '../../../types/domain/product';
2
2
  import { ResponseData } from '../../../types/http';
3
3
  declare const product: (httpRequest: Function) => {
4
4
  /**
@@ -30,7 +30,7 @@ declare const product: (httpRequest: Function) => {
30
30
  /**
31
31
  * Profile
32
32
  */
33
- getProfileLikeProducts(request: getProfileLikeProductsRequest): Promise<ResponseData<getProfileLikeProductsResponse>>;
33
+ getProfileLikeProducts(request: GetProfileLikeProductsRequest): Promise<ResponseData<GetProfileLikeProductsResponse>>;
34
34
  postProfileLikeProducts(request: PostProfileLikeProductsRequest): Promise<ResponseData<PostProfileLikeProductsResponse>>;
35
35
  /**
36
36
  * Shopby
@@ -27,18 +27,19 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
27
27
  postCaptchaVerify(request: import("../types").CaptchaVerifyRequest): Promise<import("../types/http").ResponseData<void>>;
28
28
  };
29
29
  claim: {
30
- postGuestClaimsCancel(request: any): Promise<import("../types/http").ResponseData<void>>;
30
+ postGuestClaimsCancel(request: import("../types").PostGuestClaimsCancelRequest): Promise<import("../types/http").ResponseData<void>>;
31
31
  postGuestClaimsEstimate(request: any): Promise<import("../types/http").ResponseData<any>>;
32
- postGuestClaimsReturn(request: any): Promise<import("../types/http").ResponseData<void>>;
32
+ postGuestClaimsReturn(request: import("../types").PostGuestClaimsReturnRequest): Promise<import("../types/http").ResponseData<void>>;
33
33
  getGuestClaimsClaimNoCheckWithdraw(request: any): Promise<import("../types/http").ResponseData<any>>;
34
34
  getGuestClaimsClaimNoResult(request: any): Promise<import("../types/http").ResponseData<any>>;
35
35
  putGuestClaimsClaimNoWithdraw(request: any): Promise<import("../types/http").ResponseData<void>>;
36
- getGuestOrderOptionOrderOptionNoClaims(request: any): Promise<import("../types/http").ResponseData<any>>;
36
+ getGuestOrderOptionOrderOptionNoClaims(request: import("../types").GetGuestOrderOptionsOrderOptionNoClaimsRequest): Promise<import("../types/http").ResponseData<import("../types").GetGuestOrderOptionsOrderOptionNoClaimsResponse>>;
37
37
  postGuestOrderOptionOrderOptionNoClaimsCancel(request: any): Promise<import("../types/http").ResponseData<void>>;
38
38
  getGuestOrderOptionOrderOptionNoClaimsEstimate(request: any): Promise<import("../types/http").ResponseData<any>>;
39
39
  getGuestOrderOptionOrderOptionNoClaimsResult(request: any): Promise<import("../types/http").ResponseData<any>>;
40
- postGuestOrderOptionOrderOptionNoClaimsReturn(request: any): Promise<import("../types/http").ResponseData<void>>;
40
+ postGuestOrderOptionOrderOptionNoClaimsReturn(request: import("../types").PostGuestOrderOptionsOrderOptionNoClaimsReturnRequest): Promise<import("../types/http").ResponseData<void>>;
41
41
  putGuestOrderOptionOrderOptionNoClaimsWithdraw(request: any): Promise<import("../types/http").ResponseData<void>>;
42
+ postGuestOrdersOrderNoClaimsCancel(request: import("../types").PostGuestOrdersOrderNoClaimsCancelRequest): Promise<import("../types/http").ResponseData<void>>;
42
43
  getProfileClaims(request: any): Promise<import("../types/http").ResponseData<any>>;
43
44
  getProfileClaimsClaimNoResult(request: import("../types").GetProfileClaimsClaimNoResultRequest): Promise<import("../types/http").ResponseData<import("../types").ClaimResult>>;
44
45
  postProfileClaimsCancel(request: import("../types").PostProfileClaimsCancelRequest): Promise<import("../types/http").ResponseData<void>>;
@@ -262,7 +263,7 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
262
263
  getProductsProductNoRelatedProducts(request: import("../types").GetProductsProductNoRelatedProductsRequest): Promise<import("../types/http").ResponseData<import("../types").GetProductsProductNoRelatedProductsResponse>>;
263
264
  getProductsProductNoOptionsImages(request: any): Promise<import("../types/http").ResponseData<any>>;
264
265
  getProductsProductNoOptionsOptionNoImages(request: any): Promise<import("../types/http").ResponseData<any>>;
265
- getProfileLikeProducts(request: import("../types").getProfileLikeProductsRequest): Promise<import("../types/http").ResponseData<import("../types").getProfileLikeProductsResponse>>;
266
+ getProfileLikeProducts(request: import("../types").GetProfileLikeProductsRequest): Promise<import("../types/http").ResponseData<import("../types").GetProfileLikeProductsResponse>>;
266
267
  postProfileLikeProducts(request: import("../types").PostProfileLikeProductsRequest): Promise<import("../types/http").ResponseData<import("../types").PostProfileLikeProductsResponse>>;
267
268
  getShopbyProductsDisplay(request: any): Promise<import("../types/http").ResponseData<any>>;
268
269
  getShopbyProductsProductNoUrlShortening(request: any): Promise<import("../types/http").ResponseData<any>>;
@@ -0,0 +1,43 @@
1
+ import { GetProfileOrderOptionsOrderOptionNoClaimsRequest, GetProfileOrderOptionsOrderOptionNoClaimsResponse, PostProfileClaimsCancelRequest, PostProfileClaimsReturnRequest, PostProfileOrderOptionsOrderOptionNoClaimsReturnRequest, PostProfileOrdersOrderNoClaimsCancelRequest } from '../index';
2
+ /**
3
+ * path: /guest/claims/cancel
4
+ */
5
+ export interface PostGuestClaimsCancelRequest extends PostProfileClaimsCancelRequest {
6
+ headers: {
7
+ guestToken: string;
8
+ };
9
+ }
10
+ /**
11
+ * path: /guest/claims/return
12
+ */
13
+ export interface PostGuestClaimsReturnRequest extends PostProfileClaimsReturnRequest {
14
+ headers: {
15
+ guestToken: string;
16
+ };
17
+ }
18
+ /**
19
+ * path: /guest/order-options/{orderOptionNo}/claims
20
+ */
21
+ export interface GetGuestOrderOptionsOrderOptionNoClaimsRequest extends GetProfileOrderOptionsOrderOptionNoClaimsRequest {
22
+ headers: {
23
+ guestToken: string;
24
+ };
25
+ }
26
+ export interface GetGuestOrderOptionsOrderOptionNoClaimsResponse extends GetProfileOrderOptionsOrderOptionNoClaimsResponse {
27
+ }
28
+ /**
29
+ * path: /guest/order-options/{orderOptionNo}/claims/return
30
+ */
31
+ export interface PostGuestOrderOptionsOrderOptionNoClaimsReturnRequest extends PostProfileOrderOptionsOrderOptionNoClaimsReturnRequest {
32
+ headers: {
33
+ guestToken: string;
34
+ };
35
+ }
36
+ /**
37
+ * path: /guest/orders/{orderNo}/claims/cancel
38
+ */
39
+ export interface PostGuestOrdersOrderNoClaimsCancelRequest extends PostProfileOrdersOrderNoClaimsCancelRequest {
40
+ headers: {
41
+ guestToken: string;
42
+ };
43
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../types/domain/claim/guest/index.ts"],"names":[],"mappings":""}
@@ -2,6 +2,7 @@ import { ClaimClassType, ClaimOptionType, ClaimReasonLabel, ClaimReasonType, Cla
2
2
  import { Bank, BankAccountInfo, BankCdAndLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
3
3
  import { CountryCode, DateYmdt, Yn } from '../../common';
4
4
  export * from './unions';
5
+ export * from './guest/index';
5
6
  /**
6
7
  * path: /profile/claims/cancel
7
8
  */
@@ -1,2 +1,3 @@
1
1
  export * from './unions';
2
+ export * from './guest/index';
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/claim/index.ts"],"names":[],"mappings":"AAiCA,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/claim/index.ts"],"names":[],"mappings":"AAiCA,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC"}
@@ -82,7 +82,7 @@ export interface GetGuestRecentProductsRequest {
82
82
  };
83
83
  }
84
84
  export declare type GetGuestRecentProductsResponse = any;
85
- export interface getProfileLikeProductsRequest {
85
+ export interface GetProfileLikeProductsRequest {
86
86
  queryString: {
87
87
  pageNumber?: number;
88
88
  pageSize?: number;
@@ -170,7 +170,7 @@ export interface LikeProductItem {
170
170
  stockCnt: number;
171
171
  saleStatusType: SaleStatusType;
172
172
  }
173
- export interface getProfileLikeProductsResponse {
173
+ export interface GetProfileLikeProductsResponse {
174
174
  displayableStock: boolean;
175
175
  totalCount: number;
176
176
  items: Array<LikeProductItem>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.52.1",
3
+ "version": "1.53.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",