digicust_types 1.8.412 → 1.8.414

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.
@@ -12,14 +12,14 @@ export interface Activity {
12
12
  description?: string;
13
13
  timestamp?: Date;
14
14
  caseId?: string;
15
- usage?: {
16
- documentType: DigicustDocumentType;
17
- numberOfPages: number;
18
- }[];
15
+ usage?: ActivityUsage[];
19
16
  subscriptionId?: string;
20
17
  paid?: boolean;
21
18
  }
22
- declare enum ActivityName {
19
+ export type ActivityUsage = {
20
+ documentType: DigicustDocumentType;
21
+ numberOfPages: number;
22
+ };
23
+ export declare enum ActivityName {
23
24
  usage = "usage"
24
25
  }
25
- export {};
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActivityName = void 0;
3
4
  var ActivityName;
4
5
  (function (ActivityName) {
5
6
  ActivityName["usage"] = "usage";
6
- })(ActivityName || (ActivityName = {}));
7
+ })(ActivityName || (exports.ActivityName = ActivityName = {}));
@@ -104,6 +104,7 @@ export interface ScopeSftpConfig {
104
104
  sendAutomatic?: string;
105
105
  accumulatePosition?: string;
106
106
  addStatisticalValue?: boolean;
107
+ addGuaranteeValue?: boolean;
107
108
  whiteListedClerks?: string[];
108
109
  fallbackClerk?: string;
109
110
  }
@@ -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.412",
3
+ "version": "1.8.414",
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 });