@zola_do/typeorm 0.1.18 → 0.1.20

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,5 +1,5 @@
1
1
  import { SeederOptions } from 'typeorm-extension';
2
- import { DataSourceOptions } from 'typeorm';
2
+ import { DataSource, DataSourceOptions } from 'typeorm';
3
3
  export declare const TypeOrmConfigHelper: {
4
4
  DATABASE_HOST: string;
5
5
  DATABASE_PORT: string;
@@ -8,5 +8,5 @@ export declare const TypeOrmConfigHelper: {
8
8
  DATABASE_PASSWORD: string;
9
9
  };
10
10
  export declare const dataSourceOptions: DataSourceOptions & SeederOptions;
11
- declare const dataSources: any;
11
+ declare const dataSources: DataSource;
12
12
  export default dataSources;
package/package.json CHANGED
@@ -1,39 +1,39 @@
1
- {
2
- "name": "@zola_do/typeorm",
3
- "version": "0.1.18",
4
- "description": "TypeORM configuration for NestJS",
5
- "author": "zolaDO",
6
- "license": "ISC",
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
- "main": "./dist/index.js",
11
- "types": "./dist/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.ts",
15
- "default": "./dist/index.js"
16
- }
17
- },
18
- "files": [
19
- "dist",
20
- "README.md"
21
- ],
22
- "scripts": {
23
- "build": "rimraf dist && tsc",
24
- "prepublishOnly": "npm run build"
25
- },
26
- "peerDependencies": {
27
- "@nestjs/common": "^10.0.0 || ^11.0.0",
28
- "@nestjs/typeorm": "^10.0.0 || ^11.0.0",
29
- "typeorm": "^0.3.0",
30
- "typeorm-extension": "^3.7.1"
31
- },
32
- "dependencies": {
33
- "dotenv": "^17.2.3"
34
- },
35
- "devDependencies": {
36
- "rimraf": "^6.1.0",
37
- "typescript": "^5.9.3"
38
- }
39
- }
1
+ {
2
+ "name": "@zola_do/typeorm",
3
+ "version": "0.1.20",
4
+ "description": "TypeORM configuration for NestJS",
5
+ "author": "zolaDO",
6
+ "license": "ISC",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "rimraf dist && tsc",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "peerDependencies": {
27
+ "@nestjs/common": "^10.0.0 || ^11.0.0",
28
+ "@nestjs/typeorm": "^10.0.0 || ^11.0.0",
29
+ "typeorm": "^0.3.0",
30
+ "typeorm-extension": "^3.7.1"
31
+ },
32
+ "dependencies": {
33
+ "dotenv": "^17.3.1"
34
+ },
35
+ "devDependencies": {
36
+ "rimraf": "^6.1.3",
37
+ "typescript": "^5.9.3"
38
+ }
39
+ }