@valtimo/dossier 12.16.1 → 12.17.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-detail/tab/notes/notes.component.mjs +2 -2
- package/esm2022/lib/components/dossier-list/dossier-list.component.mjs +29 -8
- package/esm2022/lib/dossier.module.mjs +18 -5
- package/esm2022/lib/permissions/dossier-detail.permissions.mjs +7 -2
- package/esm2022/lib/services/case-export.service.mjs +80 -0
- package/esm2022/lib/services/index.mjs +2 -1
- package/fesm2022/valtimo-dossier.mjs +430 -323
- package/fesm2022/valtimo-dossier.mjs.map +1 -1
- package/lib/components/dossier-list/dossier-list.component.d.ts +7 -2
- package/lib/components/dossier-list/dossier-list.component.d.ts.map +1 -1
- package/lib/dossier.module.d.ts +11 -10
- package/lib/dossier.module.d.ts.map +1 -1
- package/lib/permissions/dossier-detail.permissions.d.ts +2 -1
- package/lib/permissions/dossier-detail.permissions.d.ts.map +1 -1
- package/lib/services/case-export.service.d.ts +22 -0
- package/lib/services/case-export.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ import { AssigneeFilter, ConfigService, DossierListTab, SearchField, SearchField
|
|
|
7
7
|
import { DocumentService, InternalCaseStatus, CaseTag } from '@valtimo/document';
|
|
8
8
|
import { Tabs } from 'carbon-components-angular';
|
|
9
9
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
10
|
-
import { DossierBulkAssignService, DossierColumnService, DossierListAssigneeService, DossierListPaginationService, DossierListSearchService, DossierListService, DossierListStatusService, DossierParameterService, DossierListCaseTagService } from '../../services';
|
|
10
|
+
import { DossierBulkAssignService, DossierColumnService, DossierListAssigneeService, DossierListPaginationService, DossierListSearchService, DossierListService, DossierListStatusService, DossierParameterService, DossierListCaseTagService, CaseExportService } from '../../services';
|
|
11
11
|
import { DossierListActionsComponent } from '../dossier-list-actions/dossier-list-actions.component';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
@@ -28,6 +28,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
28
28
|
private readonly permissionService;
|
|
29
29
|
private readonly statusService;
|
|
30
30
|
private readonly dossierListCaseTagService;
|
|
31
|
+
private readonly caseExportService;
|
|
31
32
|
carbonList: CarbonListComponent;
|
|
32
33
|
listActionsComponent: DossierListActionsComponent;
|
|
33
34
|
tabsComponent: Tabs;
|
|
@@ -41,6 +42,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
41
42
|
pagination: Pagination;
|
|
42
43
|
canHaveAssignee: boolean;
|
|
43
44
|
visibleDossierTabs: Array<DossierListTab> | null;
|
|
45
|
+
loadingExport: boolean;
|
|
44
46
|
readonly defaultTabs: DossierListTab[];
|
|
45
47
|
readonly tableTranslations: import("@valtimo/components").CarbonListTranslations;
|
|
46
48
|
readonly noResultsMessage$: BehaviorSubject<CarbonListNoResultsMessage>;
|
|
@@ -48,6 +50,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
48
50
|
readonly showAssignModal$: BehaviorSubject<boolean>;
|
|
49
51
|
readonly showChangePageModal$: BehaviorSubject<boolean>;
|
|
50
52
|
readonly showChangeTabModal$: BehaviorSubject<boolean>;
|
|
53
|
+
readonly disableExportButton$: BehaviorSubject<boolean>;
|
|
51
54
|
readonly searchFields$: Observable<Array<SearchField> | null>;
|
|
52
55
|
readonly statuses$: Observable<InternalCaseStatus[]>;
|
|
53
56
|
readonly caseTags$: Observable<CaseTag[]>;
|
|
@@ -57,6 +60,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
57
60
|
readonly selectedDocumentIds$: BehaviorSubject<string[]>;
|
|
58
61
|
readonly schema$: Observable<any>;
|
|
59
62
|
readonly canCreateDocument$: Observable<boolean>;
|
|
63
|
+
readonly canExportCase$: Observable<boolean>;
|
|
60
64
|
readonly searchFieldValues$: Observable<SearchFieldValues>;
|
|
61
65
|
readonly assigneeFilter$: Observable<AssigneeFilter>;
|
|
62
66
|
readonly paginationChange$: BehaviorSubject<CarbonPaginationSelection>;
|
|
@@ -78,7 +82,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
78
82
|
readonly documentItems$: Observable<any[]>;
|
|
79
83
|
private _previousDocumentDefinitionName;
|
|
80
84
|
private _documentDefinitionNameSubscription;
|
|
81
|
-
constructor(assigneeService: DossierListAssigneeService, breadcrumbService: BreadcrumbService, bulkAssignService: DossierBulkAssignService, columnService: DossierColumnService, configService: ConfigService, documentService: DocumentService, listService: DossierListService, pageTitleService: PageTitleService, paginationService: DossierListPaginationService, parameterService: DossierParameterService, route: ActivatedRoute, router: Router, searchService: DossierListSearchService, translateService: TranslateService, permissionService: PermissionService, statusService: DossierListStatusService, dossierListCaseTagService: DossierListCaseTagService);
|
|
85
|
+
constructor(assigneeService: DossierListAssigneeService, breadcrumbService: BreadcrumbService, bulkAssignService: DossierBulkAssignService, columnService: DossierColumnService, configService: ConfigService, documentService: DocumentService, listService: DossierListService, pageTitleService: PageTitleService, paginationService: DossierListPaginationService, parameterService: DossierParameterService, route: ActivatedRoute, router: Router, searchService: DossierListSearchService, translateService: TranslateService, permissionService: PermissionService, statusService: DossierListStatusService, dossierListCaseTagService: DossierListCaseTagService, caseExportService: CaseExportService);
|
|
82
86
|
ngOnInit(): void;
|
|
83
87
|
ngOnDestroy(): void;
|
|
84
88
|
trackByIndex(index: number): number;
|
|
@@ -94,6 +98,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
94
98
|
onCloseEvent(assigneeId: null | string, documentIds: string[]): void;
|
|
95
99
|
onChangePageConfirm(pagination: CarbonPaginationSelection): void;
|
|
96
100
|
startDossier(): void;
|
|
101
|
+
export(): void;
|
|
97
102
|
forceRefresh(): void;
|
|
98
103
|
onSelectedStatusesChange(statuses: InternalCaseStatus[]): void;
|
|
99
104
|
onSelectedCaseTagsChange(caseTags: CaseTag[]): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,cAAc,EAAU,MAAM,EAAC,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,0BAA0B,EAC1B,yBAAyB,EAEzB,SAAS,EACT,gBAAgB,EAChB,UAAU,EAEX,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,cAAc,EACd,aAAa,EAGb,cAAc,EACd,WAAW,EACX,iBAAiB,EACjB,SAAS,EACV,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAKL,eAAe,EACf,kBAAkB,EAGlB,OAAO,EAER,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAM,IAAI,EAAU,MAAM,2BAA2B,CAAC;AAE7D,OAAO,EACL,eAAe,EAQf,UAAU,EAMX,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"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"}
|
package/lib/dossier.module.d.ts
CHANGED
|
@@ -25,20 +25,21 @@ import * as i22 from "@ng-bootstrap/ng-bootstrap";
|
|
|
25
25
|
import * as i23 from "@angular/forms";
|
|
26
26
|
import * as i24 from "@valtimo/form";
|
|
27
27
|
import * as i25 from "@ngx-translate/core";
|
|
28
|
-
import * as i26 from "
|
|
29
|
-
import * as i27 from "@valtimo/
|
|
30
|
-
import * as i28 from "
|
|
31
|
-
import * as i29 from "
|
|
32
|
-
import * as i30 from "
|
|
33
|
-
import * as i31 from "./
|
|
34
|
-
import * as i32 from "./components/dossier-detail
|
|
35
|
-
import * as i33 from "./components/dossier-detail-task-
|
|
36
|
-
import * as i34 from "
|
|
28
|
+
import * as i26 from "ngx-toastr";
|
|
29
|
+
import * as i27 from "@valtimo/task";
|
|
30
|
+
import * as i28 from "@valtimo/config";
|
|
31
|
+
import * as i29 from "carbon-components-angular";
|
|
32
|
+
import * as i30 from "@valtimo/process-link";
|
|
33
|
+
import * as i31 from "./pipes/tab-translate/tab-translate-pipe.module";
|
|
34
|
+
import * as i32 from "./components/dossier-detail/tab/widgets/widgets.component";
|
|
35
|
+
import * as i33 from "./components/dossier-detail-task-list/dossier-detail-task-list.component";
|
|
36
|
+
import * as i34 from "./components/dossier-detail-task-detail/dossier-detail-task-detail.component";
|
|
37
|
+
import * as i35 from "angular-split";
|
|
37
38
|
export type TabsFactory = () => Map<string, object>;
|
|
38
39
|
export declare class DossierModule {
|
|
39
40
|
static forRoot(tabsFactory: TabsFactory): ModuleWithProviders<DossierModule>;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierBulkAssignModalComponent, typeof i2.DossierListComponent, typeof i3.DossierListActionsComponent, typeof i4.DossierDetailComponent, typeof i5.DossierDetailTabSummaryComponent, typeof i6.DossierDetailTabProgressComponent, typeof i7.DossierDetailTabAuditComponent, typeof i8.DossierDetailTabDocumentsComponent, typeof i9.DossierDetailTabNotesComponent, typeof i10.DossierUpdateComponent, typeof i11.DossierProcessStartModalComponent, typeof i12.DossierSupportingProcessStartModalComponent, typeof i13.DossierDetailTabS3DocumentsComponent, typeof i14.DossierDetailTabNotFoundComponent, typeof i15.DossierAssignUserComponent, typeof i16.NoteModalComponent, typeof i17.DossierDetailTabFormioComponent], [typeof i18.CommonModule, typeof i19.DossierRoutingModule, typeof i20.ListModule, typeof i20.WidgetModule, typeof i20.BpmnJsDiagramModule, typeof i20.TimelineModule, typeof i20.CamundaFormModule, typeof i21.ProcessModule, typeof i20.FilterSidebarModule, typeof i22.NgbButtonsModule, typeof i20.DataListModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.FormModule, typeof i20.FormIoModule, typeof i20.ModalModule, typeof i20.SpinnerModule, typeof i25.TranslateModule, typeof i26.TaskModule, typeof i20.ModalModule, typeof i22.NgbTooltipModule, typeof i20.UploaderModule, typeof i20.DropzoneModule, typeof i22.NgbPaginationModule, typeof
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierBulkAssignModalComponent, typeof i2.DossierListComponent, typeof i3.DossierListActionsComponent, typeof i4.DossierDetailComponent, typeof i5.DossierDetailTabSummaryComponent, typeof i6.DossierDetailTabProgressComponent, typeof i7.DossierDetailTabAuditComponent, typeof i8.DossierDetailTabDocumentsComponent, typeof i9.DossierDetailTabNotesComponent, typeof i10.DossierUpdateComponent, typeof i11.DossierProcessStartModalComponent, typeof i12.DossierSupportingProcessStartModalComponent, typeof i13.DossierDetailTabS3DocumentsComponent, typeof i14.DossierDetailTabNotFoundComponent, typeof i15.DossierAssignUserComponent, typeof i16.NoteModalComponent, typeof i17.DossierDetailTabFormioComponent], [typeof i18.CommonModule, typeof i19.DossierRoutingModule, typeof i20.ListModule, typeof i20.WidgetModule, typeof i20.BpmnJsDiagramModule, typeof i20.TimelineModule, typeof i20.CamundaFormModule, typeof i21.ProcessModule, typeof i20.FilterSidebarModule, typeof i22.NgbButtonsModule, typeof i20.DataListModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.FormModule, typeof i20.FormIoModule, typeof i20.ModalModule, typeof i20.SpinnerModule, typeof i25.TranslateModule, typeof i26.ToastrModule, typeof i27.TaskModule, typeof i20.ModalModule, typeof i22.NgbTooltipModule, typeof i20.UploaderModule, typeof i20.DropzoneModule, typeof i22.NgbPaginationModule, typeof i28.ConfigModule, typeof i20.SelectModule, typeof i20.InputLabelModule, typeof i20.ParagraphModule, typeof i20.TableModule, typeof i20.VModalModule, typeof i20.TitleModule, typeof i20.ButtonModule, typeof i20.SearchableDropdownSelectModule, typeof i20.SearchFieldsModule, typeof i20.PageModule, typeof i24.FormModule, typeof i20.InputModule, typeof i20.FormModule, typeof i22.NgbModule, typeof i29.LoadingModule, typeof i29.ButtonModule, typeof i29.IconModule, typeof i30.ProcessLinkModule, typeof i29.ModalModule, typeof i29.SelectModule, typeof i20.ConfirmationModalModule, typeof i29.DropdownModule, typeof i29.TabsModule, typeof i29.ComboBoxModule, typeof i31.TabTranslatePipeModule, typeof i20.CarbonListModule, typeof i20.IsArrayPipe, typeof i29.SkeletonModule, typeof i20.StatusSelectorComponent, typeof i20.RenderInPageHeaderDirectiveModule, typeof i29.TagModule, typeof i29.DialogModule, typeof i20.ValtimoCdsOverflowButtonDirectiveModule, typeof i32.DossierDetailWidgetsComponent, typeof i33.DossierDetailTaskListComponent, typeof i34.DossierDetailsTaskDetailComponent, typeof i35.AngularSplitModule, typeof i20.CaseTagsSelectorComponent, typeof i20.ValtimoCdsModalDirectiveModule, typeof i29.TilesModule, typeof i29.LayerModule, typeof i29.TooltipModule], [typeof i2.DossierListComponent, typeof i4.DossierDetailComponent, typeof i11.DossierProcessStartModalComponent]>;
|
|
42
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierModule>;
|
|
43
44
|
}
|
|
44
45
|
//# sourceMappingURL=dossier.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,mBAAmB,EAAW,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,mBAAmB,EAAW,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2F5D,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEpD,qBAqGa,aAAa;IACxB,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,GAAG,mBAAmB,CAAC,aAAa,CAAC;yCADjE,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAczB"}
|
|
@@ -12,5 +12,6 @@ declare const CAN_ASSIGN_CASE_PERMISSION: PermissionRequest;
|
|
|
12
12
|
declare const CAN_VIEW_CASE_PERMISSION: PermissionRequest;
|
|
13
13
|
declare const CAN_CREATE_CASE_PERMISSION: PermissionRequest;
|
|
14
14
|
declare const CAN_DELETE_CASE_PERMISSION: PermissionRequest;
|
|
15
|
-
|
|
15
|
+
declare const CAN_EXPORT_CASE_PERMISSION: PermissionRequest;
|
|
16
|
+
export { CAN_ADD_NOTE_PERMISSION, CAN_ASSIGN_CASE_PERMISSION, CAN_CLAIM_CASE_PERMISSION, CAN_DELETE_NOTE_PERMISSION, CAN_EDIT_NOTE_PERMISSION, DOSSIER_DETAIL_PERMISSION_RESOURCE, CAN_VIEW_CASE_PERMISSION, CAN_CREATE_CASE_PERMISSION, CAN_DELETE_CASE_PERMISSION, CAN_EXPORT_CASE_PERMISSION, };
|
|
16
17
|
//# sourceMappingURL=dossier-detail.permissions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-detail.permissions.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/permissions/dossier-detail.permissions.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"dossier-detail.permissions.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/permissions/dossier-detail.permissions.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAY1D,aAAK,kCAAkC;IACrC,kBAAkB,wDAAwD;IAC1E,IAAI,iCAAiC;IACrC,4BAA4B,kEAAkE;CAC/F;AAED,QAAA,MAAM,yBAAyB,EAAE,iBAGhC,CAAC;AAEF,QAAA,MAAM,uBAAuB,EAAE,iBAG9B,CAAC;AAEF,QAAA,MAAM,0BAA0B,EAAE,iBAGjC,CAAC;AAEF,QAAA,MAAM,wBAAwB,EAAE,iBAG/B,CAAC;AAEF,QAAA,MAAM,0BAA0B,EAAE,iBAGjC,CAAC;AAEF,QAAA,MAAM,wBAAwB,EAAE,iBAG/B,CAAC;AAEF,QAAA,MAAM,0BAA0B,EAAE,iBAGjC,CAAC;AAEF,QAAA,MAAM,0BAA0B,EAAE,iBAGjC,CAAC;AAEF,QAAA,MAAM,0BAA0B,EAAE,iBAGjC,CAAC;AAEF,OAAO,EACL,uBAAuB,EACvB,0BAA0B,EAC1B,yBAAyB,EACzB,0BAA0B,EAC1B,wBAAwB,EACxB,kCAAkC,EAClC,wBAAwB,EACxB,0BAA0B,EAC1B,0BAA0B,EAC1B,0BAA0B,GAC3B,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DossierListService } from './dossier-list.service';
|
|
4
|
+
import { DossierParameterService } from './dossier-parameter.service';
|
|
5
|
+
import { DossierListSearchService } from './dossier-list-search.service';
|
|
6
|
+
import { ToastrService } from 'ngx-toastr';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class CaseExportService {
|
|
9
|
+
private readonly http;
|
|
10
|
+
private readonly listService;
|
|
11
|
+
private readonly parameterService;
|
|
12
|
+
private readonly caseListSearchService;
|
|
13
|
+
private readonly toasterService;
|
|
14
|
+
constructor(http: HttpClient, listService: DossierListService, parameterService: DossierParameterService, caseListSearchService: DossierListSearchService, toasterService: ToastrService);
|
|
15
|
+
downloadExport(): Observable<{
|
|
16
|
+
isLoading: boolean;
|
|
17
|
+
}>;
|
|
18
|
+
private readBlobAsText;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseExportService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CaseExportService>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=case-export.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-export.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/case-export.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAc,MAAM,sBAAsB,CAAC;AAE7D,OAAO,EAML,UAAU,EAIX,MAAM,MAAM,CAAC;AACd,OAAO,EAAC,kBAAkB,EAAC,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAC,uBAAuB,EAAC,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAC,wBAAwB,EAAC,MAAM,+BAA+B,CAAC;AAEvE,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;;AAGzC,qBACa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,cAAc;gBAJd,IAAI,EAAE,UAAU,EAChB,WAAW,EAAE,kBAAkB,EAC/B,gBAAgB,EAAE,uBAAuB,EACzC,qBAAqB,EAAE,wBAAwB,EAC/C,cAAc,EAAE,aAAa;IAGzC,cAAc,IAAI,UAAU,CAAC;QAAC,SAAS,EAAE,OAAO,CAAA;KAAC,CAAC;IAiEzD,OAAO,CAAC,cAAc;yCA1EX,iBAAiB;6CAAjB,iBAAiB;CA+E7B"}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kCAAkC,CAAC;AACjD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,uBAAuB,CAAC;AACtC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kCAAkC,CAAC;AACjD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC"}
|