digicust_types 1.7.472 → 1.7.474

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.
@@ -55,6 +55,8 @@ export interface LineItemModel {
55
55
  CAS?: Meta<string>;
56
56
  /** export declaration * */
57
57
  packages?: Package[];
58
+ /** reference to the position this item is included in */
59
+ includedWithPosition?: Meta<string>;
58
60
  shipper?: CompanyModel;
59
61
  preliminaryDocument?: Meta<string>;
60
62
  customsProcedure?: Procedure;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.472",
3
+ "version": "1.7.474",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
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
12
  "build": "tsc",
13
- "build-deploy": "npm version patch && npm run build && npm publish",
13
+ "build-deploy": "git pull && npm version patch && npm run build && npm publish",
14
14
  "deploy-docs": "npm i && npx typedoc src/index.ts",
15
15
  "lint-fix": "eslint --fix --ext .ts ."
16
16
  },