@yolo-croket-dev/amqp-access 0.5.92-jun.4 → 0.5.92-jun.5
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.
|
@@ -7,6 +7,6 @@ export declare class AmqpStoreItemExcelService {
|
|
|
7
7
|
constructor(client: ClientProxy);
|
|
8
8
|
uploadRegStoreItemBulkByExcelForAdmin(file: any, payload: UploadRegStoreItemBulkByExcelForAdminPayload, param: AbstractParam): Promise<UploadRegStoreItemBulkByExcelForAdminResult>;
|
|
9
9
|
syncMeta(payload: unknown, param: AbstractParam): Promise<boolean>;
|
|
10
|
-
|
|
10
|
+
uploadRegStoreItemBulkByExcelForAdminV2(file: any, payload: UploadRegStoreItemBulkByExcelForAdminPayload, param: AbstractParam): Promise<UploadRegStoreItemBulkByExcelForAdminResult>;
|
|
11
11
|
uploadRegStoreItemBulkByExcelForAdminV3(file: any, payload: UploadRegStoreItemBulkByExcelForAdminPayload, param: AbstractParam): Promise<UploadRegStoreItemBulkByExcelForAdminResult>;
|
|
12
12
|
}
|
|
@@ -29,10 +29,10 @@ let AmqpStoreItemExcelService = class AmqpStoreItemExcelService {
|
|
|
29
29
|
async syncMeta(payload, param) {
|
|
30
30
|
return this.amqpManager.call('메타 동기화', 'store-item-excel.sync.meta', payload, param, { isErrorThrowing: true });
|
|
31
31
|
}
|
|
32
|
-
async
|
|
32
|
+
async uploadRegStoreItemBulkByExcelForAdminV2(
|
|
33
33
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
34
34
|
file, payload, param) {
|
|
35
|
-
return this.amqpManager.call('상품 대량 등록 엑셀 파일 업로드
|
|
35
|
+
return this.amqpManager.call('상품 대량 등록 엑셀 파일 업로드 v2', 'store-item-excel.upload.reg-store-item-bulk-by-excel-for-admin-v2', payload, param, { isErrorThrowing: true }, file);
|
|
36
36
|
}
|
|
37
37
|
async uploadRegStoreItemBulkByExcelForAdminV3(
|
|
38
38
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|