@punks/backend-entity-manager 0.0.405 → 0.0.406
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/dist/cjs/index.js +7 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/services/export/service.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/services/export/types.d.ts +2 -1
- package/dist/esm/index.js +7 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/services/export/service.d.ts +1 -1
- package/dist/esm/types/platforms/nest/services/export/types.d.ts +2 -1
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ export declare class DataExportService {
|
|
|
7
7
|
downloadUrl: import("../../../../abstractions/files").FileProviderDownloadUrl;
|
|
8
8
|
file: DataExportFile;
|
|
9
9
|
}>;
|
|
10
|
-
extractData<TSheetItem>(data: TSheetItem[], input: DataExportInput<TSheetItem>): Promise<DataExportFile>;
|
|
10
|
+
extractData<TSheetItem>(data: TSheetItem[], input: Omit<DataExportInput<TSheetItem>, "fileName">): Promise<DataExportFile>;
|
|
11
11
|
private uploadExportFile;
|
|
12
12
|
private buildExportFilePath;
|
|
13
13
|
private get defaultFileProvider();
|
package/dist/index.d.ts
CHANGED
|
@@ -2328,7 +2328,8 @@ declare class EmailService {
|
|
|
2328
2328
|
}
|
|
2329
2329
|
|
|
2330
2330
|
type DataExportInput<TSheetItem> = {
|
|
2331
|
-
|
|
2331
|
+
dataName: string;
|
|
2332
|
+
fileName: string;
|
|
2332
2333
|
columns: DataSerializerColumnDefinition<TSheetItem>[];
|
|
2333
2334
|
format: DataSerializationFormat;
|
|
2334
2335
|
};
|
|
@@ -2357,7 +2358,7 @@ declare class DataExportService {
|
|
|
2357
2358
|
downloadUrl: FileProviderDownloadUrl;
|
|
2358
2359
|
file: DataExportFile;
|
|
2359
2360
|
}>;
|
|
2360
|
-
extractData<TSheetItem>(data: TSheetItem[], input: DataExportInput<TSheetItem>): Promise<DataExportFile>;
|
|
2361
|
+
extractData<TSheetItem>(data: TSheetItem[], input: Omit<DataExportInput<TSheetItem>, "fileName">): Promise<DataExportFile>;
|
|
2361
2362
|
private uploadExportFile;
|
|
2362
2363
|
private buildExportFilePath;
|
|
2363
2364
|
private get defaultFileProvider();
|