@gustavo-valsechi/node 1.0.24 → 1.0.25

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.
@@ -1,11 +1,11 @@
1
- import { QueryRunner, Repository, ObjectLiteral, DataSource } from 'typeorm';
1
+ import { DataSource, QueryRunner, Repository, ObjectLiteral } from 'typeorm';
2
2
  import { FastifyRequest, FastifyReply } from 'fastify';
3
3
 
4
4
  declare class TenantService {
5
- private readonly db;
6
- private readonly migrations;
7
- private readonly entity;
8
- private readonly idTenant;
5
+ readonly db: DataSource;
6
+ readonly migrations: string;
7
+ readonly entity: any;
8
+ readonly idTenant: string;
9
9
  runner: QueryRunner | undefined;
10
10
  repository: Repository<ObjectLiteral> | undefined;
11
11
  constructor(db: DataSource, migrations: string, entity: any, idTenant: string);
@@ -1,11 +1,11 @@
1
- import { QueryRunner, Repository, ObjectLiteral, DataSource } from 'typeorm';
1
+ import { DataSource, QueryRunner, Repository, ObjectLiteral } from 'typeorm';
2
2
  import { FastifyRequest, FastifyReply } from 'fastify';
3
3
 
4
4
  declare class TenantService {
5
- private readonly db;
6
- private readonly migrations;
7
- private readonly entity;
8
- private readonly idTenant;
5
+ readonly db: DataSource;
6
+ readonly migrations: string;
7
+ readonly entity: any;
8
+ readonly idTenant: string;
9
9
  runner: QueryRunner | undefined;
10
10
  repository: Repository<ObjectLiteral> | undefined;
11
11
  constructor(db: DataSource, migrations: string, entity: any, idTenant: string);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gustavo-valsechi/node",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",