@sinequa/atomic-angular 1.0.13 → 1.0.15
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/sinequa-atomic-angular.mjs +57 -18
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +588 -158
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
|
5
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
6
|
import * as _sinequa_atomic from '@sinequa/atomic';
|
|
7
7
|
import { Article as Article$1, LegacyFilter, KeyOf, Query, QueryParams as QueryParams$1, AggregationItem, TreeAggregationNode, Aggregation, TreeAggregation, Conversion, CCApp, CCColumn, CCQuery, CCWebService, Principal, SpellingCorrectionMode, AuditEvents, CustomHighlights, Result, AuditEventType, AuditEventTypeValues, Suggestion, PreviewData, TextLocation, TextChunk, UserProfile, CCSortingChoice, LinkResult, ExportQueryModel, ExportOutputFormat, FilterOperator } from '@sinequa/atomic';
|
|
8
|
-
import { Router, NavigationEnd, ActivatedRoute, CanActivateFn, ResolveFn } from '@angular/router';
|
|
8
|
+
import { Router, NavigationEnd, ActivatedRoute, Params, CanActivateFn, ResolveFn } from '@angular/router';
|
|
9
9
|
import * as _sinequa_atomic_angular from '@sinequa/atomic-angular';
|
|
10
10
|
import * as _sinequa_ui from '@sinequa/ui';
|
|
11
11
|
import { cn, DialogService, DropdownComponent, SheetService, DateRangePickerDirective, DatepickerDirective, DialogComponent, DialogInterface, DialogEvent, PopoverComponent, PopoverContentComponent, DialogResult, BreakpointObserverService } from '@sinequa/ui';
|
|
@@ -114,17 +114,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
117
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
118
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
119
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
122
120
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
123
121
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
124
122
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
125
123
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
126
124
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
127
125
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
126
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
128
127
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
129
128
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
130
129
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -138,6 +137,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
138
137
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
139
138
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
140
139
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
140
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
141
141
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
142
142
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
143
143
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -169,17 +169,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
-
text?: string | undefined;
|
|
173
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
172
|
name?: string | undefined;
|
|
175
|
-
sort?: string | undefined;
|
|
176
173
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
174
|
+
text?: string | undefined;
|
|
177
175
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
178
176
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
179
177
|
page?: number | undefined;
|
|
180
178
|
pageSize?: number | undefined;
|
|
181
179
|
tab?: string | undefined;
|
|
182
180
|
scope?: string | undefined;
|
|
181
|
+
sort?: string | undefined;
|
|
183
182
|
basket?: string | undefined;
|
|
184
183
|
isFirstPage?: boolean | undefined;
|
|
185
184
|
strictRefine?: boolean | undefined;
|
|
@@ -193,6 +192,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
193
192
|
relevanceTransforms?: string | undefined;
|
|
194
193
|
removeDuplicates?: boolean | undefined;
|
|
195
194
|
queryId?: string | undefined;
|
|
195
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
196
196
|
orderBy?: string | undefined;
|
|
197
197
|
groupBy?: string | undefined;
|
|
198
198
|
neuralSearch?: boolean | undefined;
|
|
@@ -250,7 +250,7 @@ declare class MetadataComponent {
|
|
|
250
250
|
event: Event;
|
|
251
251
|
}>;
|
|
252
252
|
class: _angular_core.InputSignal<string | undefined>;
|
|
253
|
-
variant: _angular_core.InputSignal<"error" | "default" | "
|
|
253
|
+
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "ghost" | "info" | "success" | "warning" | null | undefined>;
|
|
254
254
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
255
255
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
256
256
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -263,17 +263,16 @@ declare class MetadataComponent {
|
|
|
263
263
|
declare class MissingTermsComponent {
|
|
264
264
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
265
265
|
queryParamsStore: {
|
|
266
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
268
266
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
270
267
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
268
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
271
269
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
272
270
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
273
271
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
274
272
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
275
273
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
276
274
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
276
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
278
277
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
279
278
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -287,6 +286,7 @@ declare class MissingTermsComponent {
|
|
|
287
286
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
288
287
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
289
288
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
289
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
290
290
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
291
291
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
292
292
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -318,17 +318,16 @@ declare class MissingTermsComponent {
|
|
|
318
318
|
}> | null;
|
|
319
319
|
getQuery: () => _sinequa_atomic.Query;
|
|
320
320
|
} & _ngrx_signals.StateSource<{
|
|
321
|
-
text?: string | undefined;
|
|
322
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
323
321
|
name?: string | undefined;
|
|
324
|
-
sort?: string | undefined;
|
|
325
322
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
323
|
+
text?: string | undefined;
|
|
326
324
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
327
325
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
328
326
|
page?: number | undefined;
|
|
329
327
|
pageSize?: number | undefined;
|
|
330
328
|
tab?: string | undefined;
|
|
331
329
|
scope?: string | undefined;
|
|
330
|
+
sort?: string | undefined;
|
|
332
331
|
basket?: string | undefined;
|
|
333
332
|
isFirstPage?: boolean | undefined;
|
|
334
333
|
strictRefine?: boolean | undefined;
|
|
@@ -342,6 +341,7 @@ declare class MissingTermsComponent {
|
|
|
342
341
|
relevanceTransforms?: string | undefined;
|
|
343
342
|
removeDuplicates?: boolean | undefined;
|
|
344
343
|
queryId?: string | undefined;
|
|
344
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
345
345
|
orderBy?: string | undefined;
|
|
346
346
|
groupBy?: string | undefined;
|
|
347
347
|
neuralSearch?: boolean | undefined;
|
|
@@ -361,7 +361,7 @@ declare class MissingTermsComponent {
|
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
declare const multiSelectionToolbarVariants: (props?: ({
|
|
364
|
-
variant?: "
|
|
364
|
+
variant?: "light" | "dark" | "glassy" | null | undefined;
|
|
365
365
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
366
366
|
type MultiSelectionToolbarVariants = VariantProps<typeof multiSelectionToolbarVariants>;
|
|
367
367
|
declare class MultiSelectionToolbarComponent {
|
|
@@ -418,6 +418,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
418
418
|
customData?: string[];
|
|
419
419
|
};
|
|
420
420
|
previewMultiConversion?: boolean;
|
|
421
|
+
persistFiltersAcrossTabs?: boolean;
|
|
421
422
|
};
|
|
422
423
|
allowAdvancedFilters?: boolean;
|
|
423
424
|
general?: {
|
|
@@ -459,6 +460,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
459
460
|
customData?: string[];
|
|
460
461
|
};
|
|
461
462
|
previewMultiConversion?: boolean;
|
|
463
|
+
persistFiltersAcrossTabs?: boolean;
|
|
462
464
|
};
|
|
463
465
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
464
466
|
};
|
|
@@ -521,6 +523,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
521
523
|
customData?: string[];
|
|
522
524
|
};
|
|
523
525
|
previewMultiConversion?: boolean;
|
|
526
|
+
persistFiltersAcrossTabs?: boolean;
|
|
524
527
|
};
|
|
525
528
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
526
529
|
} | undefined>;
|
|
@@ -611,6 +614,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
611
614
|
customData?: string[];
|
|
612
615
|
};
|
|
613
616
|
previewMultiConversion?: boolean;
|
|
617
|
+
persistFiltersAcrossTabs?: boolean;
|
|
614
618
|
};
|
|
615
619
|
allowAdvancedFilters?: boolean;
|
|
616
620
|
general?: {
|
|
@@ -652,6 +656,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
652
656
|
customData?: string[];
|
|
653
657
|
};
|
|
654
658
|
previewMultiConversion?: boolean;
|
|
659
|
+
persistFiltersAcrossTabs?: boolean;
|
|
655
660
|
};
|
|
656
661
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
657
662
|
};
|
|
@@ -736,11 +741,12 @@ declare class MultiSelectionToolbarComponent {
|
|
|
736
741
|
customData?: string[];
|
|
737
742
|
};
|
|
738
743
|
previewMultiConversion?: boolean;
|
|
744
|
+
persistFiltersAcrossTabs?: boolean;
|
|
739
745
|
};
|
|
740
746
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
741
747
|
} | undefined;
|
|
742
748
|
readonly class: _angular_core.InputSignal<string>;
|
|
743
|
-
readonly variant: _angular_core.InputSignal<"
|
|
749
|
+
readonly variant: _angular_core.InputSignal<"light" | "dark" | "glassy" | null | undefined>;
|
|
744
750
|
readonly updatedCollections: _angular_core.OutputEmitterRef<void>;
|
|
745
751
|
readonly count: _angular_core.Signal<number>;
|
|
746
752
|
readonly variants: _angular_core.Signal<string>;
|
|
@@ -952,6 +958,7 @@ type CFeatures = {
|
|
|
952
958
|
customData?: string[];
|
|
953
959
|
};
|
|
954
960
|
previewMultiConversion?: boolean;
|
|
961
|
+
persistFiltersAcrossTabs?: boolean;
|
|
955
962
|
[key: string]: boolean | {
|
|
956
963
|
[key: string]: boolean | string | string[] | undefined;
|
|
957
964
|
} | undefined;
|
|
@@ -1143,6 +1150,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1143
1150
|
customData?: string[];
|
|
1144
1151
|
};
|
|
1145
1152
|
previewMultiConversion?: boolean;
|
|
1153
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1146
1154
|
};
|
|
1147
1155
|
allowAdvancedFilters?: boolean;
|
|
1148
1156
|
general?: {
|
|
@@ -1184,6 +1192,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1184
1192
|
customData?: string[];
|
|
1185
1193
|
};
|
|
1186
1194
|
previewMultiConversion?: boolean;
|
|
1195
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1187
1196
|
};
|
|
1188
1197
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1189
1198
|
};
|
|
@@ -1246,6 +1255,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1246
1255
|
customData?: string[];
|
|
1247
1256
|
};
|
|
1248
1257
|
previewMultiConversion?: boolean;
|
|
1258
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1249
1259
|
};
|
|
1250
1260
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1251
1261
|
} | undefined>;
|
|
@@ -1330,6 +1340,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1330
1340
|
customData?: string[];
|
|
1331
1341
|
};
|
|
1332
1342
|
previewMultiConversion?: boolean;
|
|
1343
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1333
1344
|
};
|
|
1334
1345
|
allowAdvancedFilters?: boolean;
|
|
1335
1346
|
general?: {
|
|
@@ -1371,6 +1382,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1371
1382
|
customData?: string[];
|
|
1372
1383
|
};
|
|
1373
1384
|
previewMultiConversion?: boolean;
|
|
1385
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1374
1386
|
};
|
|
1375
1387
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1376
1388
|
};
|
|
@@ -1448,6 +1460,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1448
1460
|
customData?: string[];
|
|
1449
1461
|
};
|
|
1450
1462
|
previewMultiConversion?: boolean;
|
|
1463
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1451
1464
|
};
|
|
1452
1465
|
allowAdvancedFilters?: boolean;
|
|
1453
1466
|
general?: {
|
|
@@ -1489,6 +1502,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1489
1502
|
customData?: string[];
|
|
1490
1503
|
};
|
|
1491
1504
|
previewMultiConversion?: boolean;
|
|
1505
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1492
1506
|
};
|
|
1493
1507
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1494
1508
|
};
|
|
@@ -1553,6 +1567,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1553
1567
|
customData?: string[];
|
|
1554
1568
|
};
|
|
1555
1569
|
previewMultiConversion?: boolean;
|
|
1570
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1556
1571
|
};
|
|
1557
1572
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1558
1573
|
} | undefined>;
|
|
@@ -1693,7 +1708,7 @@ declare const PrincipalStore: _angular_core.Type<{
|
|
|
1693
1708
|
param9: _angular_core.Signal<string>;
|
|
1694
1709
|
param10: _angular_core.Signal<string>;
|
|
1695
1710
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
1696
|
-
state: _angular_core.Signal<"
|
|
1711
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
1697
1712
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
1698
1713
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
1699
1714
|
initials: _angular_core.Signal<string>;
|
|
@@ -1746,17 +1761,16 @@ type QueryParams = {
|
|
|
1746
1761
|
n?: string;
|
|
1747
1762
|
};
|
|
1748
1763
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1749
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1750
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1751
1764
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1752
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1753
1765
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1766
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1754
1767
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1755
1768
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
1756
1769
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
1757
1770
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1758
1771
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1759
1772
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1773
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1760
1774
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1761
1775
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1762
1776
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1770,6 +1784,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1770
1784
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1771
1785
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1772
1786
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1787
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1773
1788
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1774
1789
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1775
1790
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1793,17 +1808,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1793
1808
|
}> | null;
|
|
1794
1809
|
getQuery: () => _sinequa_atomic.Query;
|
|
1795
1810
|
} & _ngrx_signals.StateSource<{
|
|
1796
|
-
text?: string | undefined;
|
|
1797
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1798
1811
|
name?: string | undefined;
|
|
1799
|
-
sort?: string | undefined;
|
|
1800
1812
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1813
|
+
text?: string | undefined;
|
|
1801
1814
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1802
1815
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1803
1816
|
page?: number | undefined;
|
|
1804
1817
|
pageSize?: number | undefined;
|
|
1805
1818
|
tab?: string | undefined;
|
|
1806
1819
|
scope?: string | undefined;
|
|
1820
|
+
sort?: string | undefined;
|
|
1807
1821
|
basket?: string | undefined;
|
|
1808
1822
|
isFirstPage?: boolean | undefined;
|
|
1809
1823
|
strictRefine?: boolean | undefined;
|
|
@@ -1817,6 +1831,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1817
1831
|
relevanceTransforms?: string | undefined;
|
|
1818
1832
|
removeDuplicates?: boolean | undefined;
|
|
1819
1833
|
queryId?: string | undefined;
|
|
1834
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1820
1835
|
orderBy?: string | undefined;
|
|
1821
1836
|
groupBy?: string | undefined;
|
|
1822
1837
|
neuralSearch?: boolean | undefined;
|
|
@@ -1826,17 +1841,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1826
1841
|
}>>;
|
|
1827
1842
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1828
1843
|
state: {
|
|
1829
|
-
text?: string | undefined;
|
|
1830
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1831
1844
|
name?: string | undefined;
|
|
1832
|
-
sort?: string | undefined;
|
|
1833
1845
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1846
|
+
text?: string | undefined;
|
|
1834
1847
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1835
1848
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1836
1849
|
page?: number | undefined;
|
|
1837
1850
|
pageSize?: number | undefined;
|
|
1838
1851
|
tab?: string | undefined;
|
|
1839
1852
|
scope?: string | undefined;
|
|
1853
|
+
sort?: string | undefined;
|
|
1840
1854
|
basket?: string | undefined;
|
|
1841
1855
|
isFirstPage?: boolean | undefined;
|
|
1842
1856
|
strictRefine?: boolean | undefined;
|
|
@@ -1850,6 +1864,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
1850
1864
|
relevanceTransforms?: string | undefined;
|
|
1851
1865
|
removeDuplicates?: boolean | undefined;
|
|
1852
1866
|
queryId?: string | undefined;
|
|
1867
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1853
1868
|
orderBy?: string | undefined;
|
|
1854
1869
|
groupBy?: string | undefined;
|
|
1855
1870
|
neuralSearch?: boolean | undefined;
|
|
@@ -2043,7 +2058,7 @@ declare const UserSettingsStore: _angular_core.Type<{
|
|
|
2043
2058
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2044
2059
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2045
2060
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2046
|
-
userTheme: _angular_core.Signal<"
|
|
2061
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
2047
2062
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2048
2063
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2049
2064
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2310,6 +2325,7 @@ declare class AggregationsService {
|
|
|
2310
2325
|
customData?: string[];
|
|
2311
2326
|
};
|
|
2312
2327
|
previewMultiConversion?: boolean;
|
|
2328
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2313
2329
|
};
|
|
2314
2330
|
allowAdvancedFilters?: boolean;
|
|
2315
2331
|
general?: {
|
|
@@ -2351,6 +2367,7 @@ declare class AggregationsService {
|
|
|
2351
2367
|
customData?: string[];
|
|
2352
2368
|
};
|
|
2353
2369
|
previewMultiConversion?: boolean;
|
|
2370
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2354
2371
|
};
|
|
2355
2372
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2356
2373
|
};
|
|
@@ -2413,6 +2430,7 @@ declare class AggregationsService {
|
|
|
2413
2430
|
customData?: string[];
|
|
2414
2431
|
};
|
|
2415
2432
|
previewMultiConversion?: boolean;
|
|
2433
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2416
2434
|
};
|
|
2417
2435
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2418
2436
|
} | undefined>;
|
|
@@ -2503,6 +2521,7 @@ declare class AggregationsService {
|
|
|
2503
2521
|
customData?: string[];
|
|
2504
2522
|
};
|
|
2505
2523
|
previewMultiConversion?: boolean;
|
|
2524
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2506
2525
|
};
|
|
2507
2526
|
allowAdvancedFilters?: boolean;
|
|
2508
2527
|
general?: {
|
|
@@ -2544,6 +2563,7 @@ declare class AggregationsService {
|
|
|
2544
2563
|
customData?: string[];
|
|
2545
2564
|
};
|
|
2546
2565
|
previewMultiConversion?: boolean;
|
|
2566
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2547
2567
|
};
|
|
2548
2568
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2549
2569
|
};
|
|
@@ -2575,17 +2595,16 @@ declare class AggregationsService {
|
|
|
2575
2595
|
aggregations: Aggregation[];
|
|
2576
2596
|
}>;
|
|
2577
2597
|
queryParamsStore: {
|
|
2578
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2579
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2580
2598
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2581
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2582
2599
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2600
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2583
2601
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2584
2602
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
2585
2603
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
2586
2604
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
2587
2605
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
2588
2606
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
2607
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2589
2608
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
2590
2609
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2591
2610
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2599,6 +2618,7 @@ declare class AggregationsService {
|
|
|
2599
2618
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
2600
2619
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2601
2620
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
2621
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2602
2622
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2603
2623
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2604
2624
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2630,17 +2650,16 @@ declare class AggregationsService {
|
|
|
2630
2650
|
}> | null;
|
|
2631
2651
|
getQuery: () => Query;
|
|
2632
2652
|
} & _ngrx_signals.StateSource<{
|
|
2633
|
-
text?: string | undefined;
|
|
2634
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2635
2653
|
name?: string | undefined;
|
|
2636
|
-
sort?: string | undefined;
|
|
2637
2654
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2655
|
+
text?: string | undefined;
|
|
2638
2656
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2639
2657
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
2640
2658
|
page?: number | undefined;
|
|
2641
2659
|
pageSize?: number | undefined;
|
|
2642
2660
|
tab?: string | undefined;
|
|
2643
2661
|
scope?: string | undefined;
|
|
2662
|
+
sort?: string | undefined;
|
|
2644
2663
|
basket?: string | undefined;
|
|
2645
2664
|
isFirstPage?: boolean | undefined;
|
|
2646
2665
|
strictRefine?: boolean | undefined;
|
|
@@ -2654,6 +2673,7 @@ declare class AggregationsService {
|
|
|
2654
2673
|
relevanceTransforms?: string | undefined;
|
|
2655
2674
|
removeDuplicates?: boolean | undefined;
|
|
2656
2675
|
queryId?: string | undefined;
|
|
2676
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2657
2677
|
orderBy?: string | undefined;
|
|
2658
2678
|
groupBy?: string | undefined;
|
|
2659
2679
|
neuralSearch?: boolean | undefined;
|
|
@@ -2770,7 +2790,7 @@ declare class ApplicationService {
|
|
|
2770
2790
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2771
2791
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2772
2792
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2773
|
-
userTheme: _angular_core.Signal<"
|
|
2793
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
2774
2794
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2775
2795
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2776
2796
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2842,7 +2862,7 @@ declare class ApplicationService {
|
|
|
2842
2862
|
param9: _angular_core.Signal<string>;
|
|
2843
2863
|
param10: _angular_core.Signal<string>;
|
|
2844
2864
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2845
|
-
state: _angular_core.Signal<"
|
|
2865
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
2846
2866
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2847
2867
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2848
2868
|
initials: _angular_core.Signal<string>;
|
|
@@ -2929,6 +2949,7 @@ declare class ApplicationService {
|
|
|
2929
2949
|
customData?: string[];
|
|
2930
2950
|
};
|
|
2931
2951
|
previewMultiConversion?: boolean;
|
|
2952
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2932
2953
|
};
|
|
2933
2954
|
allowAdvancedFilters?: boolean;
|
|
2934
2955
|
general?: {
|
|
@@ -2970,6 +2991,7 @@ declare class ApplicationService {
|
|
|
2970
2991
|
customData?: string[];
|
|
2971
2992
|
};
|
|
2972
2993
|
previewMultiConversion?: boolean;
|
|
2994
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2973
2995
|
};
|
|
2974
2996
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2975
2997
|
};
|
|
@@ -3032,6 +3054,7 @@ declare class ApplicationService {
|
|
|
3032
3054
|
customData?: string[];
|
|
3033
3055
|
};
|
|
3034
3056
|
previewMultiConversion?: boolean;
|
|
3057
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3035
3058
|
};
|
|
3036
3059
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3037
3060
|
} | undefined>;
|
|
@@ -3122,6 +3145,7 @@ declare class ApplicationService {
|
|
|
3122
3145
|
customData?: string[];
|
|
3123
3146
|
};
|
|
3124
3147
|
previewMultiConversion?: boolean;
|
|
3148
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3125
3149
|
};
|
|
3126
3150
|
allowAdvancedFilters?: boolean;
|
|
3127
3151
|
general?: {
|
|
@@ -3163,6 +3187,7 @@ declare class ApplicationService {
|
|
|
3163
3187
|
customData?: string[];
|
|
3164
3188
|
};
|
|
3165
3189
|
previewMultiConversion?: boolean;
|
|
3190
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3166
3191
|
};
|
|
3167
3192
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3168
3193
|
};
|
|
@@ -3317,6 +3342,7 @@ declare class AuditService {
|
|
|
3317
3342
|
customData?: string[];
|
|
3318
3343
|
};
|
|
3319
3344
|
previewMultiConversion?: boolean;
|
|
3345
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3320
3346
|
};
|
|
3321
3347
|
allowAdvancedFilters?: boolean;
|
|
3322
3348
|
general?: {
|
|
@@ -3358,6 +3384,7 @@ declare class AuditService {
|
|
|
3358
3384
|
customData?: string[];
|
|
3359
3385
|
};
|
|
3360
3386
|
previewMultiConversion?: boolean;
|
|
3387
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3361
3388
|
};
|
|
3362
3389
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3363
3390
|
};
|
|
@@ -3420,6 +3447,7 @@ declare class AuditService {
|
|
|
3420
3447
|
customData?: string[];
|
|
3421
3448
|
};
|
|
3422
3449
|
previewMultiConversion?: boolean;
|
|
3450
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3423
3451
|
};
|
|
3424
3452
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3425
3453
|
} | undefined>;
|
|
@@ -3510,6 +3538,7 @@ declare class AuditService {
|
|
|
3510
3538
|
customData?: string[];
|
|
3511
3539
|
};
|
|
3512
3540
|
previewMultiConversion?: boolean;
|
|
3541
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3513
3542
|
};
|
|
3514
3543
|
allowAdvancedFilters?: boolean;
|
|
3515
3544
|
general?: {
|
|
@@ -3551,6 +3580,7 @@ declare class AuditService {
|
|
|
3551
3580
|
customData?: string[];
|
|
3552
3581
|
};
|
|
3553
3582
|
previewMultiConversion?: boolean;
|
|
3583
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3554
3584
|
};
|
|
3555
3585
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3556
3586
|
};
|
|
@@ -3620,7 +3650,7 @@ declare class AutocompleteService {
|
|
|
3620
3650
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3621
3651
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3622
3652
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3623
|
-
userTheme: _angular_core.Signal<"
|
|
3653
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
3624
3654
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
3625
3655
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
3626
3656
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -3717,6 +3747,7 @@ declare class AutocompleteService {
|
|
|
3717
3747
|
customData?: string[];
|
|
3718
3748
|
};
|
|
3719
3749
|
previewMultiConversion?: boolean;
|
|
3750
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3720
3751
|
};
|
|
3721
3752
|
allowAdvancedFilters?: boolean;
|
|
3722
3753
|
general?: {
|
|
@@ -3758,6 +3789,7 @@ declare class AutocompleteService {
|
|
|
3758
3789
|
customData?: string[];
|
|
3759
3790
|
};
|
|
3760
3791
|
previewMultiConversion?: boolean;
|
|
3792
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3761
3793
|
};
|
|
3762
3794
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3763
3795
|
};
|
|
@@ -3820,6 +3852,7 @@ declare class AutocompleteService {
|
|
|
3820
3852
|
customData?: string[];
|
|
3821
3853
|
};
|
|
3822
3854
|
previewMultiConversion?: boolean;
|
|
3855
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3823
3856
|
};
|
|
3824
3857
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3825
3858
|
} | undefined>;
|
|
@@ -3910,6 +3943,7 @@ declare class AutocompleteService {
|
|
|
3910
3943
|
customData?: string[];
|
|
3911
3944
|
};
|
|
3912
3945
|
previewMultiConversion?: boolean;
|
|
3946
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3913
3947
|
};
|
|
3914
3948
|
allowAdvancedFilters?: boolean;
|
|
3915
3949
|
general?: {
|
|
@@ -3951,6 +3985,7 @@ declare class AutocompleteService {
|
|
|
3951
3985
|
customData?: string[];
|
|
3952
3986
|
};
|
|
3953
3987
|
previewMultiConversion?: boolean;
|
|
3988
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3954
3989
|
};
|
|
3955
3990
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3956
3991
|
};
|
|
@@ -4286,17 +4321,16 @@ declare class PreviewService {
|
|
|
4286
4321
|
multiSelection: Article$1[];
|
|
4287
4322
|
}>;
|
|
4288
4323
|
protected readonly queryParamsStore: {
|
|
4289
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4290
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4291
4324
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4292
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4293
4325
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4326
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4294
4327
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4295
4328
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4296
4329
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4297
4330
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4298
4331
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4299
4332
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4333
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4300
4334
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4301
4335
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4302
4336
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4310,6 +4344,7 @@ declare class PreviewService {
|
|
|
4310
4344
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4311
4345
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4312
4346
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4347
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4313
4348
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4314
4349
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4315
4350
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4341,17 +4376,16 @@ declare class PreviewService {
|
|
|
4341
4376
|
}> | null;
|
|
4342
4377
|
getQuery: () => Query;
|
|
4343
4378
|
} & _ngrx_signals.StateSource<{
|
|
4344
|
-
text?: string | undefined;
|
|
4345
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4346
4379
|
name?: string | undefined;
|
|
4347
|
-
sort?: string | undefined;
|
|
4348
4380
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4381
|
+
text?: string | undefined;
|
|
4349
4382
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4350
4383
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4351
4384
|
page?: number | undefined;
|
|
4352
4385
|
pageSize?: number | undefined;
|
|
4353
4386
|
tab?: string | undefined;
|
|
4354
4387
|
scope?: string | undefined;
|
|
4388
|
+
sort?: string | undefined;
|
|
4355
4389
|
basket?: string | undefined;
|
|
4356
4390
|
isFirstPage?: boolean | undefined;
|
|
4357
4391
|
strictRefine?: boolean | undefined;
|
|
@@ -4365,6 +4399,7 @@ declare class PreviewService {
|
|
|
4365
4399
|
relevanceTransforms?: string | undefined;
|
|
4366
4400
|
removeDuplicates?: boolean | undefined;
|
|
4367
4401
|
queryId?: string | undefined;
|
|
4402
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4368
4403
|
orderBy?: string | undefined;
|
|
4369
4404
|
groupBy?: string | undefined;
|
|
4370
4405
|
neuralSearch?: boolean | undefined;
|
|
@@ -4424,6 +4459,7 @@ declare class PreviewService {
|
|
|
4424
4459
|
customData?: string[];
|
|
4425
4460
|
};
|
|
4426
4461
|
previewMultiConversion?: boolean;
|
|
4462
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4427
4463
|
};
|
|
4428
4464
|
allowAdvancedFilters?: boolean;
|
|
4429
4465
|
general?: {
|
|
@@ -4465,6 +4501,7 @@ declare class PreviewService {
|
|
|
4465
4501
|
customData?: string[];
|
|
4466
4502
|
};
|
|
4467
4503
|
previewMultiConversion?: boolean;
|
|
4504
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4468
4505
|
};
|
|
4469
4506
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4470
4507
|
};
|
|
@@ -4527,6 +4564,7 @@ declare class PreviewService {
|
|
|
4527
4564
|
customData?: string[];
|
|
4528
4565
|
};
|
|
4529
4566
|
previewMultiConversion?: boolean;
|
|
4567
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4530
4568
|
};
|
|
4531
4569
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4532
4570
|
} | undefined>;
|
|
@@ -4617,6 +4655,7 @@ declare class PreviewService {
|
|
|
4617
4655
|
customData?: string[];
|
|
4618
4656
|
};
|
|
4619
4657
|
previewMultiConversion?: boolean;
|
|
4658
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4620
4659
|
};
|
|
4621
4660
|
allowAdvancedFilters?: boolean;
|
|
4622
4661
|
general?: {
|
|
@@ -4658,6 +4697,7 @@ declare class PreviewService {
|
|
|
4658
4697
|
customData?: string[];
|
|
4659
4698
|
};
|
|
4660
4699
|
previewMultiConversion?: boolean;
|
|
4700
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4661
4701
|
};
|
|
4662
4702
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4663
4703
|
};
|
|
@@ -4869,7 +4909,7 @@ declare class SavedSearchesService {
|
|
|
4869
4909
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4870
4910
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4871
4911
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4872
|
-
userTheme: _angular_core.Signal<"
|
|
4912
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
4873
4913
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4874
4914
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4875
4915
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4915,17 +4955,16 @@ declare class SavedSearchesService {
|
|
|
4915
4955
|
agents: _sinequa_atomic_angular.AgentUserSettings;
|
|
4916
4956
|
}>;
|
|
4917
4957
|
protected readonly queryParamsStore: {
|
|
4918
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4919
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4920
4958
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4921
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4922
4959
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4960
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4923
4961
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4924
4962
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4925
4963
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4926
4964
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4927
4965
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4928
4966
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4967
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4929
4968
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4930
4969
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4931
4970
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4939,6 +4978,7 @@ declare class SavedSearchesService {
|
|
|
4939
4978
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4940
4979
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4941
4980
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4981
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4942
4982
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4943
4983
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4944
4984
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4970,17 +5010,16 @@ declare class SavedSearchesService {
|
|
|
4970
5010
|
}> | null;
|
|
4971
5011
|
getQuery: () => _sinequa_atomic.Query;
|
|
4972
5012
|
} & _ngrx_signals.StateSource<{
|
|
4973
|
-
text?: string | undefined;
|
|
4974
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4975
5013
|
name?: string | undefined;
|
|
4976
|
-
sort?: string | undefined;
|
|
4977
5014
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5015
|
+
text?: string | undefined;
|
|
4978
5016
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4979
5017
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4980
5018
|
page?: number | undefined;
|
|
4981
5019
|
pageSize?: number | undefined;
|
|
4982
5020
|
tab?: string | undefined;
|
|
4983
5021
|
scope?: string | undefined;
|
|
5022
|
+
sort?: string | undefined;
|
|
4984
5023
|
basket?: string | undefined;
|
|
4985
5024
|
isFirstPage?: boolean | undefined;
|
|
4986
5025
|
strictRefine?: boolean | undefined;
|
|
@@ -4994,6 +5033,7 @@ declare class SavedSearchesService {
|
|
|
4994
5033
|
relevanceTransforms?: string | undefined;
|
|
4995
5034
|
removeDuplicates?: boolean | undefined;
|
|
4996
5035
|
queryId?: string | undefined;
|
|
5036
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4997
5037
|
orderBy?: string | undefined;
|
|
4998
5038
|
groupBy?: string | undefined;
|
|
4999
5039
|
neuralSearch?: boolean | undefined;
|
|
@@ -5056,17 +5096,16 @@ declare class SearchService {
|
|
|
5056
5096
|
result: Result;
|
|
5057
5097
|
audit?: AuditEvents;
|
|
5058
5098
|
protected readonly queryParamsStore: {
|
|
5059
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5060
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5061
5099
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5062
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5063
5100
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5101
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5064
5102
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5065
5103
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5066
5104
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5067
5105
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5068
5106
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5069
5107
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5108
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5070
5109
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5071
5110
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5072
5111
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5080,6 +5119,7 @@ declare class SearchService {
|
|
|
5080
5119
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5081
5120
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5082
5121
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5122
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5083
5123
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5084
5124
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5085
5125
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5111,17 +5151,16 @@ declare class SearchService {
|
|
|
5111
5151
|
}> | null;
|
|
5112
5152
|
getQuery: () => Query;
|
|
5113
5153
|
} & _ngrx_signals.StateSource<{
|
|
5114
|
-
text?: string | undefined;
|
|
5115
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5116
5154
|
name?: string | undefined;
|
|
5117
|
-
sort?: string | undefined;
|
|
5118
5155
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5156
|
+
text?: string | undefined;
|
|
5119
5157
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5120
5158
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5121
5159
|
page?: number | undefined;
|
|
5122
5160
|
pageSize?: number | undefined;
|
|
5123
5161
|
tab?: string | undefined;
|
|
5124
5162
|
scope?: string | undefined;
|
|
5163
|
+
sort?: string | undefined;
|
|
5125
5164
|
basket?: string | undefined;
|
|
5126
5165
|
isFirstPage?: boolean | undefined;
|
|
5127
5166
|
strictRefine?: boolean | undefined;
|
|
@@ -5135,6 +5174,7 @@ declare class SearchService {
|
|
|
5135
5174
|
relevanceTransforms?: string | undefined;
|
|
5136
5175
|
removeDuplicates?: boolean | undefined;
|
|
5137
5176
|
queryId?: string | undefined;
|
|
5177
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5138
5178
|
orderBy?: string | undefined;
|
|
5139
5179
|
groupBy?: string | undefined;
|
|
5140
5180
|
neuralSearch?: boolean | undefined;
|
|
@@ -5151,7 +5191,7 @@ declare class SearchService {
|
|
|
5151
5191
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5152
5192
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5153
5193
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5154
|
-
userTheme: _angular_core.Signal<"
|
|
5194
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
5155
5195
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5156
5196
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5157
5197
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5247,17 +5287,16 @@ declare class SelectionService {
|
|
|
5247
5287
|
private readonly location;
|
|
5248
5288
|
private readonly selectionStore;
|
|
5249
5289
|
queryParamsStore: {
|
|
5250
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5251
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5252
5290
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5253
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5254
5291
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5292
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5255
5293
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5256
5294
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5257
5295
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5258
5296
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5259
5297
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5260
5298
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5299
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5261
5300
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5262
5301
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5263
5302
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5271,6 +5310,7 @@ declare class SelectionService {
|
|
|
5271
5310
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5272
5311
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5273
5312
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5313
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5274
5314
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5275
5315
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5276
5316
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5302,17 +5342,16 @@ declare class SelectionService {
|
|
|
5302
5342
|
}> | null;
|
|
5303
5343
|
getQuery: () => _sinequa_atomic.Query;
|
|
5304
5344
|
} & _ngrx_signals.StateSource<{
|
|
5305
|
-
text?: string | undefined;
|
|
5306
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5307
5345
|
name?: string | undefined;
|
|
5308
|
-
sort?: string | undefined;
|
|
5309
5346
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5347
|
+
text?: string | undefined;
|
|
5310
5348
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5311
5349
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5312
5350
|
page?: number | undefined;
|
|
5313
5351
|
pageSize?: number | undefined;
|
|
5314
5352
|
tab?: string | undefined;
|
|
5315
5353
|
scope?: string | undefined;
|
|
5354
|
+
sort?: string | undefined;
|
|
5316
5355
|
basket?: string | undefined;
|
|
5317
5356
|
isFirstPage?: boolean | undefined;
|
|
5318
5357
|
strictRefine?: boolean | undefined;
|
|
@@ -5326,6 +5365,7 @@ declare class SelectionService {
|
|
|
5326
5365
|
relevanceTransforms?: string | undefined;
|
|
5327
5366
|
removeDuplicates?: boolean | undefined;
|
|
5328
5367
|
queryId?: string | undefined;
|
|
5368
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5329
5369
|
orderBy?: string | undefined;
|
|
5330
5370
|
groupBy?: string | undefined;
|
|
5331
5371
|
neuralSearch?: boolean | undefined;
|
|
@@ -5470,18 +5510,329 @@ declare class NavbarTabsComponent {
|
|
|
5470
5510
|
class: _angular_core.InputSignal<string | undefined>;
|
|
5471
5511
|
readonly router: Router;
|
|
5472
5512
|
readonly route: ActivatedRoute;
|
|
5513
|
+
readonly appStore: {
|
|
5514
|
+
name: _angular_core.Signal<string>;
|
|
5515
|
+
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
5516
|
+
versionId: _angular_core.Signal<string>;
|
|
5517
|
+
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5518
|
+
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5519
|
+
indexes: _angular_core.Signal<{
|
|
5520
|
+
_: _sinequa_atomic.CCIndex;
|
|
5521
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5522
|
+
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5523
|
+
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5524
|
+
queryNames: _angular_core.Signal<string>;
|
|
5525
|
+
labels: _angular_core.Signal<string>;
|
|
5526
|
+
preview: _angular_core.Signal<string>;
|
|
5527
|
+
autocomplete: _angular_core.Signal<string>;
|
|
5528
|
+
sponsoredLinks: _angular_core.Signal<string>;
|
|
5529
|
+
queryExport: _angular_core.Signal<string>;
|
|
5530
|
+
queryRssEnabled: _angular_core.Signal<boolean>;
|
|
5531
|
+
data: _angular_core.Signal<Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
5532
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
5533
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
5534
|
+
tabs?: Record<string, {
|
|
5535
|
+
filters: string[];
|
|
5536
|
+
overviews?: Record<string, {
|
|
5537
|
+
minRelevance: number;
|
|
5538
|
+
}>;
|
|
5539
|
+
}>;
|
|
5540
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
5541
|
+
features?: {
|
|
5542
|
+
[key: string]: boolean | {
|
|
5543
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5544
|
+
} | undefined;
|
|
5545
|
+
allowChangePassword?: boolean;
|
|
5546
|
+
editablepartition?: boolean;
|
|
5547
|
+
advancedSearch?: boolean;
|
|
5548
|
+
allowChatDrawer?: boolean;
|
|
5549
|
+
filterLinkChildren?: boolean;
|
|
5550
|
+
expandPreview?: boolean;
|
|
5551
|
+
quickFilter?: boolean;
|
|
5552
|
+
showAggregationItemCount?: boolean;
|
|
5553
|
+
assistant?: {
|
|
5554
|
+
usePrefixName?: boolean;
|
|
5555
|
+
};
|
|
5556
|
+
filters?: {
|
|
5557
|
+
homepage?: boolean;
|
|
5558
|
+
};
|
|
5559
|
+
userProfile?: {
|
|
5560
|
+
enabled?: boolean;
|
|
5561
|
+
data?: string[];
|
|
5562
|
+
customData?: string[];
|
|
5563
|
+
};
|
|
5564
|
+
previewMultiConversion?: boolean;
|
|
5565
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5566
|
+
};
|
|
5567
|
+
allowAdvancedFilters?: boolean;
|
|
5568
|
+
general?: {
|
|
5569
|
+
name?: string;
|
|
5570
|
+
logo?: {
|
|
5571
|
+
alt?: string;
|
|
5572
|
+
light?: {
|
|
5573
|
+
small?: string;
|
|
5574
|
+
large?: string;
|
|
5575
|
+
sidebar?: string;
|
|
5576
|
+
};
|
|
5577
|
+
dark?: {
|
|
5578
|
+
small?: string;
|
|
5579
|
+
large?: string;
|
|
5580
|
+
sidebar?: string;
|
|
5581
|
+
};
|
|
5582
|
+
};
|
|
5583
|
+
features?: {
|
|
5584
|
+
[key: string]: boolean | {
|
|
5585
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5586
|
+
} | undefined;
|
|
5587
|
+
allowChangePassword?: boolean;
|
|
5588
|
+
editablepartition?: boolean;
|
|
5589
|
+
advancedSearch?: boolean;
|
|
5590
|
+
allowChatDrawer?: boolean;
|
|
5591
|
+
filterLinkChildren?: boolean;
|
|
5592
|
+
expandPreview?: boolean;
|
|
5593
|
+
quickFilter?: boolean;
|
|
5594
|
+
showAggregationItemCount?: boolean;
|
|
5595
|
+
assistant?: {
|
|
5596
|
+
usePrefixName?: boolean;
|
|
5597
|
+
};
|
|
5598
|
+
filters?: {
|
|
5599
|
+
homepage?: boolean;
|
|
5600
|
+
};
|
|
5601
|
+
userProfile?: {
|
|
5602
|
+
enabled?: boolean;
|
|
5603
|
+
data?: string[];
|
|
5604
|
+
customData?: string[];
|
|
5605
|
+
};
|
|
5606
|
+
previewMultiConversion?: boolean;
|
|
5607
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5608
|
+
};
|
|
5609
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5610
|
+
};
|
|
5611
|
+
documentsUploadSettings?: {
|
|
5612
|
+
enabled?: boolean;
|
|
5613
|
+
};
|
|
5614
|
+
}>;
|
|
5615
|
+
customJSONs: _angular_core.Signal<{
|
|
5616
|
+
name: string;
|
|
5617
|
+
data: Record<string, unknown>;
|
|
5618
|
+
}[] & _sinequa_atomic_angular.SideCJson[]>;
|
|
5619
|
+
apiVersion: _angular_core.Signal<string>;
|
|
5620
|
+
workspaceApp: _angular_core.Signal<string>;
|
|
5621
|
+
defaultQueryName: _angular_core.Signal<string>;
|
|
5622
|
+
auditEnabled?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5623
|
+
dataSets?: _angular_core.Signal<string | undefined> | undefined;
|
|
5624
|
+
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5625
|
+
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5626
|
+
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5627
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5628
|
+
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5629
|
+
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5630
|
+
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
5631
|
+
general: _angular_core.Signal<{
|
|
5632
|
+
name?: string;
|
|
5633
|
+
logo?: {
|
|
5634
|
+
alt?: string;
|
|
5635
|
+
light?: {
|
|
5636
|
+
small?: string;
|
|
5637
|
+
large?: string;
|
|
5638
|
+
sidebar?: string;
|
|
5639
|
+
};
|
|
5640
|
+
dark?: {
|
|
5641
|
+
small?: string;
|
|
5642
|
+
large?: string;
|
|
5643
|
+
sidebar?: string;
|
|
5644
|
+
};
|
|
5645
|
+
};
|
|
5646
|
+
features?: {
|
|
5647
|
+
[key: string]: boolean | {
|
|
5648
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5649
|
+
} | undefined;
|
|
5650
|
+
allowChangePassword?: boolean;
|
|
5651
|
+
editablepartition?: boolean;
|
|
5652
|
+
advancedSearch?: boolean;
|
|
5653
|
+
allowChatDrawer?: boolean;
|
|
5654
|
+
filterLinkChildren?: boolean;
|
|
5655
|
+
expandPreview?: boolean;
|
|
5656
|
+
quickFilter?: boolean;
|
|
5657
|
+
showAggregationItemCount?: boolean;
|
|
5658
|
+
assistant?: {
|
|
5659
|
+
usePrefixName?: boolean;
|
|
5660
|
+
};
|
|
5661
|
+
filters?: {
|
|
5662
|
+
homepage?: boolean;
|
|
5663
|
+
};
|
|
5664
|
+
userProfile?: {
|
|
5665
|
+
enabled?: boolean;
|
|
5666
|
+
data?: string[];
|
|
5667
|
+
customData?: string[];
|
|
5668
|
+
};
|
|
5669
|
+
previewMultiConversion?: boolean;
|
|
5670
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5671
|
+
};
|
|
5672
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5673
|
+
} | undefined>;
|
|
5674
|
+
assistants: _angular_core.Signal<{
|
|
5675
|
+
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
5676
|
+
}>;
|
|
5677
|
+
agents: _angular_core.Signal<{
|
|
5678
|
+
[x: string]: {
|
|
5679
|
+
defaultAgent: string;
|
|
5680
|
+
};
|
|
5681
|
+
}>;
|
|
5682
|
+
initialize: () => Promise<void>;
|
|
5683
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
5684
|
+
update: (app: Partial<_sinequa_atomic_angular.CCAppState>) => void;
|
|
5685
|
+
getWebServiceByType: (type: _sinequa_atomic.CCWebService["webServiceType"]) => _sinequa_atomic.CCWebService | undefined;
|
|
5686
|
+
getLabels: () => {
|
|
5687
|
+
private: string;
|
|
5688
|
+
public: string;
|
|
5689
|
+
};
|
|
5690
|
+
getQueryByName: (name: string) => _sinequa_atomic.CCQuery | undefined;
|
|
5691
|
+
getQueryByIndex: (index: number) => _sinequa_atomic.CCQuery | undefined;
|
|
5692
|
+
getDefaultQuery: () => _sinequa_atomic.CCQuery | undefined;
|
|
5693
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
5694
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
5695
|
+
allowLabels: () => boolean;
|
|
5696
|
+
getColumnAlias: (column: string) => string;
|
|
5697
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5698
|
+
isDateColumn: (column: string) => boolean;
|
|
5699
|
+
isTabSearch: (queryName: string) => boolean;
|
|
5700
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
5701
|
+
getAuthorizedFilters: () => _sinequa_atomic.Aggregation[];
|
|
5702
|
+
getAuthorized: (filters: Pick<_sinequa_atomic_angular.CFilter, "column" | "name">[]) => _sinequa_atomic.Aggregation[];
|
|
5703
|
+
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
5704
|
+
getAggregationIcon: (column: string) => string | undefined;
|
|
5705
|
+
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
5706
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
5707
|
+
isAssistantAllowed: (assistantName: string) => boolean;
|
|
5708
|
+
isAgentAllowed: (agentName: string) => boolean;
|
|
5709
|
+
} & _ngrx_signals.StateSource<{
|
|
5710
|
+
name: string;
|
|
5711
|
+
description?: string | undefined;
|
|
5712
|
+
versionId: string;
|
|
5713
|
+
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5714
|
+
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5715
|
+
indexes: {
|
|
5716
|
+
_: _sinequa_atomic.CCIndex;
|
|
5717
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5718
|
+
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5719
|
+
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5720
|
+
queryNames: string;
|
|
5721
|
+
labels: string;
|
|
5722
|
+
preview: string;
|
|
5723
|
+
autocomplete: string;
|
|
5724
|
+
sponsoredLinks: string;
|
|
5725
|
+
queryExport: string;
|
|
5726
|
+
queryRssEnabled: boolean;
|
|
5727
|
+
data: Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
5728
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
5729
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
5730
|
+
tabs?: Record<string, {
|
|
5731
|
+
filters: string[];
|
|
5732
|
+
overviews?: Record<string, {
|
|
5733
|
+
minRelevance: number;
|
|
5734
|
+
}>;
|
|
5735
|
+
}>;
|
|
5736
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
5737
|
+
features?: {
|
|
5738
|
+
[key: string]: boolean | {
|
|
5739
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5740
|
+
} | undefined;
|
|
5741
|
+
allowChangePassword?: boolean;
|
|
5742
|
+
editablepartition?: boolean;
|
|
5743
|
+
advancedSearch?: boolean;
|
|
5744
|
+
allowChatDrawer?: boolean;
|
|
5745
|
+
filterLinkChildren?: boolean;
|
|
5746
|
+
expandPreview?: boolean;
|
|
5747
|
+
quickFilter?: boolean;
|
|
5748
|
+
showAggregationItemCount?: boolean;
|
|
5749
|
+
assistant?: {
|
|
5750
|
+
usePrefixName?: boolean;
|
|
5751
|
+
};
|
|
5752
|
+
filters?: {
|
|
5753
|
+
homepage?: boolean;
|
|
5754
|
+
};
|
|
5755
|
+
userProfile?: {
|
|
5756
|
+
enabled?: boolean;
|
|
5757
|
+
data?: string[];
|
|
5758
|
+
customData?: string[];
|
|
5759
|
+
};
|
|
5760
|
+
previewMultiConversion?: boolean;
|
|
5761
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5762
|
+
};
|
|
5763
|
+
allowAdvancedFilters?: boolean;
|
|
5764
|
+
general?: {
|
|
5765
|
+
name?: string;
|
|
5766
|
+
logo?: {
|
|
5767
|
+
alt?: string;
|
|
5768
|
+
light?: {
|
|
5769
|
+
small?: string;
|
|
5770
|
+
large?: string;
|
|
5771
|
+
sidebar?: string;
|
|
5772
|
+
};
|
|
5773
|
+
dark?: {
|
|
5774
|
+
small?: string;
|
|
5775
|
+
large?: string;
|
|
5776
|
+
sidebar?: string;
|
|
5777
|
+
};
|
|
5778
|
+
};
|
|
5779
|
+
features?: {
|
|
5780
|
+
[key: string]: boolean | {
|
|
5781
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5782
|
+
} | undefined;
|
|
5783
|
+
allowChangePassword?: boolean;
|
|
5784
|
+
editablepartition?: boolean;
|
|
5785
|
+
advancedSearch?: boolean;
|
|
5786
|
+
allowChatDrawer?: boolean;
|
|
5787
|
+
filterLinkChildren?: boolean;
|
|
5788
|
+
expandPreview?: boolean;
|
|
5789
|
+
quickFilter?: boolean;
|
|
5790
|
+
showAggregationItemCount?: boolean;
|
|
5791
|
+
assistant?: {
|
|
5792
|
+
usePrefixName?: boolean;
|
|
5793
|
+
};
|
|
5794
|
+
filters?: {
|
|
5795
|
+
homepage?: boolean;
|
|
5796
|
+
};
|
|
5797
|
+
userProfile?: {
|
|
5798
|
+
enabled?: boolean;
|
|
5799
|
+
data?: string[];
|
|
5800
|
+
customData?: string[];
|
|
5801
|
+
};
|
|
5802
|
+
previewMultiConversion?: boolean;
|
|
5803
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5804
|
+
};
|
|
5805
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5806
|
+
};
|
|
5807
|
+
documentsUploadSettings?: {
|
|
5808
|
+
enabled?: boolean;
|
|
5809
|
+
};
|
|
5810
|
+
};
|
|
5811
|
+
customJSONs: {
|
|
5812
|
+
name: string;
|
|
5813
|
+
data: Record<string, unknown>;
|
|
5814
|
+
}[] & _sinequa_atomic_angular.SideCJson[];
|
|
5815
|
+
apiVersion: string;
|
|
5816
|
+
workspaceApp: string;
|
|
5817
|
+
defaultQueryName: string;
|
|
5818
|
+
auditEnabled?: boolean | undefined;
|
|
5819
|
+
dataSets?: string | undefined;
|
|
5820
|
+
revision?: number | undefined;
|
|
5821
|
+
runnableModels?: string | undefined;
|
|
5822
|
+
authorizationLevel?: string | undefined;
|
|
5823
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5824
|
+
}>;
|
|
5473
5825
|
readonly queryParamsStore: {
|
|
5474
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5475
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5476
5826
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5477
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5478
5827
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5828
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5479
5829
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5480
5830
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5481
5831
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5482
5832
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5483
5833
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5484
5834
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5835
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5485
5836
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5486
5837
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5487
5838
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5495,6 +5846,7 @@ declare class NavbarTabsComponent {
|
|
|
5495
5846
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5496
5847
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5497
5848
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5849
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5498
5850
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5499
5851
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5500
5852
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5526,17 +5878,16 @@ declare class NavbarTabsComponent {
|
|
|
5526
5878
|
}> | null;
|
|
5527
5879
|
getQuery: () => _sinequa_atomic.Query;
|
|
5528
5880
|
} & _ngrx_signals.StateSource<{
|
|
5529
|
-
text?: string | undefined;
|
|
5530
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5531
5881
|
name?: string | undefined;
|
|
5532
|
-
sort?: string | undefined;
|
|
5533
5882
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5883
|
+
text?: string | undefined;
|
|
5534
5884
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5535
5885
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5536
5886
|
page?: number | undefined;
|
|
5537
5887
|
pageSize?: number | undefined;
|
|
5538
5888
|
tab?: string | undefined;
|
|
5539
5889
|
scope?: string | undefined;
|
|
5890
|
+
sort?: string | undefined;
|
|
5540
5891
|
basket?: string | undefined;
|
|
5541
5892
|
isFirstPage?: boolean | undefined;
|
|
5542
5893
|
strictRefine?: boolean | undefined;
|
|
@@ -5550,6 +5901,7 @@ declare class NavbarTabsComponent {
|
|
|
5550
5901
|
relevanceTransforms?: string | undefined;
|
|
5551
5902
|
removeDuplicates?: boolean | undefined;
|
|
5552
5903
|
queryId?: string | undefined;
|
|
5904
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5553
5905
|
orderBy?: string | undefined;
|
|
5554
5906
|
groupBy?: string | undefined;
|
|
5555
5907
|
neuralSearch?: boolean | undefined;
|
|
@@ -5583,6 +5935,9 @@ declare class NavbarTabsComponent {
|
|
|
5583
5935
|
readonly tabs: _angular_core.Signal<NavbarTab[]>;
|
|
5584
5936
|
readonly moreTabs: _angular_core.Signal<NavbarTab[]>;
|
|
5585
5937
|
protected changeTab(): void;
|
|
5938
|
+
readonly persistFiltersAcrossTabs: _angular_core.Signal<boolean>;
|
|
5939
|
+
getQueryParamsHandling(): 'merge' | 'replace';
|
|
5940
|
+
getQueryParams(tab: NavbarTab): Params | null | undefined;
|
|
5586
5941
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTabsComponent, never>;
|
|
5587
5942
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; "noTruncate": { "alias": "noTruncate"; "required": false; "isSignal": true; }; "minTabWidth": { "alias": "minTabWidth"; "required": false; "isSignal": true; }; "path": { "alias": "path"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5588
5943
|
}
|
|
@@ -5663,6 +6018,7 @@ declare class SortSelectorComponent {
|
|
|
5663
6018
|
customData?: string[];
|
|
5664
6019
|
};
|
|
5665
6020
|
previewMultiConversion?: boolean;
|
|
6021
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5666
6022
|
};
|
|
5667
6023
|
allowAdvancedFilters?: boolean;
|
|
5668
6024
|
general?: {
|
|
@@ -5704,6 +6060,7 @@ declare class SortSelectorComponent {
|
|
|
5704
6060
|
customData?: string[];
|
|
5705
6061
|
};
|
|
5706
6062
|
previewMultiConversion?: boolean;
|
|
6063
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5707
6064
|
};
|
|
5708
6065
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5709
6066
|
};
|
|
@@ -5766,6 +6123,7 @@ declare class SortSelectorComponent {
|
|
|
5766
6123
|
customData?: string[];
|
|
5767
6124
|
};
|
|
5768
6125
|
previewMultiConversion?: boolean;
|
|
6126
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5769
6127
|
};
|
|
5770
6128
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5771
6129
|
} | undefined>;
|
|
@@ -5856,6 +6214,7 @@ declare class SortSelectorComponent {
|
|
|
5856
6214
|
customData?: string[];
|
|
5857
6215
|
};
|
|
5858
6216
|
previewMultiConversion?: boolean;
|
|
6217
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5859
6218
|
};
|
|
5860
6219
|
allowAdvancedFilters?: boolean;
|
|
5861
6220
|
general?: {
|
|
@@ -5897,6 +6256,7 @@ declare class SortSelectorComponent {
|
|
|
5897
6256
|
customData?: string[];
|
|
5898
6257
|
};
|
|
5899
6258
|
previewMultiConversion?: boolean;
|
|
6259
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5900
6260
|
};
|
|
5901
6261
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5902
6262
|
};
|
|
@@ -6022,7 +6382,7 @@ declare class ShowBookmarkDirective {
|
|
|
6022
6382
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6023
6383
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6024
6384
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6025
|
-
userTheme: _angular_core.Signal<"
|
|
6385
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
6026
6386
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6027
6387
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6028
6388
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -6459,6 +6819,7 @@ declare class SponsoredResultsComponent {
|
|
|
6459
6819
|
customData?: string[];
|
|
6460
6820
|
};
|
|
6461
6821
|
previewMultiConversion?: boolean;
|
|
6822
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6462
6823
|
};
|
|
6463
6824
|
allowAdvancedFilters?: boolean;
|
|
6464
6825
|
general?: {
|
|
@@ -6500,6 +6861,7 @@ declare class SponsoredResultsComponent {
|
|
|
6500
6861
|
customData?: string[];
|
|
6501
6862
|
};
|
|
6502
6863
|
previewMultiConversion?: boolean;
|
|
6864
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6503
6865
|
};
|
|
6504
6866
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6505
6867
|
};
|
|
@@ -6562,6 +6924,7 @@ declare class SponsoredResultsComponent {
|
|
|
6562
6924
|
customData?: string[];
|
|
6563
6925
|
};
|
|
6564
6926
|
previewMultiConversion?: boolean;
|
|
6927
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6565
6928
|
};
|
|
6566
6929
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6567
6930
|
} | undefined>;
|
|
@@ -6652,6 +7015,7 @@ declare class SponsoredResultsComponent {
|
|
|
6652
7015
|
customData?: string[];
|
|
6653
7016
|
};
|
|
6654
7017
|
previewMultiConversion?: boolean;
|
|
7018
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6655
7019
|
};
|
|
6656
7020
|
allowAdvancedFilters?: boolean;
|
|
6657
7021
|
general?: {
|
|
@@ -6693,6 +7057,7 @@ declare class SponsoredResultsComponent {
|
|
|
6693
7057
|
customData?: string[];
|
|
6694
7058
|
};
|
|
6695
7059
|
previewMultiConversion?: boolean;
|
|
7060
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6696
7061
|
};
|
|
6697
7062
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6698
7063
|
};
|
|
@@ -6715,17 +7080,16 @@ declare class SponsoredResultsComponent {
|
|
|
6715
7080
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6716
7081
|
}>;
|
|
6717
7082
|
queryParamStore: {
|
|
6718
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6719
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6720
7083
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6721
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6722
7084
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7085
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6723
7086
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6724
7087
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6725
7088
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6726
7089
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6727
7090
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6728
7091
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7092
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6729
7093
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6730
7094
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6731
7095
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6739,6 +7103,7 @@ declare class SponsoredResultsComponent {
|
|
|
6739
7103
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6740
7104
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6741
7105
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7106
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6742
7107
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6743
7108
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6744
7109
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6770,17 +7135,16 @@ declare class SponsoredResultsComponent {
|
|
|
6770
7135
|
}> | null;
|
|
6771
7136
|
getQuery: () => _sinequa_atomic.Query;
|
|
6772
7137
|
} & _ngrx_signals.StateSource<{
|
|
6773
|
-
text?: string | undefined;
|
|
6774
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6775
7138
|
name?: string | undefined;
|
|
6776
|
-
sort?: string | undefined;
|
|
6777
7139
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7140
|
+
text?: string | undefined;
|
|
6778
7141
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6779
7142
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6780
7143
|
page?: number | undefined;
|
|
6781
7144
|
pageSize?: number | undefined;
|
|
6782
7145
|
tab?: string | undefined;
|
|
6783
7146
|
scope?: string | undefined;
|
|
7147
|
+
sort?: string | undefined;
|
|
6784
7148
|
basket?: string | undefined;
|
|
6785
7149
|
isFirstPage?: boolean | undefined;
|
|
6786
7150
|
strictRefine?: boolean | undefined;
|
|
@@ -6794,6 +7158,7 @@ declare class SponsoredResultsComponent {
|
|
|
6794
7158
|
relevanceTransforms?: string | undefined;
|
|
6795
7159
|
removeDuplicates?: boolean | undefined;
|
|
6796
7160
|
queryId?: string | undefined;
|
|
7161
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6797
7162
|
orderBy?: string | undefined;
|
|
6798
7163
|
groupBy?: string | undefined;
|
|
6799
7164
|
neuralSearch?: boolean | undefined;
|
|
@@ -7048,17 +7413,16 @@ declare class AggregationListComponent {
|
|
|
7048
7413
|
aggregations: Aggregation[];
|
|
7049
7414
|
}>;
|
|
7050
7415
|
queryParamsStore: {
|
|
7051
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7052
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7053
7416
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7054
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7055
7417
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7418
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7056
7419
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7057
7420
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7058
7421
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7059
7422
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7060
7423
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7061
7424
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7425
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7062
7426
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7063
7427
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7064
7428
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7072,6 +7436,7 @@ declare class AggregationListComponent {
|
|
|
7072
7436
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7073
7437
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7074
7438
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7439
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7075
7440
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7076
7441
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7077
7442
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7103,17 +7468,16 @@ declare class AggregationListComponent {
|
|
|
7103
7468
|
}> | null;
|
|
7104
7469
|
getQuery: () => Query;
|
|
7105
7470
|
} & _ngrx_signals.StateSource<{
|
|
7106
|
-
text?: string | undefined;
|
|
7107
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7108
7471
|
name?: string | undefined;
|
|
7109
|
-
sort?: string | undefined;
|
|
7110
7472
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7473
|
+
text?: string | undefined;
|
|
7111
7474
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7112
7475
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7113
7476
|
page?: number | undefined;
|
|
7114
7477
|
pageSize?: number | undefined;
|
|
7115
7478
|
tab?: string | undefined;
|
|
7116
7479
|
scope?: string | undefined;
|
|
7480
|
+
sort?: string | undefined;
|
|
7117
7481
|
basket?: string | undefined;
|
|
7118
7482
|
isFirstPage?: boolean | undefined;
|
|
7119
7483
|
strictRefine?: boolean | undefined;
|
|
@@ -7127,6 +7491,7 @@ declare class AggregationListComponent {
|
|
|
7127
7491
|
relevanceTransforms?: string | undefined;
|
|
7128
7492
|
removeDuplicates?: boolean | undefined;
|
|
7129
7493
|
queryId?: string | undefined;
|
|
7494
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7130
7495
|
orderBy?: string | undefined;
|
|
7131
7496
|
groupBy?: string | undefined;
|
|
7132
7497
|
neuralSearch?: boolean | undefined;
|
|
@@ -7186,6 +7551,7 @@ declare class AggregationListComponent {
|
|
|
7186
7551
|
customData?: string[];
|
|
7187
7552
|
};
|
|
7188
7553
|
previewMultiConversion?: boolean;
|
|
7554
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7189
7555
|
};
|
|
7190
7556
|
allowAdvancedFilters?: boolean;
|
|
7191
7557
|
general?: {
|
|
@@ -7227,6 +7593,7 @@ declare class AggregationListComponent {
|
|
|
7227
7593
|
customData?: string[];
|
|
7228
7594
|
};
|
|
7229
7595
|
previewMultiConversion?: boolean;
|
|
7596
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7230
7597
|
};
|
|
7231
7598
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7232
7599
|
};
|
|
@@ -7289,6 +7656,7 @@ declare class AggregationListComponent {
|
|
|
7289
7656
|
customData?: string[];
|
|
7290
7657
|
};
|
|
7291
7658
|
previewMultiConversion?: boolean;
|
|
7659
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7292
7660
|
};
|
|
7293
7661
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7294
7662
|
} | undefined>;
|
|
@@ -7379,6 +7747,7 @@ declare class AggregationListComponent {
|
|
|
7379
7747
|
customData?: string[];
|
|
7380
7748
|
};
|
|
7381
7749
|
previewMultiConversion?: boolean;
|
|
7750
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7382
7751
|
};
|
|
7383
7752
|
allowAdvancedFilters?: boolean;
|
|
7384
7753
|
general?: {
|
|
@@ -7420,6 +7789,7 @@ declare class AggregationListComponent {
|
|
|
7420
7789
|
customData?: string[];
|
|
7421
7790
|
};
|
|
7422
7791
|
previewMultiConversion?: boolean;
|
|
7792
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7423
7793
|
};
|
|
7424
7794
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7425
7795
|
};
|
|
@@ -7670,17 +8040,16 @@ declare class AdvancedSearch {
|
|
|
7670
8040
|
multiSelection: Article$1[];
|
|
7671
8041
|
}>;
|
|
7672
8042
|
protected readonly queryParamsStore: {
|
|
7673
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7674
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7675
8043
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7676
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7677
8044
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8045
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7678
8046
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7679
8047
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7680
8048
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7681
8049
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7682
8050
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7683
8051
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8052
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7684
8053
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7685
8054
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7686
8055
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7694,6 +8063,7 @@ declare class AdvancedSearch {
|
|
|
7694
8063
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7695
8064
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7696
8065
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8066
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7697
8067
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7698
8068
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7699
8069
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7725,17 +8095,16 @@ declare class AdvancedSearch {
|
|
|
7725
8095
|
}> | null;
|
|
7726
8096
|
getQuery: () => _sinequa_atomic.Query;
|
|
7727
8097
|
} & _ngrx_signals.StateSource<{
|
|
7728
|
-
text?: string | undefined;
|
|
7729
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7730
8098
|
name?: string | undefined;
|
|
7731
|
-
sort?: string | undefined;
|
|
7732
8099
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8100
|
+
text?: string | undefined;
|
|
7733
8101
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7734
8102
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7735
8103
|
page?: number | undefined;
|
|
7736
8104
|
pageSize?: number | undefined;
|
|
7737
8105
|
tab?: string | undefined;
|
|
7738
8106
|
scope?: string | undefined;
|
|
8107
|
+
sort?: string | undefined;
|
|
7739
8108
|
basket?: string | undefined;
|
|
7740
8109
|
isFirstPage?: boolean | undefined;
|
|
7741
8110
|
strictRefine?: boolean | undefined;
|
|
@@ -7749,6 +8118,7 @@ declare class AdvancedSearch {
|
|
|
7749
8118
|
relevanceTransforms?: string | undefined;
|
|
7750
8119
|
removeDuplicates?: boolean | undefined;
|
|
7751
8120
|
queryId?: string | undefined;
|
|
8121
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7752
8122
|
orderBy?: string | undefined;
|
|
7753
8123
|
groupBy?: string | undefined;
|
|
7754
8124
|
neuralSearch?: boolean | undefined;
|
|
@@ -7822,6 +8192,7 @@ declare class ArticleEntities {
|
|
|
7822
8192
|
customData?: string[];
|
|
7823
8193
|
};
|
|
7824
8194
|
previewMultiConversion?: boolean;
|
|
8195
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7825
8196
|
};
|
|
7826
8197
|
allowAdvancedFilters?: boolean;
|
|
7827
8198
|
general?: {
|
|
@@ -7863,6 +8234,7 @@ declare class ArticleEntities {
|
|
|
7863
8234
|
customData?: string[];
|
|
7864
8235
|
};
|
|
7865
8236
|
previewMultiConversion?: boolean;
|
|
8237
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7866
8238
|
};
|
|
7867
8239
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7868
8240
|
};
|
|
@@ -7925,6 +8297,7 @@ declare class ArticleEntities {
|
|
|
7925
8297
|
customData?: string[];
|
|
7926
8298
|
};
|
|
7927
8299
|
previewMultiConversion?: boolean;
|
|
8300
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7928
8301
|
};
|
|
7929
8302
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7930
8303
|
} | undefined>;
|
|
@@ -8015,6 +8388,7 @@ declare class ArticleEntities {
|
|
|
8015
8388
|
customData?: string[];
|
|
8016
8389
|
};
|
|
8017
8390
|
previewMultiConversion?: boolean;
|
|
8391
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8018
8392
|
};
|
|
8019
8393
|
allowAdvancedFilters?: boolean;
|
|
8020
8394
|
general?: {
|
|
@@ -8056,6 +8430,7 @@ declare class ArticleEntities {
|
|
|
8056
8430
|
customData?: string[];
|
|
8057
8431
|
};
|
|
8058
8432
|
previewMultiConversion?: boolean;
|
|
8433
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8059
8434
|
};
|
|
8060
8435
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8061
8436
|
};
|
|
@@ -8134,17 +8509,16 @@ declare class ArticleLabels {
|
|
|
8134
8509
|
|
|
8135
8510
|
declare class ArticleSimilarDocuments {
|
|
8136
8511
|
protected readonly queryParamsStore: {
|
|
8137
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8138
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8139
8512
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8140
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8141
8513
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8514
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8142
8515
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8143
8516
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8144
8517
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8145
8518
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8146
8519
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8147
8520
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8521
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8148
8522
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8149
8523
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8150
8524
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8158,6 +8532,7 @@ declare class ArticleSimilarDocuments {
|
|
|
8158
8532
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8159
8533
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8160
8534
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8535
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8161
8536
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8162
8537
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8163
8538
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8189,17 +8564,16 @@ declare class ArticleSimilarDocuments {
|
|
|
8189
8564
|
}> | null;
|
|
8190
8565
|
getQuery: () => _sinequa_atomic.Query;
|
|
8191
8566
|
} & _ngrx_signals.StateSource<{
|
|
8192
|
-
text?: string | undefined;
|
|
8193
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8194
8567
|
name?: string | undefined;
|
|
8195
|
-
sort?: string | undefined;
|
|
8196
8568
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8569
|
+
text?: string | undefined;
|
|
8197
8570
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8198
8571
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8199
8572
|
page?: number | undefined;
|
|
8200
8573
|
pageSize?: number | undefined;
|
|
8201
8574
|
tab?: string | undefined;
|
|
8202
8575
|
scope?: string | undefined;
|
|
8576
|
+
sort?: string | undefined;
|
|
8203
8577
|
basket?: string | undefined;
|
|
8204
8578
|
isFirstPage?: boolean | undefined;
|
|
8205
8579
|
strictRefine?: boolean | undefined;
|
|
@@ -8213,6 +8587,7 @@ declare class ArticleSimilarDocuments {
|
|
|
8213
8587
|
relevanceTransforms?: string | undefined;
|
|
8214
8588
|
removeDuplicates?: boolean | undefined;
|
|
8215
8589
|
queryId?: string | undefined;
|
|
8590
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8216
8591
|
orderBy?: string | undefined;
|
|
8217
8592
|
groupBy?: string | undefined;
|
|
8218
8593
|
neuralSearch?: boolean | undefined;
|
|
@@ -8803,17 +9178,16 @@ declare class AdvancedSearchComponent {
|
|
|
8803
9178
|
multiSelection: Article$1[];
|
|
8804
9179
|
}>;
|
|
8805
9180
|
protected readonly queryParamsStore: {
|
|
8806
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8807
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8808
9181
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8809
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8810
9182
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9183
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8811
9184
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8812
9185
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8813
9186
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8814
9187
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8815
9188
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8816
9189
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9190
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8817
9191
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8818
9192
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8819
9193
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8827,6 +9201,7 @@ declare class AdvancedSearchComponent {
|
|
|
8827
9201
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8828
9202
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8829
9203
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9204
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8830
9205
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8831
9206
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8832
9207
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8858,17 +9233,16 @@ declare class AdvancedSearchComponent {
|
|
|
8858
9233
|
}> | null;
|
|
8859
9234
|
getQuery: () => _sinequa_atomic.Query;
|
|
8860
9235
|
} & _ngrx_signals.StateSource<{
|
|
8861
|
-
text?: string | undefined;
|
|
8862
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8863
9236
|
name?: string | undefined;
|
|
8864
|
-
sort?: string | undefined;
|
|
8865
9237
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9238
|
+
text?: string | undefined;
|
|
8866
9239
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8867
9240
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8868
9241
|
page?: number | undefined;
|
|
8869
9242
|
pageSize?: number | undefined;
|
|
8870
9243
|
tab?: string | undefined;
|
|
8871
9244
|
scope?: string | undefined;
|
|
9245
|
+
sort?: string | undefined;
|
|
8872
9246
|
basket?: string | undefined;
|
|
8873
9247
|
isFirstPage?: boolean | undefined;
|
|
8874
9248
|
strictRefine?: boolean | undefined;
|
|
@@ -8882,6 +9256,7 @@ declare class AdvancedSearchComponent {
|
|
|
8882
9256
|
relevanceTransforms?: string | undefined;
|
|
8883
9257
|
removeDuplicates?: boolean | undefined;
|
|
8884
9258
|
queryId?: string | undefined;
|
|
9259
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8885
9260
|
orderBy?: string | undefined;
|
|
8886
9261
|
groupBy?: string | undefined;
|
|
8887
9262
|
neuralSearch?: boolean | undefined;
|
|
@@ -8980,6 +9355,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8980
9355
|
customData?: string[];
|
|
8981
9356
|
};
|
|
8982
9357
|
previewMultiConversion?: boolean;
|
|
9358
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8983
9359
|
};
|
|
8984
9360
|
allowAdvancedFilters?: boolean;
|
|
8985
9361
|
general?: {
|
|
@@ -9021,6 +9397,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9021
9397
|
customData?: string[];
|
|
9022
9398
|
};
|
|
9023
9399
|
previewMultiConversion?: boolean;
|
|
9400
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9024
9401
|
};
|
|
9025
9402
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9026
9403
|
};
|
|
@@ -9083,6 +9460,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9083
9460
|
customData?: string[];
|
|
9084
9461
|
};
|
|
9085
9462
|
previewMultiConversion?: boolean;
|
|
9463
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9086
9464
|
};
|
|
9087
9465
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9088
9466
|
} | undefined>;
|
|
@@ -9173,6 +9551,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9173
9551
|
customData?: string[];
|
|
9174
9552
|
};
|
|
9175
9553
|
previewMultiConversion?: boolean;
|
|
9554
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9176
9555
|
};
|
|
9177
9556
|
allowAdvancedFilters?: boolean;
|
|
9178
9557
|
general?: {
|
|
@@ -9214,6 +9593,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9214
9593
|
customData?: string[];
|
|
9215
9594
|
};
|
|
9216
9595
|
previewMultiConversion?: boolean;
|
|
9596
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9217
9597
|
};
|
|
9218
9598
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9219
9599
|
};
|
|
@@ -9259,17 +9639,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9259
9639
|
multiSelection: _sinequa_atomic.Article[];
|
|
9260
9640
|
}>;
|
|
9261
9641
|
queryParamsStore: {
|
|
9262
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9263
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9264
9642
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9265
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9266
9643
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9644
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9267
9645
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9268
9646
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9269
9647
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9270
9648
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9271
9649
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9272
9650
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9651
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9273
9652
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9274
9653
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9275
9654
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9283,6 +9662,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9283
9662
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9284
9663
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9285
9664
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9665
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9286
9666
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9287
9667
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9288
9668
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9314,17 +9694,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9314
9694
|
}> | null;
|
|
9315
9695
|
getQuery: () => _sinequa_atomic.Query;
|
|
9316
9696
|
} & _ngrx_signals.StateSource<{
|
|
9317
|
-
text?: string | undefined;
|
|
9318
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9319
9697
|
name?: string | undefined;
|
|
9320
|
-
sort?: string | undefined;
|
|
9321
9698
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9699
|
+
text?: string | undefined;
|
|
9322
9700
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9323
9701
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9324
9702
|
page?: number | undefined;
|
|
9325
9703
|
pageSize?: number | undefined;
|
|
9326
9704
|
tab?: string | undefined;
|
|
9327
9705
|
scope?: string | undefined;
|
|
9706
|
+
sort?: string | undefined;
|
|
9328
9707
|
basket?: string | undefined;
|
|
9329
9708
|
isFirstPage?: boolean | undefined;
|
|
9330
9709
|
strictRefine?: boolean | undefined;
|
|
@@ -9338,6 +9717,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9338
9717
|
relevanceTransforms?: string | undefined;
|
|
9339
9718
|
removeDuplicates?: boolean | undefined;
|
|
9340
9719
|
queryId?: string | undefined;
|
|
9720
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9341
9721
|
orderBy?: string | undefined;
|
|
9342
9722
|
groupBy?: string | undefined;
|
|
9343
9723
|
neuralSearch?: boolean | undefined;
|
|
@@ -9457,17 +9837,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9457
9837
|
private appStore;
|
|
9458
9838
|
readonly exportService: ExportService;
|
|
9459
9839
|
readonly queryParamsStore: {
|
|
9460
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9461
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9462
9840
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9463
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9464
9841
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9842
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9465
9843
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9466
9844
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9467
9845
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9468
9846
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9469
9847
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9470
9848
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9849
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9471
9850
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9472
9851
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9473
9852
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9481,6 +9860,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9481
9860
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9482
9861
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9483
9862
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9863
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9484
9864
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9485
9865
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9486
9866
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9512,17 +9892,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9512
9892
|
}> | null;
|
|
9513
9893
|
getQuery: () => _sinequa_atomic.Query;
|
|
9514
9894
|
} & _ngrx_signals.StateSource<{
|
|
9515
|
-
text?: string | undefined;
|
|
9516
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9517
9895
|
name?: string | undefined;
|
|
9518
|
-
sort?: string | undefined;
|
|
9519
9896
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9897
|
+
text?: string | undefined;
|
|
9520
9898
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9521
9899
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9522
9900
|
page?: number | undefined;
|
|
9523
9901
|
pageSize?: number | undefined;
|
|
9524
9902
|
tab?: string | undefined;
|
|
9525
9903
|
scope?: string | undefined;
|
|
9904
|
+
sort?: string | undefined;
|
|
9526
9905
|
basket?: string | undefined;
|
|
9527
9906
|
isFirstPage?: boolean | undefined;
|
|
9528
9907
|
strictRefine?: boolean | undefined;
|
|
@@ -9536,6 +9915,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9536
9915
|
relevanceTransforms?: string | undefined;
|
|
9537
9916
|
removeDuplicates?: boolean | undefined;
|
|
9538
9917
|
queryId?: string | undefined;
|
|
9918
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9539
9919
|
orderBy?: string | undefined;
|
|
9540
9920
|
groupBy?: string | undefined;
|
|
9541
9921
|
neuralSearch?: boolean | undefined;
|
|
@@ -9615,6 +9995,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9615
9995
|
customData?: string[];
|
|
9616
9996
|
};
|
|
9617
9997
|
previewMultiConversion?: boolean;
|
|
9998
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9618
9999
|
};
|
|
9619
10000
|
allowAdvancedFilters?: boolean;
|
|
9620
10001
|
general?: {
|
|
@@ -9656,6 +10037,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9656
10037
|
customData?: string[];
|
|
9657
10038
|
};
|
|
9658
10039
|
previewMultiConversion?: boolean;
|
|
10040
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9659
10041
|
};
|
|
9660
10042
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9661
10043
|
};
|
|
@@ -9718,6 +10100,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9718
10100
|
customData?: string[];
|
|
9719
10101
|
};
|
|
9720
10102
|
previewMultiConversion?: boolean;
|
|
10103
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9721
10104
|
};
|
|
9722
10105
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9723
10106
|
} | undefined>;
|
|
@@ -9808,6 +10191,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9808
10191
|
customData?: string[];
|
|
9809
10192
|
};
|
|
9810
10193
|
previewMultiConversion?: boolean;
|
|
10194
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9811
10195
|
};
|
|
9812
10196
|
allowAdvancedFilters?: boolean;
|
|
9813
10197
|
general?: {
|
|
@@ -9849,6 +10233,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9849
10233
|
customData?: string[];
|
|
9850
10234
|
};
|
|
9851
10235
|
previewMultiConversion?: boolean;
|
|
10236
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9852
10237
|
};
|
|
9853
10238
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9854
10239
|
};
|
|
@@ -9889,17 +10274,16 @@ declare class SearchFeedbackComponent {
|
|
|
9889
10274
|
pages: _angular_core.InputSignal<any>;
|
|
9890
10275
|
readonly auditService: AuditService;
|
|
9891
10276
|
protected readonly queryParamsStore: {
|
|
9892
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9893
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9894
10277
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9895
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9896
10278
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10279
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9897
10280
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9898
10281
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9899
10282
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9900
10283
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9901
10284
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9902
10285
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10286
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9903
10287
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9904
10288
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9905
10289
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9913,6 +10297,7 @@ declare class SearchFeedbackComponent {
|
|
|
9913
10297
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9914
10298
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9915
10299
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10300
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9916
10301
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9917
10302
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9918
10303
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9944,17 +10329,16 @@ declare class SearchFeedbackComponent {
|
|
|
9944
10329
|
}> | null;
|
|
9945
10330
|
getQuery: () => _sinequa_atomic.Query;
|
|
9946
10331
|
} & _ngrx_signals.StateSource<{
|
|
9947
|
-
text?: string | undefined;
|
|
9948
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9949
10332
|
name?: string | undefined;
|
|
9950
|
-
sort?: string | undefined;
|
|
9951
10333
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10334
|
+
text?: string | undefined;
|
|
9952
10335
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9953
10336
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9954
10337
|
page?: number | undefined;
|
|
9955
10338
|
pageSize?: number | undefined;
|
|
9956
10339
|
tab?: string | undefined;
|
|
9957
10340
|
scope?: string | undefined;
|
|
10341
|
+
sort?: string | undefined;
|
|
9958
10342
|
basket?: string | undefined;
|
|
9959
10343
|
isFirstPage?: boolean | undefined;
|
|
9960
10344
|
strictRefine?: boolean | undefined;
|
|
@@ -9968,6 +10352,7 @@ declare class SearchFeedbackComponent {
|
|
|
9968
10352
|
relevanceTransforms?: string | undefined;
|
|
9969
10353
|
removeDuplicates?: boolean | undefined;
|
|
9970
10354
|
queryId?: string | undefined;
|
|
10355
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9971
10356
|
orderBy?: string | undefined;
|
|
9972
10357
|
groupBy?: string | undefined;
|
|
9973
10358
|
neuralSearch?: boolean | undefined;
|
|
@@ -10004,17 +10389,16 @@ declare class AggregationTreeComponent {
|
|
|
10004
10389
|
aggregations: Aggregation[];
|
|
10005
10390
|
}>;
|
|
10006
10391
|
queryParamsStore: {
|
|
10007
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10008
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10009
10392
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10010
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10011
10393
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10394
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10012
10395
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10013
10396
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
10014
10397
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
10015
10398
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10016
10399
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10017
10400
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10401
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10018
10402
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10019
10403
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10020
10404
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10028,6 +10412,7 @@ declare class AggregationTreeComponent {
|
|
|
10028
10412
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10029
10413
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10030
10414
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10415
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10031
10416
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10032
10417
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10033
10418
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10059,17 +10444,16 @@ declare class AggregationTreeComponent {
|
|
|
10059
10444
|
}> | null;
|
|
10060
10445
|
getQuery: () => Query;
|
|
10061
10446
|
} & _ngrx_signals.StateSource<{
|
|
10062
|
-
text?: string | undefined;
|
|
10063
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10064
10447
|
name?: string | undefined;
|
|
10065
|
-
sort?: string | undefined;
|
|
10066
10448
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10449
|
+
text?: string | undefined;
|
|
10067
10450
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10068
10451
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10069
10452
|
page?: number | undefined;
|
|
10070
10453
|
pageSize?: number | undefined;
|
|
10071
10454
|
tab?: string | undefined;
|
|
10072
10455
|
scope?: string | undefined;
|
|
10456
|
+
sort?: string | undefined;
|
|
10073
10457
|
basket?: string | undefined;
|
|
10074
10458
|
isFirstPage?: boolean | undefined;
|
|
10075
10459
|
strictRefine?: boolean | undefined;
|
|
@@ -10083,6 +10467,7 @@ declare class AggregationTreeComponent {
|
|
|
10083
10467
|
relevanceTransforms?: string | undefined;
|
|
10084
10468
|
removeDuplicates?: boolean | undefined;
|
|
10085
10469
|
queryId?: string | undefined;
|
|
10470
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10086
10471
|
orderBy?: string | undefined;
|
|
10087
10472
|
groupBy?: string | undefined;
|
|
10088
10473
|
neuralSearch?: boolean | undefined;
|
|
@@ -10142,6 +10527,7 @@ declare class AggregationTreeComponent {
|
|
|
10142
10527
|
customData?: string[];
|
|
10143
10528
|
};
|
|
10144
10529
|
previewMultiConversion?: boolean;
|
|
10530
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10145
10531
|
};
|
|
10146
10532
|
allowAdvancedFilters?: boolean;
|
|
10147
10533
|
general?: {
|
|
@@ -10183,6 +10569,7 @@ declare class AggregationTreeComponent {
|
|
|
10183
10569
|
customData?: string[];
|
|
10184
10570
|
};
|
|
10185
10571
|
previewMultiConversion?: boolean;
|
|
10572
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10186
10573
|
};
|
|
10187
10574
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10188
10575
|
};
|
|
@@ -10245,6 +10632,7 @@ declare class AggregationTreeComponent {
|
|
|
10245
10632
|
customData?: string[];
|
|
10246
10633
|
};
|
|
10247
10634
|
previewMultiConversion?: boolean;
|
|
10635
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10248
10636
|
};
|
|
10249
10637
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10250
10638
|
} | undefined>;
|
|
@@ -10335,6 +10723,7 @@ declare class AggregationTreeComponent {
|
|
|
10335
10723
|
customData?: string[];
|
|
10336
10724
|
};
|
|
10337
10725
|
previewMultiConversion?: boolean;
|
|
10726
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10338
10727
|
};
|
|
10339
10728
|
allowAdvancedFilters?: boolean;
|
|
10340
10729
|
general?: {
|
|
@@ -10376,6 +10765,7 @@ declare class AggregationTreeComponent {
|
|
|
10376
10765
|
customData?: string[];
|
|
10377
10766
|
};
|
|
10378
10767
|
previewMultiConversion?: boolean;
|
|
10768
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10379
10769
|
};
|
|
10380
10770
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10381
10771
|
};
|
|
@@ -10675,6 +11065,7 @@ declare class AggregationComponent {
|
|
|
10675
11065
|
customData?: string[];
|
|
10676
11066
|
};
|
|
10677
11067
|
previewMultiConversion?: boolean;
|
|
11068
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10678
11069
|
};
|
|
10679
11070
|
allowAdvancedFilters?: boolean;
|
|
10680
11071
|
general?: {
|
|
@@ -10716,6 +11107,7 @@ declare class AggregationComponent {
|
|
|
10716
11107
|
customData?: string[];
|
|
10717
11108
|
};
|
|
10718
11109
|
previewMultiConversion?: boolean;
|
|
11110
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10719
11111
|
};
|
|
10720
11112
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10721
11113
|
};
|
|
@@ -10778,6 +11170,7 @@ declare class AggregationComponent {
|
|
|
10778
11170
|
customData?: string[];
|
|
10779
11171
|
};
|
|
10780
11172
|
previewMultiConversion?: boolean;
|
|
11173
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10781
11174
|
};
|
|
10782
11175
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10783
11176
|
} | undefined>;
|
|
@@ -10868,6 +11261,7 @@ declare class AggregationComponent {
|
|
|
10868
11261
|
customData?: string[];
|
|
10869
11262
|
};
|
|
10870
11263
|
previewMultiConversion?: boolean;
|
|
11264
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10871
11265
|
};
|
|
10872
11266
|
allowAdvancedFilters?: boolean;
|
|
10873
11267
|
general?: {
|
|
@@ -10909,6 +11303,7 @@ declare class AggregationComponent {
|
|
|
10909
11303
|
customData?: string[];
|
|
10910
11304
|
};
|
|
10911
11305
|
previewMultiConversion?: boolean;
|
|
11306
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10912
11307
|
};
|
|
10913
11308
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10914
11309
|
};
|
|
@@ -11049,7 +11444,7 @@ declare class FilterButtonComponent {
|
|
|
11049
11444
|
position: _angular_core.InputSignal<Placement>;
|
|
11050
11445
|
offset: _angular_core.InputSignal<number>;
|
|
11051
11446
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11052
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11447
|
+
protected variant: _angular_core.WritableSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "ghost" | "light-accent" | "tertiary" | "link" | "icon" | null | undefined>;
|
|
11053
11448
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11054
11449
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11055
11450
|
protected nativeElement: any;
|
|
@@ -11063,17 +11458,16 @@ declare class FilterButtonComponent {
|
|
|
11063
11458
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
11064
11459
|
}>;
|
|
11065
11460
|
protected queryParamsStore: {
|
|
11066
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11067
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11068
11461
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11069
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11070
11462
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11463
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11071
11464
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11072
11465
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11073
11466
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11074
11467
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11075
11468
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11076
11469
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11470
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11077
11471
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11078
11472
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11079
11473
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11087,6 +11481,7 @@ declare class FilterButtonComponent {
|
|
|
11087
11481
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11088
11482
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11089
11483
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11484
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11090
11485
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11091
11486
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11092
11487
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11118,17 +11513,16 @@ declare class FilterButtonComponent {
|
|
|
11118
11513
|
}> | null;
|
|
11119
11514
|
getQuery: () => _sinequa_atomic.Query;
|
|
11120
11515
|
} & _ngrx_signals.StateSource<{
|
|
11121
|
-
text?: string | undefined;
|
|
11122
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11123
11516
|
name?: string | undefined;
|
|
11124
|
-
sort?: string | undefined;
|
|
11125
11517
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11518
|
+
text?: string | undefined;
|
|
11126
11519
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11127
11520
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11128
11521
|
page?: number | undefined;
|
|
11129
11522
|
pageSize?: number | undefined;
|
|
11130
11523
|
tab?: string | undefined;
|
|
11131
11524
|
scope?: string | undefined;
|
|
11525
|
+
sort?: string | undefined;
|
|
11132
11526
|
basket?: string | undefined;
|
|
11133
11527
|
isFirstPage?: boolean | undefined;
|
|
11134
11528
|
strictRefine?: boolean | undefined;
|
|
@@ -11142,6 +11536,7 @@ declare class FilterButtonComponent {
|
|
|
11142
11536
|
relevanceTransforms?: string | undefined;
|
|
11143
11537
|
removeDuplicates?: boolean | undefined;
|
|
11144
11538
|
queryId?: string | undefined;
|
|
11539
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11145
11540
|
orderBy?: string | undefined;
|
|
11146
11541
|
groupBy?: string | undefined;
|
|
11147
11542
|
neuralSearch?: boolean | undefined;
|
|
@@ -11201,6 +11596,7 @@ declare class FilterButtonComponent {
|
|
|
11201
11596
|
customData?: string[];
|
|
11202
11597
|
};
|
|
11203
11598
|
previewMultiConversion?: boolean;
|
|
11599
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11204
11600
|
};
|
|
11205
11601
|
allowAdvancedFilters?: boolean;
|
|
11206
11602
|
general?: {
|
|
@@ -11242,6 +11638,7 @@ declare class FilterButtonComponent {
|
|
|
11242
11638
|
customData?: string[];
|
|
11243
11639
|
};
|
|
11244
11640
|
previewMultiConversion?: boolean;
|
|
11641
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11245
11642
|
};
|
|
11246
11643
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11247
11644
|
};
|
|
@@ -11304,6 +11701,7 @@ declare class FilterButtonComponent {
|
|
|
11304
11701
|
customData?: string[];
|
|
11305
11702
|
};
|
|
11306
11703
|
previewMultiConversion?: boolean;
|
|
11704
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11307
11705
|
};
|
|
11308
11706
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11309
11707
|
} | undefined>;
|
|
@@ -11394,6 +11792,7 @@ declare class FilterButtonComponent {
|
|
|
11394
11792
|
customData?: string[];
|
|
11395
11793
|
};
|
|
11396
11794
|
previewMultiConversion?: boolean;
|
|
11795
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11397
11796
|
};
|
|
11398
11797
|
allowAdvancedFilters?: boolean;
|
|
11399
11798
|
general?: {
|
|
@@ -11435,6 +11834,7 @@ declare class FilterButtonComponent {
|
|
|
11435
11834
|
customData?: string[];
|
|
11436
11835
|
};
|
|
11437
11836
|
previewMultiConversion?: boolean;
|
|
11837
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11438
11838
|
};
|
|
11439
11839
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11440
11840
|
};
|
|
@@ -11521,6 +11921,7 @@ declare class MoreButtonComponent {
|
|
|
11521
11921
|
customData?: string[];
|
|
11522
11922
|
};
|
|
11523
11923
|
previewMultiConversion?: boolean;
|
|
11924
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11524
11925
|
};
|
|
11525
11926
|
allowAdvancedFilters?: boolean;
|
|
11526
11927
|
general?: {
|
|
@@ -11562,6 +11963,7 @@ declare class MoreButtonComponent {
|
|
|
11562
11963
|
customData?: string[];
|
|
11563
11964
|
};
|
|
11564
11965
|
previewMultiConversion?: boolean;
|
|
11966
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11565
11967
|
};
|
|
11566
11968
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11567
11969
|
};
|
|
@@ -11624,6 +12026,7 @@ declare class MoreButtonComponent {
|
|
|
11624
12026
|
customData?: string[];
|
|
11625
12027
|
};
|
|
11626
12028
|
previewMultiConversion?: boolean;
|
|
12029
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11627
12030
|
};
|
|
11628
12031
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11629
12032
|
} | undefined>;
|
|
@@ -11714,6 +12117,7 @@ declare class MoreButtonComponent {
|
|
|
11714
12117
|
customData?: string[];
|
|
11715
12118
|
};
|
|
11716
12119
|
previewMultiConversion?: boolean;
|
|
12120
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11717
12121
|
};
|
|
11718
12122
|
allowAdvancedFilters?: boolean;
|
|
11719
12123
|
general?: {
|
|
@@ -11755,6 +12159,7 @@ declare class MoreButtonComponent {
|
|
|
11755
12159
|
customData?: string[];
|
|
11756
12160
|
};
|
|
11757
12161
|
previewMultiConversion?: boolean;
|
|
12162
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11758
12163
|
};
|
|
11759
12164
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11760
12165
|
};
|
|
@@ -11777,17 +12182,16 @@ declare class MoreButtonComponent {
|
|
|
11777
12182
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
11778
12183
|
}>;
|
|
11779
12184
|
queryParamsStore: {
|
|
11780
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11781
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11782
12185
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11783
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11784
12186
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12187
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11785
12188
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11786
12189
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11787
12190
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11788
12191
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11789
12192
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11790
12193
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12194
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11791
12195
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11792
12196
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11793
12197
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11801,6 +12205,7 @@ declare class MoreButtonComponent {
|
|
|
11801
12205
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11802
12206
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11803
12207
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12208
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11804
12209
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11805
12210
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11806
12211
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11832,17 +12237,16 @@ declare class MoreButtonComponent {
|
|
|
11832
12237
|
}> | null;
|
|
11833
12238
|
getQuery: () => _sinequa_atomic.Query;
|
|
11834
12239
|
} & _ngrx_signals.StateSource<{
|
|
11835
|
-
text?: string | undefined;
|
|
11836
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11837
12240
|
name?: string | undefined;
|
|
11838
|
-
sort?: string | undefined;
|
|
11839
12241
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12242
|
+
text?: string | undefined;
|
|
11840
12243
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11841
12244
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11842
12245
|
page?: number | undefined;
|
|
11843
12246
|
pageSize?: number | undefined;
|
|
11844
12247
|
tab?: string | undefined;
|
|
11845
12248
|
scope?: string | undefined;
|
|
12249
|
+
sort?: string | undefined;
|
|
11846
12250
|
basket?: string | undefined;
|
|
11847
12251
|
isFirstPage?: boolean | undefined;
|
|
11848
12252
|
strictRefine?: boolean | undefined;
|
|
@@ -11856,6 +12260,7 @@ declare class MoreButtonComponent {
|
|
|
11856
12260
|
relevanceTransforms?: string | undefined;
|
|
11857
12261
|
removeDuplicates?: boolean | undefined;
|
|
11858
12262
|
queryId?: string | undefined;
|
|
12263
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11859
12264
|
orderBy?: string | undefined;
|
|
11860
12265
|
groupBy?: string | undefined;
|
|
11861
12266
|
neuralSearch?: boolean | undefined;
|
|
@@ -11997,6 +12402,7 @@ declare class FiltersBarComponent {
|
|
|
11997
12402
|
customData?: string[];
|
|
11998
12403
|
};
|
|
11999
12404
|
previewMultiConversion?: boolean;
|
|
12405
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12000
12406
|
};
|
|
12001
12407
|
allowAdvancedFilters?: boolean;
|
|
12002
12408
|
general?: {
|
|
@@ -12038,6 +12444,7 @@ declare class FiltersBarComponent {
|
|
|
12038
12444
|
customData?: string[];
|
|
12039
12445
|
};
|
|
12040
12446
|
previewMultiConversion?: boolean;
|
|
12447
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12041
12448
|
};
|
|
12042
12449
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12043
12450
|
};
|
|
@@ -12100,6 +12507,7 @@ declare class FiltersBarComponent {
|
|
|
12100
12507
|
customData?: string[];
|
|
12101
12508
|
};
|
|
12102
12509
|
previewMultiConversion?: boolean;
|
|
12510
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12103
12511
|
};
|
|
12104
12512
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12105
12513
|
} | undefined>;
|
|
@@ -12190,6 +12598,7 @@ declare class FiltersBarComponent {
|
|
|
12190
12598
|
customData?: string[];
|
|
12191
12599
|
};
|
|
12192
12600
|
previewMultiConversion?: boolean;
|
|
12601
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12193
12602
|
};
|
|
12194
12603
|
allowAdvancedFilters?: boolean;
|
|
12195
12604
|
general?: {
|
|
@@ -12231,6 +12640,7 @@ declare class FiltersBarComponent {
|
|
|
12231
12640
|
customData?: string[];
|
|
12232
12641
|
};
|
|
12233
12642
|
previewMultiConversion?: boolean;
|
|
12643
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12234
12644
|
};
|
|
12235
12645
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12236
12646
|
};
|
|
@@ -12262,17 +12672,16 @@ declare class FiltersBarComponent {
|
|
|
12262
12672
|
aggregations: Aggregation[];
|
|
12263
12673
|
}>;
|
|
12264
12674
|
protected queryParamsStore: {
|
|
12265
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12266
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12267
12675
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12268
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12269
12676
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12677
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12270
12678
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12271
12679
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12272
12680
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12273
12681
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12274
12682
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12275
12683
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12684
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12276
12685
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12277
12686
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12278
12687
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12286,6 +12695,7 @@ declare class FiltersBarComponent {
|
|
|
12286
12695
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12287
12696
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12288
12697
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12698
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12289
12699
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12290
12700
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12291
12701
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12317,17 +12727,16 @@ declare class FiltersBarComponent {
|
|
|
12317
12727
|
}> | null;
|
|
12318
12728
|
getQuery: () => _sinequa_atomic.Query;
|
|
12319
12729
|
} & _ngrx_signals.StateSource<{
|
|
12320
|
-
text?: string | undefined;
|
|
12321
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12322
12730
|
name?: string | undefined;
|
|
12323
|
-
sort?: string | undefined;
|
|
12324
12731
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12732
|
+
text?: string | undefined;
|
|
12325
12733
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12326
12734
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12327
12735
|
page?: number | undefined;
|
|
12328
12736
|
pageSize?: number | undefined;
|
|
12329
12737
|
tab?: string | undefined;
|
|
12330
12738
|
scope?: string | undefined;
|
|
12739
|
+
sort?: string | undefined;
|
|
12331
12740
|
basket?: string | undefined;
|
|
12332
12741
|
isFirstPage?: boolean | undefined;
|
|
12333
12742
|
strictRefine?: boolean | undefined;
|
|
@@ -12341,6 +12750,7 @@ declare class FiltersBarComponent {
|
|
|
12341
12750
|
relevanceTransforms?: string | undefined;
|
|
12342
12751
|
removeDuplicates?: boolean | undefined;
|
|
12343
12752
|
queryId?: string | undefined;
|
|
12753
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12344
12754
|
orderBy?: string | undefined;
|
|
12345
12755
|
groupBy?: string | undefined;
|
|
12346
12756
|
neuralSearch?: boolean | undefined;
|
|
@@ -12493,6 +12903,7 @@ declare class MoreComponent {
|
|
|
12493
12903
|
customData?: string[];
|
|
12494
12904
|
};
|
|
12495
12905
|
previewMultiConversion?: boolean;
|
|
12906
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12496
12907
|
};
|
|
12497
12908
|
allowAdvancedFilters?: boolean;
|
|
12498
12909
|
general?: {
|
|
@@ -12534,6 +12945,7 @@ declare class MoreComponent {
|
|
|
12534
12945
|
customData?: string[];
|
|
12535
12946
|
};
|
|
12536
12947
|
previewMultiConversion?: boolean;
|
|
12948
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12537
12949
|
};
|
|
12538
12950
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12539
12951
|
};
|
|
@@ -12596,6 +13008,7 @@ declare class MoreComponent {
|
|
|
12596
13008
|
customData?: string[];
|
|
12597
13009
|
};
|
|
12598
13010
|
previewMultiConversion?: boolean;
|
|
13011
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12599
13012
|
};
|
|
12600
13013
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12601
13014
|
} | undefined>;
|
|
@@ -12686,6 +13099,7 @@ declare class MoreComponent {
|
|
|
12686
13099
|
customData?: string[];
|
|
12687
13100
|
};
|
|
12688
13101
|
previewMultiConversion?: boolean;
|
|
13102
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12689
13103
|
};
|
|
12690
13104
|
allowAdvancedFilters?: boolean;
|
|
12691
13105
|
general?: {
|
|
@@ -12727,6 +13141,7 @@ declare class MoreComponent {
|
|
|
12727
13141
|
customData?: string[];
|
|
12728
13142
|
};
|
|
12729
13143
|
previewMultiConversion?: boolean;
|
|
13144
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12730
13145
|
};
|
|
12731
13146
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12732
13147
|
};
|
|
@@ -12758,17 +13173,16 @@ declare class MoreComponent {
|
|
|
12758
13173
|
aggregations: Aggregation[];
|
|
12759
13174
|
}>;
|
|
12760
13175
|
queryParamsStore: {
|
|
12761
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12762
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12763
13176
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12764
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12765
13177
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13178
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12766
13179
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12767
13180
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12768
13181
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12769
13182
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12770
13183
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12771
13184
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13185
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12772
13186
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12773
13187
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12774
13188
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12782,6 +13196,7 @@ declare class MoreComponent {
|
|
|
12782
13196
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12783
13197
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12784
13198
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13199
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12785
13200
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12786
13201
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12787
13202
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12813,17 +13228,16 @@ declare class MoreComponent {
|
|
|
12813
13228
|
}> | null;
|
|
12814
13229
|
getQuery: () => _sinequa_atomic.Query;
|
|
12815
13230
|
} & _ngrx_signals.StateSource<{
|
|
12816
|
-
text?: string | undefined;
|
|
12817
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12818
13231
|
name?: string | undefined;
|
|
12819
|
-
sort?: string | undefined;
|
|
12820
13232
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13233
|
+
text?: string | undefined;
|
|
12821
13234
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12822
13235
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12823
13236
|
page?: number | undefined;
|
|
12824
13237
|
pageSize?: number | undefined;
|
|
12825
13238
|
tab?: string | undefined;
|
|
12826
13239
|
scope?: string | undefined;
|
|
13240
|
+
sort?: string | undefined;
|
|
12827
13241
|
basket?: string | undefined;
|
|
12828
13242
|
isFirstPage?: boolean | undefined;
|
|
12829
13243
|
strictRefine?: boolean | undefined;
|
|
@@ -12837,6 +13251,7 @@ declare class MoreComponent {
|
|
|
12837
13251
|
relevanceTransforms?: string | undefined;
|
|
12838
13252
|
removeDuplicates?: boolean | undefined;
|
|
12839
13253
|
queryId?: string | undefined;
|
|
13254
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12840
13255
|
orderBy?: string | undefined;
|
|
12841
13256
|
groupBy?: string | undefined;
|
|
12842
13257
|
neuralSearch?: boolean | undefined;
|
|
@@ -12957,6 +13372,7 @@ declare class LabelService {
|
|
|
12957
13372
|
customData?: string[];
|
|
12958
13373
|
};
|
|
12959
13374
|
previewMultiConversion?: boolean;
|
|
13375
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12960
13376
|
};
|
|
12961
13377
|
allowAdvancedFilters?: boolean;
|
|
12962
13378
|
general?: {
|
|
@@ -12998,6 +13414,7 @@ declare class LabelService {
|
|
|
12998
13414
|
customData?: string[];
|
|
12999
13415
|
};
|
|
13000
13416
|
previewMultiConversion?: boolean;
|
|
13417
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13001
13418
|
};
|
|
13002
13419
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13003
13420
|
};
|
|
@@ -13060,6 +13477,7 @@ declare class LabelService {
|
|
|
13060
13477
|
customData?: string[];
|
|
13061
13478
|
};
|
|
13062
13479
|
previewMultiConversion?: boolean;
|
|
13480
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13063
13481
|
};
|
|
13064
13482
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13065
13483
|
} | undefined>;
|
|
@@ -13150,6 +13568,7 @@ declare class LabelService {
|
|
|
13150
13568
|
customData?: string[];
|
|
13151
13569
|
};
|
|
13152
13570
|
previewMultiConversion?: boolean;
|
|
13571
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13153
13572
|
};
|
|
13154
13573
|
allowAdvancedFilters?: boolean;
|
|
13155
13574
|
general?: {
|
|
@@ -13191,6 +13610,7 @@ declare class LabelService {
|
|
|
13191
13610
|
customData?: string[];
|
|
13192
13611
|
};
|
|
13193
13612
|
previewMultiConversion?: boolean;
|
|
13613
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13194
13614
|
};
|
|
13195
13615
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13196
13616
|
};
|
|
@@ -13382,7 +13802,7 @@ declare class RecentSearchesComponent {
|
|
|
13382
13802
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13383
13803
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13384
13804
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13385
|
-
userTheme: _angular_core.Signal<"
|
|
13805
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13386
13806
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13387
13807
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13388
13808
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13447,17 +13867,16 @@ declare class RecentSearchesComponent {
|
|
|
13447
13867
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13448
13868
|
private readonly savedSearchesService;
|
|
13449
13869
|
protected readonly queryParamsStore: {
|
|
13450
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13451
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13452
13870
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13453
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13454
13871
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13872
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13455
13873
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13456
13874
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13457
13875
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13458
13876
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13459
13877
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13460
13878
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13879
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13461
13880
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13462
13881
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13463
13882
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13471,6 +13890,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13471
13890
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13472
13891
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13473
13892
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13893
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13474
13894
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13475
13895
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13476
13896
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13502,17 +13922,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13502
13922
|
}> | null;
|
|
13503
13923
|
getQuery: () => _sinequa_atomic.Query;
|
|
13504
13924
|
} & _ngrx_signals.StateSource<{
|
|
13505
|
-
text?: string | undefined;
|
|
13506
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13507
13925
|
name?: string | undefined;
|
|
13508
|
-
sort?: string | undefined;
|
|
13509
13926
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13927
|
+
text?: string | undefined;
|
|
13510
13928
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13511
13929
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13512
13930
|
page?: number | undefined;
|
|
13513
13931
|
pageSize?: number | undefined;
|
|
13514
13932
|
tab?: string | undefined;
|
|
13515
13933
|
scope?: string | undefined;
|
|
13934
|
+
sort?: string | undefined;
|
|
13516
13935
|
basket?: string | undefined;
|
|
13517
13936
|
isFirstPage?: boolean | undefined;
|
|
13518
13937
|
strictRefine?: boolean | undefined;
|
|
@@ -13526,6 +13945,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13526
13945
|
relevanceTransforms?: string | undefined;
|
|
13527
13946
|
removeDuplicates?: boolean | undefined;
|
|
13528
13947
|
queryId?: string | undefined;
|
|
13948
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13529
13949
|
orderBy?: string | undefined;
|
|
13530
13950
|
groupBy?: string | undefined;
|
|
13531
13951
|
neuralSearch?: boolean | undefined;
|
|
@@ -13557,7 +13977,7 @@ declare class SavedSearchesComponent {
|
|
|
13557
13977
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13558
13978
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13559
13979
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13560
|
-
userTheme: _angular_core.Signal<"
|
|
13980
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13561
13981
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13562
13982
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13563
13983
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13652,7 +14072,7 @@ declare class UserProfileFormComponent {
|
|
|
13652
14072
|
param9: _angular_core.Signal<string>;
|
|
13653
14073
|
param10: _angular_core.Signal<string>;
|
|
13654
14074
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
13655
|
-
state: _angular_core.Signal<"
|
|
14075
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
13656
14076
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
13657
14077
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
13658
14078
|
initials: _angular_core.Signal<string>;
|
|
@@ -13696,7 +14116,7 @@ declare class UserProfileFormComponent {
|
|
|
13696
14116
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13697
14117
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13698
14118
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13699
|
-
userTheme: _angular_core.Signal<"
|
|
14119
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13700
14120
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13701
14121
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13702
14122
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13794,6 +14214,7 @@ declare class UserProfileFormComponent {
|
|
|
13794
14214
|
customData?: string[];
|
|
13795
14215
|
};
|
|
13796
14216
|
previewMultiConversion?: boolean;
|
|
14217
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13797
14218
|
};
|
|
13798
14219
|
allowAdvancedFilters?: boolean;
|
|
13799
14220
|
general?: {
|
|
@@ -13835,6 +14256,7 @@ declare class UserProfileFormComponent {
|
|
|
13835
14256
|
customData?: string[];
|
|
13836
14257
|
};
|
|
13837
14258
|
previewMultiConversion?: boolean;
|
|
14259
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13838
14260
|
};
|
|
13839
14261
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13840
14262
|
};
|
|
@@ -13897,6 +14319,7 @@ declare class UserProfileFormComponent {
|
|
|
13897
14319
|
customData?: string[];
|
|
13898
14320
|
};
|
|
13899
14321
|
previewMultiConversion?: boolean;
|
|
14322
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13900
14323
|
};
|
|
13901
14324
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13902
14325
|
} | undefined>;
|
|
@@ -13987,6 +14410,7 @@ declare class UserProfileFormComponent {
|
|
|
13987
14410
|
customData?: string[];
|
|
13988
14411
|
};
|
|
13989
14412
|
previewMultiConversion?: boolean;
|
|
14413
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13990
14414
|
};
|
|
13991
14415
|
allowAdvancedFilters?: boolean;
|
|
13992
14416
|
general?: {
|
|
@@ -14028,6 +14452,7 @@ declare class UserProfileFormComponent {
|
|
|
14028
14452
|
customData?: string[];
|
|
14029
14453
|
};
|
|
14030
14454
|
previewMultiConversion?: boolean;
|
|
14455
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14031
14456
|
};
|
|
14032
14457
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14033
14458
|
};
|
|
@@ -14268,6 +14693,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14268
14693
|
customData?: string[];
|
|
14269
14694
|
};
|
|
14270
14695
|
previewMultiConversion?: boolean;
|
|
14696
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14271
14697
|
};
|
|
14272
14698
|
allowAdvancedFilters?: boolean;
|
|
14273
14699
|
general?: {
|
|
@@ -14309,6 +14735,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14309
14735
|
customData?: string[];
|
|
14310
14736
|
};
|
|
14311
14737
|
previewMultiConversion?: boolean;
|
|
14738
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14312
14739
|
};
|
|
14313
14740
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14314
14741
|
};
|
|
@@ -14371,6 +14798,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14371
14798
|
customData?: string[];
|
|
14372
14799
|
};
|
|
14373
14800
|
previewMultiConversion?: boolean;
|
|
14801
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14374
14802
|
};
|
|
14375
14803
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14376
14804
|
} | undefined>;
|
|
@@ -14461,6 +14889,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14461
14889
|
customData?: string[];
|
|
14462
14890
|
};
|
|
14463
14891
|
previewMultiConversion?: boolean;
|
|
14892
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14464
14893
|
};
|
|
14465
14894
|
allowAdvancedFilters?: boolean;
|
|
14466
14895
|
general?: {
|
|
@@ -14502,6 +14931,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14502
14931
|
customData?: string[];
|
|
14503
14932
|
};
|
|
14504
14933
|
previewMultiConversion?: boolean;
|
|
14934
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14505
14935
|
};
|
|
14506
14936
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14507
14937
|
};
|