@onivoro/server-typeorm-postgres 24.0.2 → 24.5.0
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/package.json +5 -1
- package/project.json +9 -1
- package/index.ts +0 -33
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onivoro/server-typeorm-postgres",
|
|
3
|
-
"version": "24.0
|
|
3
|
+
"version": "24.5.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/onivoro/monorepo.git"
|
|
10
|
+
},
|
|
7
11
|
"dependencies": {
|
|
8
12
|
"tslib": "^2.3.0"
|
|
9
13
|
},
|
package/project.json
CHANGED
|
@@ -15,7 +15,15 @@
|
|
|
15
15
|
"libs/server/typeorm-postgres/README.md",
|
|
16
16
|
"libs/server/typeorm-postgres/package.json"
|
|
17
17
|
],
|
|
18
|
-
"declaration": true
|
|
18
|
+
"declaration": true,
|
|
19
|
+
"updateBuildableProjectPackageJsonDependencies": true
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"publish": {
|
|
23
|
+
"executor": "@nx/js:npm",
|
|
24
|
+
"outputs": [],
|
|
25
|
+
"options": {
|
|
26
|
+
"packageRoot": "dist/libs/server/typeorm-postgres"
|
|
19
27
|
}
|
|
20
28
|
}
|
|
21
29
|
},
|
package/index.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export * from './lib/classes/column-migration-base.class';
|
|
2
|
-
export * from './lib/classes/columns-migration-base.class';
|
|
3
|
-
export * from './lib/classes/drop-column-migration-base.class';
|
|
4
|
-
export * from './lib/classes/drop-table-migration-base.class';
|
|
5
|
-
export * from './lib/classes/index-migration-base.class';
|
|
6
|
-
export * from './lib/classes/redshift-repository.class';
|
|
7
|
-
export * from './lib/classes/sql-writer.class';
|
|
8
|
-
export * from './lib/classes/table-migration-base.class';
|
|
9
|
-
export * from './lib/classes/type-orm-paging-repository.class';
|
|
10
|
-
export * from './lib/classes/type-orm-repository.class';
|
|
11
|
-
|
|
12
|
-
export * from './lib/constants/many-to-one-relation-options.constant';
|
|
13
|
-
|
|
14
|
-
export * from './lib/decorators/nullable-table-column.decorator';
|
|
15
|
-
export * from './lib/decorators/primary-table-column.decorator';
|
|
16
|
-
export * from './lib/decorators/table-column.decorator';
|
|
17
|
-
export * from './lib/decorators/table.decorator';
|
|
18
|
-
|
|
19
|
-
export * from './lib/functions/data-source-config-factory.function';
|
|
20
|
-
export * from './lib/functions/data-source-factory.function';
|
|
21
|
-
export * from './lib/functions/generate-date-query.function';
|
|
22
|
-
export * from './lib/functions/get-api-type-from-column.function';
|
|
23
|
-
export * from './lib/functions/get-paging-key.function';
|
|
24
|
-
export * from './lib/functions/get-skip.function';
|
|
25
|
-
export * from './lib/functions/remove-falsey-keys.function';
|
|
26
|
-
|
|
27
|
-
export * from './lib/types/data-source-options.interface';
|
|
28
|
-
export * from './lib/types/entity-provider.interface';
|
|
29
|
-
export * from './lib/types/page-params.interface';
|
|
30
|
-
export * from './lib/types/paged-data.interface';
|
|
31
|
-
export * from './lib/types/table-meta.type';
|
|
32
|
-
|
|
33
|
-
export * from './lib/server-typeorm-postgres.module';
|