@hmcts/ccd-case-ui-toolkit 7.3.77 → 7.3.78-exui-2906-activity-tracker-web-pubsub

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
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';
2
+ import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, InjectionToken, OnChanges, SimpleChanges, ChangeDetectorRef, Type, ViewContainerRef, ComponentFactoryResolver, AfterViewInit, Renderer2, ModuleWithProviders, Injector, TemplateRef, NgZone, 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';
@@ -9,8 +9,9 @@ import { RpxTranslationService, RpxTranslatePipe } from 'rpx-xui-translation';
9
9
  import * as i3$1 from '@angular/forms';
10
10
  import { ControlValueAccessor, Validator, FormControl, AbstractControl, ValidationErrors, FormGroup, FormArray, ValidatorFn, FormBuilder } from '@angular/forms';
11
11
  import * as rxjs from 'rxjs';
12
- import { Observable, Subject, ConnectableObservable, BehaviorSubject, Subscribable, Subscription } from 'rxjs';
12
+ import { Observable, BehaviorSubject, ConnectableObservable, Subject, Subscribable, Subscription } from 'rxjs';
13
13
  import { HttpErrorResponse, HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
14
+ import { OnConnectedArgs, OnDisconnectedArgs, WebPubSubClient } from '@azure/web-pubsub-client';
14
15
  import { Observable as Observable$1 } from 'rxjs-compat';
15
16
  import * as i144 from '@angular/material/legacy-dialog';
16
17
  import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
@@ -232,26 +233,25 @@ declare class TabsModule {
232
233
  static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
233
234
  }
234
235
 
235
- declare class ActivityBannerComponent implements OnInit {
236
+ declare class ActivityBannerComponent {
236
237
  bannerType: string;
237
238
  description: string;
238
239
  imageLink: string;
239
240
  constructor();
240
- ngOnInit(): void;
241
241
  static ɵfac: i0.ɵɵFactoryDeclaration<ActivityBannerComponent, never>;
242
242
  static ɵcmp: i0.ɵɵComponentDeclaration<ActivityBannerComponent, "ccd-activity-banner", never, { "bannerType": { "alias": "bannerType"; "required": false; }; "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
243
243
  }
244
244
 
245
- declare class ActivityIconComponent implements OnInit {
245
+ declare class ActivityIconComponent {
246
246
  description: string;
247
247
  imageLink: string;
248
248
  constructor();
249
- ngOnInit(): void;
250
249
  static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
251
250
  static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ccd-activity-icon", never, { "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
252
251
  }
253
252
 
254
253
  declare class ActivityInfo {
254
+ id?: string;
255
255
  forename: string;
256
256
  surname: string;
257
257
  }
@@ -581,88 +581,72 @@ declare class SessionStorageGuard implements CanActivate {
581
581
  static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageGuard>;
582
582
  }
583
583
 
584
- declare class ActivityService {
585
- private readonly http;
586
- private readonly appConfig;
587
- private readonly sessionStorageService;
588
- static get ACTIVITY_VIEW(): string;
589
- static get ACTIVITY_EDIT(): string;
590
- private readonly logger;
591
- constructor(http: HttpService, appConfig: AbstractAppConfig, sessionStorageService: SessionStorageService);
592
- get isEnabled(): boolean;
593
- static readonly DUMMY_CASE_REFERENCE = "0";
594
- private userAuthorised;
595
- private static handleHttpError;
596
- getOptions(): OptionsType;
597
- getActivities(...caseId: string[]): Observable<Activity[]>;
598
- postActivity(caseId: string, activity: string): Observable<Activity[]>;
599
- verifyUserIsAuthorized(): void;
600
- private activityUrl;
601
- private logUserMayNotBeAuthenticated;
602
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityService, never>;
603
- static ɵprov: i0.ɵɵInjectableDeclaration<ActivityService>;
584
+ declare class User {
585
+ id?: string;
586
+ forename: string;
587
+ surname: string;
604
588
  }
605
589
 
606
- declare class ActivityPollingService {
607
- private readonly activityService;
608
- private readonly ngZone;
609
- private readonly config;
610
- private readonly logger;
611
- private readonly pendingRequests;
612
- private currentTimeoutHandle;
613
- private pollActivitiesSubscription;
614
- private readonly pollConfig;
615
- private readonly batchCollectionDelayMs;
616
- private readonly maxRequestsPerBatch;
617
- constructor(activityService: ActivityService, ngZone: NgZone, config: AbstractAppConfig);
618
- get isEnabled(): boolean;
619
- subscribeToActivity(caseId: string, done: (activity: Activity) => void): Subject<Activity>;
620
- stopPolling(): void;
621
- flushRequests(): void;
622
- pollActivities(...caseIds: string[]): Observable<Activity[]>;
623
- postViewActivity(caseId: string): Observable<Activity[]>;
624
- postEditActivity(caseId: string): Observable<Activity[]>;
625
- protected performBatchRequest(requests: Map<string, Subject<Activity>>): void;
626
- private postActivity;
627
- private addPendingRequest;
628
- private removePendingRequest;
629
- private polling;
630
- private getExponentialRetryDelay;
631
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityPollingService, never>;
632
- static ɵprov: i0.ɵɵInjectableDeclaration<ActivityPollingService>;
590
+ declare class CaseActivityInfo {
591
+ caseId: string;
592
+ unknownViewers: number;
593
+ unknownEditors: number;
594
+ editors: User[];
595
+ viewers: User[];
633
596
  }
634
597
 
635
- declare class ActivityComponent implements OnInit, OnDestroy {
636
- private readonly activityPollingService;
637
- activity: Activity;
638
- dspMode: typeof DisplayMode;
639
- viewersText: string;
640
- editorsText: string;
641
- subscription: Subject<Activity>;
642
- caseId: string;
643
- displayMode: DisplayMode;
644
- private readonly VIEWERS_PREFIX;
645
- private readonly VIEWERS_SUFFIX;
646
- private readonly EDITORS_PREFIX;
647
- private readonly EDITORS_SUFFIX;
648
- constructor(activityPollingService: ActivityPollingService);
649
- ngOnInit(): void;
650
- onActivityChange(newActivity: Activity): void;
651
- isActivityEnabled(): boolean;
652
- isActiveCase(): number;
653
- viewersPresent(): boolean;
654
- editorsPresent(): boolean;
655
- ngOnDestroy(): void;
656
- generateDescription(prefix: string, suffix: string, namesArray: ActivityInfo[], unknownCount: any): string;
657
- private replaceLastCommaWithAnd;
658
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityComponent, never>;
659
- static ɵcmp: i0.ɵɵComponentDeclaration<ActivityComponent, "ccd-activity", never, { "caseId": { "alias": "caseId"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; }; }, {}, never, never, false, never>;
598
+ declare class CaseActivity {
599
+ case: CaseActivityInfo[];
660
600
  }
661
601
 
662
- declare class ActivityModule {
663
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityModule, never>;
664
- static ɵmod: i0.ɵɵNgModuleDeclaration<ActivityModule, [typeof ActivityComponent, typeof ActivityBannerComponent, typeof ActivityIconComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof ActivityComponent, typeof ActivityBannerComponent, typeof ActivityIconComponent]>;
665
- static ɵinj: i0.ɵɵInjectorDeclaration<ActivityModule>;
602
+ declare class AddressModel {
603
+ AddressLine1: string;
604
+ AddressLine2: string;
605
+ AddressLine3: string;
606
+ PostTown: string;
607
+ County: string;
608
+ PostCode: string;
609
+ Country: string;
610
+ }
611
+
612
+ type AlertLevel = 'error' | 'success' | 'message' | 'warning';
613
+
614
+ declare class Alert {
615
+ level: AlertLevel;
616
+ message: string;
617
+ }
618
+
619
+ declare class CaseDetails {
620
+ id: string;
621
+ jurisdiction: string;
622
+ case_type_id: string;
623
+ state: string;
624
+ created_date?: string;
625
+ last_modified?: string;
626
+ locked_by_user_id?: string;
627
+ security_level?: string;
628
+ case_data?: object;
629
+ }
630
+
631
+ interface CaseEditModel {
632
+ wizard: Wizard;
633
+ currentPageId: string;
634
+ eventTrigger: CaseEventTrigger;
635
+ form: FormGroup;
636
+ eventCanBeCompleted: boolean;
637
+ caseDetails: CaseView;
638
+ caseEventData: CaseEventData;
639
+ submit(caseEventData: CaseEventData, profile?: Profile): Observable$1<object>;
640
+ }
641
+ interface CaseEditGetNextPage extends Pick<CaseEditModel, 'wizard' | 'currentPageId' | 'eventTrigger' | 'form'> {
642
+ }
643
+ interface CaseEditSubmitForm extends Pick<CaseEditModel, 'eventTrigger' | 'form' | 'caseDetails' | 'submit'> {
644
+ }
645
+ interface CaseEditGenerateCaseEventData extends Pick<CaseEditModel, 'eventTrigger' | 'form'> {
646
+ }
647
+ interface CaseEditCaseSubmit extends Pick<CaseEditModel, 'form' | 'caseEventData' | 'submit'> {
648
+ }
649
+ interface CaseEditonEventCanBeCompleted extends Pick<CaseEditModel, 'eventCanBeCompleted' | 'eventTrigger' | 'caseDetails' | 'form' | 'submit'> {
666
650
  }
667
651
 
668
652
  declare class CaseEventData {
@@ -840,106 +824,6 @@ declare class CaseEventTrigger {
840
824
  hasPages(): boolean;
841
825
  }
842
826
 
843
- declare class CaseDetails {
844
- id: string;
845
- jurisdiction: string;
846
- case_type_id: string;
847
- state: string;
848
- created_date?: string;
849
- last_modified?: string;
850
- locked_by_user_id?: string;
851
- security_level?: string;
852
- case_data?: object;
853
- }
854
-
855
- declare const DRAFT_PREFIX = "DRAFT";
856
- declare const DRAFT_QUERY_PARAM = "draft";
857
- declare class Draft {
858
- id: string;
859
- document?: CaseDetails;
860
- type?: string;
861
- created?: string;
862
- updated?: string;
863
- static stripDraftId(draftId: string): string;
864
- static isDraft(id: string): boolean;
865
- }
866
-
867
- type AlertLevel = 'error' | 'success' | 'message' | 'warning';
868
-
869
- interface AlertStatusParams {
870
- phrase: string;
871
- replacements?: Record<string, string>;
872
- preserve?: boolean;
873
- }
874
-
875
- declare class Alert {
876
- level: AlertLevel;
877
- message: string;
878
- }
879
-
880
- declare class AlertService {
881
- private readonly router;
882
- private readonly rpxTranslationService;
883
- preservedError: string;
884
- preservedWarning: string;
885
- preservedSuccess: string;
886
- message: string;
887
- level: AlertLevel;
888
- successes: ConnectableObservable<Alert>;
889
- errors: ConnectableObservable<Alert>;
890
- warnings: ConnectableObservable<Alert>;
891
- alerts: ConnectableObservable<Alert>;
892
- private successObserver;
893
- private errorObserver;
894
- private warningObserver;
895
- private alertObserver;
896
- private preserveAlerts;
897
- constructor(router: Router, rpxTranslationService: RpxTranslationService);
898
- clear(): void;
899
- error({ phrase, replacements }: Omit<AlertStatusParams, 'preserve'>): void;
900
- warning({ phrase, replacements }: Omit<AlertStatusParams, 'preserve'>): void;
901
- success({ preserve, phrase, replacements }: AlertStatusParams): void;
902
- private getTranslationWithReplacements;
903
- setPreserveAlerts(preserve: boolean, urlInfo?: string[]): void;
904
- currentUrlIncludesInfo(preserve: boolean, urlInfo: string[]): boolean;
905
- isPreserveAlerts(): boolean;
906
- preserveMessages(message: string): string;
907
- push(msgObject: any): void;
908
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
909
- static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
910
- }
911
-
912
- declare class AddressModel {
913
- AddressLine1: string;
914
- AddressLine2: string;
915
- AddressLine3: string;
916
- PostTown: string;
917
- County: string;
918
- PostCode: string;
919
- Country: string;
920
- }
921
-
922
- interface CaseEditModel {
923
- wizard: Wizard;
924
- currentPageId: string;
925
- eventTrigger: CaseEventTrigger;
926
- form: FormGroup;
927
- eventCanBeCompleted: boolean;
928
- caseDetails: CaseView;
929
- caseEventData: CaseEventData;
930
- submit(caseEventData: CaseEventData, profile?: Profile): Observable$1<object>;
931
- }
932
- interface CaseEditGetNextPage extends Pick<CaseEditModel, 'wizard' | 'currentPageId' | 'eventTrigger' | 'form'> {
933
- }
934
- interface CaseEditSubmitForm extends Pick<CaseEditModel, 'eventTrigger' | 'form' | 'caseDetails' | 'submit'> {
935
- }
936
- interface CaseEditGenerateCaseEventData extends Pick<CaseEditModel, 'eventTrigger' | 'form'> {
937
- }
938
- interface CaseEditCaseSubmit extends Pick<CaseEditModel, 'form' | 'caseEventData' | 'submit'> {
939
- }
940
- interface CaseEditonEventCanBeCompleted extends Pick<CaseEditModel, 'eventCanBeCompleted' | 'eventTrigger' | 'caseDetails' | 'form' | 'submit'> {
941
- }
942
-
943
827
  declare class CaseViewEvent {
944
828
  id: number;
945
829
  timestamp: string;
@@ -1019,317 +903,17 @@ declare class CaseType {
1019
903
  declare class Banner {
1020
904
  bannerDescription: string;
1021
905
  bannerUrlText: string;
1022
- bannerUrl: string;
1023
- bannerViewed: boolean;
1024
- bannerEnabled: boolean;
1025
- }
1026
-
1027
- declare class CaseTab implements Orderable {
1028
- id: string;
1029
- label: string;
1030
- order?: number;
1031
- fields: CaseField[];
1032
- show_condition?: string;
1033
- }
1034
-
1035
- declare class CasePrintDocument {
1036
- name: string;
1037
- type: string;
1038
- url: string;
1039
- }
1040
-
1041
- interface RoleRequestPayload {
1042
- roleRequest: RoleRequest;
1043
- requestedRoles: RequestedRole[];
1044
- }
1045
- interface RequestedRole {
1046
- actorIdType: 'IDAM';
1047
- actorId: string;
1048
- roleType: RoleType;
1049
- roleName: string;
1050
- classification: RoleClassification;
1051
- grantType: RoleGrantTypeCategory;
1052
- roleCategory: RoleCategory;
1053
- readOnly?: boolean;
1054
- beginTime: Date;
1055
- endTime: Date;
1056
- authorisations?: string[];
1057
- attributes: object;
1058
- notes: RequestedRoleNote[];
1059
- }
1060
- interface RoleRequest {
1061
- assignerId: string;
1062
- process: string;
1063
- replaceExisting: boolean;
1064
- reference: string;
1065
- }
1066
- interface RequestedRoleNote {
1067
- userId: string;
1068
- time: Date;
1069
- comment: string;
1070
- }
1071
- type RoleCategory = 'JUDICIAL' | 'LEGAL_OPERATIONS' | 'ADMIN' | 'PROFESSIONAL' | 'CITIZEN' | 'CTSC';
1072
- type RoleGrantTypeCategory = 'BASIC' | 'STANDARD' | 'SPECIFIC' | 'CHALLENGED' | 'EXCLUDED';
1073
- type RoleClassification = 'PUBLIC' | 'PRIVATE' | 'RESTRICTED';
1074
- type RoleType = 'ORGANISATION' | 'CASE';
1075
-
1076
- interface RoleAssignmentResponse {
1077
- roleRequest: RoleRequest;
1078
- requestedRoles: RequestedRole[];
1079
- }
1080
-
1081
- interface ChallengedAccessRequest {
1082
- reason: number;
1083
- caseReference: string | null;
1084
- otherReason: string | null;
1085
- }
1086
-
1087
- interface SpecificAccessRequest {
1088
- specificReason?: string;
1089
- }
1090
-
1091
- interface ReviewSpecificAccessRequest {
1092
- reason: number;
1093
- caseId: string;
1094
- }
1095
-
1096
- declare class HRef {
1097
- href: string;
1098
- }
1099
- declare class DocumentLinks {
1100
- self: HRef;
1101
- binary: HRef;
1102
- }
1103
- declare class Document {
1104
- _links: DocumentLinks;
1105
- originalDocumentName: string;
1106
- hashToken?: string;
1107
- }
1108
- declare class Embedded {
1109
- documents: Document[];
1110
- }
1111
- declare class DocumentData {
1112
- _embedded: Embedded;
1113
- documents: Document[];
1114
- }
1115
- declare class FormDocument {
1116
- document_url: string;
1117
- document_binary_url: string;
1118
- document_filename: string;
1119
- document_hash?: string;
1120
- upload_timestamp?: string;
1121
- }
1122
-
1123
- /**
1124
- * Cloned from rpx-xui-webapp src/app/models/error-message.model.ts
1125
- */
1126
- interface ErrorMessage {
1127
- title: string;
1128
- description: string;
1129
- fieldId?: string;
1130
- }
1131
-
1132
- interface Journey {
1133
- next(): void;
1134
- previous(): void;
1135
- hasNext(): boolean;
1136
- hasPrevious(): boolean;
1137
- isFinished(): boolean;
1138
- isStart(): boolean;
1139
- onPageChange(): void;
1140
- journeyId: string;
1141
- journeyPageNumber: number;
1142
- journeyStartPageNumber: number;
1143
- journeyEndPageNumber: number;
1144
- journeyPreviousPageNumber: number;
1145
- childJourney: Journey;
1146
- fieldState?: number;
1147
- linkedCasesPage?: number;
1148
- searchLanguageInterpreterHint?: any;
1149
- }
1150
-
1151
- interface JourneyInstigator {
1152
- onFinalNext(): void;
1153
- onFinalPrevious(): void;
1154
- }
1155
-
1156
- interface OrganisationSuperUser {
1157
- firstName: string;
1158
- lastName: string;
1159
- email: string;
1160
- }
1161
- interface OrganisationAddress {
1162
- addressLine1: string;
1163
- addressLine2: string;
1164
- addressLine3: string;
1165
- townCity: string;
1166
- county: string;
1167
- country: string;
1168
- postCode: string;
1169
- dxAddress: any[];
1170
- }
1171
- interface Organisation {
1172
- organisationIdentifier: string;
1173
- name: string;
1174
- status: string;
1175
- sraId: string;
1176
- sraRegulated: boolean;
1177
- companyNumber: string;
1178
- companyUrl: string;
1179
- superUser: OrganisationSuperUser;
1180
- paymentAccount: string[];
1181
- contactInformation: OrganisationAddress[];
1182
- }
1183
- interface OrganisationVm {
1184
- organisationIdentifier: string;
1185
- name: string;
1186
- addressLine1: string;
1187
- addressLine2: string;
1188
- addressLine3: string;
1189
- townCity: string;
1190
- county: string;
1191
- country: string;
1192
- postCode: string;
1193
- }
1194
- declare class OrganisationService {
1195
- private readonly http;
1196
- private readonly appconfig;
1197
- private readonly logger;
1198
- constructor(http: HttpClient, appconfig: AbstractAppConfig);
1199
- private organisations$;
1200
- static mapOrganisation(organisations: Organisation[]): OrganisationVm[];
1201
- getActiveOrganisations(): Observable<OrganisationVm[]>;
1202
- static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationService, never>;
1203
- static ɵprov: i0.ɵɵInjectableDeclaration<OrganisationService>;
1204
- }
1205
-
1206
- interface SimpleOrganisationModel {
1207
- organisationIdentifier: string;
1208
- name: string;
1209
- address: string;
1210
- }
1211
-
1212
- declare class OrganisationConverter {
1213
- private static toSimpleAddress;
1214
- toSimpleOrganisationModel(organisationModel: OrganisationVm): SimpleOrganisationModel;
1215
- static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationConverter, never>;
1216
- static ɵprov: i0.ɵɵInjectableDeclaration<OrganisationConverter>;
1217
- }
1218
-
1219
- declare class PaginationMetadata {
1220
- totalResultsCount: number;
1221
- totalPagesCount: number;
1222
- }
1223
-
1224
- type Predicate<T> = (value: T) => boolean;
1225
-
1226
- declare class Profile {
1227
- user: {
1228
- idam: {
1229
- id: string;
1230
- email: string;
1231
- forename: string;
1232
- surname: string;
1233
- roles: string[];
1234
- };
1235
- };
1236
- channels: string[];
1237
- jurisdictions: Jurisdiction[];
1238
- default: {
1239
- workbasket: {
1240
- jurisdiction_id: string;
1241
- case_type_id: string;
1242
- state_id: string;
1243
- };
1244
- };
1245
- isSolicitor(): boolean;
1246
- isCourtAdmin(): boolean;
1247
- }
1248
-
1249
- declare class Field {
1250
- id: string;
1251
- field_type: FieldType;
1252
- elementPath?: string;
1253
- value?: string;
1254
- label?: string;
1255
- metadata?: boolean;
1256
- constructor(id: string, field_type: FieldType, elementPath?: string, value?: string, label?: string, metadata?: boolean);
1257
- }
1258
-
1259
- declare class SearchResultViewColumn {
1260
- case_field_id: string;
1261
- case_field_type: FieldType;
1262
- display_context?: string;
1263
- display_context_parameter?: string;
1264
- label: string;
1265
- order: number;
1266
- }
1267
-
1268
- declare class SearchResultViewItem {
1269
- case_id: string;
1270
- case_fields: object;
1271
- hydrated_case_fields?: CaseField[];
1272
- columns?: object;
1273
- supplementary_data?: any;
1274
- display_context_parameter?: any;
1275
- }
1276
-
1277
- declare class SearchResultView {
1278
- columns: SearchResultViewColumn[];
1279
- results: SearchResultViewItem[];
1280
- result_error?: string;
1281
- hasDrafts(): boolean;
1282
- }
1283
-
1284
- interface SearchResultViewItemComparator {
1285
- compare(a: SearchResultViewItem, b: SearchResultViewItem): number;
1286
- }
1287
-
1288
- declare enum SortOrder$1 {
1289
- ASCENDING = 0,
1290
- DESCENDING = 1,
1291
- UNSORTED = 2
1292
- }
1293
-
1294
- declare class SortParameters {
1295
- comparator: SearchResultViewItemComparator;
1296
- sortOrder: SortOrder$1;
1297
- constructor(comparator: SearchResultViewItemComparator, sortOrder: SortOrder$1);
1298
- }
1299
-
1300
- interface TaskSearchParameter {
1301
- ccdId?: string;
1302
- eventId?: string;
1303
- jurisdiction?: string;
1304
- location?: string[];
1305
- postEventState?: string;
1306
- preEventState?: string;
1307
- state?: string[];
1308
- user?: string[];
1309
- caseTypeId?: string;
1310
- }
1311
- interface TaskSearchParameters {
1312
- parameters: TaskSearchParameter[];
1313
- }
1314
-
1315
- interface ServiceConfig {
1316
- serviceName: string;
1317
- caseTypes: string[];
1318
- releaseVersion: string;
1319
- }
1320
- interface WAFeatureConfig {
1321
- configurations?: ServiceConfig[];
906
+ bannerUrl: string;
907
+ bannerViewed: boolean;
908
+ bannerEnabled: boolean;
1322
909
  }
1323
910
 
1324
- declare class WorkbasketInputModel implements Orderable {
911
+ declare class CaseTab implements Orderable {
912
+ id: string;
1325
913
  label: string;
1326
- order: number;
1327
- field: Field;
1328
- metadata?: boolean;
1329
- display_context_parameter?: string;
1330
- }
1331
- declare class WorkbasketInput {
1332
- workbasketInputs: WorkbasketInputModel[];
914
+ order?: number;
915
+ fields: CaseField[];
916
+ show_condition?: string;
1333
917
  }
1334
918
 
1335
919
  interface FlagPath {
@@ -1619,6 +1203,96 @@ declare abstract class AbstractFieldWriteComponent extends AbstractFormFieldComp
1619
1203
  static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFieldWriteComponent, never, never, { "isExpanded": { "alias": "isExpanded"; "required": false; }; "isInSearchBlock": { "alias": "isInSearchBlock"; "required": false; }; }, {}, never, never, true, never>;
1620
1204
  }
1621
1205
 
1206
+ interface UserInfo {
1207
+ uid?: string;
1208
+ id: string;
1209
+ forename: string;
1210
+ surname: string;
1211
+ email: string;
1212
+ active: boolean;
1213
+ roles: string[];
1214
+ roleCategories?: RoleCategory[];
1215
+ roleCategory?: string;
1216
+ }
1217
+
1218
+ /**
1219
+ * Provides the real-time case activity API.
1220
+ *
1221
+ * The class name and socket mode values are retained for backwards compatibility with
1222
+ * consuming applications and their LaunchDarkly configuration. The underlying transport
1223
+ * is Azure Web PubSub.
1224
+ */
1225
+ declare class ActivitySocketService implements OnDestroy {
1226
+ private readonly sessionStorageService;
1227
+ private readonly activityService;
1228
+ static readonly SOCKET_MODES: MODES[];
1229
+ readonly activity: Observable<CaseActivityInfo[]>;
1230
+ readonly connect: Observable<OnConnectedArgs>;
1231
+ readonly connect_error: Observable<unknown>;
1232
+ readonly disconnect: Observable<OnDisconnectedArgs>;
1233
+ readonly connected: BehaviorSubject<boolean>;
1234
+ socket: WebPubSubClient;
1235
+ private readonly activitySubject;
1236
+ private readonly connectSubject;
1237
+ private readonly connectErrorSubject;
1238
+ private readonly disconnectSubject;
1239
+ private lastViewEmit;
1240
+ private lastEditEmit;
1241
+ private readonly emitCooldownMs;
1242
+ private modeSubscription?;
1243
+ private pUser;
1244
+ get user(): UserInfo;
1245
+ get isEnabled(): boolean;
1246
+ constructor(sessionStorageService: SessionStorageService, activityService: ActivityService);
1247
+ ngOnDestroy(): void;
1248
+ watchCases(caseIds: string[]): void;
1249
+ viewCase(caseId: string, isViewing?: boolean): void;
1250
+ editCase(caseId: string, isEditing?: boolean): void;
1251
+ stopCase(caseId: string, isStopping?: boolean): void;
1252
+ stopAllCase(caseIds: string[], isStopping?: boolean): void;
1253
+ startViewing(caseId: string): void;
1254
+ stopViewing(caseId: string): void;
1255
+ stopViewingCases(caseIds: string[]): void;
1256
+ startEditing(caseId: string): void;
1257
+ private init;
1258
+ private destroy;
1259
+ private sendEvent;
1260
+ private handleConnected;
1261
+ private handleDisconnected;
1262
+ private handleConnectError;
1263
+ private handleServerMessage;
1264
+ private handleGroupMessage;
1265
+ private handleActivityMessage;
1266
+ private static getSharedClient;
1267
+ private static registerSharedClientEvents;
1268
+ private static registerPageHideHandler;
1269
+ private static registerVisibilityChangeHandler;
1270
+ private static parseServerMessage;
1271
+ private static get sharedState();
1272
+ private static attachSharedClientOwner;
1273
+ private static detachSharedClientOwner;
1274
+ private static scheduleSharedClientClose;
1275
+ private static clearSharedClientCloseTimer;
1276
+ private static closeSharedClient;
1277
+ private static setDesiredActivity;
1278
+ private static setActiveActivity;
1279
+ private static clearDesiredActivity;
1280
+ private static clearDesiredActivityForCases;
1281
+ private static clearActiveActivity;
1282
+ private static clearActiveActivityForCases;
1283
+ private static clearActivityState;
1284
+ private static sendClientEvent;
1285
+ private static isPageVisible;
1286
+ private static removePageHideHandler;
1287
+ private static removeVisibilityChangeHandler;
1288
+ private static startSharedClientIfNeeded;
1289
+ private static scheduleSharedClientRestart;
1290
+ private static clearSharedClientRestart;
1291
+ private setupUser;
1292
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivitySocketService, never>;
1293
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActivitySocketService>;
1294
+ }
1295
+
1622
1296
  declare class AddressesService {
1623
1297
  private readonly http;
1624
1298
  private readonly appConfig;
@@ -1635,6 +1309,44 @@ declare class AddressesService {
1635
1309
  static ɵprov: i0.ɵɵInjectableDeclaration<AddressesService>;
1636
1310
  }
1637
1311
 
1312
+ interface AlertStatusParams {
1313
+ phrase: string;
1314
+ replacements?: Record<string, string>;
1315
+ preserve?: boolean;
1316
+ }
1317
+
1318
+ declare class AlertService {
1319
+ private readonly router;
1320
+ private readonly rpxTranslationService;
1321
+ preservedError: string;
1322
+ preservedWarning: string;
1323
+ preservedSuccess: string;
1324
+ message: string;
1325
+ level: AlertLevel;
1326
+ successes: ConnectableObservable<Alert>;
1327
+ errors: ConnectableObservable<Alert>;
1328
+ warnings: ConnectableObservable<Alert>;
1329
+ alerts: ConnectableObservable<Alert>;
1330
+ private successObserver;
1331
+ private errorObserver;
1332
+ private warningObserver;
1333
+ private alertObserver;
1334
+ private preserveAlerts;
1335
+ constructor(router: Router, rpxTranslationService: RpxTranslationService);
1336
+ clear(): void;
1337
+ error({ phrase, replacements }: Omit<AlertStatusParams, 'preserve'>): void;
1338
+ warning({ phrase, replacements }: Omit<AlertStatusParams, 'preserve'>): void;
1339
+ success({ preserve, phrase, replacements }: AlertStatusParams): void;
1340
+ private getTranslationWithReplacements;
1341
+ setPreserveAlerts(preserve: boolean, urlInfo?: string[]): void;
1342
+ currentUrlIncludesInfo(preserve: boolean, urlInfo: string[]): boolean;
1343
+ isPreserveAlerts(): boolean;
1344
+ preserveMessages(message: string): string;
1345
+ push(msgObject: any): void;
1346
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
1347
+ static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
1348
+ }
1349
+
1638
1350
  declare class CaseFieldService {
1639
1351
  isOptional(field: CaseField): boolean;
1640
1352
  isReadOnly(field: CaseField): boolean;
@@ -1817,6 +1529,33 @@ declare class ReadCookieService {
1817
1529
  static ɵprov: i0.ɵɵInjectableDeclaration<ReadCookieService>;
1818
1530
  }
1819
1531
 
1532
+ declare class HRef {
1533
+ href: string;
1534
+ }
1535
+ declare class DocumentLinks {
1536
+ self: HRef;
1537
+ binary: HRef;
1538
+ }
1539
+ declare class Document {
1540
+ _links: DocumentLinks;
1541
+ originalDocumentName: string;
1542
+ hashToken?: string;
1543
+ }
1544
+ declare class Embedded {
1545
+ documents: Document[];
1546
+ }
1547
+ declare class DocumentData {
1548
+ _embedded: Embedded;
1549
+ documents: Document[];
1550
+ }
1551
+ declare class FormDocument {
1552
+ document_url: string;
1553
+ document_binary_url: string;
1554
+ document_filename: string;
1555
+ document_hash?: string;
1556
+ upload_timestamp?: string;
1557
+ }
1558
+
1820
1559
  declare class DocumentManagementService {
1821
1560
  private readonly http;
1822
1561
  private readonly appConfig;
@@ -1864,6 +1603,36 @@ declare class DocumentManagementService {
1864
1603
  static ɵprov: i0.ɵɵInjectableDeclaration<DocumentManagementService>;
1865
1604
  }
1866
1605
 
1606
+ declare const DRAFT_PREFIX = "DRAFT";
1607
+ declare const DRAFT_QUERY_PARAM = "draft";
1608
+ declare class Draft {
1609
+ id: string;
1610
+ document?: CaseDetails;
1611
+ type?: string;
1612
+ created?: string;
1613
+ updated?: string;
1614
+ static stripDraftId(draftId: string): string;
1615
+ static isDraft(id: string): boolean;
1616
+ }
1617
+
1618
+ declare class DraftService {
1619
+ private readonly http;
1620
+ private readonly appConfig;
1621
+ private readonly errorService;
1622
+ static readonly V2_MEDIATYPE_DRAFT_CREATE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-create.v2+json;charset=UTF-8";
1623
+ static readonly V2_MEDIATYPE_DRAFT_UPDATE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-update.v2+json;charset=UTF-8";
1624
+ static readonly V2_MEDIATYPE_DRAFT_READ = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-read.v2+json;charset=UTF-8";
1625
+ static readonly V2_MEDIATYPE_DRAFT_DELETE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-delete.v2+json;charset=UTF-8";
1626
+ constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
1627
+ createDraft(ctid: string, eventData: CaseEventData): Observable<Draft>;
1628
+ updateDraft(ctid: string, draftId: string, eventData: CaseEventData): Observable<Draft>;
1629
+ getDraft(draftId: string): Observable<CaseView>;
1630
+ deleteDraft(draftId: string): Observable<{} | any>;
1631
+ createOrUpdateDraft(caseTypeId: string, draftId: string, caseEventData: CaseEventData): Observable<Draft>;
1632
+ static ɵfac: i0.ɵɵFactoryDeclaration<DraftService, never>;
1633
+ static ɵprov: i0.ɵɵInjectableDeclaration<DraftService>;
1634
+ }
1635
+
1867
1636
  declare class ErrorNotifierService {
1868
1637
  errorSource: Subject<any>;
1869
1638
  error: rxjs.Observable<any>;
@@ -2208,6 +1977,8 @@ declare enum EventCompletionStates {
2208
1977
  Final = "final"
2209
1978
  }
2210
1979
 
1980
+ type Predicate<T> = (value: T) => boolean;
1981
+
2211
1982
  declare class Wizard {
2212
1983
  pages: WizardPage[];
2213
1984
  private readonly orderService;
@@ -2669,6 +2440,29 @@ declare class OrderService {
2669
2440
  static ɵprov: i0.ɵɵInjectableDeclaration<OrderService>;
2670
2441
  }
2671
2442
 
2443
+ declare class Profile {
2444
+ user: {
2445
+ idam: {
2446
+ id: string;
2447
+ email: string;
2448
+ forename: string;
2449
+ surname: string;
2450
+ roles: string[];
2451
+ };
2452
+ };
2453
+ channels: string[];
2454
+ jurisdictions: Jurisdiction[];
2455
+ default: {
2456
+ workbasket: {
2457
+ jurisdiction_id: string;
2458
+ case_type_id: string;
2459
+ state_id: string;
2460
+ };
2461
+ };
2462
+ isSolicitor(): boolean;
2463
+ isCourtAdmin(): boolean;
2464
+ }
2465
+
2672
2466
  declare class ProfileService {
2673
2467
  private readonly httpService;
2674
2468
  private readonly appConfig;
@@ -2697,12 +2491,26 @@ declare class RequestOptionsBuilder {
2697
2491
  * @param value The value to be assessed.
2698
2492
  */
2699
2493
  private static includeParam;
2494
+ private static sanitiseValue;
2495
+ private static getValueByPath;
2496
+ private static getCollectionValues;
2497
+ private static appendParam;
2700
2498
  buildOptions(metaCriteria: object, caseCriteria: object, view?: SearchView): OptionsType;
2701
2499
  static ɵfac: i0.ɵɵFactoryDeclaration<RequestOptionsBuilder, never>;
2702
2500
  static ɵprov: i0.ɵɵInjectableDeclaration<RequestOptionsBuilder>;
2703
2501
  }
2704
2502
  type SearchView = 'SEARCH' | 'WORKBASKET';
2705
2503
 
2504
+ declare class Field {
2505
+ id: string;
2506
+ field_type: FieldType;
2507
+ elementPath?: string;
2508
+ value?: string;
2509
+ label?: string;
2510
+ metadata?: boolean;
2511
+ constructor(id: string, field_type: FieldType, elementPath?: string, value?: string, label?: string, metadata?: boolean);
2512
+ }
2513
+
2706
2514
  declare class SearchInput implements Orderable {
2707
2515
  label: string;
2708
2516
  order: number;
@@ -3204,6 +3012,69 @@ declare class ReadOrganisationFieldComponent extends AbstractFieldReadComponent
3204
3012
  static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldComponent, "ccd-read-organisation-field", never, { "caseFields": { "alias": "caseFields"; "required": false; }; }, {}, never, never, false, never>;
3205
3013
  }
3206
3014
 
3015
+ interface OrganisationSuperUser {
3016
+ firstName: string;
3017
+ lastName: string;
3018
+ email: string;
3019
+ }
3020
+ interface OrganisationAddress {
3021
+ addressLine1: string;
3022
+ addressLine2: string;
3023
+ addressLine3: string;
3024
+ townCity: string;
3025
+ county: string;
3026
+ country: string;
3027
+ postCode: string;
3028
+ dxAddress: any[];
3029
+ }
3030
+ interface Organisation {
3031
+ organisationIdentifier: string;
3032
+ name: string;
3033
+ status: string;
3034
+ sraId: string;
3035
+ sraRegulated: boolean;
3036
+ companyNumber: string;
3037
+ companyUrl: string;
3038
+ superUser: OrganisationSuperUser;
3039
+ paymentAccount: string[];
3040
+ contactInformation: OrganisationAddress[];
3041
+ }
3042
+ interface OrganisationVm {
3043
+ organisationIdentifier: string;
3044
+ name: string;
3045
+ addressLine1: string;
3046
+ addressLine2: string;
3047
+ addressLine3: string;
3048
+ townCity: string;
3049
+ county: string;
3050
+ country: string;
3051
+ postCode: string;
3052
+ }
3053
+ declare class OrganisationService {
3054
+ private readonly http;
3055
+ private readonly appconfig;
3056
+ private readonly logger;
3057
+ constructor(http: HttpClient, appconfig: AbstractAppConfig);
3058
+ private organisations$;
3059
+ static mapOrganisation(organisations: Organisation[]): OrganisationVm[];
3060
+ getActiveOrganisations(): Observable<OrganisationVm[]>;
3061
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationService, never>;
3062
+ static ɵprov: i0.ɵɵInjectableDeclaration<OrganisationService>;
3063
+ }
3064
+
3065
+ interface SimpleOrganisationModel {
3066
+ organisationIdentifier: string;
3067
+ name: string;
3068
+ address: string;
3069
+ }
3070
+
3071
+ declare class OrganisationConverter {
3072
+ private static toSimpleAddress;
3073
+ toSimpleOrganisationModel(organisationModel: OrganisationVm): SimpleOrganisationModel;
3074
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationConverter, never>;
3075
+ static ɵprov: i0.ɵɵInjectableDeclaration<OrganisationConverter>;
3076
+ }
3077
+
3207
3078
  declare class ReadOrganisationFieldTableComponent extends AbstractFieldReadComponent implements OnInit {
3208
3079
  private readonly organisationService;
3209
3080
  private readonly organisationConverter;
@@ -4183,20 +4054,16 @@ interface Caseworker {
4183
4054
  idamId: string;
4184
4055
  email: string;
4185
4056
  location: Location;
4186
- roleCategory: string;
4057
+ roleCategories: string[];
4187
4058
  service?: string;
4188
4059
  }
4189
- interface CaseworkersByService {
4190
- service: string;
4191
- caseworkers: Caseworker[];
4192
- }
4193
4060
 
4194
4061
  declare class CaseworkerService {
4195
4062
  private readonly http;
4196
4063
  private readonly appConfig;
4197
4064
  private readonly errorService;
4198
4065
  constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
4199
- getCaseworkers(serviceId: any): Observable<CaseworkersByService[]>;
4066
+ getUserByIdamId(idamId: string): Observable<Caseworker>;
4200
4067
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
4201
4068
  static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
4202
4069
  }
@@ -5004,7 +4871,7 @@ declare enum QueryCreateContext {
5004
4871
  HMCTSSTAFF = "HMCTS"
5005
4872
  }
5006
4873
 
5007
- declare enum SortOrder {
4874
+ declare enum SortOrder$1 {
5008
4875
  ASCENDING = 0,
5009
4876
  DESCENDING = 1,
5010
4877
  UNSORTED = 2
@@ -5013,7 +4880,7 @@ declare enum SortOrder {
5013
4880
  interface QueryListColumn {
5014
4881
  name: string;
5015
4882
  displayName: string;
5016
- sortOrder: SortOrder;
4883
+ sortOrder: SortOrder$1;
5017
4884
  }
5018
4885
 
5019
4886
  declare enum QueryItemResponseStatus {
@@ -5580,6 +5447,31 @@ declare class CaseReferencePipe implements PipeTransform {
5580
5447
  static ɵpipe: i0.ɵɵPipeDeclaration<CaseReferencePipe, "ccdCaseReference", false>;
5581
5448
  }
5582
5449
 
5450
+ declare class SearchResultViewItem {
5451
+ case_id: string;
5452
+ case_fields: object;
5453
+ hydrated_case_fields?: CaseField[];
5454
+ columns?: object;
5455
+ supplementary_data?: any;
5456
+ display_context_parameter?: any;
5457
+ }
5458
+
5459
+ declare enum SortOrder {
5460
+ ASCENDING = 0,
5461
+ DESCENDING = 1,
5462
+ UNSORTED = 2
5463
+ }
5464
+
5465
+ interface SearchResultViewItemComparator {
5466
+ compare(a: SearchResultViewItem, b: SearchResultViewItem): number;
5467
+ }
5468
+
5469
+ declare class SortParameters {
5470
+ comparator: SearchResultViewItemComparator;
5471
+ sortOrder: SortOrder;
5472
+ constructor(comparator: SearchResultViewItemComparator, sortOrder: SortOrder);
5473
+ }
5474
+
5583
5475
  declare class SortSearchResultPipe implements PipeTransform {
5584
5476
  transform(searchResults: SearchResultViewItem[], sortParameters: SortParameters): SearchResultViewItem[];
5585
5477
  static ɵfac: i0.ɵɵFactoryDeclaration<SortSearchResultPipe, never>;
@@ -5783,7 +5675,7 @@ declare class LabelSubstitutorDirective implements OnInit, OnDestroy {
5783
5675
  private readonly rpxTranslationService;
5784
5676
  caseField: CaseField;
5785
5677
  contextFields: CaseField[];
5786
- formGroup: FormGroup;
5678
+ formGroup: FormGroup | AbstractControl | undefined;
5787
5679
  elementsToSubstitute: string[];
5788
5680
  private initialLabel;
5789
5681
  private initialHintText;
@@ -6007,6 +5899,22 @@ declare class SearchFiltersModule {
6007
5899
  static ɵinj: i0.ɵɵInjectorDeclaration<SearchFiltersModule>;
6008
5900
  }
6009
5901
 
5902
+ declare class SearchResultViewColumn {
5903
+ case_field_id: string;
5904
+ case_field_type: FieldType;
5905
+ display_context?: string;
5906
+ display_context_parameter?: string;
5907
+ label: string;
5908
+ order: number;
5909
+ }
5910
+
5911
+ declare class SearchResultView {
5912
+ columns: SearchResultViewColumn[];
5913
+ results: SearchResultViewItem[];
5914
+ result_error?: string;
5915
+ hasDrafts(): boolean;
5916
+ }
5917
+
6010
5918
  declare class SearchService {
6011
5919
  private readonly appConfig;
6012
5920
  private readonly httpService;
@@ -6154,22 +6062,275 @@ declare class CaseView {
6154
6062
  case_flag?: Flags;
6155
6063
  }
6156
6064
 
6157
- declare class DraftService {
6065
+ declare class CasePrintDocument {
6066
+ name: string;
6067
+ type: string;
6068
+ url: string;
6069
+ }
6070
+
6071
+ interface RoleRequestPayload {
6072
+ roleRequest: RoleRequest;
6073
+ requestedRoles: RequestedRole[];
6074
+ }
6075
+ interface RequestedRole {
6076
+ actorIdType: 'IDAM';
6077
+ actorId: string;
6078
+ roleType: RoleType;
6079
+ roleName: string;
6080
+ classification: RoleClassification;
6081
+ grantType: RoleGrantTypeCategory;
6082
+ roleCategory: RoleCategory;
6083
+ readOnly?: boolean;
6084
+ beginTime: Date;
6085
+ endTime: Date;
6086
+ authorisations?: string[];
6087
+ attributes: object;
6088
+ notes: RequestedRoleNote[];
6089
+ }
6090
+ interface RoleRequest {
6091
+ assignerId: string;
6092
+ process: string;
6093
+ replaceExisting: boolean;
6094
+ reference: string;
6095
+ }
6096
+ interface RequestedRoleNote {
6097
+ userId: string;
6098
+ time: Date;
6099
+ comment: string;
6100
+ }
6101
+ type RoleCategory = 'JUDICIAL' | 'LEGAL_OPERATIONS' | 'ADMIN' | 'PROFESSIONAL' | 'CITIZEN' | 'CTSC';
6102
+ type RoleGrantTypeCategory = 'BASIC' | 'STANDARD' | 'SPECIFIC' | 'CHALLENGED' | 'EXCLUDED';
6103
+ type RoleClassification = 'PUBLIC' | 'PRIVATE' | 'RESTRICTED';
6104
+ type RoleType = 'ORGANISATION' | 'CASE';
6105
+
6106
+ interface RoleAssignmentResponse {
6107
+ roleRequest: RoleRequest;
6108
+ requestedRoles: RequestedRole[];
6109
+ }
6110
+
6111
+ interface ChallengedAccessRequest {
6112
+ reason: number;
6113
+ caseReference: string | null;
6114
+ otherReason: string | null;
6115
+ }
6116
+
6117
+ interface SpecificAccessRequest {
6118
+ specificReason?: string;
6119
+ }
6120
+
6121
+ interface ReviewSpecificAccessRequest {
6122
+ reason: number;
6123
+ caseId: string;
6124
+ }
6125
+
6126
+ /**
6127
+ * Cloned from rpx-xui-webapp src/app/models/error-message.model.ts
6128
+ */
6129
+ interface ErrorMessage {
6130
+ title: string;
6131
+ description: string;
6132
+ fieldId?: string;
6133
+ }
6134
+
6135
+ interface Journey {
6136
+ next(): void;
6137
+ previous(): void;
6138
+ hasNext(): boolean;
6139
+ hasPrevious(): boolean;
6140
+ isFinished(): boolean;
6141
+ isStart(): boolean;
6142
+ onPageChange(): void;
6143
+ journeyId: string;
6144
+ journeyPageNumber: number;
6145
+ journeyStartPageNumber: number;
6146
+ journeyEndPageNumber: number;
6147
+ journeyPreviousPageNumber: number;
6148
+ childJourney: Journey;
6149
+ fieldState?: number;
6150
+ linkedCasesPage?: number;
6151
+ searchLanguageInterpreterHint?: any;
6152
+ }
6153
+
6154
+ interface JourneyInstigator {
6155
+ onFinalNext(): void;
6156
+ onFinalPrevious(): void;
6157
+ }
6158
+
6159
+ declare class PaginationMetadata {
6160
+ totalResultsCount: number;
6161
+ totalPagesCount: number;
6162
+ }
6163
+
6164
+ interface TaskSearchParameter {
6165
+ ccdId?: string;
6166
+ eventId?: string;
6167
+ jurisdiction?: string;
6168
+ location?: string[];
6169
+ postEventState?: string;
6170
+ preEventState?: string;
6171
+ state?: string[];
6172
+ user?: string[];
6173
+ caseTypeId?: string;
6174
+ }
6175
+ interface TaskSearchParameters {
6176
+ parameters: TaskSearchParameter[];
6177
+ }
6178
+
6179
+ interface ServiceConfig {
6180
+ serviceName: string;
6181
+ caseTypes: string[];
6182
+ releaseVersion: string;
6183
+ }
6184
+ interface WAFeatureConfig {
6185
+ configurations?: ServiceConfig[];
6186
+ }
6187
+
6188
+ declare class WorkbasketInputModel implements Orderable {
6189
+ label: string;
6190
+ order: number;
6191
+ field: Field;
6192
+ metadata?: boolean;
6193
+ display_context_parameter?: string;
6194
+ }
6195
+ declare class WorkbasketInput {
6196
+ workbasketInputs: WorkbasketInputModel[];
6197
+ }
6198
+
6199
+ declare enum MODES {
6200
+ off = "off",
6201
+ polling = "polling",
6202
+ socket = "socket",
6203
+ socketLongPoll = "socket-long-poll"
6204
+ }
6205
+
6206
+ interface WebPubSubConnection {
6207
+ url: string;
6208
+ }
6209
+ declare class ActivityService {
6158
6210
  private readonly http;
6159
6211
  private readonly appConfig;
6160
- private readonly errorService;
6161
- static readonly V2_MEDIATYPE_DRAFT_CREATE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-create.v2+json;charset=UTF-8";
6162
- static readonly V2_MEDIATYPE_DRAFT_UPDATE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-update.v2+json;charset=UTF-8";
6163
- static readonly V2_MEDIATYPE_DRAFT_READ = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-read.v2+json;charset=UTF-8";
6164
- static readonly V2_MEDIATYPE_DRAFT_DELETE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-draft-delete.v2+json;charset=UTF-8";
6165
- constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
6166
- createDraft(ctid: string, eventData: CaseEventData): Observable<Draft>;
6167
- updateDraft(ctid: string, draftId: string, eventData: CaseEventData): Observable<Draft>;
6168
- getDraft(draftId: string): Observable<CaseView>;
6169
- deleteDraft(draftId: string): Observable<{} | any>;
6170
- createOrUpdateDraft(caseTypeId: string, draftId: string, caseEventData: CaseEventData): Observable<Draft>;
6171
- static ɵfac: i0.ɵɵFactoryDeclaration<DraftService, never>;
6172
- static ɵprov: i0.ɵɵInjectableDeclaration<DraftService>;
6212
+ private readonly sessionStorageService;
6213
+ static readonly WEB_PUBSUB_NEGOTIATE_URL = "/web-pubsub/negotiate";
6214
+ private readonly logger;
6215
+ constructor(http: HttpService, appConfig: AbstractAppConfig, sessionStorageService: SessionStorageService);
6216
+ get isEnabled(): boolean;
6217
+ static readonly MODES: typeof MODES;
6218
+ static readonly DUMMY_CASE_REFERENCE = "0";
6219
+ static get ACTIVITY_VIEW(): string;
6220
+ static get ACTIVITY_EDIT(): string;
6221
+ readonly modeSubject: BehaviorSubject<MODES>;
6222
+ private userAuthorised;
6223
+ private pMode;
6224
+ get mode(): MODES;
6225
+ set mode(value: MODES);
6226
+ private pActivityUrl;
6227
+ private pActivityUrlSet;
6228
+ private get activityUrl();
6229
+ private static handleHttpError;
6230
+ getOptions(): OptionsType;
6231
+ getActivities(...caseId: string[]): Observable<Activity[]>;
6232
+ postActivity(caseId: string, activity: string): Observable<Activity[]>;
6233
+ negotiateWebPubSubConnection(): Observable<WebPubSubConnection>;
6234
+ verifyUserIsAuthorized(): void;
6235
+ private setupActivityUrl;
6236
+ private logUserMayNotBeAuthenticated;
6237
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityService, never>;
6238
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActivityService>;
6239
+ }
6240
+
6241
+ declare class ActivityPollingService {
6242
+ private readonly activityService;
6243
+ private readonly ngZone;
6244
+ private readonly config;
6245
+ private readonly pendingRequests;
6246
+ private currentTimeoutHandle;
6247
+ private pollActivitiesSubscription;
6248
+ private pollConfig;
6249
+ private batchCollectionDelayMs;
6250
+ private maxRequestsPerBatch;
6251
+ constructor(activityService: ActivityService, ngZone: NgZone, config: AbstractAppConfig);
6252
+ get isEnabled(): boolean;
6253
+ subscribeToActivity(caseId: string, done: (activity: Activity) => void): Subject<Activity>;
6254
+ stopPolling(): void;
6255
+ flushRequests(): void;
6256
+ pollActivities(...caseIds: string[]): Observable<Activity[]>;
6257
+ postViewActivity(caseId: string): Observable<Activity[]>;
6258
+ postEditActivity(caseId: string): Observable<Activity[]>;
6259
+ private init;
6260
+ private performBatchRequest;
6261
+ private createActivitiesHandler;
6262
+ private processActivitiesInsideZone;
6263
+ private createErrorHandler;
6264
+ private handlePollingError;
6265
+ private postActivity;
6266
+ private addPendingRequest;
6267
+ private removePendingRequest;
6268
+ private polling;
6269
+ private getExponentialRetryDelay;
6270
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityPollingService, never>;
6271
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActivityPollingService>;
6272
+ }
6273
+
6274
+ declare class ActivityComponent implements OnInit, OnDestroy {
6275
+ private readonly activityPollingService;
6276
+ activity: Activity;
6277
+ dspMode: typeof DisplayMode;
6278
+ viewersText: string;
6279
+ editorsText: string;
6280
+ subscription: Subject<Activity>;
6281
+ caseId: string;
6282
+ displayMode: DisplayMode;
6283
+ private readonly VIEWERS_PREFIX;
6284
+ private readonly VIEWERS_SUFFIX;
6285
+ private readonly EDITORS_PREFIX;
6286
+ private readonly EDITORS_SUFFIX;
6287
+ constructor(activityPollingService: ActivityPollingService);
6288
+ ngOnInit(): void;
6289
+ onActivityChange(newActivity: Activity): void;
6290
+ isActivityEnabled(): boolean;
6291
+ isActiveCase(): number;
6292
+ viewersPresent(): boolean;
6293
+ editorsPresent(): boolean;
6294
+ ngOnDestroy(): void;
6295
+ generateDescription(prefix: string, suffix: string, namesArray: ActivityInfo[], unknownCount: any): string;
6296
+ private replaceLastCommaWithAnd;
6297
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityComponent, never>;
6298
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActivityComponent, "ccd-activity", never, { "caseId": { "alias": "caseId"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; }; }, {}, never, never, false, never>;
6299
+ }
6300
+
6301
+ interface ActivityDetails {
6302
+ viewers: string;
6303
+ editors: string;
6304
+ }
6305
+ declare class CaseActivityComponent implements OnInit, OnDestroy {
6306
+ private readonly activityService;
6307
+ private readonly polling;
6308
+ private readonly socket;
6309
+ private readonly sessionStorageService;
6310
+ caseId: string;
6311
+ iconOnly: boolean;
6312
+ private pActivity;
6313
+ get activity(): ActivityDetails;
6314
+ private modeSubscription;
6315
+ private pollingSubject;
6316
+ private socketSubscription;
6317
+ constructor(activityService: ActivityService, polling: ActivityPollingService, socket: ActivitySocketService, sessionStorageService: SessionStorageService);
6318
+ ngOnInit(): void;
6319
+ ngOnDestroy(): void;
6320
+ private initPolling;
6321
+ private initSocket;
6322
+ private destroy;
6323
+ private destroyPolling;
6324
+ private destroySocket;
6325
+ private handleActivity;
6326
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseActivityComponent, never>;
6327
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseActivityComponent, "ccd-case-activity", never, { "caseId": { "alias": "caseId"; "required": false; }; "iconOnly": { "alias": "iconOnly"; "required": false; }; }, {}, never, never, false, never>;
6328
+ }
6329
+
6330
+ declare class ActivityModule {
6331
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityModule, never>;
6332
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ActivityModule, [typeof ActivityComponent, typeof CaseActivityComponent, typeof ActivityBannerComponent, typeof ActivityIconComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof ActivityComponent, typeof CaseActivityComponent, typeof ActivityBannerComponent, typeof ActivityIconComponent]>;
6333
+ static ɵinj: i0.ɵɵInjectorDeclaration<ActivityModule>;
6173
6334
  }
6174
6335
 
6175
6336
  declare class CaseCreateComponent implements OnInit {
@@ -6433,6 +6594,8 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6433
6594
  saveDraftSub: Subscription;
6434
6595
  caseFormValidationErrorsSub: Subscription;
6435
6596
  private readonly logger;
6597
+ private readonly fieldsUtils;
6598
+ private readonly placeholderService;
6436
6599
  private readonly caseEditFormComponents;
6437
6600
  private static scrollToTop;
6438
6601
  constructor(caseEdit: CaseEditComponent, route: ActivatedRoute, formValueService: FormValueService, formErrorService: FormErrorService, cdRef: ChangeDetectorRef, pageValidationService: PageValidationService, dialog: MatLegacyDialog, caseFieldService: CaseFieldService, caseEditDataService: CaseEditDataService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, multipageComponentStateService: MultipageComponentStateService, addressService: AddressesService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService, focusService: FocusService);
@@ -6500,6 +6663,8 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6500
6663
  getRpxTranslatePipeArgs(fieldLabel: string): {
6501
6664
  FIELDLABEL: string;
6502
6665
  } | null;
6666
+ private getInterpolatedFieldLabel;
6667
+ private resolveLabelPlaceholders;
6503
6668
  onEventCanBeCompleted(eventCanBeCompleted: boolean): void;
6504
6669
  private removeAllJudicialUserFormControls;
6505
6670
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditPageComponent, never>;
@@ -6665,8 +6830,8 @@ declare class CaseAccessUtils {
6665
6830
  static readonly CTSC_ROLE = "ctsc";
6666
6831
  static readonly CTSC_ROLE_CATEGORY = "CTSC";
6667
6832
  static readonly CTSC_ROLE_NAME = "ctsc";
6668
- getMappedRoleCategory(roles?: string[], roleCategories?: string[]): RoleCategory;
6669
- roleOrCategoryExists(roleKeyword: string, roleCategory: string, roleKeywords: string[], roleCategories: string[]): boolean;
6833
+ getMappedRoleCategories(roles?: string[]): RoleCategory[];
6834
+ roleHasKeyword(keyword: string, roleWords: string[]): boolean;
6670
6835
  getAMRoleName(accessType: string, aMRole: RoleCategory): string;
6671
6836
  getAMPayload(assignerId: string, actorId: string, roleName: string, roleCategory: RoleCategory, grantType: RoleGrantTypeCategory, caseId: string, details: ChallengedAccessRequest | SpecificAccessRequest, beginTime?: Date, endTime?: Date, isNew?: boolean): RoleRequestPayload;
6672
6837
  }
@@ -6824,7 +6989,7 @@ declare class WorkbasketFiltersComponent implements OnInit {
6824
6989
  reset(): void;
6825
6990
  getMetadataFields(): string[];
6826
6991
  onJurisdictionIdChange(): void;
6827
- onCaseTypeIdChange(): void;
6992
+ onCaseTypeIdChange(clearStoredValues?: boolean): void;
6828
6993
  isCaseTypesDropdownDisabled(): boolean;
6829
6994
  isCaseStatesDropdownDisabled(): boolean;
6830
6995
  isApplyButtonDisabled(): boolean;
@@ -6850,6 +7015,7 @@ declare class WorkbasketFiltersComponent implements OnInit {
6850
7015
  private selectCaseTypeIdFromQueryOrDefaults;
6851
7016
  private resetFieldsWhenNoDefaults;
6852
7017
  private clearWorkbasketInputs;
7018
+ private clearStoredWorkbasketFilterValues;
6853
7019
  private resetCaseState;
6854
7020
  private resetCaseType;
6855
7021
  private setFocusToTop;
@@ -7033,7 +7199,9 @@ declare class CaseEventTriggerComponent implements OnInit, OnDestroy {
7033
7199
  private readonly activityPollingService;
7034
7200
  private readonly sessionStorageService;
7035
7201
  private readonly loadingService;
7036
- private eventTriggerResolver;
7202
+ private readonly eventTriggerResolver;
7203
+ private readonly activitySocketService;
7204
+ private readonly activityService;
7037
7205
  static readonly EVENT_COMPLETION_MESSAGE = "Case #%CASEREFERENCE% has been updated with event: %NAME%";
7038
7206
  static readonly CALLBACK_FAILED_MESSAGE = " but the callback service cannot be completed";
7039
7207
  BANNER: DisplayMode;
@@ -7041,11 +7209,14 @@ declare class CaseEventTriggerComponent implements OnInit, OnDestroy {
7041
7209
  caseDetails: CaseView;
7042
7210
  activitySubscription: Subscription;
7043
7211
  caseSubscription: Subscription;
7212
+ modeSubscription: Subscription;
7213
+ socketConnectSub: Subscription;
7044
7214
  parentUrl: string;
7045
7215
  routerCurrentNavigation: Navigation;
7046
- constructor(ngZone: NgZone, casesService: CasesService, caseNotifier: CaseNotifier, router: Router, alertService: AlertService, route: ActivatedRoute, caseReferencePipe: CaseReferencePipe, activityPollingService: ActivityPollingService, sessionStorageService: SessionStorageService, loadingService: LoadingService, eventTriggerResolver: EventTriggerResolver);
7216
+ constructor(ngZone: NgZone, casesService: CasesService, caseNotifier: CaseNotifier, router: Router, alertService: AlertService, route: ActivatedRoute, caseReferencePipe: CaseReferencePipe, activityPollingService: ActivityPollingService, sessionStorageService: SessionStorageService, loadingService: LoadingService, eventTriggerResolver: EventTriggerResolver, activitySocketService: ActivitySocketService, activityService: ActivityService);
7047
7217
  ngOnInit(): void;
7048
7218
  ngOnDestroy(): void;
7219
+ unsubscribe(subscription: Subscription): void;
7049
7220
  postEditActivity(): Observable<Activity[]>;
7050
7221
  submit(): (sanitizedEditForm: CaseEventData) => Observable<object>;
7051
7222
  validate(): (sanitizedEditForm: CaseEventData, pageId: string) => Observable<object>;
@@ -7105,6 +7276,8 @@ declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, OnChange
7105
7276
  private readonly navigationNotifierService;
7106
7277
  private readonly orderService;
7107
7278
  private readonly activityPollingService;
7279
+ private readonly activityService;
7280
+ private readonly activitySocketService;
7108
7281
  private readonly dialog;
7109
7282
  private readonly alertService;
7110
7283
  private readonly draftService;
@@ -7141,6 +7314,7 @@ declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, OnChange
7141
7314
  activitySubscription: Subscription;
7142
7315
  caseSubscription: Subscription;
7143
7316
  errorSubscription: Subscription;
7317
+ socketConnectSub: Subscription;
7144
7318
  dialogConfig: MatLegacyDialogConfig;
7145
7319
  message: string;
7146
7320
  subscription: Subscription;
@@ -7155,7 +7329,7 @@ declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, OnChange
7155
7329
  isEventButtonClicked: boolean;
7156
7330
  callbackErrorsSubject: Observable<any>;
7157
7331
  tabGroup: MatLegacyTabGroup;
7158
- constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, dialog: MatLegacyDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location$1, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService, rpxTranslationPipe: RpxTranslatePipe, loadingService: LoadingService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService, zone: NgZone);
7332
+ constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, activityService: ActivityService, activitySocketService: ActivitySocketService, dialog: MatLegacyDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location$1, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService, rpxTranslationPipe: RpxTranslatePipe, loadingService: LoadingService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService, zone: NgZone);
7159
7333
  ngOnInit(): void;
7160
7334
  ngOnChanges(changes: SimpleChanges): void;
7161
7335
  isPrintEnabled(): boolean;
@@ -7711,12 +7885,13 @@ declare class DialogsModule {
7711
7885
 
7712
7886
  declare function initDialog(): MatDialogConfig;
7713
7887
 
7714
- declare class SearchResultComponent implements OnChanges, OnInit {
7888
+ declare class SearchResultComponent implements OnChanges, OnDestroy, OnInit {
7715
7889
  private readonly activityService;
7716
7890
  private readonly caseReferencePipe;
7717
7891
  private readonly placeholderService;
7718
7892
  private readonly browserService;
7719
7893
  private readonly sessionStorageService;
7894
+ private readonly activitySocketService;
7720
7895
  static readonly PARAM_JURISDICTION = "jurisdiction";
7721
7896
  static readonly PARAM_CASE_TYPE = "case-type";
7722
7897
  static readonly PARAM_CASE_STATE = "case-state";
@@ -7756,12 +7931,17 @@ declare class SearchResultComponent implements OnChanges, OnInit {
7756
7931
  draftsCount: number;
7757
7932
  consumerSortParameters: {
7758
7933
  column: string;
7759
- order: SortOrder$1;
7934
+ order: SortOrder;
7760
7935
  type: string;
7761
7936
  };
7762
7937
  selectedCases: SearchResultViewItem[];
7763
- constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, sessionStorageService: SessionStorageService);
7938
+ private lastWatchedCaseIds;
7939
+ private lastWatchedCaseIdsKey;
7940
+ private socketConnectSubscription;
7941
+ private readonly alphabeticalCompare;
7942
+ constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, sessionStorageService: SessionStorageService, activitySocketService: ActivitySocketService);
7764
7943
  ngOnInit(): void;
7944
+ ngOnDestroy(): void;
7765
7945
  ngOnChanges(changes: SimpleChanges): void;
7766
7946
  isTranslatable(col: SearchResultViewColumn): boolean;
7767
7947
  get resultTotal(): number;
@@ -7784,7 +7964,7 @@ declare class SearchResultComponent implements OnChanges, OnInit {
7784
7964
  comparator(column: SearchResultViewColumn): SearchResultViewItemComparator;
7785
7965
  sort(column: SearchResultViewColumn): void;
7786
7966
  sortWidget(column: SearchResultViewColumn): "&#9660;" | "&#9650;";
7787
- activityEnabled(): boolean;
7967
+ get activityEnabled(): boolean;
7788
7968
  hyphenateIfCaseReferenceOrGet(col: any, result: any): any;
7789
7969
  draftPrefixOrGet(col: any, result: any): any;
7790
7970
  isSortAscending(column: SearchResultViewColumn): boolean;
@@ -7796,6 +7976,7 @@ declare class SearchResultComponent implements OnChanges, OnInit {
7796
7976
  private numberOfDrafts;
7797
7977
  goToCase(caseId: string): void;
7798
7978
  onKeyUp($event: KeyboardEvent, c: SearchResultViewItem): void;
7979
+ private watchResults;
7799
7980
  noop(): void;
7800
7981
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultComponent, never>;
7801
7982
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultComponent, "ccd-search-result", never, { "caseLinkUrlTemplate": { "alias": "caseLinkUrlTemplate"; "required": false; }; "jurisdiction": { "alias": "jurisdiction"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "caseState": { "alias": "caseState"; "required": false; }; "caseFilterFG": { "alias": "caseFilterFG"; "required": false; }; "resultView": { "alias": "resultView"; "required": false; }; "page": { "alias": "page"; "required": false; }; "paginationMetadata": { "alias": "paginationMetadata"; "required": false; }; "metadataFields": { "alias": "metadataFields"; "required": false; }; "selectionEnabled": { "alias": "selectionEnabled"; "required": false; }; "showOnlySelected": { "alias": "showOnlySelected"; "required": false; }; "preSelectedCases": { "alias": "preSelectedCases"; "required": false; }; "consumerSortingEnabled": { "alias": "consumerSortingEnabled"; "required": false; }; }, { "selection": "selection"; "changePage": "changePage"; "clickCase": "clickCase"; "sortHandler": "sortHandler"; }, never, never, false, never>;
@@ -7853,6 +8034,6 @@ declare class TestRouteSnapshotBuilder {
7853
8034
 
7854
8035
  declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
7855
8036
 
7856
- 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, FocusService, 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, StructuredLoggerService, 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 };
7857
- 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, StructuredLogEntry, StructuredLogLevel, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
8037
+ export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, ActivitySocketService, 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, CaseActivity, CaseActivityComponent, CaseActivityInfo, 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, FocusService, 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, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, User, 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 };
8038
+ 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, StructuredLogEntry, StructuredLogLevel, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig, WebPubSubConnection };
7858
8039
  //# sourceMappingURL=index.d.ts.map