cat-qw-lib 2.5.24 → 2.5.27
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/fesm2022/cat-qw-lib.mjs +49 -21
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/components/queue-filter-dropdown/queue-filter-dropdown.component.d.ts +0 -1
- package/lib/queue/services/queue-filter-dropdown.service.d.ts +11 -1
- package/lib/queue/state/queue.service.d.ts +1 -0
- package/lib/shared/constant/SHARED.d.ts +1 -1
- package/package.json +1 -1
|
@@ -17,7 +17,6 @@ export declare class QueueFilterDropdownComponent implements OnChanges, OnDestro
|
|
|
17
17
|
}>;
|
|
18
18
|
loadingUnderwriters: boolean;
|
|
19
19
|
filters: QueueFilter;
|
|
20
|
-
private searchSubject;
|
|
21
20
|
private searchSubscription?;
|
|
22
21
|
appliedFilters: any;
|
|
23
22
|
filterApplied: EventEmitter<any>;
|
|
@@ -26,12 +26,12 @@ export interface UnderwriterOption {
|
|
|
26
26
|
id: string;
|
|
27
27
|
name: string;
|
|
28
28
|
}
|
|
29
|
-
export declare const UNASSIGNED_UNDERWRITER_ID = "unassigned";
|
|
30
29
|
/**
|
|
31
30
|
*
|
|
32
31
|
*/
|
|
33
32
|
export declare class QueueFilterDropdownService extends BaseService<any> {
|
|
34
33
|
private configService;
|
|
34
|
+
private searchSubject;
|
|
35
35
|
constructor(http: HttpClient, configService: AppConfigService, store: BaseStore<any>, listService: ListService);
|
|
36
36
|
/**
|
|
37
37
|
* Override apiUrl to use the main API URL instead of catQwUrl
|
|
@@ -65,6 +65,16 @@ export declare class QueueFilterDropdownService extends BaseService<any> {
|
|
|
65
65
|
* @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
|
|
66
66
|
*/
|
|
67
67
|
getUnderwritersList(searchKey?: string): Observable<UnderwriterOption[]>;
|
|
68
|
+
/**
|
|
69
|
+
* Triggers a search for underwriters with debounce
|
|
70
|
+
* @param {string} searchKey - The search term to filter underwriters
|
|
71
|
+
*/
|
|
72
|
+
searchUnderwriters(searchKey?: string): void;
|
|
73
|
+
/**
|
|
74
|
+
* Returns an Observable that emits underwriter options with debounce and distinctUntilChanged
|
|
75
|
+
* @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
|
|
76
|
+
*/
|
|
77
|
+
getUnderwritersSearchObservable(): Observable<UnderwriterOption[]>;
|
|
68
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueFilterDropdownService, never>;
|
|
69
79
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueueFilterDropdownService>;
|
|
70
80
|
}
|
|
@@ -30,6 +30,7 @@ export declare class QueueService extends BaseService<QueueModel> {
|
|
|
30
30
|
/**
|
|
31
31
|
* Fetches paginated queue records using the provided apiConfig URL with search and pagination support.
|
|
32
32
|
* This is the unified method used for both initial data loading and search functionality.
|
|
33
|
+
* Uses POST method with underwriterIds and unassigned in body, other params in query string.
|
|
33
34
|
* @param {string} apiConfig - The full API endpoint to fetch records for the selected queue
|
|
34
35
|
* @param {string} [searchKey] - Optional search term
|
|
35
36
|
* @param {number} [page] - Page number (default: 1)
|
|
@@ -132,6 +132,7 @@ export declare class SHARED {
|
|
|
132
132
|
static TASK_COMPLETION_PERCENT: string;
|
|
133
133
|
static RISK_RATING: string;
|
|
134
134
|
static LENDING: string;
|
|
135
|
+
static UNASSIGNED_UNDERWRITER_ID: string;
|
|
135
136
|
}
|
|
136
137
|
export declare const widgetLayoutTypeList: {
|
|
137
138
|
name: string;
|
|
@@ -288,7 +289,6 @@ export declare const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST: {
|
|
|
288
289
|
applicants: string;
|
|
289
290
|
finance: string;
|
|
290
291
|
valuationStatus: string;
|
|
291
|
-
assignedTo: string;
|
|
292
292
|
sla: string;
|
|
293
293
|
appId: string;
|
|
294
294
|
tasks: string;
|