@shopby/shop-sdk 1.10.16 → 1.11.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.
|
@@ -256,16 +256,16 @@ export interface PostInquiriesRequest {
|
|
|
256
256
|
}
|
|
257
257
|
export interface GetInquiriesRequest {
|
|
258
258
|
queryString: {
|
|
259
|
-
pageNumber
|
|
260
|
-
pageSize
|
|
261
|
-
hasTotalCount
|
|
262
|
-
inquiryTypeNo
|
|
259
|
+
pageNumber?: number;
|
|
260
|
+
pageSize?: number;
|
|
261
|
+
hasTotalCount?: boolean;
|
|
262
|
+
inquiryTypeNo?: number;
|
|
263
263
|
inquiryStatus?: InquiryStatus;
|
|
264
264
|
inquiryStatuses?: string;
|
|
265
|
-
startYmd
|
|
266
|
-
endYmd
|
|
267
|
-
keyward
|
|
268
|
-
searchType
|
|
265
|
+
startYmd?: string;
|
|
266
|
+
endYmd?: string;
|
|
267
|
+
keyward?: string;
|
|
268
|
+
searchType?: SearchTypes;
|
|
269
269
|
};
|
|
270
270
|
}
|
|
271
271
|
export interface GetInquiriesResponse {
|