spartaxx.businessmodels 1.0.12 → 1.0.14
Sign up to get free protection for your applications and to get access to all the features.
- package/DbConfig/DBParams.js +2 -0
- package/DbConfig/DBParams.ts +4 -0
- package/DbConfig/DbConnectionConfig.js +2 -0
- package/DbConfig/DbConnectionConfig.ts +0 -7
- package/DbConfig/OperationParams.js +2 -0
- package/DbConfig/OperationParams.ts +9 -0
- package/package.json +1 -1
- package/DbConfig/DbConfig.ts +0 -15
@@ -8,11 +8,4 @@ export interface DbConnectionConfig {
|
|
8
8
|
encrypt: boolean;
|
9
9
|
requestTimeout: number;
|
10
10
|
};
|
11
|
-
}
|
12
|
-
|
13
|
-
// Define the interface for the configuration object containing multiple connections
|
14
|
-
export interface DbConfigType {
|
15
|
-
usermanagementdbconnection: DbConnectionConfig;
|
16
|
-
spartaxxdbconnection: DbConnectionConfig;
|
17
|
-
csdbtaxrolldbconnection: DbConnectionConfig;
|
18
11
|
}
|
package/package.json
CHANGED
package/DbConfig/DbConfig.ts
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
import { DbConnectionConfig } from "./DbConnectionConfig";
|
2
|
-
|
3
|
-
interface DbConfigType {
|
4
|
-
usermanagementdbconnection: DbConnectionConfig;
|
5
|
-
spartaxxdbconnection: DbConnectionConfig;
|
6
|
-
csdbtaxrolldbconnection: DbConnectionConfig;
|
7
|
-
}
|
8
|
-
|
9
|
-
const DbConfig: DbConfigType = {
|
10
|
-
usermanagementdbconnection: {} as DbConnectionConfig,
|
11
|
-
spartaxxdbconnection: {} as DbConnectionConfig,
|
12
|
-
csdbtaxrolldbconnection: {} as DbConnectionConfig
|
13
|
-
};
|
14
|
-
|
15
|
-
export default DbConfig;
|