@openfilz-sdk/typescript-ee 1.9.6 → 1.9.7
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.
- package/.openapi-generator/FILES +22 -0
- package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
- package/README.md +23 -4
- package/api/aichat-api.ts +9 -9
- package/api/document-controller-api.ts +30 -14
- package/api/document-insights-api.ts +275 -0
- package/api/esign-api.ts +9 -9
- package/api/settings-api.ts +142 -0
- package/api/smart-filing-api.ts +421 -0
- package/api.ts +2 -0
- package/dist/api/aichat-api.d.ts +4 -4
- package/dist/api/aichat-api.js +9 -9
- package/dist/api/document-controller-api.d.ts +16 -8
- package/dist/api/document-controller-api.js +28 -14
- package/dist/api/document-insights-api.d.ts +133 -0
- package/dist/api/document-insights-api.js +269 -0
- package/dist/api/esign-api.d.ts +4 -4
- package/dist/api/esign-api.js +9 -9
- package/dist/api/settings-api.d.ts +62 -0
- package/dist/api/settings-api.js +132 -0
- package/dist/api/smart-filing-api.d.ts +197 -0
- package/dist/api/smart-filing-api.js +409 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/esm/api/aichat-api.d.ts +4 -4
- package/dist/esm/api/aichat-api.js +9 -9
- package/dist/esm/api/document-controller-api.d.ts +16 -8
- package/dist/esm/api/document-controller-api.js +28 -14
- package/dist/esm/api/document-insights-api.d.ts +133 -0
- package/dist/esm/api/document-insights-api.js +262 -0
- package/dist/esm/api/esign-api.d.ts +4 -4
- package/dist/esm/api/esign-api.js +9 -9
- package/dist/esm/api/settings-api.d.ts +62 -0
- package/dist/esm/api/settings-api.js +132 -0
- package/dist/esm/api/smart-filing-api.d.ts +197 -0
- package/dist/esm/api/smart-filing-api.js +402 -0
- package/dist/esm/api.d.ts +2 -0
- package/dist/esm/api.js +2 -0
- package/dist/esm/models/ai-preferences-view.d.ts +16 -0
- package/dist/esm/models/ai-preferences-view.js +14 -0
- package/dist/esm/models/auto-file-job-view.d.ts +25 -0
- package/dist/esm/models/auto-file-job-view.js +14 -0
- package/dist/esm/models/auto-file-request.d.ts +15 -0
- package/dist/esm/models/auto-file-request.js +14 -0
- package/dist/esm/models/auto-file-ticket.d.ts +15 -0
- package/dist/esm/models/auto-file-ticket.js +14 -0
- package/dist/esm/models/document-insight-view.d.ts +33 -0
- package/dist/esm/models/document-insight-view.js +14 -0
- package/dist/esm/models/filing-outcome.d.ts +25 -0
- package/dist/esm/models/filing-outcome.js +14 -0
- package/dist/esm/models/index.d.ts +9 -0
- package/dist/esm/models/index.js +9 -0
- package/dist/esm/models/insight-backfill-request.d.ts +15 -0
- package/dist/esm/models/insight-backfill-request.js +14 -0
- package/dist/esm/models/insight-backfill-status.d.ts +23 -0
- package/dist/esm/models/insight-backfill-status.js +14 -0
- package/dist/esm/models/save-ai-preferences-request.d.ts +15 -0
- package/dist/esm/models/save-ai-preferences-request.js +14 -0
- package/dist/esm/models/settings.d.ts +2 -0
- package/dist/esm/models/tus-finalize-request.d.ts +1 -0
- package/dist/esm/models/upload-response.d.ts +2 -0
- package/dist/models/ai-preferences-view.d.ts +16 -0
- package/dist/models/ai-preferences-view.js +15 -0
- package/dist/models/auto-file-job-view.d.ts +25 -0
- package/dist/models/auto-file-job-view.js +15 -0
- package/dist/models/auto-file-request.d.ts +15 -0
- package/dist/models/auto-file-request.js +15 -0
- package/dist/models/auto-file-ticket.d.ts +15 -0
- package/dist/models/auto-file-ticket.js +15 -0
- package/dist/models/document-insight-view.d.ts +33 -0
- package/dist/models/document-insight-view.js +15 -0
- package/dist/models/filing-outcome.d.ts +25 -0
- package/dist/models/filing-outcome.js +15 -0
- package/dist/models/index.d.ts +9 -0
- package/dist/models/index.js +9 -0
- package/dist/models/insight-backfill-request.d.ts +15 -0
- package/dist/models/insight-backfill-request.js +15 -0
- package/dist/models/insight-backfill-status.d.ts +23 -0
- package/dist/models/insight-backfill-status.js +15 -0
- package/dist/models/save-ai-preferences-request.d.ts +15 -0
- package/dist/models/save-ai-preferences-request.js +15 -0
- package/dist/models/settings.d.ts +2 -0
- package/dist/models/tus-finalize-request.d.ts +1 -0
- package/dist/models/upload-response.d.ts +2 -0
- package/docs/AIChatApi.md +4 -4
- package/docs/AiPreferencesView.md +24 -0
- package/docs/AutoFileJobView.md +40 -0
- package/docs/AutoFileRequest.md +22 -0
- package/docs/AutoFileTicket.md +22 -0
- package/docs/DocumentControllerApi.md +6 -0
- package/docs/DocumentInsightView.md +54 -0
- package/docs/DocumentInsightsApi.md +163 -0
- package/docs/ESignApi.md +4 -4
- package/docs/FilingOutcome.md +42 -0
- package/docs/InsightBackfillRequest.md +22 -0
- package/docs/InsightBackfillStatus.md +38 -0
- package/docs/SaveAiPreferencesRequest.md +22 -0
- package/docs/Settings.md +4 -0
- package/docs/SettingsApi.md +97 -0
- package/docs/SmartFilingApi.md +264 -0
- package/docs/TusFinalizeRequest.md +2 -0
- package/docs/UploadResponse.md +2 -0
- package/models/ai-preferences-view.ts +22 -0
- package/models/auto-file-job-view.ts +33 -0
- package/models/auto-file-request.ts +21 -0
- package/models/auto-file-ticket.ts +21 -0
- package/models/document-insight-view.ts +37 -0
- package/models/filing-outcome.ts +31 -0
- package/models/index.ts +9 -0
- package/models/insight-backfill-request.ts +21 -0
- package/models/insight-backfill-status.ts +29 -0
- package/models/save-ai-preferences-request.ts +21 -0
- package/models/settings.ts +2 -0
- package/models/tus-finalize-request.ts +1 -0
- package/models/upload-response.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface DocumentInsightView {
|
|
18
|
+
'documentId'?: string;
|
|
19
|
+
'fileTitle'?: string;
|
|
20
|
+
'fileAuthor'?: string;
|
|
21
|
+
'fileCreatedAt'?: string;
|
|
22
|
+
'fileModifiedAt'?: string;
|
|
23
|
+
'pageCount'?: number;
|
|
24
|
+
'language'?: string;
|
|
25
|
+
'category'?: string;
|
|
26
|
+
'summary'?: string;
|
|
27
|
+
'keywords'?: Array<string>;
|
|
28
|
+
'entities'?: { [key: string]: any; };
|
|
29
|
+
'tier'?: number;
|
|
30
|
+
'model'?: string;
|
|
31
|
+
'promptVersion'?: number;
|
|
32
|
+
'status'?: string;
|
|
33
|
+
'error'?: string;
|
|
34
|
+
'createdAt'?: string;
|
|
35
|
+
'updatedAt'?: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface FilingOutcome {
|
|
18
|
+
'documentId'?: string;
|
|
19
|
+
'name'?: string;
|
|
20
|
+
'status'?: string;
|
|
21
|
+
'fromFolderId'?: string;
|
|
22
|
+
'fromPath'?: string;
|
|
23
|
+
'toFolderId'?: string;
|
|
24
|
+
'toPath'?: string;
|
|
25
|
+
'stage'?: string;
|
|
26
|
+
'confidence'?: number;
|
|
27
|
+
'reason'?: string;
|
|
28
|
+
'planId'?: string;
|
|
29
|
+
'decidedAt'?: string;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -3,11 +3,15 @@ export * from './ai-chat-request';
|
|
|
3
3
|
export * from './ai-chat-response';
|
|
4
4
|
export * from './ai-connection-test-result';
|
|
5
5
|
export * from './ai-models-response';
|
|
6
|
+
export * from './ai-preferences-view';
|
|
6
7
|
export * from './ai-settings-response';
|
|
7
8
|
export * from './ancestor-info';
|
|
8
9
|
export * from './apply-signature-request';
|
|
9
10
|
export * from './audit-log-details';
|
|
10
11
|
export * from './audit-verification-result';
|
|
12
|
+
export * from './auto-file-job-view';
|
|
13
|
+
export * from './auto-file-request';
|
|
14
|
+
export * from './auto-file-ticket';
|
|
11
15
|
export * from './broken-link';
|
|
12
16
|
export * from './bulk-row';
|
|
13
17
|
export * from './bulk-row-result';
|
|
@@ -36,6 +40,7 @@ export * from './delete-metadata-request';
|
|
|
36
40
|
export * from './delete-request';
|
|
37
41
|
export * from './delete-share-request';
|
|
38
42
|
export * from './document-info';
|
|
43
|
+
export * from './document-insight-view';
|
|
39
44
|
export * from './document-position';
|
|
40
45
|
export * from './document-version-info';
|
|
41
46
|
export * from './element-info';
|
|
@@ -44,10 +49,13 @@ export * from './enriched-audit-log';
|
|
|
44
49
|
export * from './enriched-audit-log-details';
|
|
45
50
|
export * from './feature-entitlement';
|
|
46
51
|
export * from './file-type-stats';
|
|
52
|
+
export * from './filing-outcome';
|
|
47
53
|
export * from './filter-input';
|
|
48
54
|
export * from './folder-element-info';
|
|
49
55
|
export * from './folder-response';
|
|
50
56
|
export * from './ingestion-status-dto';
|
|
57
|
+
export * from './insight-backfill-request';
|
|
58
|
+
export * from './insight-backfill-status';
|
|
51
59
|
export * from './instantiate-template-request';
|
|
52
60
|
export * from './item';
|
|
53
61
|
export * from './item-result';
|
|
@@ -83,6 +91,7 @@ export * from './restore-version-audit';
|
|
|
83
91
|
export * from './restore-version-response';
|
|
84
92
|
export * from './role-binding';
|
|
85
93
|
export * from './rotate-request';
|
|
94
|
+
export * from './save-ai-preferences-request';
|
|
86
95
|
export * from './save-ai-settings-request';
|
|
87
96
|
export * from './scan-job-status-dto';
|
|
88
97
|
export * from './scan-request-dto';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface InsightBackfillRequest {
|
|
18
|
+
'folderId'?: string;
|
|
19
|
+
'force'?: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface InsightBackfillStatus {
|
|
18
|
+
'jobId'?: string;
|
|
19
|
+
'folderId'?: string;
|
|
20
|
+
'force'?: boolean;
|
|
21
|
+
'status'?: string;
|
|
22
|
+
'total'?: number;
|
|
23
|
+
'done'?: number;
|
|
24
|
+
'failed'?: number;
|
|
25
|
+
'skipped'?: number;
|
|
26
|
+
'startedAt'?: string;
|
|
27
|
+
'finishedAt'?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* openfilz-api
|
|
5
|
+
* API for Document Management System
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface SaveAiPreferencesRequest {
|
|
18
|
+
'autoFile'?: boolean;
|
|
19
|
+
'autoFileNewFolders'?: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
package/models/settings.ts
CHANGED
|
@@ -23,6 +23,8 @@ export interface Settings {
|
|
|
23
23
|
'thumbnailsActive'?: boolean;
|
|
24
24
|
'aiActive'?: boolean;
|
|
25
25
|
'aiUserSettingsEnabled'?: boolean;
|
|
26
|
+
'aiInsightsActive'?: boolean;
|
|
27
|
+
'aiAutoFileActive'?: boolean;
|
|
26
28
|
'signatureActive'?: boolean;
|
|
27
29
|
'pdfToolsActive'?: boolean;
|
|
28
30
|
'signatureRequesterRoleRequired'?: boolean;
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { AutoFileTicket } from './auto-file-ticket';
|
|
16
19
|
|
|
17
20
|
export interface UploadResponse {
|
|
18
21
|
'id'?: string;
|
|
@@ -21,5 +24,6 @@ export interface UploadResponse {
|
|
|
21
24
|
'size'?: number;
|
|
22
25
|
'errorType'?: string;
|
|
23
26
|
'errorMessage'?: string;
|
|
27
|
+
'autoFile'?: AutoFileTicket;
|
|
24
28
|
}
|
|
25
29
|
|