@valtimo/dossier-management 11.1.2 → 11.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/esm2022/lib/components/dossier-management-assignee/dossier-management-assignee.component.mjs +5 -5
- package/esm2022/lib/components/dossier-management-connect-modal/dossier-management-connect-modal.component.mjs +56 -27
- package/esm2022/lib/components/dossier-management-detail/dossier-management-detail.component.mjs +13 -74
- package/esm2022/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.mjs +17 -13
- package/esm2022/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.mjs +152 -0
- package/esm2022/lib/components/dossier-management-document-definition/dossier-management-document-definition.mjs +48 -0
- package/esm2022/lib/components/dossier-management-link-process/dossier-management-link-process.component.mjs +3 -3
- package/esm2022/lib/components/dossier-management-list/dossier-management-list.component.mjs +47 -30
- package/esm2022/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.mjs +45 -43
- package/esm2022/lib/components/dossier-management-processes/dossier-management-processes.component.mjs +110 -0
- package/esm2022/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.mjs +67 -58
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-edit-tab-modal/dossier-management-edit-tab-modal.component.mjs +1 -1
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-tabs.component.mjs +14 -27
- package/esm2022/lib/components/dossier-management-upload/dossier-management-upload.component.mjs +167 -111
- package/esm2022/lib/components/dossier-management-upload/dossier-management-upload.constants.mjs +23 -0
- package/esm2022/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.mjs +17 -0
- package/esm2022/lib/dossier-management.module.mjs +48 -9
- package/esm2022/lib/models/tab.enum.mjs +3 -1
- package/esm2022/lib/services/dossier-detail.service.mjs +84 -0
- package/esm2022/lib/services/dossier-export.service.mjs +39 -0
- package/esm2022/lib/services/dossier-import.service.mjs +38 -0
- package/esm2022/lib/services/index.mjs +3 -1
- package/esm2022/lib/services/tab.service.mjs +2 -2
- package/fesm2022/valtimo-dossier-management.mjs +1174 -654
- package/fesm2022/valtimo-dossier-management.mjs.map +1 -1
- package/lib/components/dossier-management-assignee/dossier-management-assignee.component.d.ts +1 -1
- package/lib/components/dossier-management-assignee/dossier-management-assignee.component.d.ts.map +1 -1
- package/lib/components/dossier-management-connect-modal/dossier-management-connect-modal.component.d.ts +13 -10
- package/lib/components/dossier-management-connect-modal/dossier-management-connect-modal.component.d.ts.map +1 -1
- package/lib/components/dossier-management-detail/dossier-management-detail.component.d.ts +7 -22
- package/lib/components/dossier-management-detail/dossier-management-detail.component.d.ts.map +1 -1
- package/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.d.ts +3 -1
- package/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.d.ts.map +1 -1
- package/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.d.ts +40 -0
- package/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.d.ts.map +1 -0
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.d.ts +15 -0
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.d.ts.map +1 -0
- package/lib/components/dossier-management-list/dossier-management-list.component.d.ts +16 -19
- package/lib/components/dossier-management-list/dossier-management-list.component.d.ts.map +1 -1
- package/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.d.ts +14 -11
- package/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.d.ts.map +1 -1
- package/lib/components/dossier-management-processes/dossier-management-processes.component.d.ts +29 -0
- package/lib/components/dossier-management-processes/dossier-management-processes.component.d.ts.map +1 -0
- package/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.d.ts +14 -13
- package/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.d.ts.map +1 -1
- package/lib/components/dossier-management-tabs/dossier-management-tabs.component.d.ts +3 -2
- package/lib/components/dossier-management-tabs/dossier-management-tabs.component.d.ts.map +1 -1
- package/lib/components/dossier-management-upload/dossier-management-upload.component.d.ts +42 -30
- package/lib/components/dossier-management-upload/dossier-management-upload.component.d.ts.map +1 -1
- package/lib/components/dossier-management-upload/dossier-management-upload.constants.d.ts +15 -0
- package/lib/components/dossier-management-upload/dossier-management-upload.constants.d.ts.map +1 -0
- package/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.d.ts +9 -0
- package/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.d.ts.map +1 -0
- package/lib/dossier-management.module.d.ts +13 -9
- package/lib/dossier-management.module.d.ts.map +1 -1
- package/lib/models/tab.enum.d.ts +2 -0
- package/lib/models/tab.enum.d.ts.map +1 -1
- package/lib/services/dossier-detail.service.d.ts +30 -0
- package/lib/services/dossier-detail.service.d.ts.map +1 -0
- package/lib/services/dossier-export.service.d.ts +14 -0
- package/lib/services/dossier-export.service.d.ts.map +1 -0
- package/lib/services/dossier-import.service.d.ts +14 -0
- package/lib/services/dossier-import.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +2 -0
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/tab.service.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare enum UPLOAD_STATUS {
|
|
2
|
+
ACTIVE = "active",
|
|
3
|
+
ERROR = "error",
|
|
4
|
+
FINISHED = "finished"
|
|
5
|
+
}
|
|
6
|
+
declare enum UPLOAD_STEP {
|
|
7
|
+
ACCESS_CONTROL = "accessControl",
|
|
8
|
+
DASHBOARD = "dashboard",
|
|
9
|
+
FILE_SELECT = "fileSelect",
|
|
10
|
+
FILE_UPLOAD = "fileUpload",
|
|
11
|
+
PLUGINS = "plugins"
|
|
12
|
+
}
|
|
13
|
+
declare const STEPS: UPLOAD_STEP[];
|
|
14
|
+
export { STEPS, UPLOAD_STATUS, UPLOAD_STEP };
|
|
15
|
+
//# sourceMappingURL=dossier-management-upload.constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-upload.constants.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/dossier-management-upload.constants.ts"],"names":[],"mappings":"AAAA,aAAK,aAAa;IAChB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,QAAQ,aAAa;CACtB;AAED,aAAK,WAAW;IACd,cAAc,kBAAkB;IAChC,SAAS,cAAc;IACvB,WAAW,eAAe;IAC1B,WAAW,eAAe;IAC1B,OAAO,YAAY;CACpB;AAED,QAAA,MAAM,KAAK,eAMV,CAAC;AAEF,OAAO,EAAC,KAAK,EAAE,aAAa,EAAE,WAAW,EAAC,CAAC"}
|
package/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DossierManagementUploadStepComponent {
|
|
3
|
+
illustration: string;
|
|
4
|
+
message: string;
|
|
5
|
+
title: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementUploadStepComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementUploadStepComponent, "valtimo-dossier-management-upload-step", never, { "illustration": { "alias": "illustration"; "required": false; }; "message": { "alias": "message"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=dossier-management-upload-step.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-upload-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.ts"],"names":[],"mappings":";AAEA,qBAKa,oCAAoC;IACtC,YAAY,EAAG,MAAM,CAAC;IACtB,OAAO,EAAG,MAAM,CAAC;IACjB,KAAK,EAAG,MAAM,CAAC;yCAHb,oCAAoC;2CAApC,oCAAoC;CAIhD"}
|
|
@@ -13,17 +13,21 @@ import * as i11 from "./components/dossier-management-tabs/dossier-management-ta
|
|
|
13
13
|
import * as i12 from "./components/dossier-management-tabs/dossier-management-add-tab-modal/dossier-management-add-tab-modal.component";
|
|
14
14
|
import * as i13 from "./components/dossier-management-tabs/tab-form/tab-form.component";
|
|
15
15
|
import * as i14 from "./components/dossier-management-tabs/dossier-management-edit-tab-modal/dossier-management-edit-tab-modal.component";
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "./dossier-management-
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "@
|
|
21
|
-
import * as i20 from "@valtimo/
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "
|
|
16
|
+
import * as i15 from "./components/dossier-management-detail-container-actions/dossier-management-detail-container-actions";
|
|
17
|
+
import * as i16 from "./components/dossier-management-document-definition/dossier-management-document-definition";
|
|
18
|
+
import * as i17 from "./components/dossier-management-processes/dossier-management-processes.component";
|
|
19
|
+
import * as i18 from "./components/dossier-management-upload/step/dossier-management-upload-step.component";
|
|
20
|
+
import * as i19 from "@angular/common";
|
|
21
|
+
import * as i20 from "@valtimo/components";
|
|
22
|
+
import * as i21 from "./dossier-management-routing.module";
|
|
23
|
+
import * as i22 from "@angular/forms";
|
|
24
|
+
import * as i23 from "@ngx-translate/core";
|
|
25
|
+
import * as i24 from "@valtimo/config";
|
|
26
|
+
import * as i25 from "@ng-bootstrap/ng-bootstrap";
|
|
27
|
+
import * as i26 from "carbon-components-angular";
|
|
24
28
|
export declare class DossierManagementModule {
|
|
25
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierManagementModule, [typeof i1.DossierManagementListComponent, typeof i2.DossierManagementDetailComponent, typeof i3.DossierManagementConnectModalComponent, typeof i4.DossierManagementRemoveModalComponent, typeof i5.DossierManagementUploadComponent, typeof i6.DossierManagementLinkProcessComponent, typeof i7.DossierManagementSearchFieldsComponent, typeof i8.DossierManagementDetailContainerComponent, typeof i9.DossierManagementAssigneeComponent, typeof i10.DossierManagementListColumnsComponent, typeof i11.DossierManagementTabsComponent, typeof i12.DossierManagementAddTabModalComponent, typeof i13.TabFormComponent, typeof i14.DossierManagementEditTabModalComponent], [typeof
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierManagementModule, [typeof i1.DossierManagementListComponent, typeof i2.DossierManagementDetailComponent, typeof i3.DossierManagementConnectModalComponent, typeof i4.DossierManagementRemoveModalComponent, typeof i5.DossierManagementUploadComponent, typeof i6.DossierManagementLinkProcessComponent, typeof i7.DossierManagementSearchFieldsComponent, typeof i8.DossierManagementDetailContainerComponent, typeof i9.DossierManagementAssigneeComponent, typeof i10.DossierManagementListColumnsComponent, typeof i11.DossierManagementTabsComponent, typeof i12.DossierManagementAddTabModalComponent, typeof i13.TabFormComponent, typeof i14.DossierManagementEditTabModalComponent, typeof i15.DossierManagementDetailContainerActionsComponent, typeof i16.DossierManagementDocumentDefinitionComponent, typeof i17.DossierManagementProcessesComponent, typeof i18.DossierManagementUploadStepComponent], [typeof i19.CommonModule, typeof i20.WidgetModule, typeof i20.DropzoneModule, typeof i20.ListModule, typeof i21.DossierManagementRoutingModule, typeof i22.FormsModule, typeof i23.TranslateModule, typeof i20.ModalModule, typeof i24.ConfigModule, typeof i25.NgbTooltipModule, typeof i20.MultiselectDropdownModule, typeof i20.ParagraphModule, typeof i20.SelectModule, typeof i20.SpinnerModule, typeof i20.InputModule, typeof i20.SelectModule, typeof i20.FormModule, typeof i26.NotificationModule, typeof i26.ButtonModule, typeof i26.IconModule, typeof i26.ModalModule, typeof i26.InputModule, typeof i22.ReactiveFormsModule, typeof i26.DropdownModule, typeof i26.CheckboxModule, typeof i20.TooltipIconModule, typeof i20.CarbonMultiInputModule, typeof i26.LoadingModule, typeof i26.LinkModule, typeof i20.ConfirmationModalModule, typeof i20.TableModule, typeof i20.ValtimoCdsModalDirectiveModule, typeof i20.CarbonListModule, typeof i26.ComboBoxModule, typeof i20.RenderInPageHeaderDirectiveModule, typeof i26.DialogModule, typeof i20.ValtimoCdsOverflowButtonDirectiveModule, typeof i26.NotificationModule, typeof i20.EditorModule, typeof i20.CarbonListModule, typeof i26.TabsModule, typeof i26.TagModule, typeof i26.FileUploaderModule, typeof i26.ProgressBarModule], never>;
|
|
27
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierManagementModule>;
|
|
28
32
|
}
|
|
29
33
|
//# sourceMappingURL=dossier-management.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dossier-management.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAgFA,qBAqEa,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}
|
package/lib/models/tab.enum.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab.enum.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/tab.enum.ts"],"names":[],"mappings":"AAgBA,oBAAY,OAAO;IACjB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
|
|
1
|
+
{"version":3,"file":"tab.enum.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/tab.enum.ts"],"names":[],"mappings":"AAgBA,oBAAY,OAAO;IACjB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DocumentDefinition, DocumentService } from '@valtimo/document';
|
|
4
|
+
import { EditorModel, PageTitleService } from '@valtimo/components';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DossierDetailService implements OnDestroy {
|
|
7
|
+
private readonly documentService;
|
|
8
|
+
private readonly pageTitleService;
|
|
9
|
+
private readonly _loadingDocumentDefinition$;
|
|
10
|
+
private readonly _selectedVersionNumber$;
|
|
11
|
+
private readonly _selectedDocumentDefinitionName$;
|
|
12
|
+
private readonly _documentDefinition$;
|
|
13
|
+
private readonly _documentDefinitionModel$;
|
|
14
|
+
get selectedVersionNumber$(): Observable<number>;
|
|
15
|
+
get selectedDocumentDefinitionName$(): Observable<string>;
|
|
16
|
+
get selectedDocumentDefinitionIsReadOnly$(): Observable<boolean>;
|
|
17
|
+
get loadingDocumentDefinition$(): Observable<boolean>;
|
|
18
|
+
get documentDefinition$(): Observable<DocumentDefinition>;
|
|
19
|
+
get documentDefinitionModel$(): Observable<EditorModel>;
|
|
20
|
+
private _subscriptions;
|
|
21
|
+
constructor(documentService: DocumentService, pageTitleService: PageTitleService);
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
setSelectedVersionNumber(versionNumber: number): void;
|
|
24
|
+
setSelectedDocumentDefinitionName(name: string): void;
|
|
25
|
+
setLoadingDocumentDefinition(loading: boolean): void;
|
|
26
|
+
private openDocumentDefinitionSubscription;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailService, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierDetailService>;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=dossier-detail.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-detail.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/dossier-detail.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAa,SAAS,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAML,UAAU,EAIX,MAAM,MAAM,CAAC;AACd,OAAO,EAAC,kBAAkB,EAAE,eAAe,EAAC,MAAM,mBAAmB,CAAC;AACtE,OAAO,EAAC,WAAW,EAAE,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;;AAElE,qBACa,oBAAqB,YAAW,SAAS;IAiDlD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IAjDnC,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAsC;IAClF,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAA4C;IACpF,OAAO,CAAC,QAAQ,CAAC,gCAAgC,CAAmC;IACpF,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAwD;IAC7F,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAMtC;IAEJ,IAAW,sBAAsB,IAAI,UAAU,CAAC,MAAM,CAAC,CAKtD;IAED,IAAW,+BAA+B,IAAI,UAAU,CAAC,MAAM,CAAC,CAK/D;IAED,IAAW,qCAAqC,IAAI,UAAU,CAAC,OAAO,CAAC,CAKtE;IAED,IAAW,0BAA0B,IAAI,UAAU,CAAC,OAAO,CAAC,CAE3D;IAED,IAAW,mBAAmB,IAAI,UAAU,CAAC,kBAAkB,CAAC,CAE/D;IAED,IAAW,wBAAwB,IAAI,UAAU,CAAC,WAAW,CAAC,CAE7D;IAED,OAAO,CAAC,cAAc,CAAsB;gBAGzB,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB;IAK9C,WAAW,IAAI,IAAI;IAInB,wBAAwB,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI;IAIrD,iCAAiC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAIrD,4BAA4B,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAG3D,OAAO,CAAC,kCAAkC;yCAtE/B,oBAAoB;6CAApB,oBAAoB;CA6FhC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
2
|
+
import { ConfigService } from '@valtimo/config';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DossierExportService {
|
|
6
|
+
private readonly http;
|
|
7
|
+
private readonly configService;
|
|
8
|
+
private readonly valtimoEndpointUri;
|
|
9
|
+
constructor(http: HttpClient, configService: ConfigService);
|
|
10
|
+
exportDocumentDefinition(documentDefinitionName: string, version?: number): Observable<HttpResponse<Blob>>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierExportService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierExportService>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=dossier-export.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-export.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/dossier-export.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;;AAGhC,qBAGa,oBAAoB;IAI7B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJhC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAS;gBAGzB,IAAI,EAAE,UAAU,EAChB,aAAa,EAAE,aAAa;IAKxC,wBAAwB,CAC7B,sBAAsB,EAAE,MAAM,EAC9B,OAAO,SAAI,GACV,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;yCAbtB,oBAAoB;6CAApB,oBAAoB;CAmBhC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
2
|
+
import { ConfigService } from '@valtimo/config';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DossierImportService {
|
|
6
|
+
private readonly http;
|
|
7
|
+
private readonly configService;
|
|
8
|
+
private readonly valtimoEndpointUri;
|
|
9
|
+
constructor(http: HttpClient, configService: ConfigService);
|
|
10
|
+
importDocumentDefinitionZip(file: FormData): Observable<HttpResponse<Blob>>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierImportService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierImportService>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=dossier-import.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-import.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/dossier-import.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;;AAEhC,qBAGa,oBAAoB;IAI7B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJhC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAS;gBAGzB,IAAI,EAAE,UAAU,EAChB,aAAa,EAAE,aAAa;IAKxC,2BAA2B,CAAC,IAAI,EAAE,QAAQ,GAAG,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;yCAVvE,oBAAoB;6CAApB,oBAAoB;CAgBhC"}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAiB,aAAa,EAAc,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAuB,WAAW,EAAC,MAAM,eAAe,CAAC;AAChE,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAC,MAAM,MAAM,CAAC;AAErE,OAAO,EAAC,OAAO,EAAC,MAAM,oBAAoB,CAAC;;AAE3C,qBAGa,UAAU;IAyEiB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAClE,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA1E5B,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAEnC,OAAO,CAAC,YAAY,
|
|
1
|
+
{"version":3,"file":"tab.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAiB,aAAa,EAAc,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAuB,WAAW,EAAC,MAAM,eAAe,CAAC;AAChE,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAC,MAAM,MAAM,CAAC;AAErE,OAAO,EAAC,OAAO,EAAC,MAAM,oBAAoB,CAAC;;AAE3C,qBAGa,UAAU;IAyEiB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAClE,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA1E5B,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAEnC,OAAO,CAAC,YAAY,CAAkD;IACtE,IAAW,WAAW,IAAI,UAAU,CAAC,OAAO,CAAC,CAE5C;IACD,IAAW,UAAU,CAAC,GAAG,EAAE,OAAO,EAEjC;IAED,OAAO,CAAC,uBAAuB,CAAqC;IACpE,IAAW,sBAAsB,IAAI,UAAU,CAAC,MAAM,EAAE,CAAC,CAExD;IACD,IAAW,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,EAE/C;IAED,SAAgB,gBAAgB,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAUpD;IAEJ,SAAgB,oBAAoB,8BAQlC;IAEF,SAAgB,YAAY,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAQlD;IAEF,SAAgB,eAAe,EAAE,UAAU,CAAC;QAC1C,QAAQ,EAAE,OAAO,CAAC;QAClB,MAAM,EAAE,OAAO,CAAC;QAChB,MAAM,EAAE,OAAO,CAAC;KACjB,CAAC,CAeA;gBAGqD,aAAa,EAAE,aAAa,EAChE,WAAW,EAAE,WAAW,EACxB,gBAAgB,EAAE,gBAAgB;yCA3E1C,UAAU;6CAAV,UAAU;CA6EtB"}
|