@punks/backend-entity-manager 0.0.490 → 0.0.492
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 +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/services/export/sheetsExporter.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/services/providers.d.ts +2 -2
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/services/export/sheetsExporter.d.ts +1 -1
- package/dist/esm/types/platforms/nest/services/providers.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { DataExportFile, DataSerializerColumnDefinition } from "./types";
|
|
|
2
2
|
export type DataSheet<T> = {
|
|
3
3
|
name: string;
|
|
4
4
|
data: T[];
|
|
5
|
-
columns: DataSerializerColumnDefinition<
|
|
5
|
+
columns: DataSerializerColumnDefinition<T>[];
|
|
6
6
|
};
|
|
7
7
|
export declare class DataSheetsBuilder {
|
|
8
8
|
private sheets;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CacheService } from "./cache";
|
|
2
2
|
import { EmailService } from "./email";
|
|
3
3
|
import { EventsService } from "./events";
|
|
4
|
-
import { DataExportService } from "./export";
|
|
4
|
+
import { DataExportService, DataSheetsExporterService } from "./export";
|
|
5
5
|
import { FilesManager } from "./files";
|
|
6
6
|
import { AppHashingService } from "./hashing";
|
|
7
7
|
import { EntityManagerService } from "./manager";
|
|
@@ -10,4 +10,4 @@ import { OperationLockService } from "./operations/operation-lock.service";
|
|
|
10
10
|
import { SecretsService } from "./secrets";
|
|
11
11
|
import { AppSessionService } from "./session";
|
|
12
12
|
import { TrackingService } from "./tracking";
|
|
13
|
-
export declare const Services: (typeof AppSessionService | typeof AppHashingService | typeof EntityManagerService | typeof MediaLibraryService | typeof OperationLockService | typeof EmailService | typeof DataExportService | typeof CacheService | typeof FilesManager | typeof EventsService | typeof TrackingService | typeof SecretsService)[];
|
|
13
|
+
export declare const Services: (typeof AppSessionService | typeof AppHashingService | typeof EntityManagerService | typeof MediaLibraryService | typeof OperationLockService | typeof EmailService | typeof DataExportService | typeof DataSheetsExporterService | typeof CacheService | typeof FilesManager | typeof EventsService | typeof TrackingService | typeof SecretsService)[];
|
package/dist/index.d.ts
CHANGED
|
@@ -2324,7 +2324,7 @@ declare class DataExportService {
|
|
|
2324
2324
|
type DataSheet<T> = {
|
|
2325
2325
|
name: string;
|
|
2326
2326
|
data: T[];
|
|
2327
|
-
columns: DataSerializerColumnDefinition<
|
|
2327
|
+
columns: DataSerializerColumnDefinition<T>[];
|
|
2328
2328
|
};
|
|
2329
2329
|
declare class DataSheetsBuilder {
|
|
2330
2330
|
private sheets;
|