@dignite/vault-extract 0.2.0
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/README.md +17 -0
- package/fesm2022/dignite-vault-extract-config.mjs +82 -0
- package/fesm2022/dignite-vault-extract-config.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-cabinet-list.component-Ch0gpSCc.mjs +184 -0
- package/fesm2022/dignite-vault-extract-documents-cabinet-list.component-Ch0gpSCc.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-content-type-DjCs-s4E.mjs +115 -0
- package/fesm2022/dignite-vault-extract-documents-content-type-DjCs-s4E.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-detail.component-DHs42DWJ.mjs +1146 -0
- package/fesm2022/dignite-vault-extract-documents-document-detail.component-DHs42DWJ.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-file-preview.component-CStXf8v9.mjs +72 -0
- package/fesm2022/dignite-vault-extract-documents-document-file-preview.component-CStXf8v9.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-list.component-jThR5cct.mjs +642 -0
- package/fesm2022/dignite-vault-extract-documents-document-list.component-jThR5cct.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-overview.component-BHUUUIVr.mjs +318 -0
- package/fesm2022/dignite-vault-extract-documents-document-overview.component-BHUUUIVr.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-recycle-bin.component-dqeBrw22.mjs +178 -0
- package/fesm2022/dignite-vault-extract-documents-document-recycle-bin.component-dqeBrw22.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-document-type-list.component-C8kXFJGb.mjs +464 -0
- package/fesm2022/dignite-vault-extract-documents-document-type-list.component-C8kXFJGb.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-export-template-list.component-DlmZFFF1.mjs +361 -0
- package/fesm2022/dignite-vault-extract-documents-export-template-list.component-DlmZFFF1.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-extensible-table-DkLXuoWo.mjs +53 -0
- package/fesm2022/dignite-vault-extract-documents-extensible-table-DkLXuoWo.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-field-definition-list.component-ClmWkRun.mjs +530 -0
- package/fesm2022/dignite-vault-extract-documents-field-definition-list.component-ClmWkRun.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-field-reextraction-modal.component-D7OOycv9.mjs +163 -0
- package/fesm2022/dignite-vault-extract-documents-field-reextraction-modal.component-D7OOycv9.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-format-bytes-Cd3QwfQZ.mjs +19 -0
- package/fesm2022/dignite-vault-extract-documents-format-bytes-Cd3QwfQZ.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents-format-field-value-Xjb8lwzA.mjs +22 -0
- package/fesm2022/dignite-vault-extract-documents-format-field-value-Xjb8lwzA.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract-documents.mjs +71 -0
- package/fesm2022/dignite-vault-extract-documents.mjs.map +1 -0
- package/fesm2022/dignite-vault-extract.mjs +522 -0
- package/fesm2022/dignite-vault-extract.mjs.map +1 -0
- package/package.json +38 -0
- package/types/dignite-vault-extract-config.d.ts +5 -0
- package/types/dignite-vault-extract-documents.d.ts +5 -0
- package/types/dignite-vault-extract.d.ts +521 -0
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { inject, Injectable } from '@angular/core';
|
|
3
|
+
import { RestService, mapEnumToOptions } from '@abp/ng.core';
|
|
4
|
+
|
|
5
|
+
const EXTRACT_PERMISSIONS = {
|
|
6
|
+
Documents: {
|
|
7
|
+
Default: 'VaultExtract.Documents',
|
|
8
|
+
Upload: 'VaultExtract.Documents.Upload',
|
|
9
|
+
Delete: 'VaultExtract.Documents.Delete',
|
|
10
|
+
PermanentDelete: 'VaultExtract.Documents.PermanentDelete',
|
|
11
|
+
Restore: 'VaultExtract.Documents.Restore',
|
|
12
|
+
Export: 'VaultExtract.Documents.Export',
|
|
13
|
+
ConfirmClassification: 'VaultExtract.Documents.ConfirmClassification',
|
|
14
|
+
Pipelines: {
|
|
15
|
+
Default: 'VaultExtract.Documents.Pipelines',
|
|
16
|
+
Retry: 'VaultExtract.Documents.Pipelines.Retry',
|
|
17
|
+
},
|
|
18
|
+
// Batch reprocessing of existing documents (#289) — admin-level.
|
|
19
|
+
Reprocessing: {
|
|
20
|
+
Default: 'VaultExtract.Documents.Reprocessing',
|
|
21
|
+
FieldExtraction: 'VaultExtract.Documents.Reprocessing.FieldExtraction',
|
|
22
|
+
Reclassification: 'VaultExtract.Documents.Reprocessing.Reclassification',
|
|
23
|
+
},
|
|
24
|
+
Templates: {
|
|
25
|
+
Default: 'VaultExtract.Documents.Templates',
|
|
26
|
+
Create: 'VaultExtract.Documents.Templates.Create',
|
|
27
|
+
Update: 'VaultExtract.Documents.Templates.Update',
|
|
28
|
+
Delete: 'VaultExtract.Documents.Templates.Delete',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
Cabinets: {
|
|
32
|
+
Default: 'VaultExtract.Cabinets',
|
|
33
|
+
Create: 'VaultExtract.Cabinets.Create',
|
|
34
|
+
Update: 'VaultExtract.Cabinets.Update',
|
|
35
|
+
Delete: 'VaultExtract.Cabinets.Delete',
|
|
36
|
+
},
|
|
37
|
+
// Document-type schema management (#217) — admin-level, independent of document CRUD.
|
|
38
|
+
DocumentTypes: {
|
|
39
|
+
Default: 'VaultExtract.DocumentTypes',
|
|
40
|
+
Create: 'VaultExtract.DocumentTypes.Create',
|
|
41
|
+
Update: 'VaultExtract.DocumentTypes.Update',
|
|
42
|
+
Delete: 'VaultExtract.DocumentTypes.Delete',
|
|
43
|
+
},
|
|
44
|
+
// Field-definition schema management (#217) — admin-level, independent of document CRUD.
|
|
45
|
+
FieldDefinitions: {
|
|
46
|
+
Default: 'VaultExtract.FieldDefinitions',
|
|
47
|
+
Create: 'VaultExtract.FieldDefinitions.Create',
|
|
48
|
+
Update: 'VaultExtract.FieldDefinitions.Update',
|
|
49
|
+
Delete: 'VaultExtract.FieldDefinitions.Delete',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Hand-written, proxy-external upload wrapper.
|
|
55
|
+
*
|
|
56
|
+
* Lives OUTSIDE `proxy/` so it survives `nx g @abp/ng.schematics:proxy-add` regeneration
|
|
57
|
+
* (the generator overwrites everything under proxy/ — see proxy/README.md).
|
|
58
|
+
*
|
|
59
|
+
* Why not the generated `DocumentService.upload`? The schematic emits
|
|
60
|
+
* `body: input.file` typed as `IRemoteStreamContent` (a metadata-only shape:
|
|
61
|
+
* fileName/contentType/contentLength — no actual bytes) plus `cabinetId` as a query
|
|
62
|
+
* param. That does not match the backend's multipart contract (form fields `File` +
|
|
63
|
+
* `CabinetId`). File upload is the one endpoint the schematic can't express faithfully,
|
|
64
|
+
* so we keep the known-good FormData call here.
|
|
65
|
+
*/
|
|
66
|
+
class DocumentUploadService {
|
|
67
|
+
constructor() {
|
|
68
|
+
this.rest = inject(RestService);
|
|
69
|
+
this.apiName = 'Default';
|
|
70
|
+
this.upload = (file, cabinetId) => {
|
|
71
|
+
const formData = new FormData();
|
|
72
|
+
formData.append('File', file, file.name);
|
|
73
|
+
if (cabinetId) {
|
|
74
|
+
formData.append('CabinetId', cabinetId);
|
|
75
|
+
}
|
|
76
|
+
return this.rest.request({ method: 'POST', url: '/api/vault-extract/documents/upload', body: formData }, { apiName: this.apiName });
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentUploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
80
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentUploadService, providedIn: 'root' }); }
|
|
81
|
+
}
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentUploadService, decorators: [{
|
|
83
|
+
type: Injectable,
|
|
84
|
+
args: [{ providedIn: 'root' }]
|
|
85
|
+
}] });
|
|
86
|
+
|
|
87
|
+
class DocumentService {
|
|
88
|
+
constructor() {
|
|
89
|
+
this.restService = inject(RestService);
|
|
90
|
+
this.apiName = 'Default';
|
|
91
|
+
this.allowDuplicate = (id, config) => this.restService.request({
|
|
92
|
+
method: 'POST',
|
|
93
|
+
url: `/api/vault-extract/documents/${id}/review/allow-duplicate`,
|
|
94
|
+
}, { apiName: this.apiName, ...config });
|
|
95
|
+
this.confirmClassification = (id, input, config) => this.restService.request({
|
|
96
|
+
method: 'POST',
|
|
97
|
+
url: `/api/vault-extract/documents/${id}/confirm-classification`,
|
|
98
|
+
body: input,
|
|
99
|
+
}, { apiName: this.apiName, ...config });
|
|
100
|
+
this.delete = (id, config) => this.restService.request({
|
|
101
|
+
method: 'DELETE',
|
|
102
|
+
url: `/api/vault-extract/documents/${id}`,
|
|
103
|
+
}, { apiName: this.apiName, ...config });
|
|
104
|
+
this.get = (id, config) => this.restService.request({
|
|
105
|
+
method: 'GET',
|
|
106
|
+
url: `/api/vault-extract/documents/${id}`,
|
|
107
|
+
}, { apiName: this.apiName, ...config });
|
|
108
|
+
this.getBlob = (id, config) => this.restService.request({
|
|
109
|
+
method: 'GET',
|
|
110
|
+
responseType: 'blob',
|
|
111
|
+
url: `/api/vault-extract/documents/${id}/blob`,
|
|
112
|
+
}, { apiName: this.apiName, ...config });
|
|
113
|
+
this.getList = (input, config) => this.restService.request({
|
|
114
|
+
method: 'GET',
|
|
115
|
+
url: '/api/vault-extract/documents',
|
|
116
|
+
params: { lifecycleStatus: input.lifecycleStatus, documentTypeCode: input.documentTypeCode, reviewDisposition: input.reviewDisposition, hasReviewReasons: input.hasReviewReasons, isDeleted: input.isDeleted, cabinetId: input.cabinetId, originDocumentId: input.originDocumentId, fieldFilters: input.fieldFilters, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
|
|
117
|
+
}, { apiName: this.apiName, ...config });
|
|
118
|
+
this.permanentDelete = (id, config) => this.restService.request({
|
|
119
|
+
method: 'DELETE',
|
|
120
|
+
url: `/api/vault-extract/documents/${id}/permanent`,
|
|
121
|
+
}, { apiName: this.apiName, ...config });
|
|
122
|
+
this.reclassify = (id, input, config) => this.restService.request({
|
|
123
|
+
method: 'POST',
|
|
124
|
+
url: `/api/vault-extract/documents/${id}/reclassify`,
|
|
125
|
+
body: input,
|
|
126
|
+
}, { apiName: this.apiName, ...config });
|
|
127
|
+
this.reextractFields = (id, config) => this.restService.request({
|
|
128
|
+
method: 'POST',
|
|
129
|
+
url: `/api/vault-extract/documents/${id}/reextract-fields`,
|
|
130
|
+
}, { apiName: this.apiName, ...config });
|
|
131
|
+
this.rejectReview = (id, input, config) => this.restService.request({
|
|
132
|
+
method: 'POST',
|
|
133
|
+
url: `/api/vault-extract/documents/${id}/review/reject`,
|
|
134
|
+
body: input,
|
|
135
|
+
}, { apiName: this.apiName, ...config });
|
|
136
|
+
this.rerecognize = (id, config) => this.restService.request({
|
|
137
|
+
method: 'POST',
|
|
138
|
+
url: `/api/vault-extract/documents/${id}/rerecognize`,
|
|
139
|
+
}, { apiName: this.apiName, ...config });
|
|
140
|
+
this.restore = (id, config) => this.restService.request({
|
|
141
|
+
method: 'POST',
|
|
142
|
+
url: `/api/vault-extract/documents/${id}/restore`,
|
|
143
|
+
}, { apiName: this.apiName, ...config });
|
|
144
|
+
this.retryPipeline = (id, input, config) => this.restService.request({
|
|
145
|
+
method: 'POST',
|
|
146
|
+
url: `/api/vault-extract/documents/${id}/retry-pipeline`,
|
|
147
|
+
body: input,
|
|
148
|
+
}, { apiName: this.apiName, ...config });
|
|
149
|
+
this.updateCabinet = (id, input, config) => this.restService.request({
|
|
150
|
+
method: 'POST',
|
|
151
|
+
url: `/api/vault-extract/documents/${id}/cabinet`,
|
|
152
|
+
body: input,
|
|
153
|
+
}, { apiName: this.apiName, ...config });
|
|
154
|
+
this.updateExtractedFields = (id, input, config) => this.restService.request({
|
|
155
|
+
method: 'POST',
|
|
156
|
+
url: `/api/vault-extract/documents/${id}/extracted-fields`,
|
|
157
|
+
body: input,
|
|
158
|
+
}, { apiName: this.apiName, ...config });
|
|
159
|
+
this.upload = (input, config) => this.restService.request({
|
|
160
|
+
method: 'POST',
|
|
161
|
+
url: '/api/vault-extract/documents/upload',
|
|
162
|
+
params: { cabinetId: input.cabinetId },
|
|
163
|
+
body: input.file,
|
|
164
|
+
}, { apiName: this.apiName, ...config });
|
|
165
|
+
}
|
|
166
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
167
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
|
168
|
+
}
|
|
169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentService, decorators: [{
|
|
170
|
+
type: Injectable,
|
|
171
|
+
args: [{
|
|
172
|
+
providedIn: 'root',
|
|
173
|
+
}]
|
|
174
|
+
}] });
|
|
175
|
+
|
|
176
|
+
class DocumentStatisticsService {
|
|
177
|
+
constructor() {
|
|
178
|
+
this.restService = inject(RestService);
|
|
179
|
+
this.apiName = 'Default';
|
|
180
|
+
this.get = (config) => this.restService.request({
|
|
181
|
+
method: 'GET',
|
|
182
|
+
url: '/api/vault-extract/document-statistics',
|
|
183
|
+
}, { apiName: this.apiName, ...config });
|
|
184
|
+
}
|
|
185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentStatisticsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
186
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentStatisticsService, providedIn: 'root' }); }
|
|
187
|
+
}
|
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentStatisticsService, decorators: [{
|
|
189
|
+
type: Injectable,
|
|
190
|
+
args: [{
|
|
191
|
+
providedIn: 'root',
|
|
192
|
+
}]
|
|
193
|
+
}] });
|
|
194
|
+
|
|
195
|
+
class CabinetService {
|
|
196
|
+
constructor() {
|
|
197
|
+
this.restService = inject(RestService);
|
|
198
|
+
this.apiName = 'Default';
|
|
199
|
+
this.create = (input, config) => this.restService.request({
|
|
200
|
+
method: 'POST',
|
|
201
|
+
url: '/api/vault-extract/cabinets',
|
|
202
|
+
body: input,
|
|
203
|
+
}, { apiName: this.apiName, ...config });
|
|
204
|
+
this.delete = (id, config) => this.restService.request({
|
|
205
|
+
method: 'DELETE',
|
|
206
|
+
url: `/api/vault-extract/cabinets/${id}`,
|
|
207
|
+
}, { apiName: this.apiName, ...config });
|
|
208
|
+
this.getList = (config) => this.restService.request({
|
|
209
|
+
method: 'GET',
|
|
210
|
+
url: '/api/vault-extract/cabinets',
|
|
211
|
+
}, { apiName: this.apiName, ...config });
|
|
212
|
+
this.update = (id, input, config) => this.restService.request({
|
|
213
|
+
method: 'PUT',
|
|
214
|
+
url: `/api/vault-extract/cabinets/${id}`,
|
|
215
|
+
body: input,
|
|
216
|
+
}, { apiName: this.apiName, ...config });
|
|
217
|
+
}
|
|
218
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: CabinetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
219
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: CabinetService, providedIn: 'root' }); }
|
|
220
|
+
}
|
|
221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: CabinetService, decorators: [{
|
|
222
|
+
type: Injectable,
|
|
223
|
+
args: [{
|
|
224
|
+
providedIn: 'root',
|
|
225
|
+
}]
|
|
226
|
+
}] });
|
|
227
|
+
|
|
228
|
+
class DocumentTypeService {
|
|
229
|
+
constructor() {
|
|
230
|
+
this.restService = inject(RestService);
|
|
231
|
+
this.apiName = 'Default';
|
|
232
|
+
this.create = (input, config) => this.restService.request({
|
|
233
|
+
method: 'POST',
|
|
234
|
+
url: '/api/vault-extract/document-types',
|
|
235
|
+
body: input,
|
|
236
|
+
}, { apiName: this.apiName, ...config });
|
|
237
|
+
this.delete = (id, config) => this.restService.request({
|
|
238
|
+
method: 'DELETE',
|
|
239
|
+
url: `/api/vault-extract/document-types/${id}`,
|
|
240
|
+
}, { apiName: this.apiName, ...config });
|
|
241
|
+
this.getDeleted = (config) => this.restService.request({
|
|
242
|
+
method: 'GET',
|
|
243
|
+
url: '/api/vault-extract/document-types/deleted',
|
|
244
|
+
}, { apiName: this.apiName, ...config });
|
|
245
|
+
this.getVisible = (config) => this.restService.request({
|
|
246
|
+
method: 'GET',
|
|
247
|
+
url: '/api/vault-extract/document-types',
|
|
248
|
+
}, { apiName: this.apiName, ...config });
|
|
249
|
+
this.restore = (id, config) => this.restService.request({
|
|
250
|
+
method: 'POST',
|
|
251
|
+
url: `/api/vault-extract/document-types/${id}/restore`,
|
|
252
|
+
}, { apiName: this.apiName, ...config });
|
|
253
|
+
this.update = (id, input, config) => this.restService.request({
|
|
254
|
+
method: 'PUT',
|
|
255
|
+
url: `/api/vault-extract/document-types/${id}`,
|
|
256
|
+
body: input,
|
|
257
|
+
}, { apiName: this.apiName, ...config });
|
|
258
|
+
}
|
|
259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentTypeService, providedIn: 'root' }); }
|
|
261
|
+
}
|
|
262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentTypeService, decorators: [{
|
|
263
|
+
type: Injectable,
|
|
264
|
+
args: [{
|
|
265
|
+
providedIn: 'root',
|
|
266
|
+
}]
|
|
267
|
+
}] });
|
|
268
|
+
|
|
269
|
+
class ExportTemplateService {
|
|
270
|
+
constructor() {
|
|
271
|
+
this.restService = inject(RestService);
|
|
272
|
+
this.apiName = 'Default';
|
|
273
|
+
this.create = (input, config) => this.restService.request({
|
|
274
|
+
method: 'POST',
|
|
275
|
+
url: '/api/vault-extract/export-templates',
|
|
276
|
+
body: input,
|
|
277
|
+
}, { apiName: this.apiName, ...config });
|
|
278
|
+
this.delete = (id, config) => this.restService.request({
|
|
279
|
+
method: 'DELETE',
|
|
280
|
+
url: `/api/vault-extract/export-templates/${id}`,
|
|
281
|
+
}, { apiName: this.apiName, ...config });
|
|
282
|
+
this.export = (input, config) => this.restService.request({
|
|
283
|
+
method: 'POST',
|
|
284
|
+
responseType: 'blob',
|
|
285
|
+
url: '/api/vault-extract/export-templates/export',
|
|
286
|
+
body: input,
|
|
287
|
+
}, { apiName: this.apiName, ...config });
|
|
288
|
+
this.get = (id, config) => this.restService.request({
|
|
289
|
+
method: 'GET',
|
|
290
|
+
url: `/api/vault-extract/export-templates/${id}`,
|
|
291
|
+
}, { apiName: this.apiName, ...config });
|
|
292
|
+
this.getList = (config) => this.restService.request({
|
|
293
|
+
method: 'GET',
|
|
294
|
+
url: '/api/vault-extract/export-templates',
|
|
295
|
+
}, { apiName: this.apiName, ...config });
|
|
296
|
+
this.update = (id, input, config) => this.restService.request({
|
|
297
|
+
method: 'PUT',
|
|
298
|
+
url: `/api/vault-extract/export-templates/${id}`,
|
|
299
|
+
body: input,
|
|
300
|
+
}, { apiName: this.apiName, ...config });
|
|
301
|
+
}
|
|
302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: ExportTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
303
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: ExportTemplateService, providedIn: 'root' }); }
|
|
304
|
+
}
|
|
305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: ExportTemplateService, decorators: [{
|
|
306
|
+
type: Injectable,
|
|
307
|
+
args: [{
|
|
308
|
+
providedIn: 'root',
|
|
309
|
+
}]
|
|
310
|
+
}] });
|
|
311
|
+
|
|
312
|
+
class FieldDefinitionService {
|
|
313
|
+
constructor() {
|
|
314
|
+
this.restService = inject(RestService);
|
|
315
|
+
this.apiName = 'Default';
|
|
316
|
+
this.create = (input, config) => this.restService.request({
|
|
317
|
+
method: 'POST',
|
|
318
|
+
url: '/api/vault-extract/field-definitions',
|
|
319
|
+
body: input,
|
|
320
|
+
}, { apiName: this.apiName, ...config });
|
|
321
|
+
this.delete = (id, config) => this.restService.request({
|
|
322
|
+
method: 'DELETE',
|
|
323
|
+
url: `/api/vault-extract/field-definitions/${id}`,
|
|
324
|
+
}, { apiName: this.apiName, ...config });
|
|
325
|
+
this.getList = (input, config) => this.restService.request({
|
|
326
|
+
method: 'GET',
|
|
327
|
+
url: '/api/vault-extract/field-definitions',
|
|
328
|
+
params: { documentTypeId: input.documentTypeId, onlyDeleted: input.onlyDeleted },
|
|
329
|
+
}, { apiName: this.apiName, ...config });
|
|
330
|
+
this.restore = (id, config) => this.restService.request({
|
|
331
|
+
method: 'POST',
|
|
332
|
+
url: `/api/vault-extract/field-definitions/${id}/restore`,
|
|
333
|
+
}, { apiName: this.apiName, ...config });
|
|
334
|
+
this.update = (id, input, config) => this.restService.request({
|
|
335
|
+
method: 'PUT',
|
|
336
|
+
url: `/api/vault-extract/field-definitions/${id}`,
|
|
337
|
+
body: input,
|
|
338
|
+
}, { apiName: this.apiName, ...config });
|
|
339
|
+
}
|
|
340
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDefinitionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
341
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDefinitionService, providedIn: 'root' }); }
|
|
342
|
+
}
|
|
343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDefinitionService, decorators: [{
|
|
344
|
+
type: Injectable,
|
|
345
|
+
args: [{
|
|
346
|
+
providedIn: 'root',
|
|
347
|
+
}]
|
|
348
|
+
}] });
|
|
349
|
+
|
|
350
|
+
class FieldDraftSuggestionService {
|
|
351
|
+
constructor() {
|
|
352
|
+
this.restService = inject(RestService);
|
|
353
|
+
this.apiName = 'Default';
|
|
354
|
+
this.draft = (input, cancellationToken, config) => this.restService.request({
|
|
355
|
+
method: 'POST',
|
|
356
|
+
url: '/api/vault-extract/field-draft-suggestion/draft',
|
|
357
|
+
body: input,
|
|
358
|
+
}, { apiName: this.apiName, ...config });
|
|
359
|
+
}
|
|
360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDraftSuggestionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
361
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDraftSuggestionService, providedIn: 'root' }); }
|
|
362
|
+
}
|
|
363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: FieldDraftSuggestionService, decorators: [{
|
|
364
|
+
type: Injectable,
|
|
365
|
+
args: [{
|
|
366
|
+
providedIn: 'root',
|
|
367
|
+
}]
|
|
368
|
+
}] });
|
|
369
|
+
|
|
370
|
+
class DocumentPipelineRunService {
|
|
371
|
+
constructor() {
|
|
372
|
+
this.restService = inject(RestService);
|
|
373
|
+
this.apiName = 'Default';
|
|
374
|
+
this.getList = (documentId, config) => this.restService.request({
|
|
375
|
+
method: 'GET',
|
|
376
|
+
url: '/api/vault-extract/document-pipeline-runs',
|
|
377
|
+
params: { documentId },
|
|
378
|
+
}, { apiName: this.apiName, ...config });
|
|
379
|
+
}
|
|
380
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentPipelineRunService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
381
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentPipelineRunService, providedIn: 'root' }); }
|
|
382
|
+
}
|
|
383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentPipelineRunService, decorators: [{
|
|
384
|
+
type: Injectable,
|
|
385
|
+
args: [{
|
|
386
|
+
providedIn: 'root',
|
|
387
|
+
}]
|
|
388
|
+
}] });
|
|
389
|
+
|
|
390
|
+
class DocumentReprocessingService {
|
|
391
|
+
constructor() {
|
|
392
|
+
this.restService = inject(RestService);
|
|
393
|
+
this.apiName = 'Default';
|
|
394
|
+
this.previewFieldExtraction = (documentTypeId, config) => this.restService.request({
|
|
395
|
+
method: 'GET',
|
|
396
|
+
url: '/api/vault-extract/document-reprocessing/field-extraction/preview',
|
|
397
|
+
params: { documentTypeId },
|
|
398
|
+
}, { apiName: this.apiName, ...config });
|
|
399
|
+
this.previewReclassification = (input, config) => this.restService.request({
|
|
400
|
+
method: 'POST',
|
|
401
|
+
url: '/api/vault-extract/document-reprocessing/reclassification/preview',
|
|
402
|
+
body: input,
|
|
403
|
+
}, { apiName: this.apiName, ...config });
|
|
404
|
+
this.startFieldExtraction = (input, config) => this.restService.request({
|
|
405
|
+
method: 'POST',
|
|
406
|
+
url: '/api/vault-extract/document-reprocessing/field-extraction',
|
|
407
|
+
body: input,
|
|
408
|
+
}, { apiName: this.apiName, ...config });
|
|
409
|
+
this.startReclassification = (input, config) => this.restService.request({
|
|
410
|
+
method: 'POST',
|
|
411
|
+
url: '/api/vault-extract/document-reprocessing/reclassification',
|
|
412
|
+
body: input,
|
|
413
|
+
}, { apiName: this.apiName, ...config });
|
|
414
|
+
}
|
|
415
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentReprocessingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
416
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentReprocessingService, providedIn: 'root' }); }
|
|
417
|
+
}
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DocumentReprocessingService, decorators: [{
|
|
419
|
+
type: Injectable,
|
|
420
|
+
args: [{
|
|
421
|
+
providedIn: 'root',
|
|
422
|
+
}]
|
|
423
|
+
}] });
|
|
424
|
+
|
|
425
|
+
class SlugSuggestionService {
|
|
426
|
+
constructor() {
|
|
427
|
+
this.restService = inject(RestService);
|
|
428
|
+
this.apiName = 'Default';
|
|
429
|
+
this.suggest = (input, cancellationToken, config) => this.restService.request({
|
|
430
|
+
method: 'POST',
|
|
431
|
+
url: '/api/vault-extract/slug-suggestion/suggest',
|
|
432
|
+
body: input,
|
|
433
|
+
}, { apiName: this.apiName, ...config });
|
|
434
|
+
}
|
|
435
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: SlugSuggestionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
436
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: SlugSuggestionService, providedIn: 'root' }); }
|
|
437
|
+
}
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: SlugSuggestionService, decorators: [{
|
|
439
|
+
type: Injectable,
|
|
440
|
+
args: [{
|
|
441
|
+
providedIn: 'root',
|
|
442
|
+
}]
|
|
443
|
+
}] });
|
|
444
|
+
|
|
445
|
+
var DocumentLifecycleStatus;
|
|
446
|
+
(function (DocumentLifecycleStatus) {
|
|
447
|
+
DocumentLifecycleStatus[DocumentLifecycleStatus["Uploaded"] = 10] = "Uploaded";
|
|
448
|
+
DocumentLifecycleStatus[DocumentLifecycleStatus["Processing"] = 20] = "Processing";
|
|
449
|
+
DocumentLifecycleStatus[DocumentLifecycleStatus["Ready"] = 30] = "Ready";
|
|
450
|
+
DocumentLifecycleStatus[DocumentLifecycleStatus["Failed"] = 99] = "Failed";
|
|
451
|
+
})(DocumentLifecycleStatus || (DocumentLifecycleStatus = {}));
|
|
452
|
+
const documentLifecycleStatusOptions = mapEnumToOptions(DocumentLifecycleStatus);
|
|
453
|
+
|
|
454
|
+
var DocumentReviewDisposition;
|
|
455
|
+
(function (DocumentReviewDisposition) {
|
|
456
|
+
DocumentReviewDisposition[DocumentReviewDisposition["NotReviewed"] = 0] = "NotReviewed";
|
|
457
|
+
DocumentReviewDisposition[DocumentReviewDisposition["Confirmed"] = 20] = "Confirmed";
|
|
458
|
+
DocumentReviewDisposition[DocumentReviewDisposition["Rejected"] = 30] = "Rejected";
|
|
459
|
+
})(DocumentReviewDisposition || (DocumentReviewDisposition = {}));
|
|
460
|
+
const documentReviewDispositionOptions = mapEnumToOptions(DocumentReviewDisposition);
|
|
461
|
+
|
|
462
|
+
var DocumentReviewReasons;
|
|
463
|
+
(function (DocumentReviewReasons) {
|
|
464
|
+
DocumentReviewReasons[DocumentReviewReasons["None"] = 0] = "None";
|
|
465
|
+
DocumentReviewReasons[DocumentReviewReasons["UnresolvedClassification"] = 1] = "UnresolvedClassification";
|
|
466
|
+
DocumentReviewReasons[DocumentReviewReasons["MissingRequiredFields"] = 2] = "MissingRequiredFields";
|
|
467
|
+
DocumentReviewReasons[DocumentReviewReasons["SegmentationIncomplete"] = 4] = "SegmentationIncomplete";
|
|
468
|
+
DocumentReviewReasons[DocumentReviewReasons["DuplicateSuspected"] = 8] = "DuplicateSuspected";
|
|
469
|
+
})(DocumentReviewReasons || (DocumentReviewReasons = {}));
|
|
470
|
+
const documentReviewReasonsOptions = mapEnumToOptions(DocumentReviewReasons);
|
|
471
|
+
|
|
472
|
+
var ExportFormat;
|
|
473
|
+
(function (ExportFormat) {
|
|
474
|
+
ExportFormat[ExportFormat["Csv"] = 0] = "Csv";
|
|
475
|
+
ExportFormat[ExportFormat["Xlsx"] = 1] = "Xlsx";
|
|
476
|
+
})(ExportFormat || (ExportFormat = {}));
|
|
477
|
+
const exportFormatOptions = mapEnumToOptions(ExportFormat);
|
|
478
|
+
|
|
479
|
+
var FieldDataType;
|
|
480
|
+
(function (FieldDataType) {
|
|
481
|
+
FieldDataType[FieldDataType["Text"] = 0] = "Text";
|
|
482
|
+
FieldDataType[FieldDataType["Number"] = 1] = "Number";
|
|
483
|
+
FieldDataType[FieldDataType["Boolean"] = 2] = "Boolean";
|
|
484
|
+
FieldDataType[FieldDataType["Date"] = 3] = "Date";
|
|
485
|
+
FieldDataType[FieldDataType["DateTime"] = 4] = "DateTime";
|
|
486
|
+
FieldDataType[FieldDataType["LongText"] = 5] = "LongText";
|
|
487
|
+
})(FieldDataType || (FieldDataType = {}));
|
|
488
|
+
const fieldDataTypeOptions = mapEnumToOptions(FieldDataType);
|
|
489
|
+
|
|
490
|
+
var PipelineRunStatus;
|
|
491
|
+
(function (PipelineRunStatus) {
|
|
492
|
+
PipelineRunStatus[PipelineRunStatus["Pending"] = 10] = "Pending";
|
|
493
|
+
PipelineRunStatus[PipelineRunStatus["Running"] = 20] = "Running";
|
|
494
|
+
PipelineRunStatus[PipelineRunStatus["Succeeded"] = 30] = "Succeeded";
|
|
495
|
+
PipelineRunStatus[PipelineRunStatus["Failed"] = 90] = "Failed";
|
|
496
|
+
PipelineRunStatus[PipelineRunStatus["Skipped"] = 95] = "Skipped";
|
|
497
|
+
})(PipelineRunStatus || (PipelineRunStatus = {}));
|
|
498
|
+
const pipelineRunStatusOptions = mapEnumToOptions(PipelineRunStatus);
|
|
499
|
+
|
|
500
|
+
var ReclassificationScope;
|
|
501
|
+
(function (ReclassificationScope) {
|
|
502
|
+
ReclassificationScope[ReclassificationScope["OnlyCurrentType"] = 0] = "OnlyCurrentType";
|
|
503
|
+
ReclassificationScope[ReclassificationScope["AllDocuments"] = 10] = "AllDocuments";
|
|
504
|
+
ReclassificationScope[ReclassificationScope["PendingReviewQueue"] = 20] = "PendingReviewQueue";
|
|
505
|
+
})(ReclassificationScope || (ReclassificationScope = {}));
|
|
506
|
+
const reclassificationScopeOptions = mapEnumToOptions(ReclassificationScope);
|
|
507
|
+
|
|
508
|
+
// Public API surface of @dignite/vault-extract.
|
|
509
|
+
//
|
|
510
|
+
// The proxy/ folder is fully owned by `nx g @abp/ng.schematics:proxy-add`
|
|
511
|
+
// (see proxy/README.md) and is overwritten on every regeneration — never edit it by hand.
|
|
512
|
+
// Per the generator's README we re-export proxy files DIRECTLY here (not via their
|
|
513
|
+
// index.ts barrels) so this published surface stays flat and ng-packagr-safe.
|
|
514
|
+
//
|
|
515
|
+
// Hand-written, regeneration-safe additions live under ./lib/services (outside proxy/).
|
|
516
|
+
|
|
517
|
+
/**
|
|
518
|
+
* Generated bundle index. Do not edit.
|
|
519
|
+
*/
|
|
520
|
+
|
|
521
|
+
export { CabinetService, DocumentLifecycleStatus, DocumentPipelineRunService, DocumentReprocessingService, DocumentReviewDisposition, DocumentReviewReasons, DocumentService, DocumentStatisticsService, DocumentTypeService, DocumentUploadService, EXTRACT_PERMISSIONS, ExportFormat, ExportTemplateService, FieldDataType, FieldDefinitionService, FieldDraftSuggestionService, PipelineRunStatus, ReclassificationScope, SlugSuggestionService, documentLifecycleStatusOptions, documentReviewDispositionOptions, documentReviewReasonsOptions, exportFormatOptions, fieldDataTypeOptions, pipelineRunStatusOptions, reclassificationScopeOptions };
|
|
522
|
+
//# sourceMappingURL=dignite-vault-extract.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dignite-vault-extract.mjs","sources":["../../../packages/vault-extract/src/lib/shared/tokens/extract-permissions.ts","../../../packages/vault-extract/src/lib/services/document-upload.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/document.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/document-statistics.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/cabinets/cabinet.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/document-types/document-type.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/exports/export-template.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/fields/field-definition.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/fields/field-draft-suggestion.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/pipelines/document-pipeline-run.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/documents/reprocessing/document-reprocessing.service.ts","../../../packages/vault-extract/src/lib/proxy/http-api/slugging/slug-suggestion.service.ts","../../../packages/vault-extract/src/lib/proxy/documents/document-lifecycle-status.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/document-review-disposition.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/document-review-reasons.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/exports/export-format.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/fields/field-data-type.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/pipelines/pipeline-run-status.enum.ts","../../../packages/vault-extract/src/lib/proxy/documents/reprocessing/reclassification-scope.enum.ts","../../../packages/vault-extract/src/public-api.ts","../../../packages/vault-extract/src/dignite-vault-extract.ts"],"sourcesContent":["export const EXTRACT_PERMISSIONS = {\n Documents: {\n Default: 'VaultExtract.Documents',\n Upload: 'VaultExtract.Documents.Upload',\n Delete: 'VaultExtract.Documents.Delete',\n PermanentDelete: 'VaultExtract.Documents.PermanentDelete',\n Restore: 'VaultExtract.Documents.Restore',\n Export: 'VaultExtract.Documents.Export',\n ConfirmClassification: 'VaultExtract.Documents.ConfirmClassification',\n Pipelines: {\n Default: 'VaultExtract.Documents.Pipelines',\n Retry: 'VaultExtract.Documents.Pipelines.Retry',\n },\n // Batch reprocessing of existing documents (#289) — admin-level.\n Reprocessing: {\n Default: 'VaultExtract.Documents.Reprocessing',\n FieldExtraction: 'VaultExtract.Documents.Reprocessing.FieldExtraction',\n Reclassification: 'VaultExtract.Documents.Reprocessing.Reclassification',\n },\n Templates: {\n Default: 'VaultExtract.Documents.Templates',\n Create: 'VaultExtract.Documents.Templates.Create',\n Update: 'VaultExtract.Documents.Templates.Update',\n Delete: 'VaultExtract.Documents.Templates.Delete',\n },\n },\n Cabinets: {\n Default: 'VaultExtract.Cabinets',\n Create: 'VaultExtract.Cabinets.Create',\n Update: 'VaultExtract.Cabinets.Update',\n Delete: 'VaultExtract.Cabinets.Delete',\n },\n // Document-type schema management (#217) — admin-level, independent of document CRUD.\n DocumentTypes: {\n Default: 'VaultExtract.DocumentTypes',\n Create: 'VaultExtract.DocumentTypes.Create',\n Update: 'VaultExtract.DocumentTypes.Update',\n Delete: 'VaultExtract.DocumentTypes.Delete',\n },\n // Field-definition schema management (#217) — admin-level, independent of document CRUD.\n FieldDefinitions: {\n Default: 'VaultExtract.FieldDefinitions',\n Create: 'VaultExtract.FieldDefinitions.Create',\n Update: 'VaultExtract.FieldDefinitions.Update',\n Delete: 'VaultExtract.FieldDefinitions.Delete',\n },\n} as const;\n","import { Injectable, inject } from '@angular/core';\nimport { RestService } from '@abp/ng.core';\nimport { Observable } from 'rxjs';\nimport type { DocumentDto } from '../proxy/documents/models';\n\n/**\n * Hand-written, proxy-external upload wrapper.\n *\n * Lives OUTSIDE `proxy/` so it survives `nx g @abp/ng.schematics:proxy-add` regeneration\n * (the generator overwrites everything under proxy/ — see proxy/README.md).\n *\n * Why not the generated `DocumentService.upload`? The schematic emits\n * `body: input.file` typed as `IRemoteStreamContent` (a metadata-only shape:\n * fileName/contentType/contentLength — no actual bytes) plus `cabinetId` as a query\n * param. That does not match the backend's multipart contract (form fields `File` +\n * `CabinetId`). File upload is the one endpoint the schematic can't express faithfully,\n * so we keep the known-good FormData call here.\n */\n@Injectable({ providedIn: 'root' })\nexport class DocumentUploadService {\n private readonly rest = inject(RestService);\n private readonly apiName = 'Default';\n\n upload = (file: File, cabinetId?: string): Observable<DocumentDto> => {\n const formData = new FormData();\n formData.append('File', file, file.name);\n if (cabinetId) {\n formData.append('CabinetId', cabinetId);\n }\n return this.rest.request<FormData, DocumentDto>(\n { method: 'POST', url: '/api/vault-extract/documents/upload', body: formData },\n { apiName: this.apiName },\n );\n };\n}\n","import { RestService, Rest } from '@abp/ng.core';\nimport type { PagedResultDto } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { ConfirmClassificationInput, DocumentDto, DocumentListItemDto, GetDocumentListInput, ReclassifyDocumentInput, RejectReviewInput, RetryPipelineInput, UpdateDocumentCabinetInput, UpdateExtractedFieldsInput, UploadDocumentInput } from '../../documents/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DocumentService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n allowDuplicate = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/review/allow-duplicate`,\n },\n { apiName: this.apiName,...config });\n \n\n confirmClassification = (id: string, input: ConfirmClassificationInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/confirm-classification`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n delete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/documents/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n get = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'GET',\n url: `/api/vault-extract/documents/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n getBlob = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, Blob>({\n method: 'GET',\n responseType: 'blob',\n url: `/api/vault-extract/documents/${id}/blob`,\n },\n { apiName: this.apiName,...config });\n \n\n getList = (input: GetDocumentListInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, PagedResultDto<DocumentListItemDto>>({\n method: 'GET',\n url: '/api/vault-extract/documents',\n params: { lifecycleStatus: input.lifecycleStatus, documentTypeCode: input.documentTypeCode, reviewDisposition: input.reviewDisposition, hasReviewReasons: input.hasReviewReasons, isDeleted: input.isDeleted, cabinetId: input.cabinetId, originDocumentId: input.originDocumentId, fieldFilters: input.fieldFilters, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },\n },\n { apiName: this.apiName,...config });\n \n\n permanentDelete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/documents/${id}/permanent`,\n },\n { apiName: this.apiName,...config });\n \n\n reclassify = (id: string, input: ReclassifyDocumentInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/reclassify`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n reextractFields = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/reextract-fields`,\n },\n { apiName: this.apiName,...config });\n \n\n rejectReview = (id: string, input: RejectReviewInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/review/reject`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n rerecognize = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/rerecognize`,\n },\n { apiName: this.apiName,...config });\n \n\n restore = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/restore`,\n },\n { apiName: this.apiName,...config });\n \n\n retryPipeline = (id: string, input: RetryPipelineInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/retry-pipeline`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n updateCabinet = (id: string, input: UpdateDocumentCabinetInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/cabinet`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n updateExtractedFields = (id: string, input: UpdateExtractedFieldsInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: `/api/vault-extract/documents/${id}/extracted-fields`,\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n upload = (input: UploadDocumentInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentDto>({\n method: 'POST',\n url: '/api/vault-extract/documents/upload',\n params: { cabinetId: input.cabinetId },\n body: input.file,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { DocumentStatisticsDto } from '../../documents/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DocumentStatisticsService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n get = (config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentStatisticsDto>({\n method: 'GET',\n url: '/api/vault-extract/document-statistics',\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { CabinetDto, CreateCabinetDto, UpdateCabinetDto } from '../../../documents/cabinets/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class CabinetService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n create = (input: CreateCabinetDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, CabinetDto>({\n method: 'POST',\n url: '/api/vault-extract/cabinets',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n delete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/cabinets/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n getList = (config?: Partial<Rest.Config>) =>\n this.restService.request<any, CabinetDto[]>({\n method: 'GET',\n url: '/api/vault-extract/cabinets',\n },\n { apiName: this.apiName,...config });\n \n\n update = (id: string, input: UpdateCabinetDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, CabinetDto>({\n method: 'PUT',\n url: `/api/vault-extract/cabinets/${id}`,\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { CreateDocumentTypeDto, DocumentTypeDto, UpdateDocumentTypeDto } from '../../../documents/document-types/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DocumentTypeService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n create = (input: CreateDocumentTypeDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentTypeDto>({\n method: 'POST',\n url: '/api/vault-extract/document-types',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n delete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/document-types/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n getDeleted = (config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentTypeDto[]>({\n method: 'GET',\n url: '/api/vault-extract/document-types/deleted',\n },\n { apiName: this.apiName,...config });\n \n\n getVisible = (config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentTypeDto[]>({\n method: 'GET',\n url: '/api/vault-extract/document-types',\n },\n { apiName: this.apiName,...config });\n \n\n restore = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentTypeDto>({\n method: 'POST',\n url: `/api/vault-extract/document-types/${id}/restore`,\n },\n { apiName: this.apiName,...config });\n \n\n update = (id: string, input: UpdateDocumentTypeDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentTypeDto>({\n method: 'PUT',\n url: `/api/vault-extract/document-types/${id}`,\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { CreateExportTemplateDto, ExportDocumentsInput, ExportTemplateDto, UpdateExportTemplateDto } from '../../../documents/exports/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ExportTemplateService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n create = (input: CreateExportTemplateDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ExportTemplateDto>({\n method: 'POST',\n url: '/api/vault-extract/export-templates',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n delete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/export-templates/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n export = (input: ExportDocumentsInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, Blob>({\n method: 'POST',\n responseType: 'blob',\n url: '/api/vault-extract/export-templates/export',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n get = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ExportTemplateDto>({\n method: 'GET',\n url: `/api/vault-extract/export-templates/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n getList = (config?: Partial<Rest.Config>) =>\n this.restService.request<any, ExportTemplateDto[]>({\n method: 'GET',\n url: '/api/vault-extract/export-templates',\n },\n { apiName: this.apiName,...config });\n \n\n update = (id: string, input: UpdateExportTemplateDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ExportTemplateDto>({\n method: 'PUT',\n url: `/api/vault-extract/export-templates/${id}`,\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { CreateFieldDefinitionDto, FieldDefinitionDto, GetFieldDefinitionListInput, UpdateFieldDefinitionDto } from '../../../documents/fields/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class FieldDefinitionService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n create = (input: CreateFieldDefinitionDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldDefinitionDto>({\n method: 'POST',\n url: '/api/vault-extract/field-definitions',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n delete = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, void>({\n method: 'DELETE',\n url: `/api/vault-extract/field-definitions/${id}`,\n },\n { apiName: this.apiName,...config });\n \n\n getList = (input: GetFieldDefinitionListInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldDefinitionDto[]>({\n method: 'GET',\n url: '/api/vault-extract/field-definitions',\n params: { documentTypeId: input.documentTypeId, onlyDeleted: input.onlyDeleted },\n },\n { apiName: this.apiName,...config });\n \n\n restore = (id: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldDefinitionDto>({\n method: 'POST',\n url: `/api/vault-extract/field-definitions/${id}/restore`,\n },\n { apiName: this.apiName,...config });\n \n\n update = (id: string, input: UpdateFieldDefinitionDto, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldDefinitionDto>({\n method: 'PUT',\n url: `/api/vault-extract/field-definitions/${id}`,\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { DraftFieldDefinitionInput, FieldDefinitionDraftDto } from '../../../documents/fields/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class FieldDraftSuggestionService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n draft = (input: DraftFieldDefinitionInput, cancellationToken: any, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldDefinitionDraftDto>({\n method: 'POST',\n url: '/api/vault-extract/field-draft-suggestion/draft',\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { DocumentPipelineRunDto } from '../../../documents/pipelines/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DocumentPipelineRunService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n getList = (documentId: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, DocumentPipelineRunDto[]>({\n method: 'GET',\n url: '/api/vault-extract/document-pipeline-runs',\n params: { documentId },\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { FieldReextractionPreviewDto, ReclassificationPreviewDto, ReclassificationScopeInput, ReprocessingStartResultDto, StartFieldReextractionInput } from '../../../documents/reprocessing/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DocumentReprocessingService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n previewFieldExtraction = (documentTypeId: string, config?: Partial<Rest.Config>) =>\n this.restService.request<any, FieldReextractionPreviewDto>({\n method: 'GET',\n url: '/api/vault-extract/document-reprocessing/field-extraction/preview',\n params: { documentTypeId },\n },\n { apiName: this.apiName,...config });\n \n\n previewReclassification = (input: ReclassificationScopeInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ReclassificationPreviewDto>({\n method: 'POST',\n url: '/api/vault-extract/document-reprocessing/reclassification/preview',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n startFieldExtraction = (input: StartFieldReextractionInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ReprocessingStartResultDto>({\n method: 'POST',\n url: '/api/vault-extract/document-reprocessing/field-extraction',\n body: input,\n },\n { apiName: this.apiName,...config });\n \n\n startReclassification = (input: ReclassificationScopeInput, config?: Partial<Rest.Config>) =>\n this.restService.request<any, ReprocessingStartResultDto>({\n method: 'POST',\n url: '/api/vault-extract/document-reprocessing/reclassification',\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { RestService, Rest } from '@abp/ng.core';\nimport { Injectable, inject } from '@angular/core';\nimport type { SlugSuggestionDto, SuggestSlugInput } from '../../slugging/models';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class SlugSuggestionService {\n private restService = inject(RestService);\n apiName = 'Default';\n \n\n suggest = (input: SuggestSlugInput, cancellationToken: any, config?: Partial<Rest.Config>) =>\n this.restService.request<any, SlugSuggestionDto>({\n method: 'POST',\n url: '/api/vault-extract/slug-suggestion/suggest',\n body: input,\n },\n { apiName: this.apiName,...config });\n}","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum DocumentLifecycleStatus {\n Uploaded = 10,\n Processing = 20,\n Ready = 30,\n Failed = 99,\n}\n\nexport const documentLifecycleStatusOptions = mapEnumToOptions(DocumentLifecycleStatus);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum DocumentReviewDisposition {\n NotReviewed = 0,\n Confirmed = 20,\n Rejected = 30,\n}\n\nexport const documentReviewDispositionOptions = mapEnumToOptions(DocumentReviewDisposition);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum DocumentReviewReasons {\n None = 0,\n UnresolvedClassification = 1,\n MissingRequiredFields = 2,\n SegmentationIncomplete = 4,\n DuplicateSuspected = 8,\n}\n\nexport const documentReviewReasonsOptions = mapEnumToOptions(DocumentReviewReasons);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum ExportFormat {\n Csv = 0,\n Xlsx = 1,\n}\n\nexport const exportFormatOptions = mapEnumToOptions(ExportFormat);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum FieldDataType {\n Text = 0,\n Number = 1,\n Boolean = 2,\n Date = 3,\n DateTime = 4,\n LongText = 5,\n}\n\nexport const fieldDataTypeOptions = mapEnumToOptions(FieldDataType);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum PipelineRunStatus {\n Pending = 10,\n Running = 20,\n Succeeded = 30,\n Failed = 90,\n Skipped = 95,\n}\n\nexport const pipelineRunStatusOptions = mapEnumToOptions(PipelineRunStatus);\n","import { mapEnumToOptions } from '@abp/ng.core';\n\nexport enum ReclassificationScope {\n OnlyCurrentType = 0,\n AllDocuments = 10,\n PendingReviewQueue = 20,\n}\n\nexport const reclassificationScopeOptions = mapEnumToOptions(ReclassificationScope);\n","// Public API surface of @dignite/vault-extract.\n//\n// The proxy/ folder is fully owned by `nx g @abp/ng.schematics:proxy-add`\n// (see proxy/README.md) and is overwritten on every regeneration — never edit it by hand.\n// Per the generator's README we re-export proxy files DIRECTLY here (not via their\n// index.ts barrels) so this published surface stays flat and ng-packagr-safe.\n//\n// Hand-written, regeneration-safe additions live under ./lib/services (outside proxy/).\nexport * from './lib/shared';\n\n// Hand-written, proxy-external services (survive proxy regeneration).\nexport * from './lib/services/document-upload.service';\n\n// --- generated proxy: services ---\nexport * from './lib/proxy/http-api/documents/document.service';\nexport * from './lib/proxy/http-api/documents/document-statistics.service';\nexport * from './lib/proxy/http-api/documents/cabinets/cabinet.service';\nexport * from './lib/proxy/http-api/documents/document-types/document-type.service';\nexport * from './lib/proxy/http-api/documents/exports/export-template.service';\nexport * from './lib/proxy/http-api/documents/fields/field-definition.service';\nexport * from './lib/proxy/http-api/documents/fields/field-draft-suggestion.service';\nexport * from './lib/proxy/http-api/documents/pipelines/document-pipeline-run.service';\nexport * from './lib/proxy/http-api/documents/reprocessing/document-reprocessing.service';\nexport * from './lib/proxy/http-api/slugging/slug-suggestion.service';\n\n// --- generated proxy: models ---\nexport * from './lib/proxy/documents/models';\nexport * from './lib/proxy/documents/cabinets/models';\nexport * from './lib/proxy/documents/document-types/models';\nexport * from './lib/proxy/documents/exports/models';\nexport * from './lib/proxy/documents/fields/models';\nexport * from './lib/proxy/documents/pipelines/models';\nexport * from './lib/proxy/documents/reprocessing/models';\nexport * from './lib/proxy/slugging/models';\n// NOTE: './lib/proxy/system/text/json/models' is intentionally NOT exported. The generator\n// emits invalid TS there (`interface any extends any {}`) for the backend\n// System.Text.Json.JsonElement type used by ExtractedFields. It is orphaned — no generated\n// service/model imports it (DocumentDto.extractedFields is Record<string, any>) — so leaving it\n// unreferenced keeps it out of the ng-packagr compile graph. Survives regeneration: public-api.ts\n// lives outside proxy/, so this skip is never overwritten.\nexport * from './lib/proxy/volo/abp/content/models';\n\n// --- generated proxy: enums ---\nexport * from './lib/proxy/documents/document-lifecycle-status.enum';\nexport * from './lib/proxy/documents/document-review-disposition.enum';\nexport * from './lib/proxy/documents/document-review-reasons.enum';\nexport * from './lib/proxy/documents/exports/export-format.enum';\nexport * from './lib/proxy/documents/fields/field-data-type.enum';\nexport * from './lib/proxy/documents/pipelines/pipeline-run-status.enum';\nexport * from './lib/proxy/documents/reprocessing/reclassification-scope.enum';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|