digicust_types 1.8.18 → 1.8.20
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,7 +23,7 @@ export interface DocumentTypeCode {
|
|
23
23
|
deductionAmount?: Quantity;
|
24
24
|
qualifier?: string;
|
25
25
|
}
|
26
|
-
export interface
|
26
|
+
export interface ExtendedDocumentTypeCode extends DocumentCode, Workflow<DigicustDocumentType> {
|
27
27
|
procedure?: ProcedureMode | "any";
|
28
28
|
reference?: string;
|
29
29
|
description?: string;
|
@@ -139,7 +139,7 @@ export interface MaterialModel {
|
|
139
139
|
name: string;
|
140
140
|
}[];
|
141
141
|
unitOfMeasurement?: Workflow<UOM>;
|
142
|
-
documentTypeCodes?:
|
142
|
+
documentTypeCodes?: ExtendedDocumentTypeCode[];
|
143
143
|
CAS?: Workflow<string>;
|
144
144
|
units?: Workflow<{
|
145
145
|
number?: number;
|
package/package.json
CHANGED
@@ -1,46 +1,46 @@
|
|
1
|
-
{
|
2
|
-
"name": "digicust_types",
|
3
|
-
"version": "1.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.20",
|
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
|
+
}
|