@nest-omni/core 4.1.3-17 → 4.1.3-18
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.
|
@@ -89,11 +89,6 @@ export declare class DbDependency implements CacheDependency {
|
|
|
89
89
|
* @param name The data source name (default: 'default')
|
|
90
90
|
*/
|
|
91
91
|
static setDefaultDataSourceName(name: string): void;
|
|
92
|
-
/**
|
|
93
|
-
* Get the current fallback DataSource
|
|
94
|
-
* @deprecated Use DataSourceUtil.getDataSource() instead
|
|
95
|
-
*/
|
|
96
|
-
static getDataSource(): DataSource | null;
|
|
97
92
|
/**
|
|
98
93
|
* Get DataSource for executing queries
|
|
99
94
|
* Priority: 1. Specific dataSourceName from options, 2. Default from getDataSourceByName, 3. Fallback
|
|
@@ -91,13 +91,6 @@ class DbDependency {
|
|
|
91
91
|
static setDefaultDataSourceName(name) {
|
|
92
92
|
this.defaultDataSourceName = name;
|
|
93
93
|
}
|
|
94
|
-
/**
|
|
95
|
-
* Get the current fallback DataSource
|
|
96
|
-
* @deprecated Use DataSourceUtil.getDataSource() instead
|
|
97
|
-
*/
|
|
98
|
-
static getDataSource() {
|
|
99
|
-
return this.fallbackDataSource;
|
|
100
|
-
}
|
|
101
94
|
/**
|
|
102
95
|
* Get DataSource for executing queries
|
|
103
96
|
* Priority: 1. Specific dataSourceName from options, 2. Default from getDataSourceByName, 3. Fallback
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-omni/core",
|
|
3
|
-
"version": "4.1.3-
|
|
3
|
+
"version": "4.1.3-18",
|
|
4
4
|
"description": "A comprehensive NestJS framework for building enterprise-grade applications with best practices",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@dataui/crud": "^5.3.4",
|
|
56
56
|
"@dataui/crud-typeorm": "^5.3.4",
|
|
57
|
-
"@nest-omni/transaction": "
|
|
57
|
+
"@nest-omni/transaction": "*",
|
|
58
58
|
"@nestjs/bull": "^11.0.4",
|
|
59
59
|
"@nestjs/common": "^11.1.7",
|
|
60
60
|
"@nestjs/config": "^4.0.2",
|