digicust_types 1.7.533 → 1.7.535

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
1
1
  import { CodeModel } from './code.model';
2
2
  export interface SettlementCode extends CodeModel {
3
- code: string;
3
+ codeFrom: string;
4
+ codeUntil: string;
4
5
  name: string;
5
6
  }
@@ -0,0 +1,7 @@
1
+ import { DigicustDocumentModel } from "./digicust-document.model";
2
+ import { LineItemContainingDocument } from "..";
3
+ export interface PackingListModel extends DigicustDocumentModel, LineItemContainingDocument {
4
+ source: {
5
+ [key: string]: string;
6
+ };
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,7 @@
1
1
  import { AggregatedCaseDataModel } from "../../case";
2
2
  import { ValidationError } from "../../errors.model";
3
3
  import { ExecutionStrategy } from "../../execution-strategy";
4
+ import { LineItemModel } from "../../line-item";
4
5
  import { DigicustDocumentModel } from "./digicust-document.model";
5
6
  /**
6
7
  * Identifies user input as a document
@@ -10,4 +11,5 @@ export interface UserInput extends DigicustDocumentModel {
10
11
  annotatedAggregated?: AggregatedCaseDataModel;
11
12
  annotatedExecutionStrategy?: ExecutionStrategy;
12
13
  customValidationMessages?: ValidationError[];
14
+ annotatedLineItem?: LineItemModel;
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.533",
3
+ "version": "1.7.535",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",