@hmcts/ccd-case-ui-toolkit 7.3.33-exui-3345 → 7.3.34-fix-security-issue
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 +0 -3
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +180 -158
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +31 -14
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, NgZone, OnChanges, SimpleChanges, ChangeDetectorRef, Type, ViewContainerRef, ComponentFactoryResolver, AfterViewInit, Renderer2, ModuleWithProviders,
|
|
2
|
+
import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, InjectionToken, NgZone, OnChanges, SimpleChanges, ChangeDetectorRef, Type, ViewContainerRef, ComponentFactoryResolver, AfterViewInit, Renderer2, ModuleWithProviders, Injector, TemplateRef, RendererFactory2, AfterViewChecked } from '@angular/core';
|
|
3
3
|
import * as i2 from '@angular/common';
|
|
4
4
|
import { AsyncPipe, Location as Location$1 } from '@angular/common';
|
|
5
5
|
import * as i3 from '@angular/router';
|
|
6
|
-
import { ActivatedRoute, Router, ActivatedRouteSnapshot, Resolve, Routes, Navigation } from '@angular/router';
|
|
6
|
+
import { ActivatedRoute, CanActivate, Router, ActivatedRouteSnapshot, Resolve, Routes, Navigation } from '@angular/router';
|
|
7
7
|
import * as i7 from 'rpx-xui-translation';
|
|
8
8
|
import { RpxTranslationService, RpxTranslatePipe } from 'rpx-xui-translation';
|
|
9
9
|
import * as i3$1 from '@angular/forms';
|
|
@@ -549,7 +549,7 @@ declare class SessionStorageService {
|
|
|
549
549
|
/**
|
|
550
550
|
* Get an item from the session storage.
|
|
551
551
|
*/
|
|
552
|
-
getItem(key: string): string;
|
|
552
|
+
getItem(key: string): string | null;
|
|
553
553
|
/**
|
|
554
554
|
* Set an item in the session storage.
|
|
555
555
|
*/
|
|
@@ -566,6 +566,20 @@ declare class SessionStorageService {
|
|
|
566
566
|
static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageService>;
|
|
567
567
|
}
|
|
568
568
|
|
|
569
|
+
declare const SessionErrorRoute: InjectionToken<string>;
|
|
570
|
+
type SessionJsonErrorLogger = (error: unknown) => void;
|
|
571
|
+
declare const SessionJsonErrorLogger: InjectionToken<SessionJsonErrorLogger>;
|
|
572
|
+
declare class SessionStorageGuard implements CanActivate {
|
|
573
|
+
private readonly sessionStorageService;
|
|
574
|
+
private readonly router;
|
|
575
|
+
private readonly errorRoute?;
|
|
576
|
+
private readonly errorLogger?;
|
|
577
|
+
constructor(sessionStorageService: SessionStorageService, router: Router, errorRoute?: string, errorLogger?: SessionJsonErrorLogger);
|
|
578
|
+
canActivate(): boolean;
|
|
579
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageGuard, [null, null, { optional: true; }, { optional: true; }]>;
|
|
580
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageGuard>;
|
|
581
|
+
}
|
|
582
|
+
|
|
569
583
|
declare class ActivityService {
|
|
570
584
|
private readonly http;
|
|
571
585
|
private readonly appConfig;
|
|
@@ -1672,7 +1686,6 @@ declare class DocumentTreeNode {
|
|
|
1672
1686
|
children?: DocumentTreeNode[];
|
|
1673
1687
|
document_filename?: string;
|
|
1674
1688
|
document_binary_url?: string;
|
|
1675
|
-
content_type?: string;
|
|
1676
1689
|
attribute_path?: string;
|
|
1677
1690
|
upload_timestamp?: string;
|
|
1678
1691
|
category_order?: number;
|
|
@@ -1803,8 +1816,6 @@ declare class DocumentManagementService {
|
|
|
1803
1816
|
private static readonly POWERPOINT;
|
|
1804
1817
|
private static readonly TXT;
|
|
1805
1818
|
private static readonly RTF;
|
|
1806
|
-
private static readonly HTML_MIME_ALLOWLIST;
|
|
1807
|
-
private static readonly HTML_EXTENSION_ALLOWLIST;
|
|
1808
1819
|
private static readonly RESPONSE_DELAY;
|
|
1809
1820
|
private static readonly imagesList;
|
|
1810
1821
|
private static readonly wordList;
|
|
@@ -1816,8 +1827,6 @@ declare class DocumentManagementService {
|
|
|
1816
1827
|
uploadFile(formData: FormData): Observable<DocumentData>;
|
|
1817
1828
|
setCaseInfo(): void;
|
|
1818
1829
|
getMediaViewerInfo(documentFieldValue: any): string;
|
|
1819
|
-
getDocumentBinaryUrl(documentFieldValue: any): string;
|
|
1820
|
-
isHtmlDocument(documentFieldValue: any): boolean;
|
|
1821
1830
|
getContentType(documentFieldValue: any): string;
|
|
1822
1831
|
isImage(imageType: string): boolean;
|
|
1823
1832
|
isWord(wordType: string): boolean;
|
|
@@ -1831,8 +1840,6 @@ declare class DocumentManagementService {
|
|
|
1831
1840
|
private getCurrentPathname;
|
|
1832
1841
|
private resolveCaseTypeId;
|
|
1833
1842
|
private transformDocumentUrl;
|
|
1834
|
-
private normaliseMimeType;
|
|
1835
|
-
private getFileExtension;
|
|
1836
1843
|
private getDocStoreUrl;
|
|
1837
1844
|
isDocumentSecureModeEnabled(): boolean;
|
|
1838
1845
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentManagementService, never>;
|
|
@@ -4189,7 +4196,6 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
|
|
|
4189
4196
|
private documentManagementService;
|
|
4190
4197
|
private readonly loadingService;
|
|
4191
4198
|
private readonly sessionStorageService;
|
|
4192
|
-
private readonly windowService;
|
|
4193
4199
|
private readonly caseNotifier;
|
|
4194
4200
|
private readonly abstractConfig;
|
|
4195
4201
|
static readonly PARAM_CASE_ID = "cid";
|
|
@@ -4204,7 +4210,7 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
|
|
|
4204
4210
|
icp_jurisdictions: string[];
|
|
4205
4211
|
icpEnabled: boolean;
|
|
4206
4212
|
caseId: string;
|
|
4207
|
-
constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService,
|
|
4213
|
+
constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService, caseNotifier: CaseNotifier, abstractConfig: AbstractAppConfig);
|
|
4208
4214
|
ngOnInit(): void;
|
|
4209
4215
|
ngAfterViewInit(): void;
|
|
4210
4216
|
setMediaViewerFile(document: DocumentTreeNode): void;
|
|
@@ -4226,6 +4232,7 @@ declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
|
|
|
4226
4232
|
private readonly router;
|
|
4227
4233
|
private readonly documentManagementService;
|
|
4228
4234
|
private readonly dialog;
|
|
4235
|
+
private readonly appConfig;
|
|
4229
4236
|
private static readonly UNCATEGORISED_DOCUMENTS_TITLE;
|
|
4230
4237
|
private static readonly DOCUMENT_SEARCH_FORM_CONTROL_NAME;
|
|
4231
4238
|
private static readonly MINIMUM_SEARCH_CHARACTERS;
|
|
@@ -4249,7 +4256,7 @@ declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
|
|
|
4249
4256
|
private getChildren;
|
|
4250
4257
|
nestedChildren: (_: number, nodeData: DocumentTreeNode) => DocumentTreeNode[];
|
|
4251
4258
|
get documentCount(): number;
|
|
4252
|
-
constructor(windowService: WindowService, router: Router, documentManagementService: DocumentManagementService, dialog: MatLegacyDialog);
|
|
4259
|
+
constructor(windowService: WindowService, router: Router, documentManagementService: DocumentManagementService, dialog: MatLegacyDialog, appConfig: AbstractAppConfig);
|
|
4253
4260
|
collapseAll(expand: boolean): void;
|
|
4254
4261
|
expandAll(expand: boolean): void;
|
|
4255
4262
|
ngOnInit(): void;
|
|
@@ -6391,6 +6398,14 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6391
6398
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaseEditPageComponent, "ccd-case-edit-page", never, {}, {}, never, never, false, never>;
|
|
6392
6399
|
}
|
|
6393
6400
|
|
|
6401
|
+
declare class SessionErrorPageComponent {
|
|
6402
|
+
title: string;
|
|
6403
|
+
primaryMessage: string;
|
|
6404
|
+
secondaryMessage: string;
|
|
6405
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionErrorPageComponent, never>;
|
|
6406
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SessionErrorPageComponent, "ccd-session-error-page", never, { "title": { "alias": "title"; "required": false; }; "primaryMessage": { "alias": "primaryMessage"; "required": false; }; "secondaryMessage": { "alias": "secondaryMessage"; "required": false; }; }, {}, never, never, true, never>;
|
|
6407
|
+
}
|
|
6408
|
+
|
|
6394
6409
|
declare class OrderSummary {
|
|
6395
6410
|
PaymentReference: string;
|
|
6396
6411
|
Fees: FeeValue[];
|
|
@@ -7719,6 +7734,8 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7719
7734
|
build(): ActivatedRouteSnapshot;
|
|
7720
7735
|
}
|
|
7721
7736
|
|
|
7722
|
-
|
|
7737
|
+
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7738
|
+
|
|
7739
|
+
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewFolderToggleComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, CloseQueryComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse$1 as LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipageComponentStateService, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
|
|
7723
7740
|
export type { AccessManagementBasicViewMockModel, AccessManagementRequestReviewMockModel, AlertLevel, CaseEditCaseSubmit, CaseEditGenerateCaseEventData, CaseEditGetNextPage, CaseEditSubmitForm, CaseEditValidationError, CaseEditonEventCanBeCompleted, CaseFlagState, CaseMessage, CaseQueriesCollection, CaseTypeQualifyingQuestions, ChallengedAccessRequest, DisplayedAccessReason$1 as DisplayedAccessReason, ErrorMessage, EventCompletionComponentEmitter, EventCompletionStateMachineContext, FieldTypeEnum, FlagDetail, FlagDetailDisplay, FlagDetailDisplayWithFormGroupPath, FlagPath, Flags, FlagsWithFormGroupPath, Journey, JourneyInstigator, Language, LinkedCasesState, NotificationBannerConfig, OptionsType, Orderable, Organisation, OrganisationAddress, OrganisationSuperUser, OrganisationVm, Predicate, QmCaseQueriesCollection, QualifyingQuestion, QueryListColumn, QueryMessage, QueryMessageDocument, RequestedRole, RequestedRoleNote, ReviewSpecificAccessRequest, RoleAssignmentResponse, RoleCategory, RoleClassification, RoleGrantTypeCategory, RoleRequest, RoleRequestPayload, RoleType, SearchResultViewItemComparator, SearchView, ServiceConfig, SimpleOrganisationModel, SpecificAccessRequest, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
|
|
7724
7741
|
//# sourceMappingURL=index.d.ts.map
|