@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.
@@ -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<any>[];
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<any>[];
2327
+ columns: DataSerializerColumnDefinition<T>[];
2328
2328
  };
2329
2329
  declare class DataSheetsBuilder {
2330
2330
  private sheets;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.490",
3
+ "version": "0.0.492",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",