cat-qw-lib 2.5.24 → 2.5.25

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.
@@ -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>;
@@ -32,6 +32,7 @@ export declare const UNASSIGNED_UNDERWRITER_ID = "unassigned";
32
32
  */
33
33
  export declare class QueueFilterDropdownService extends BaseService<any> {
34
34
  private configService;
35
+ private searchSubject;
35
36
  constructor(http: HttpClient, configService: AppConfigService, store: BaseStore<any>, listService: ListService);
36
37
  /**
37
38
  * Override apiUrl to use the main API URL instead of catQwUrl
@@ -65,6 +66,16 @@ export declare class QueueFilterDropdownService extends BaseService<any> {
65
66
  * @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
66
67
  */
67
68
  getUnderwritersList(searchKey?: string): Observable<UnderwriterOption[]>;
69
+ /**
70
+ * Triggers a search for underwriters with debounce
71
+ * @param {string} searchKey - The search term to filter underwriters
72
+ */
73
+ searchUnderwriters(searchKey?: string): void;
74
+ /**
75
+ * Returns an Observable that emits underwriter options with debounce and distinctUntilChanged
76
+ * @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
77
+ */
78
+ getUnderwritersSearchObservable(): Observable<UnderwriterOption[]>;
68
79
  static ɵfac: i0.ɵɵFactoryDeclaration<QueueFilterDropdownService, never>;
69
80
  static ɵprov: i0.ɵɵInjectableDeclaration<QueueFilterDropdownService>;
70
81
  }
@@ -288,7 +288,6 @@ export declare const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST: {
288
288
  applicants: string;
289
289
  finance: string;
290
290
  valuationStatus: string;
291
- assignedTo: string;
292
291
  sla: string;
293
292
  appId: string;
294
293
  tasks: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "2.5.24",
3
+ "version": "2.5.25",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"