@shopby/shop-sdk 1.2.4 → 1.2.8
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/build/types/manage.d.ts +5 -5
- package/build/types/root.d.ts +2 -2
- package/package.json +1 -1
package/build/types/manage.d.ts
CHANGED
|
@@ -128,13 +128,13 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
128
128
|
modifierType?: string;
|
|
129
129
|
content?: string;
|
|
130
130
|
articleNo?: number;
|
|
131
|
-
childArticles?: Array<
|
|
131
|
+
childArticles?: Array<GetBoardsBoardNoArticlesArticleNoResponse>;
|
|
132
132
|
registerNo?: number;
|
|
133
133
|
registerGroupNames?: string;
|
|
134
134
|
viewCnt?: number;
|
|
135
135
|
imageUrl?: string;
|
|
136
136
|
categoryNo?: number;
|
|
137
|
-
parentArticle?:
|
|
137
|
+
parentArticle?: GetBoardsBoardNoArticlesArticleNoResponse;
|
|
138
138
|
modifierName?: string;
|
|
139
139
|
modifiable?: boolean;
|
|
140
140
|
registerName?: string;
|
|
@@ -143,9 +143,9 @@ export interface GetBoardsBoardNoArticlesArticleNoResponse {
|
|
|
143
143
|
registerYmdt?: string;
|
|
144
144
|
}
|
|
145
145
|
export interface BoardsBoardNoArticlesArticleNoAttachments {
|
|
146
|
-
fileName
|
|
147
|
-
uploadedFileName
|
|
148
|
-
downloadFileUrl
|
|
146
|
+
fileName: string;
|
|
147
|
+
uploadedFileName: string;
|
|
148
|
+
downloadFileUrl: string;
|
|
149
149
|
}
|
|
150
150
|
export interface BoardsConfigurationsResponse {
|
|
151
151
|
productReviewConfig?: BoardsConfigurationsProductReviewConfig;
|
package/build/types/root.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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 { AddressesSearchRequest, AddressesSearchResponse, BoardsConfigurationsResponse, GetBoardsBoardNoArticlesRequest, GetBoardsBoardNoArticlesResponse, PageScriptsRequest, PageScriptsResponse, PostBoardsBoardNoArticlesRequest, TermsRequest, TermsResponse } from './manage';
|
|
4
|
+
import { AddressesSearchRequest, AddressesSearchResponse, BoardsConfigurationsResponse, GetBoardsBoardNoArticlesArticleNoRequest, GetBoardsBoardNoArticlesArticleNoResponse, GetBoardsBoardNoArticlesRequest, GetBoardsBoardNoArticlesResponse, 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
6
|
import { OrderConfigsResponse } from "./order";
|
|
7
7
|
import { ClaimOrderOptionNoPath, GuestClaimsCancelRequest, GuestClaimsClaimNoResult, GuestClaimsClaimNoResultClaimPriceInfo, GuestOrderOptionOrderOptionNoClaimsRequest, GuestOrderOptionsOrderOptionNoClaimsEstimate, ProfileClaims, ProfileClaimsClaimNoCheckWithdraw, ProfileClaimsClaimNoPath, ProfileClaimsEstimate, ProfileClaimsRequest, ProfileOrderOptionsOrderOptionNoClaims, ProfileOrderOptionsOrderOptionNoClaimsCancel } from "./claim";
|
|
@@ -210,7 +210,7 @@ export interface CreatedOutput {
|
|
|
210
210
|
getProfileAccumulations(request: any): Promise<ResponseData<any>>;
|
|
211
211
|
putInquiriesInquiryNo(request: any): Promise<ResponseData<void>>;
|
|
212
212
|
getBoardsBoardNoCategories(request: any): Promise<ResponseData<any>>;
|
|
213
|
-
getBoardsBoardNoArticlesArticleNo(request:
|
|
213
|
+
getBoardsBoardNoArticlesArticleNo(request: GetBoardsBoardNoArticlesArticleNoRequest): Promise<ResponseData<GetBoardsBoardNoArticlesArticleNoResponse>>;
|
|
214
214
|
getProfileAccumulationsSummary(request: any): Promise<ResponseData<any>>;
|
|
215
215
|
postBoardsBoardNoArticles(request: PostBoardsBoardNoArticlesRequest): Promise<ResponseData<void>>;
|
|
216
216
|
getAddressesSearch({ queryString }: AddressesSearchRequest): Promise<ResponseData<AddressesSearchResponse>>;
|