digicust_types 1.8.6 → 1.8.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -122,6 +122,7 @@ export interface ExecutionStrategy {
122
122
  GRN?: string;
123
123
  GRNAccessCode?: string;
124
124
  declarantRepresentative?: StakeholderModel;
125
+ LRN?: string;
125
126
  };
126
127
  }
127
128
  export declare const condenseExecutionStrategy: (strategy?: ExecutionStrategy) => ExecutionStrategy | null;
@@ -45,6 +45,10 @@ export interface MaterialModel {
45
45
  projectId?: string;
46
46
  creationType?: MasterDataCreationType;
47
47
  matchingType?: "materialNumber" | "tariffNumber";
48
+ /**
49
+ * Tags for material data
50
+ */
51
+ tags?: string[];
48
52
  description?: Workflow<string>;
49
53
  documentDescription?: Workflow<string>;
50
54
  additionalInformation?: Meta<string>;
@@ -154,12 +158,6 @@ export interface MaterialModel {
154
158
  * Redundant meta property needed for search scoring
155
159
  */
156
160
  hasAnyUserEditedProperties?: boolean;
157
- /**
158
- * Suggestions added while uploading bulk data
159
- */
160
- suggestions?: {
161
- tariffNumber?: string;
162
- };
163
161
  meta?: {
164
162
  version?: number;
165
163
  userCreated?: boolean;
package/package.json CHANGED
@@ -1,46 +1,46 @@
1
- {
2
- "name": "digicust_types",
3
- "version": "1.8.6",
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.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
+ }