spartaxx.businessmodels 1.0.7 → 1.0.9

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.
@@ -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
+ }
@@ -10,5 +10,6 @@ export interface ApiMasterDatasetColumns {
10
10
  ItIsFilterColumn: boolean;
11
11
  FilterColumnNameInDB: string;
12
12
  FilterColumnSequence: number;
13
- IsActive: boolean;
13
+ IsInActive: boolean;
14
+ ModelColumnRefForFilter: string;
14
15
  }
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "spartaxx.businessmodels",
3
- "version": "1.0.7",
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.9",
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
+ }