@hmcts/ccd-case-ui-toolkit 7.3.53-polling → 7.3.53
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 +354 -205
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +46 -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';
|
|
@@ -550,7 +550,7 @@ declare class SessionStorageService {
|
|
|
550
550
|
/**
|
|
551
551
|
* Get an item from the session storage.
|
|
552
552
|
*/
|
|
553
|
-
getItem(key: string): string;
|
|
553
|
+
getItem(key: string): string | null;
|
|
554
554
|
/**
|
|
555
555
|
* Set an item in the session storage.
|
|
556
556
|
*/
|
|
@@ -567,6 +567,20 @@ declare class SessionStorageService {
|
|
|
567
567
|
static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageService>;
|
|
568
568
|
}
|
|
569
569
|
|
|
570
|
+
declare const SessionErrorRoute: InjectionToken<string>;
|
|
571
|
+
type SessionJsonErrorLogger = (error: unknown) => void;
|
|
572
|
+
declare const SessionJsonErrorLogger: InjectionToken<SessionJsonErrorLogger>;
|
|
573
|
+
declare class SessionStorageGuard implements CanActivate {
|
|
574
|
+
private readonly sessionStorageService;
|
|
575
|
+
private readonly router;
|
|
576
|
+
private readonly errorRoute?;
|
|
577
|
+
private readonly errorLogger?;
|
|
578
|
+
constructor(sessionStorageService: SessionStorageService, router: Router, errorRoute?: string, errorLogger?: SessionJsonErrorLogger);
|
|
579
|
+
canActivate(): boolean;
|
|
580
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageGuard, [null, null, { optional: true; }, { optional: true; }]>;
|
|
581
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageGuard>;
|
|
582
|
+
}
|
|
583
|
+
|
|
570
584
|
declare class ActivityService {
|
|
571
585
|
private readonly http;
|
|
572
586
|
private readonly appConfig;
|
|
@@ -607,10 +621,6 @@ declare class ActivityPollingService {
|
|
|
607
621
|
postEditActivity(caseId: string): Observable<Activity[]>;
|
|
608
622
|
protected performBatchRequest(requests: Map<string, Subject<Activity>>): void;
|
|
609
623
|
private postActivity;
|
|
610
|
-
private addPendingRequest;
|
|
611
|
-
private removePendingRequest;
|
|
612
|
-
private polling;
|
|
613
|
-
private getExponentialRetryDelay;
|
|
614
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityPollingService, never>;
|
|
615
625
|
static ɵprov: i0.ɵɵInjectableDeclaration<ActivityPollingService>;
|
|
616
626
|
}
|
|
@@ -2930,15 +2940,18 @@ declare class FieldReadComponent extends AbstractFieldReadComponent implements O
|
|
|
2930
2940
|
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReadComponent, "ccd-field-read", never, { "withLabel": { "alias": "withLabel"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "caseFields": { "alias": "caseFields"; "required": false; }; }, {}, never, never, false, never>;
|
|
2931
2941
|
}
|
|
2932
2942
|
|
|
2933
|
-
declare class FieldWriteComponent extends AbstractFieldWriteComponent implements OnInit {
|
|
2943
|
+
declare class FieldWriteComponent extends AbstractFieldWriteComponent implements OnInit, OnChanges {
|
|
2934
2944
|
private readonly resolver;
|
|
2935
2945
|
private readonly paletteService;
|
|
2936
2946
|
canHaveGreyBar: boolean;
|
|
2937
2947
|
caseFields: CaseField[];
|
|
2938
2948
|
fieldContainer: ViewContainerRef;
|
|
2949
|
+
private componentRef;
|
|
2939
2950
|
constructor(resolver: ComponentFactoryResolver, paletteService: PaletteService);
|
|
2940
2951
|
protected addValidators(caseField: CaseField, control: AbstractControl): void;
|
|
2941
2952
|
ngOnInit(): void;
|
|
2953
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2954
|
+
private applyInputsToChild;
|
|
2942
2955
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldWriteComponent, never>;
|
|
2943
2956
|
static ɵcmp: i0.ɵɵComponentDeclaration<FieldWriteComponent, "ccd-field-write", never, { "caseFields": { "alias": "caseFields"; "required": false; }; }, {}, never, never, false, never>;
|
|
2944
2957
|
}
|
|
@@ -4010,6 +4023,7 @@ declare class WriteCaseLinkFieldComponent extends AbstractFieldWriteComponent im
|
|
|
4010
4023
|
}
|
|
4011
4024
|
|
|
4012
4025
|
type CollectionItem = {
|
|
4026
|
+
uid: string;
|
|
4013
4027
|
caseField: CaseField;
|
|
4014
4028
|
item: any;
|
|
4015
4029
|
prefix: string;
|
|
@@ -4027,6 +4041,7 @@ declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent
|
|
|
4027
4041
|
profileSubscription: Subscription;
|
|
4028
4042
|
private readonly items;
|
|
4029
4043
|
readonly collItems: CollectionItem[];
|
|
4044
|
+
private collectionItemUidCounter;
|
|
4030
4045
|
constructor(dialog: MatLegacyDialog, scrollToService: ScrollToService, profileNotifier: ProfileNotifier, cdRef: ChangeDetectorRef);
|
|
4031
4046
|
ngOnInit(): void;
|
|
4032
4047
|
ngOnDestroy(): void;
|
|
@@ -4039,6 +4054,8 @@ declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent
|
|
|
4039
4054
|
private getContainer;
|
|
4040
4055
|
private focusLastItem;
|
|
4041
4056
|
private removeItem;
|
|
4057
|
+
trackByCollectionItem(_: number, item: CollectionItem): string;
|
|
4058
|
+
private createCollectionItemUid;
|
|
4042
4059
|
private resetIds;
|
|
4043
4060
|
itemLabel(index: number): string;
|
|
4044
4061
|
isNotAuthorisedToCreate(): boolean;
|
|
@@ -4110,17 +4127,13 @@ interface Caseworker {
|
|
|
4110
4127
|
roleCategory: string;
|
|
4111
4128
|
service?: string;
|
|
4112
4129
|
}
|
|
4113
|
-
interface CaseworkersByService {
|
|
4114
|
-
service: string;
|
|
4115
|
-
caseworkers: Caseworker[];
|
|
4116
|
-
}
|
|
4117
4130
|
|
|
4118
4131
|
declare class CaseworkerService {
|
|
4119
4132
|
private readonly http;
|
|
4120
4133
|
private readonly appConfig;
|
|
4121
4134
|
private readonly errorService;
|
|
4122
4135
|
constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
|
|
4123
|
-
|
|
4136
|
+
getUserByIdamId(idamId: string): Observable<Caseworker>;
|
|
4124
4137
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
|
|
4125
4138
|
static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
|
|
4126
4139
|
}
|
|
@@ -5604,6 +5617,15 @@ declare class ReadFieldsFilterPipe implements PipeTransform {
|
|
|
5604
5617
|
private static isValidCollection;
|
|
5605
5618
|
private static isEmpty;
|
|
5606
5619
|
private static isCompound;
|
|
5620
|
+
private static findAncestorOfType;
|
|
5621
|
+
private static getCollectionItemValue;
|
|
5622
|
+
private static getBaseConditionalShowContext;
|
|
5623
|
+
private static resolvePrefixedConditionalShowContext;
|
|
5624
|
+
private static resolveCollectionConditionalShowContext;
|
|
5625
|
+
private static resolveFallbackConditionalShowContext;
|
|
5626
|
+
private static getConditionalShowContext;
|
|
5627
|
+
private static cloneFieldWithValue;
|
|
5628
|
+
private static applyDisplayContextAndHidden;
|
|
5607
5629
|
private static isValidCompound;
|
|
5608
5630
|
private static keepField;
|
|
5609
5631
|
private static getValue;
|
|
@@ -6410,6 +6432,14 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6410
6432
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaseEditPageComponent, "ccd-case-edit-page", never, {}, {}, never, never, false, never>;
|
|
6411
6433
|
}
|
|
6412
6434
|
|
|
6435
|
+
declare class SessionErrorPageComponent {
|
|
6436
|
+
title: string;
|
|
6437
|
+
primaryMessage: string;
|
|
6438
|
+
secondaryMessage: string;
|
|
6439
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionErrorPageComponent, never>;
|
|
6440
|
+
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>;
|
|
6441
|
+
}
|
|
6442
|
+
|
|
6413
6443
|
declare class OrderSummary {
|
|
6414
6444
|
PaymentReference: string;
|
|
6415
6445
|
Fees: FeeValue[];
|
|
@@ -7745,6 +7775,8 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7745
7775
|
build(): ActivatedRouteSnapshot;
|
|
7746
7776
|
}
|
|
7747
7777
|
|
|
7748
|
-
|
|
7778
|
+
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7779
|
+
|
|
7780
|
+
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 };
|
|
7749
7781
|
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 };
|
|
7750
7782
|
//# sourceMappingURL=index.d.ts.map
|