digicust_types 1.7.239 → 1.7.240

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.
@@ -1,4 +1,4 @@
1
- import { AddressModel, PersonModel, Meta, MasterDataCreationType, MatchingMetadataModel, StakeholderMatchInput, StakeholderMatchResult, CustomsOffice, DefermentAccount } from "..";
1
+ import { AddressModel, PersonModel, Meta, MasterDataCreationType, MatchingMetadataModel, StakeholderMatchInput, StakeholderMatchResult, CustomsOffice, DefermentAccount, StakeholderModel, PermitNumber } from "..";
2
2
  /**
3
3
  * Identifies a company
4
4
  */
@@ -20,6 +20,13 @@ export interface CompanyModel extends Meta<string> {
20
20
  defermentAccounts?: DefermentAccount[];
21
21
  /** Zollstellen */
22
22
  customsOffices?: CustomsOffice[];
23
+ permitNumbers?: PermitNumber[];
24
+ /** direct representative filled with name and stakeholder id */
25
+ directRepresentative?: StakeholderModel;
26
+ /** indirect representative filled with name and stakeholder id */
27
+ indirectRepresentative?: StakeholderModel;
28
+ /** subcontractor filled with name and stakeholder id */
29
+ subcontractor?: StakeholderModel;
23
30
  stakeholderId?: string;
24
31
  creationType?: MasterDataCreationType;
25
32
  matchingMetadata?: MatchingMetadataModel<StakeholderMatchInput, StakeholderMatchResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.239",
3
+ "version": "1.7.240",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",