digicust_types 1.8.324 → 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
+ }
@@ -1,3 +1,5 @@
1
+ /// <reference types="node" />
2
+ /// <reference types="node" />
1
3
  /**
2
4
  * Information about an uploaded file. Used by multer package.
3
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.324",
3
+ "version": "1.8.326",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,18 +0,0 @@
1
- import { DocumentCodeSource } from "./document-code-source.enum";
2
- import { ConditionModel } from "../execution-strategy/condition.model";
3
- export interface DocumentCodeSourceContext {
4
- source: DocumentCodeSource;
5
- taricQueryParams?: {
6
- itemId?: string;
7
- countryCode?: string;
8
- procedureMode?: string;
9
- certificateType?: string;
10
- };
11
- ruleMetadata?: {
12
- name?: string;
13
- id?: string;
14
- conditions?: ConditionModel[];
15
- };
16
- computationParams?: any;
17
- materialId?: string;
18
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });