digicust_types 1.8.8 → 1.8.11

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.
@@ -17,4 +17,5 @@ export interface DocumentCode extends Meta<DigicustDocumentType> {
17
17
  DE_I0136_Addition?: string;
18
18
  DE_I0136_Detail?: string;
19
19
  DE_C0013?: string;
20
+ description?: string;
20
21
  }
@@ -7,3 +7,8 @@ export declare enum FilterCondition {
7
7
  contains = "contains",
8
8
  isUserEdited = "isUserEdited"
9
9
  }
10
+ export interface FilterObject {
11
+ field: string;
12
+ condition: FilterCondition;
13
+ value: string | undefined | boolean | Date | number;
14
+ }
@@ -1,12 +1,12 @@
1
- export * from "./material.model";
2
- export * from "./stakeholder.model";
3
- export * from "./stakeholder-role.enum";
4
- export * from "./user-edited-properties.type";
5
1
  export * from "./matching-metadata.model";
6
- export * from "./string-scoring-algorithm-type.enum";
7
2
  export * from "./material-match-input";
8
3
  export * from "./material-match-result";
4
+ export * from "./material.model";
5
+ export * from "./pseudo-stakeholder";
9
6
  export * from "./stakeholder-match-input";
10
7
  export * from "./stakeholder-match-result";
8
+ export * from "./stakeholder-role.enum";
9
+ export * from "./stakeholder.model";
10
+ export * from "./string-scoring-algorithm-type.enum";
11
11
  export * from "./string-scoring-details";
12
- export * from "./pseudo-stakeholder";
12
+ export * from "./user-edited-properties.type";
@@ -14,15 +14,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./material.model"), exports);
18
- __exportStar(require("./stakeholder.model"), exports);
19
- __exportStar(require("./stakeholder-role.enum"), exports);
20
- __exportStar(require("./user-edited-properties.type"), exports);
21
17
  __exportStar(require("./matching-metadata.model"), exports);
22
- __exportStar(require("./string-scoring-algorithm-type.enum"), exports);
23
18
  __exportStar(require("./material-match-input"), exports);
24
19
  __exportStar(require("./material-match-result"), exports);
20
+ __exportStar(require("./material.model"), exports);
21
+ __exportStar(require("./pseudo-stakeholder"), exports);
25
22
  __exportStar(require("./stakeholder-match-input"), exports);
26
23
  __exportStar(require("./stakeholder-match-result"), exports);
24
+ __exportStar(require("./stakeholder-role.enum"), exports);
25
+ __exportStar(require("./stakeholder.model"), exports);
26
+ __exportStar(require("./string-scoring-algorithm-type.enum"), exports);
27
27
  __exportStar(require("./string-scoring-details"), exports);
28
- __exportStar(require("./pseudo-stakeholder"), exports);
28
+ __exportStar(require("./user-edited-properties.type"), exports);
package/package.json CHANGED
@@ -1,46 +1,46 @@
1
- {
2
- "name": "digicust_types",
3
- "version": "1.8.8",
4
- "description": "",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
7
- "files": [
8
- "lib/**/*"
9
- ],
10
- "scripts": {
11
- "build-with-runtime-interfaces": "tsc && `npm bin`/run-for-every-file --src ./lib/ --file '**/*.d.ts' --run \"`npm bin`/ts-interface-builder -i -g -c {{src-file}}\"",
12
- "build": "tsc",
13
- "build-deploy": "git pull && npm version patch && npm run build && npm publish",
14
- "deploy-docs": "npm i && npx typedoc src/index.ts",
15
- "lint.fix": "eslint --fix --ext .ts .",
16
- "prettier.fix": "prettier --write .",
17
- "prepare": "husky install",
18
- "lint-staged": "lint-staged"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/Digicust0406/types.git"
23
- },
24
- "keywords": [],
25
- "author": "Thomas Übellacker",
26
- "license": "Proprietary",
27
- "bugs": {
28
- "url": "https://github.com/Digicust0406/types/issues"
29
- },
30
- "homepage": "https://github.com/Digicust0406/types#readme",
31
- "dependencies": {
32
- "typedoc": "^0.25.2"
33
- },
34
- "devDependencies": {
35
- "@types/node": "^20.8.9",
36
- "@typescript-eslint/eslint-plugin": "^6.9.0",
37
- "@typescript-eslint/parser": "^6.9.0",
38
- "eslint": "^8.52.0",
39
- "eslint-config-airbnb-typescript": "^17.1.0",
40
- "eslint-plugin-import": "^2.29.0",
41
- "husky": "^8.0.3",
42
- "lint-staged": "^15.0.2",
43
- "prettier": "^3.0.3",
44
- "typescript": "^5.2.2"
45
- }
46
- }
1
+ {
2
+ "name": "digicust_types",
3
+ "version": "1.8.11",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "files": [
8
+ "lib/**/*"
9
+ ],
10
+ "scripts": {
11
+ "build-with-runtime-interfaces": "tsc && `npm bin`/run-for-every-file --src ./lib/ --file '**/*.d.ts' --run \"`npm bin`/ts-interface-builder -i -g -c {{src-file}}\"",
12
+ "build": "tsc",
13
+ "build-deploy": "git pull && npm version patch && npm run build && npm publish",
14
+ "deploy-docs": "npm i && npx typedoc src/index.ts",
15
+ "lint.fix": "eslint --fix --ext .ts .",
16
+ "prettier.fix": "prettier --write .",
17
+ "prepare": "husky install",
18
+ "lint-staged": "lint-staged"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Digicust0406/types.git"
23
+ },
24
+ "keywords": [],
25
+ "author": "Thomas Übellacker",
26
+ "license": "Proprietary",
27
+ "bugs": {
28
+ "url": "https://github.com/Digicust0406/types/issues"
29
+ },
30
+ "homepage": "https://github.com/Digicust0406/types#readme",
31
+ "dependencies": {
32
+ "typedoc": "^0.25.2"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^20.8.9",
36
+ "@typescript-eslint/eslint-plugin": "^6.9.0",
37
+ "@typescript-eslint/parser": "^6.9.0",
38
+ "eslint": "^8.52.0",
39
+ "eslint-config-airbnb-typescript": "^17.1.0",
40
+ "eslint-plugin-import": "^2.29.0",
41
+ "husky": "^8.0.3",
42
+ "lint-staged": "^15.0.2",
43
+ "prettier": "^3.0.3",
44
+ "typescript": "^5.2.2"
45
+ }
46
+ }