spartaxx.businessmodels 1.0.8 → 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { DbConnectionConfig } from "./DbConnectionConfig";
2
+
3
+ export interface DbConfig {
4
+ usermanagementdbconnection: DbConnectionConfig;
5
+ spartaxxdbconnection: DbConnectionConfig;
6
+ csdbtaxrolldbconnection: DbConnectionConfig;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export interface DbConnectionConfig {
2
+ user: string;
3
+ password: string;
4
+ server: string;
5
+ port: number;
6
+ database: string;
7
+ options: {
8
+ encrypt: boolean;
9
+ requestTimeout: number;
10
+ };
11
+ }
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "spartaxx.businessmodels",
3
- "version": "1.0.8",
4
- "main": "protest.js",
5
- "type": "commonjs",
6
- "scripts": {
7
- "start": "npm run build && node ./build/protest.js",
8
- "build": "tsc"
9
- },
10
- "keywords": [],
11
- "author": "",
12
- "license": "ISC",
13
- "description": "",
14
- "dependencies": {
15
- "@types/express": "^4.17.21",
16
- "@types/typescript": "^0.4.29",
17
- "cookie-parser": "^1.4.6",
18
- "cors": "^2.8.5",
19
- "express": "^4.19.2"
20
- },
21
- "devDependencies": {
22
- "@types/axios": "^0.14.0",
23
- "@types/node": "^20.14.11",
24
- "axios": "^1.7.2",
25
- "ts-node": "^10.9.2",
26
- "typescript": "^5.5.4"
27
- }
28
- }
1
+ {
2
+ "name": "spartaxx.businessmodels",
3
+ "version": "1.0.10",
4
+ "main": "protest.js",
5
+ "type": "commonjs",
6
+ "scripts": {
7
+ "start": "npm run build && node ./build/protest.js",
8
+ "build": "tsc"
9
+ },
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "ISC",
13
+ "description": "",
14
+ "dependencies": {
15
+ "@types/express": "^4.17.21",
16
+ "@types/typescript": "^0.4.29",
17
+ "cookie-parser": "^1.4.6",
18
+ "cors": "^2.8.5",
19
+ "express": "^4.19.2"
20
+ },
21
+ "devDependencies": {
22
+ "@types/axios": "^0.14.0",
23
+ "@types/node": "^20.14.11",
24
+ "axios": "^1.7.2",
25
+ "ts-node": "^10.9.2",
26
+ "typescript": "^5.5.4"
27
+ }
28
+ }