digicust_types 1.8.323 → 1.8.326

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,3 +2,11 @@ export interface StartTaricImportDto {
2
2
  importFolder: string;
3
3
  importType: string;
4
4
  }
5
+ export interface ImportCsvDataDto {
6
+ importType: "csv-dataset";
7
+ folder: string;
8
+ tableName: string;
9
+ columnMapping: {
10
+ [key: string]: number;
11
+ };
12
+ }
@@ -2,10 +2,11 @@ import { CustomsOffice, CustomsTariffNumber } from "../../customs";
2
2
  import { DateTimeModel, Money, Weight } from "../../measures";
3
3
  import { MeanOfTransportation, Package } from "../../transportation";
4
4
  import { DigicustDocumentModel } from "./digicust-document.model";
5
+ import { LineItemContainingDocument } from "../line-item-containing-document";
5
6
  /**
6
7
  * Identifies an export/import instructions
7
8
  */
8
- export interface CustomsServiceInstructions extends DigicustDocumentModel {
9
+ export interface CustomsServiceInstructions extends DigicustDocumentModel, LineItemContainingDocument {
9
10
  issueDate?: DateTimeModel;
10
11
  meansOfTransportation?: MeanOfTransportation[];
11
12
  netWeight?: Weight;
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  /**
3
4
  * Information about an uploaded file. Used by multer package.
4
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.323",
3
+ "version": "1.8.326",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,12 +0,0 @@
1
- import { Meta } from "..";
2
- /**
3
- * Statistics about a case
4
- */
5
- export interface StatsCaseModel {
6
- fillOutRatio?: Meta<number>;
7
- difficulty?: Meta<number>;
8
- accuracy?: Meta<number>;
9
- completeness?: Meta<number>;
10
- correctness?: Meta<number>;
11
- overallConfidence?: Meta<number>;
12
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });