@shopby/shop-sdk 1.0.7 → 1.1.1
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 +1 -1
- package/build/src/display.d.ts +5 -4
- package/build/src/display.js +3 -1
- package/build/src/display.js.map +1 -1
- package/build/src/index.d.ts +1 -1
- package/build/src/index.js +3 -2
- package/build/src/index.js.map +1 -1
- package/build/src/manage.d.ts +5 -5
- package/build/src/manage.js.map +1 -1
- package/build/src/order.d.ts +2 -2
- package/build/types/display.d.ts +927 -0
- package/build/types/display.js +2 -0
- package/build/types/display.js.map +1 -0
- package/build/types/enum.d.ts +1 -0
- package/build/types/enum.js +2 -0
- package/build/types/enum.js.map +1 -0
- package/build/types/manage.d.ts +344 -0
- package/build/types/order.d.ts +1515 -0
- package/build/types/order.js +2 -0
- package/build/types/order.js.map +1 -0
- package/build/types/root.d.ts +44 -41
- package/build/types/root.js +3 -0
- package/build/types/root.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order.js","sourceRoot":"","sources":["../../types/order.ts"],"names":[],"mappings":""}
|
package/build/types/root.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { GetGuestRecentProductsRequest, GetGuestRecentProductsResponse, GetProductsProductNoOptionsRequest, GetProductsProductNoOptionsResponse } from './product';
|
|
2
2
|
import { Malls, MallsPartnersResponse, MallsSslResponse } from './admin';
|
|
3
3
|
import { GetProfileResponse } from './member';
|
|
4
|
-
import { PostBoardsBoardNoArticlesRequest } from './manage';
|
|
4
|
+
import { AddressesSearchRequest, AddressesSearchResponse, BoardsConfigurationsResponse, PageScriptsRequest, PageScriptsResponse, PostBoardsBoardNoArticlesRequest, TermsRequest, TermsResponse } from './manage';
|
|
5
5
|
import { Authentications, AuthenticationsBizmall, AuthenticationsBizmallResponse, AuthenticationsEmail, AuthenticationsEmailResponse, AuthenticationsResponse, AuthenticationsSms, CaptchaImage, CaptchaVerifyRequest, GetOpenIdTokenResponse, KcpIdVerificationFormRequest, KcpIdVerificationResponse, OauthBeginRequest, OauthCallbackRequest, OauthLoginUrlRequest, OauthLoginUrlResponse, OauthOpenIdRequest, OauthOpenIdResponse, PostAuthenticationsSms, PostKcpAgeVerificationRequest, PostKcpAgeVerificationResponse, PostOauthTokenRequest, PostOauthTokenResponse } from './auth';
|
|
6
|
+
import { OrderConfigsResponse } from "./order";
|
|
7
|
+
import { ClaimOrderOptionNoPath, GuestClaimsCancelRequest, GuestClaimsClaimNoResult, GuestClaimsClaimNoResultClaimPriceInfo, GuestOrderOptionOrderOptionNoClaimsRequest, GuestOrderOptionsOrderOptionNoClaimsEstimate, ProfileClaims, ProfileClaimsClaimNoCheckWithdraw, ProfileClaimsClaimNoPath, ProfileClaimsEstimate, ProfileClaimsRequest, ProfileOrderOptionsOrderOptionNoClaims, ProfileOrderOptionsOrderOptionNoClaimsCancel } from "./claim";
|
|
8
|
+
import { CategoriesResponse, GetCategoriesRequest, SkinBannersGroupsBySkinRequest, SkinBannersGroupsBySkinResponse, SkinBannersRequest, SkinBannersResponse } from "./display";
|
|
6
9
|
export declare type Method = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'OPTIONS';
|
|
7
10
|
export interface CreatorType {
|
|
8
11
|
baseURL: string;
|
|
@@ -21,16 +24,13 @@ export interface RequestOption<QueryStringType, BodyType, PathType = null> {
|
|
|
21
24
|
export interface RequestConfig {
|
|
22
25
|
method?: Method;
|
|
23
26
|
url?: string;
|
|
24
|
-
queryString?: any;
|
|
25
|
-
requestBody?: any;
|
|
26
|
-
pathVariable?: any;
|
|
27
27
|
}
|
|
28
28
|
export interface ResponseData<T> extends Response {
|
|
29
29
|
data: T;
|
|
30
30
|
}
|
|
31
31
|
export interface CreatedOutput {
|
|
32
32
|
marketing: {
|
|
33
|
-
getMarketingFacebookPixel(request: any):
|
|
33
|
+
getMarketingFacebookPixel(request: any): any;
|
|
34
34
|
};
|
|
35
35
|
product: {
|
|
36
36
|
getGuestRecentProducts(request: GetGuestRecentProductsRequest): Promise<GetGuestRecentProductsResponse>;
|
|
@@ -56,25 +56,25 @@ export interface CreatedOutput {
|
|
|
56
56
|
getProductsProductNoOptionsOptionNoImages(request: any): Promise<ResponseData<any>>;
|
|
57
57
|
};
|
|
58
58
|
auth: {
|
|
59
|
-
|
|
59
|
+
getKcpIdVerificationForm(request: RequestOption<KcpIdVerificationFormRequest, null>): Promise<ResponseData<any>>;
|
|
60
60
|
postAuthentications(request: RequestOption<null, Authentications>): Promise<ResponseData<AuthenticationsResponse>>;
|
|
61
61
|
postAuthenticationsBizmall(request: RequestOption<null, AuthenticationsBizmall>): Promise<ResponseData<AuthenticationsBizmallResponse>>;
|
|
62
|
-
getAuthenticationsEmail(request: RequestOption<AuthenticationsEmail, null>): Promise<ResponseData<AuthenticationsEmailResponse>>;
|
|
63
|
-
postAuthenticationsEmail(request: RequestOption<null, AuthenticationsEmail>): Promise<ResponseData<AuthenticationsResponse>>;
|
|
64
|
-
getAuthenticationsSms(request: RequestOption<AuthenticationsSms, null>): Promise<ResponseData<AuthenticationsEmailResponse>>;
|
|
65
|
-
postAuthenticationsSms(request: RequestOption<null, PostAuthenticationsSms>): Promise<ResponseData<AuthenticationsResponse>>;
|
|
66
62
|
getOauthLoginUrl(request: RequestOption<OauthLoginUrlRequest, null>): Promise<ResponseData<OauthLoginUrlResponse>>;
|
|
67
|
-
getOauthOpenId(request: RequestOption<OauthOpenIdRequest, null>): Promise<ResponseData<OauthOpenIdResponse>>;
|
|
68
63
|
postOauthToken(request: RequestOption<null, PostOauthTokenRequest>): Promise<ResponseData<PostOauthTokenResponse>>;
|
|
64
|
+
getOauthBegin(request: RequestOption<OauthBeginRequest, null>): Promise<ResponseData<void>>;
|
|
65
|
+
getAuthenticationsSms(request: RequestOption<AuthenticationsSms, null>): Promise<ResponseData<AuthenticationsEmailResponse>>;
|
|
66
|
+
postAuthenticationsSms(request: RequestOption<null, PostAuthenticationsSms>): Promise<ResponseData<AuthenticationsResponse>>;
|
|
67
|
+
getOauthCallback(request: RequestOption<OauthCallbackRequest, null>): Promise<ResponseData<void>>;
|
|
69
68
|
deleteOauthToken(): Promise<ResponseData<void>>;
|
|
70
|
-
getOpenidToken(): Promise<ResponseData<GetOpenIdTokenResponse>>;
|
|
71
69
|
postKcpAgeVerification(request: RequestOption<PostKcpAgeVerificationRequest, null>): Promise<ResponseData<PostKcpAgeVerificationResponse>>;
|
|
72
|
-
|
|
70
|
+
postCaptchaVerify(request: RequestOption<CaptchaVerifyRequest, null>): Promise<ResponseData<void>>;
|
|
71
|
+
getAuthentications(request: RequestOption<Authentications, null>): Promise<ResponseData<void>>;
|
|
72
|
+
getOauthOpenId(request: RequestOption<OauthOpenIdRequest, null>): Promise<ResponseData<OauthOpenIdResponse>>;
|
|
73
|
+
postAuthenticationsEmail(request: RequestOption<null, AuthenticationsEmail>): Promise<ResponseData<AuthenticationsResponse>>;
|
|
74
|
+
getOpenidToken(): Promise<ResponseData<GetOpenIdTokenResponse>>;
|
|
73
75
|
getKcpIdVerificationResponse(request: RequestOption<KcpIdVerificationFormRequest, null>): Promise<ResponseData<KcpIdVerificationResponse>>;
|
|
74
|
-
getOauthBegin(request: RequestOption<OauthBeginRequest, null>): Promise<ResponseData<void>>;
|
|
75
|
-
getOauthCallback(request: RequestOption<OauthCallbackRequest, null>): Promise<ResponseData<void>>;
|
|
76
76
|
getCaptchaImage(): Promise<ResponseData<CaptchaImage>>;
|
|
77
|
-
|
|
77
|
+
getAuthenticationsEmail(request: RequestOption<AuthenticationsEmail, null>): Promise<ResponseData<AuthenticationsEmailResponse>>;
|
|
78
78
|
};
|
|
79
79
|
display: {
|
|
80
80
|
getCategoriesCategoryNo(request: any): Promise<ResponseData<any>>;
|
|
@@ -82,24 +82,24 @@ export interface CreatedOutput {
|
|
|
82
82
|
postProductsProductNoProductReviewsReviewNoRecommend(request: any): Promise<ResponseData<void>>;
|
|
83
83
|
postProductsProductNoProductReviewsReviewNoReport(request: any): Promise<ResponseData<void>>;
|
|
84
84
|
getDisplaySectionsSectionNos(request: any): Promise<ResponseData<any>>;
|
|
85
|
-
getSkinBannersGroupsBySkin(request:
|
|
86
|
-
getCategoriesNewProductCategories(
|
|
85
|
+
getSkinBannersGroupsBySkin(request: SkinBannersGroupsBySkinRequest): Promise<ResponseData<SkinBannersGroupsBySkinResponse>>;
|
|
86
|
+
getCategoriesNewProductCategories(): Promise<number[]>;
|
|
87
87
|
getDisplaySectionsSectionNo(request: any): Promise<ResponseData<any>>;
|
|
88
88
|
getProductsProductNoProductReviews(request: any): Promise<ResponseData<any>>;
|
|
89
89
|
getProfileProductInquiriesCount(request: any): Promise<ResponseData<any>>;
|
|
90
90
|
getProductsProductNoReviewableOptions(request: any): Promise<ResponseData<any>>;
|
|
91
|
-
getProductsInquiresConfigurations(
|
|
91
|
+
getProductsInquiresConfigurations(): Promise<ResponseData<any>>;
|
|
92
92
|
getDisplaySectionsIdsSectionId(request: any): Promise<ResponseData<any>>;
|
|
93
93
|
getDisplayPopups(request: any): Promise<ResponseData<any>>;
|
|
94
94
|
getProductsProductNoInquiresInquiryNo(request: any): Promise<ResponseData<any>>;
|
|
95
|
-
getCategories(request:
|
|
95
|
+
getCategories(request: GetCategoriesRequest): Promise<ResponseData<CategoriesResponse>>;
|
|
96
96
|
postProductsProductNoProductReviews(request: any): Promise<ResponseData<any>>;
|
|
97
97
|
deleteProductsInquiresInquiryNo(request: any): Promise<ResponseData<void>>;
|
|
98
98
|
getProfileProductInquiries(request: any): Promise<ResponseData<any>>;
|
|
99
99
|
deleteProductsProductNoProductReviewsReviewNoRecommend(request: any): Promise<ResponseData<void>>;
|
|
100
100
|
getDisplayEventsEventNo(request: any): Promise<ResponseData<any>>;
|
|
101
101
|
postProductsProductNoInquires(request: any): Promise<ResponseData<any>>;
|
|
102
|
-
getProductReviewsConfigurations(
|
|
102
|
+
getProductReviewsConfigurations(): Promise<ResponseData<any>>;
|
|
103
103
|
getDisplayPopupsPopupNos(request: any): Promise<ResponseData<any>>;
|
|
104
104
|
getCategoryProductReviews(request: any): Promise<ResponseData<any>>;
|
|
105
105
|
putProductsProductNoProductReviewsReviewNo(request: any): Promise<ResponseData<void>>;
|
|
@@ -107,7 +107,7 @@ export interface CreatedOutput {
|
|
|
107
107
|
getProfileOrderOptionsProductReviewable(request: any): Promise<ResponseData<any>>;
|
|
108
108
|
getProductsProductNoInquires(request: any): Promise<ResponseData<void>>;
|
|
109
109
|
postDesignPopups(request: any): Promise<ResponseData<any>>;
|
|
110
|
-
getSkinBanners(request:
|
|
110
|
+
getSkinBanners(request: SkinBannersRequest): Promise<ResponseData<SkinBannersResponse[]>>;
|
|
111
111
|
getProfileProductReviews(request: any): Promise<ResponseData<any>>;
|
|
112
112
|
postProductsProductNoProductReviewsReviewNoCheckPassword(request: any): Promise<ResponseData<void>>;
|
|
113
113
|
getDisplayBannersBannerSectionCodes(request: any): Promise<ResponseData<any>>;
|
|
@@ -161,34 +161,34 @@ export interface CreatedOutput {
|
|
|
161
161
|
};
|
|
162
162
|
claim: {
|
|
163
163
|
postProfileOrderOrderNoClaimsCancel(request: any): Promise<ResponseData<void>>;
|
|
164
|
-
getGuestOrderOptionOrderOptionNoClaimsResult(request:
|
|
165
|
-
postGuestOrderOptionOrderOptionNoClaimsReturn(request:
|
|
164
|
+
getGuestOrderOptionOrderOptionNoClaimsResult(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<GuestClaimsClaimNoResult>>;
|
|
165
|
+
postGuestOrderOptionOrderOptionNoClaimsReturn(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
166
166
|
postProfileClaimsReturn(request: any): Promise<ResponseData<any>>;
|
|
167
|
-
putGuestOrderOptionOrderOptionNoClaimsWithdraw(request:
|
|
168
|
-
postGuestClaimsReturn(request:
|
|
167
|
+
putGuestOrderOptionOrderOptionNoClaimsWithdraw(request: RequestOption<null, null, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
168
|
+
postGuestClaimsReturn(request: RequestOption<null, GuestClaimsClaimNoResult>): Promise<ResponseData<void>>;
|
|
169
169
|
postProfileOrderOptionOrderOptionNoClaimsExchange(request: any): Promise<ResponseData<void>>;
|
|
170
170
|
getProfileOrderOptionOrderOptionNoClaimsResult(request: any): Promise<ResponseData<any>>;
|
|
171
171
|
postProfileOrderOptionOrderOptionNoClaimsReturn(request: any): Promise<ResponseData<any>>;
|
|
172
|
-
postGuestClaimsCancel(request:
|
|
172
|
+
postGuestClaimsCancel(request: RequestOption<null, GuestClaimsCancelRequest>): Promise<ResponseData<void>>;
|
|
173
173
|
postProfileClaimsEstimate(request: any): Promise<ResponseData<any>>;
|
|
174
174
|
postProfileClaimsCancel(request: any): Promise<ResponseData<void>>;
|
|
175
|
-
getGuestOrderOptionOrderOptionNoClaims(request:
|
|
176
|
-
getProfileClaims(request:
|
|
177
|
-
putGuestClaimsClaimNoWithdraw(request:
|
|
175
|
+
getGuestOrderOptionOrderOptionNoClaims(request: RequestOption<GuestOrderOptionOrderOptionNoClaimsRequest["queryString"], null, GuestOrderOptionOrderOptionNoClaimsRequest["pathVariable"]>): Promise<ResponseData<ProfileOrderOptionsOrderOptionNoClaims>>;
|
|
176
|
+
getProfileClaims(request: RequestOption<ProfileClaimsRequest, null>): Promise<ResponseData<ProfileClaims>>;
|
|
177
|
+
putGuestClaimsClaimNoWithdraw(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<void>>;
|
|
178
178
|
putProfileClaimsClaimNoWithdraw(request: any): Promise<ResponseData<void>>;
|
|
179
|
-
getGuestClaimsClaimNoCheckWithdraw(request:
|
|
180
|
-
postGuestOrderOptionOrderOptionNoClaimsCancel(request:
|
|
179
|
+
getGuestClaimsClaimNoCheckWithdraw(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<ProfileClaimsClaimNoCheckWithdraw>>;
|
|
180
|
+
postGuestOrderOptionOrderOptionNoClaimsCancel(request: RequestOption<null, ProfileOrderOptionsOrderOptionNoClaimsCancel, ClaimOrderOptionNoPath>): Promise<ResponseData<void>>;
|
|
181
181
|
getProfileOrderOptionOrderOptionNoClaims(request: any): Promise<ResponseData<any>>;
|
|
182
182
|
getProfileClaimsClaimNoResult(request: any): Promise<ResponseData<any>>;
|
|
183
|
-
postGuestClaimsEstimate(request:
|
|
183
|
+
postGuestClaimsEstimate(request: RequestOption<null, GuestClaimsCancelRequest>): Promise<ResponseData<GuestClaimsClaimNoResultClaimPriceInfo>>;
|
|
184
184
|
putProfileOrderOptionOrderOptionNoClaimsWithdraw(request: any): Promise<ResponseData<void>>;
|
|
185
|
-
getGuestClaimsClaimNoResult(request:
|
|
185
|
+
getGuestClaimsClaimNoResult(request: RequestOption<null, null, ProfileClaimsClaimNoPath>): Promise<ResponseData<GuestClaimsClaimNoResult>>;
|
|
186
186
|
postProfileOrderOptionOrderOptionNoClaimsCancel(request: any): Promise<ResponseData<any>>;
|
|
187
187
|
getProfileOrderOptionOrderOptionNoClaimsEstimate(request: any): Promise<ResponseData<any>>;
|
|
188
|
-
getGuestOrderOptionOrderOptionNoClaimsEstimate(request:
|
|
188
|
+
getGuestOrderOptionOrderOptionNoClaimsEstimate(request: RequestOption<ProfileClaimsEstimate, null, ClaimOrderOptionNoPath>): Promise<ResponseData<GuestOrderOptionsOrderOptionNoClaimsEstimate>>;
|
|
189
189
|
};
|
|
190
190
|
storage: {
|
|
191
|
-
postFilesImages(request: any):
|
|
191
|
+
postFilesImages(request: any): any;
|
|
192
192
|
};
|
|
193
193
|
manage: {
|
|
194
194
|
getHoliday(request: any): Promise<number[]>;
|
|
@@ -200,25 +200,25 @@ export interface CreatedOutput {
|
|
|
200
200
|
putBoardsBoardNoArticlesArticleNoEditable(request: any): Promise<ResponseData<void>>;
|
|
201
201
|
getBoardsBoardNoArticles(request: any): Promise<ResponseData<any>>;
|
|
202
202
|
getProfileAccumulationsWaiting(request: any): Promise<ResponseData<any>>;
|
|
203
|
-
getPageScripts(request:
|
|
203
|
+
getPageScripts(request: PageScriptsRequest): Promise<ResponseData<PageScriptsResponse[]>>;
|
|
204
204
|
putBoardsBoardNoArticlesArticleNo(request: any): Promise<ResponseData<void>>;
|
|
205
205
|
getInquiries(request: any): Promise<ResponseData<any>>;
|
|
206
206
|
getShopbyInstagramMedia(request: any): Promise<ResponseData<any>>;
|
|
207
207
|
getInquiriesInquiryNo(request: any): Promise<ResponseData<any>>;
|
|
208
|
-
getBoardsConfig(): Promise<ResponseData<
|
|
208
|
+
getBoardsConfig(): Promise<ResponseData<BoardsConfigurationsResponse>>;
|
|
209
209
|
getProfileAccumulations(request: any): Promise<ResponseData<any>>;
|
|
210
210
|
putInquiriesInquiryNo(request: any): Promise<ResponseData<void>>;
|
|
211
211
|
getBoardsBoardNoCategories(request: any): Promise<ResponseData<any>>;
|
|
212
212
|
getBoardsBoardNoArticlesArticleNo(request: any): Promise<ResponseData<any>>;
|
|
213
213
|
getProfileAccumulationsSummary(request: any): Promise<ResponseData<any>>;
|
|
214
214
|
postBoardsBoardNoArticles(request: PostBoardsBoardNoArticlesRequest): Promise<ResponseData<void>>;
|
|
215
|
-
getAddressesSearch({ queryString }:
|
|
216
|
-
getTerms(request:
|
|
215
|
+
getAddressesSearch({ queryString }: AddressesSearchRequest): Promise<ResponseData<AddressesSearchResponse>>;
|
|
216
|
+
getTerms(request: TermsRequest): Promise<ResponseData<TermsResponse>>;
|
|
217
217
|
getTermsTermsNo(request: any): Promise<ResponseData<any>>;
|
|
218
218
|
};
|
|
219
219
|
order: {
|
|
220
220
|
getGuestOrdersOrderNo(request: any): Promise<ResponseData<any>>;
|
|
221
|
-
getOrderConfigs(): Promise<ResponseData<
|
|
221
|
+
getOrderConfigs(): Promise<ResponseData<OrderConfigsResponse>>;
|
|
222
222
|
putProfileShippingAddressesAddressNoDefault(request: any): Promise<ResponseData<any>>;
|
|
223
223
|
getCartCount(): Promise<{
|
|
224
224
|
count: number;
|
|
@@ -306,7 +306,10 @@ export * from './admin';
|
|
|
306
306
|
export * from './auth';
|
|
307
307
|
export * from './claim';
|
|
308
308
|
export * from './design';
|
|
309
|
+
export * from './display';
|
|
309
310
|
export * from './manage';
|
|
310
311
|
export * from './member';
|
|
312
|
+
export * from './order';
|
|
311
313
|
export * from './product';
|
|
314
|
+
export * from './enum';
|
|
312
315
|
export * from '../src/index';
|
package/build/types/root.js
CHANGED
|
@@ -2,8 +2,11 @@ export * from './admin';
|
|
|
2
2
|
export * from './auth';
|
|
3
3
|
export * from './claim';
|
|
4
4
|
export * from './design';
|
|
5
|
+
export * from './display';
|
|
5
6
|
export * from './manage';
|
|
6
7
|
export * from './member';
|
|
8
|
+
export * from './order';
|
|
7
9
|
export * from './product';
|
|
10
|
+
export * from './enum';
|
|
8
11
|
export * from '../src/index';
|
|
9
12
|
//# sourceMappingURL=root.js.map
|
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":"AAoHA,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopby/shop-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/types/root.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "
|
|
24
|
+
"url": "https://gitlab.e-ncp.com/ncp-client/shop-sdk.git"
|
|
25
25
|
},
|
|
26
26
|
"author": "nhn-commerce",
|
|
27
27
|
"license": "ISC",
|