digicust_types 1.7.240 → 1.7.243

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 { Procedure, LoadType, Adjustment, Container, WaybillTypeModel, IncotermModel, CostIntersection, TradePreference, CustomsOffice, MeanOfTransportation, TypeOfBusiness, CaseType, LineItemModel, Package, Meta, AddressModel, DateTimeModel, CompanyModel, Currency, WeightUnit, Weight, Money, TransitItemModel } from "..";
1
+ import { Procedure, LoadType, Adjustment, Container, WaybillTypeModel, IncotermModel, CostIntersection, TradePreference, CustomsOffice, MeanOfTransportation, TypeOfBusiness, CaseType, LineItemModel, Package, Meta, AddressModel, DateTimeModel, CompanyModel, Currency, WeightUnit, Weight, Money, TransitItemModel, ConstellationOfParticipantsModel } from "..";
2
2
  /**
3
3
  * Used to store aggregated information of a case
4
4
  */
@@ -24,12 +24,14 @@ export interface AggregatedCaseDataModel {
24
24
  exporter?: CompanyModel;
25
25
  importer?: CompanyModel;
26
26
  declarant?: CompanyModel;
27
+ declarantRepresentative?: CompanyModel;
28
+ buyer?: CompanyModel;
27
29
  agent?: CompanyModel;
28
30
  broker?: CompanyModel;
29
- buyer?: CompanyModel;
30
31
  carrier?: CompanyModel;
31
32
  warehouse?: CompanyModel;
32
33
  obligater?: CompanyModel;
34
+ constellationOfParticipants?: ConstellationOfParticipantsModel;
33
35
  /** adjustments to statistical/duty/VAT value */
34
36
  adjustments?: Adjustment[];
35
37
  containers?: Container[];
@@ -0,0 +1,6 @@
1
+ import { Meta } from "../meta";
2
+ export interface ConstellationOfParticipantsModel extends Meta<ConstellationOfParticipantsModel> {
3
+ DE_A0127?: string;
4
+ }
5
+ export declare enum ConstellationOfParticipants {
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConstellationOfParticipants = void 0;
4
+ var ConstellationOfParticipants;
5
+ (function (ConstellationOfParticipants) {
6
+ })(ConstellationOfParticipants = exports.ConstellationOfParticipants || (exports.ConstellationOfParticipants = {}));
@@ -11,3 +11,4 @@ export * from "./tax-details.model";
11
11
  export * from "./transit-item.model";
12
12
  export * from "./type-of-business";
13
13
  export * from "./preference";
14
+ export * from "./constellationOfParticipants.model";
@@ -27,3 +27,4 @@ __exportStar(require("./tax-details.model"), exports);
27
27
  __exportStar(require("./transit-item.model"), exports);
28
28
  __exportStar(require("./type-of-business"), exports);
29
29
  __exportStar(require("./preference"), exports);
30
+ __exportStar(require("./constellationOfParticipants.model"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.240",
3
+ "version": "1.7.243",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",