cat-qw-lib 2.6.44 → 2.6.48
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.
|
@@ -30,7 +30,8 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
30
30
|
selectedQueue: any;
|
|
31
31
|
currentSearchTerm: string;
|
|
32
32
|
selectedRows: any[];
|
|
33
|
-
loading
|
|
33
|
+
/** Only while loading the queue list (sidebar); never tied to record pagination. */
|
|
34
|
+
queueListLoading: boolean;
|
|
34
35
|
error: string | null;
|
|
35
36
|
filteredQueueData: any[];
|
|
36
37
|
selectedStatus: string;
|
|
@@ -48,7 +49,7 @@ export declare class QueueContainerComponent extends BaseContainerComponent<Queu
|
|
|
48
49
|
resetSort: boolean;
|
|
49
50
|
appliedFilters: any;
|
|
50
51
|
placeholder: string;
|
|
51
|
-
/** Snapshot of
|
|
52
|
+
/** Snapshot of the latest request; used to ignore stale responses. */
|
|
52
53
|
private latestRequestSnapshot;
|
|
53
54
|
filterDropdown: QueueFilterDropdownComponent;
|
|
54
55
|
set selectedRowsInput(rows: any[]);
|
|
@@ -42,9 +42,10 @@ export declare class QueueService extends BaseService<QueueModel> {
|
|
|
42
42
|
* @param {string} [query] - Optional query string for filtering
|
|
43
43
|
* @param {string} [sortBy] - Optional sort field
|
|
44
44
|
* @param {string} [sortOrder] - Optional sort order ('asc' or 'desc')
|
|
45
|
+
* @param {boolean} [useCache] - Whether to serve from / write to cache (default: true)
|
|
45
46
|
* @returns {Observable<any>} Observable emitting the paginated queue records
|
|
46
47
|
*/
|
|
47
|
-
getPaginatedQueueRecords(apiConfig: string, searchKey?: string, page?: number, limit?: number, query?: string, sortBy?: string, sortOrder?: string): Observable<any>;
|
|
48
|
+
getPaginatedQueueRecords(apiConfig: string, searchKey?: string, page?: number, limit?: number, query?: string, sortBy?: string, sortOrder?: string, useCache?: boolean): Observable<any>;
|
|
48
49
|
/**
|
|
49
50
|
* Fetches all queue entities from the configured data source.
|
|
50
51
|
* The entities are stored in the queueStore upon retrieval.
|