@sinequa/atomic-angular 1.0.18 → 1.0.19
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 +50 -13
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +164 -157
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,8 +114,10 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
117
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
119
121
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
120
122
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
121
123
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -123,7 +125,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
123
125
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
124
126
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
125
127
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
126
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
127
128
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
128
129
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
129
130
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -137,7 +138,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
137
138
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
138
139
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
139
140
|
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,8 +169,10 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
-
name?: string | undefined;
|
|
173
172
|
text?: string | undefined;
|
|
173
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
|
+
name?: string | undefined;
|
|
175
|
+
sort?: string | undefined;
|
|
174
176
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
175
177
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
176
178
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -178,7 +180,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
178
180
|
pageSize?: number | undefined;
|
|
179
181
|
tab?: string | undefined;
|
|
180
182
|
scope?: string | undefined;
|
|
181
|
-
sort?: string | undefined;
|
|
182
183
|
basket?: string | undefined;
|
|
183
184
|
isFirstPage?: boolean | undefined;
|
|
184
185
|
strictRefine?: boolean | undefined;
|
|
@@ -192,7 +193,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
192
193
|
relevanceTransforms?: string | undefined;
|
|
193
194
|
removeDuplicates?: boolean | undefined;
|
|
194
195
|
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;
|
|
@@ -258,7 +258,7 @@ declare class MetadataComponent {
|
|
|
258
258
|
event: Event;
|
|
259
259
|
}>;
|
|
260
260
|
class: _angular_core.InputSignal<string | undefined>;
|
|
261
|
-
variant: _angular_core.InputSignal<"error" | "default" | "
|
|
261
|
+
variant: _angular_core.InputSignal<"error" | "default" | "none" | "secondary" | "destructive" | "ai" | "accent" | "outline" | "ghost" | "info" | "success" | "warning" | null | undefined>;
|
|
262
262
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
263
263
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
264
264
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -271,8 +271,10 @@ declare class MetadataComponent {
|
|
|
271
271
|
declare class MissingTermsComponent {
|
|
272
272
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
273
273
|
queryParamsStore: {
|
|
274
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
274
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
276
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
276
278
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
277
279
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
278
280
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -280,7 +282,6 @@ declare class MissingTermsComponent {
|
|
|
280
282
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
281
283
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
282
284
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
283
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
284
285
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
285
286
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
286
287
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -294,7 +295,6 @@ declare class MissingTermsComponent {
|
|
|
294
295
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
295
296
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
296
297
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
297
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
298
298
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
299
299
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
300
300
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -326,8 +326,10 @@ declare class MissingTermsComponent {
|
|
|
326
326
|
}> | null;
|
|
327
327
|
getQuery: () => _sinequa_atomic.Query;
|
|
328
328
|
} & _ngrx_signals.StateSource<{
|
|
329
|
-
name?: string | undefined;
|
|
330
329
|
text?: string | undefined;
|
|
330
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
331
|
+
name?: string | undefined;
|
|
332
|
+
sort?: string | undefined;
|
|
331
333
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
332
334
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
333
335
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -335,7 +337,6 @@ declare class MissingTermsComponent {
|
|
|
335
337
|
pageSize?: number | undefined;
|
|
336
338
|
tab?: string | undefined;
|
|
337
339
|
scope?: string | undefined;
|
|
338
|
-
sort?: string | undefined;
|
|
339
340
|
basket?: string | undefined;
|
|
340
341
|
isFirstPage?: boolean | undefined;
|
|
341
342
|
strictRefine?: boolean | undefined;
|
|
@@ -349,7 +350,6 @@ declare class MissingTermsComponent {
|
|
|
349
350
|
relevanceTransforms?: string | undefined;
|
|
350
351
|
removeDuplicates?: boolean | undefined;
|
|
351
352
|
queryId?: string | undefined;
|
|
352
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
353
353
|
orderBy?: string | undefined;
|
|
354
354
|
groupBy?: string | undefined;
|
|
355
355
|
neuralSearch?: boolean | undefined;
|
|
@@ -369,7 +369,7 @@ declare class MissingTermsComponent {
|
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
declare const multiSelectionToolbarVariants: (props?: ({
|
|
372
|
-
variant?: "
|
|
372
|
+
variant?: "dark" | "light" | "glassy" | null | undefined;
|
|
373
373
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
374
374
|
type MultiSelectionToolbarVariants = VariantProps<typeof multiSelectionToolbarVariants>;
|
|
375
375
|
declare class MultiSelectionToolbarComponent {
|
|
@@ -754,7 +754,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
754
754
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
755
755
|
} | undefined;
|
|
756
756
|
readonly class: _angular_core.InputSignal<string>;
|
|
757
|
-
readonly variant: _angular_core.InputSignal<"
|
|
757
|
+
readonly variant: _angular_core.InputSignal<"dark" | "light" | "glassy" | null | undefined>;
|
|
758
758
|
readonly updatedCollections: _angular_core.OutputEmitterRef<void>;
|
|
759
759
|
readonly count: _angular_core.Signal<number>;
|
|
760
760
|
readonly variants: _angular_core.Signal<string>;
|
|
@@ -1716,7 +1716,7 @@ declare const PrincipalStore: _angular_core.Type<{
|
|
|
1716
1716
|
param9: _angular_core.Signal<string>;
|
|
1717
1717
|
param10: _angular_core.Signal<string>;
|
|
1718
1718
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
1719
|
-
state: _angular_core.Signal<"
|
|
1719
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
1720
1720
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
1721
1721
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
1722
1722
|
initials: _angular_core.Signal<string>;
|
|
@@ -1769,8 +1769,10 @@ type QueryParams = {
|
|
|
1769
1769
|
n?: string;
|
|
1770
1770
|
};
|
|
1771
1771
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1772
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1773
1772
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1773
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1774
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1775
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1774
1776
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1775
1777
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1776
1778
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -1778,7 +1780,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1778
1780
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1779
1781
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1780
1782
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1781
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1782
1783
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1783
1784
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1784
1785
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1792,7 +1793,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1792
1793
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1793
1794
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1794
1795
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1795
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1796
1796
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1797
1797
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1798
1798
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1816,8 +1816,10 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1816
1816
|
}> | null;
|
|
1817
1817
|
getQuery: () => _sinequa_atomic.Query;
|
|
1818
1818
|
} & _ngrx_signals.StateSource<{
|
|
1819
|
-
name?: string | undefined;
|
|
1820
1819
|
text?: string | undefined;
|
|
1820
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1821
|
+
name?: string | undefined;
|
|
1822
|
+
sort?: string | undefined;
|
|
1821
1823
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1822
1824
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1823
1825
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -1825,7 +1827,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1825
1827
|
pageSize?: number | undefined;
|
|
1826
1828
|
tab?: string | undefined;
|
|
1827
1829
|
scope?: string | undefined;
|
|
1828
|
-
sort?: string | undefined;
|
|
1829
1830
|
basket?: string | undefined;
|
|
1830
1831
|
isFirstPage?: boolean | undefined;
|
|
1831
1832
|
strictRefine?: boolean | undefined;
|
|
@@ -1839,7 +1840,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1839
1840
|
relevanceTransforms?: string | undefined;
|
|
1840
1841
|
removeDuplicates?: boolean | undefined;
|
|
1841
1842
|
queryId?: string | undefined;
|
|
1842
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1843
1843
|
orderBy?: string | undefined;
|
|
1844
1844
|
groupBy?: string | undefined;
|
|
1845
1845
|
neuralSearch?: boolean | undefined;
|
|
@@ -1849,8 +1849,10 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1849
1849
|
}>>;
|
|
1850
1850
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1851
1851
|
state: {
|
|
1852
|
-
name?: string | undefined;
|
|
1853
1852
|
text?: string | undefined;
|
|
1853
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1854
|
+
name?: string | undefined;
|
|
1855
|
+
sort?: string | undefined;
|
|
1854
1856
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1855
1857
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1856
1858
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -1858,7 +1860,6 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
1858
1860
|
pageSize?: number | undefined;
|
|
1859
1861
|
tab?: string | undefined;
|
|
1860
1862
|
scope?: string | undefined;
|
|
1861
|
-
sort?: string | undefined;
|
|
1862
1863
|
basket?: string | undefined;
|
|
1863
1864
|
isFirstPage?: boolean | undefined;
|
|
1864
1865
|
strictRefine?: boolean | undefined;
|
|
@@ -1872,7 +1873,6 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
1872
1873
|
relevanceTransforms?: string | undefined;
|
|
1873
1874
|
removeDuplicates?: boolean | undefined;
|
|
1874
1875
|
queryId?: string | undefined;
|
|
1875
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1876
1876
|
orderBy?: string | undefined;
|
|
1877
1877
|
groupBy?: string | undefined;
|
|
1878
1878
|
neuralSearch?: boolean | undefined;
|
|
@@ -2066,7 +2066,7 @@ declare const UserSettingsStore: _angular_core.Type<{
|
|
|
2066
2066
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2067
2067
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2068
2068
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2069
|
-
userTheme: _angular_core.Signal<"
|
|
2069
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2070
2070
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2071
2071
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2072
2072
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2603,8 +2603,10 @@ declare class AggregationsService {
|
|
|
2603
2603
|
aggregations: Aggregation[];
|
|
2604
2604
|
}>;
|
|
2605
2605
|
queryParamsStore: {
|
|
2606
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2607
2606
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2607
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2608
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2609
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2608
2610
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2609
2611
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2610
2612
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -2612,7 +2614,6 @@ declare class AggregationsService {
|
|
|
2612
2614
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
2613
2615
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
2614
2616
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
2615
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2616
2617
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
2617
2618
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2618
2619
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2626,7 +2627,6 @@ declare class AggregationsService {
|
|
|
2626
2627
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
2627
2628
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2628
2629
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
2629
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2630
2630
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2631
2631
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2632
2632
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2658,8 +2658,10 @@ declare class AggregationsService {
|
|
|
2658
2658
|
}> | null;
|
|
2659
2659
|
getQuery: () => Query;
|
|
2660
2660
|
} & _ngrx_signals.StateSource<{
|
|
2661
|
-
name?: string | undefined;
|
|
2662
2661
|
text?: string | undefined;
|
|
2662
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2663
|
+
name?: string | undefined;
|
|
2664
|
+
sort?: string | undefined;
|
|
2663
2665
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2664
2666
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2665
2667
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -2667,7 +2669,6 @@ declare class AggregationsService {
|
|
|
2667
2669
|
pageSize?: number | undefined;
|
|
2668
2670
|
tab?: string | undefined;
|
|
2669
2671
|
scope?: string | undefined;
|
|
2670
|
-
sort?: string | undefined;
|
|
2671
2672
|
basket?: string | undefined;
|
|
2672
2673
|
isFirstPage?: boolean | undefined;
|
|
2673
2674
|
strictRefine?: boolean | undefined;
|
|
@@ -2681,7 +2682,6 @@ declare class AggregationsService {
|
|
|
2681
2682
|
relevanceTransforms?: string | undefined;
|
|
2682
2683
|
removeDuplicates?: boolean | undefined;
|
|
2683
2684
|
queryId?: string | undefined;
|
|
2684
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2685
2685
|
orderBy?: string | undefined;
|
|
2686
2686
|
groupBy?: string | undefined;
|
|
2687
2687
|
neuralSearch?: boolean | undefined;
|
|
@@ -2799,7 +2799,7 @@ declare class ApplicationService {
|
|
|
2799
2799
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2800
2800
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2801
2801
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2802
|
-
userTheme: _angular_core.Signal<"
|
|
2802
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2803
2803
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2804
2804
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2805
2805
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2871,7 +2871,7 @@ declare class ApplicationService {
|
|
|
2871
2871
|
param9: _angular_core.Signal<string>;
|
|
2872
2872
|
param10: _angular_core.Signal<string>;
|
|
2873
2873
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2874
|
-
state: _angular_core.Signal<"
|
|
2874
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
2875
2875
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2876
2876
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2877
2877
|
initials: _angular_core.Signal<string>;
|
|
@@ -3659,7 +3659,7 @@ declare class AutocompleteService {
|
|
|
3659
3659
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3660
3660
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3661
3661
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3662
|
-
userTheme: _angular_core.Signal<"
|
|
3662
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
3663
3663
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
3664
3664
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
3665
3665
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4369,8 +4369,10 @@ declare class PreviewService {
|
|
|
4369
4369
|
multiSelection: Article$1[];
|
|
4370
4370
|
}>;
|
|
4371
4371
|
protected readonly queryParamsStore: {
|
|
4372
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
4372
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4374
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4374
4376
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4375
4377
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4376
4378
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4378,7 +4380,6 @@ declare class PreviewService {
|
|
|
4378
4380
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4379
4381
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4380
4382
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4381
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4382
4383
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4383
4384
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4384
4385
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4392,7 +4393,6 @@ declare class PreviewService {
|
|
|
4392
4393
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4393
4394
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4394
4395
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4395
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4396
4396
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4397
4397
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4398
4398
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4424,8 +4424,10 @@ declare class PreviewService {
|
|
|
4424
4424
|
}> | null;
|
|
4425
4425
|
getQuery: () => Query;
|
|
4426
4426
|
} & _ngrx_signals.StateSource<{
|
|
4427
|
-
name?: string | undefined;
|
|
4428
4427
|
text?: string | undefined;
|
|
4428
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4429
|
+
name?: string | undefined;
|
|
4430
|
+
sort?: string | undefined;
|
|
4429
4431
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4430
4432
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4431
4433
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4433,7 +4435,6 @@ declare class PreviewService {
|
|
|
4433
4435
|
pageSize?: number | undefined;
|
|
4434
4436
|
tab?: string | undefined;
|
|
4435
4437
|
scope?: string | undefined;
|
|
4436
|
-
sort?: string | undefined;
|
|
4437
4438
|
basket?: string | undefined;
|
|
4438
4439
|
isFirstPage?: boolean | undefined;
|
|
4439
4440
|
strictRefine?: boolean | undefined;
|
|
@@ -4447,7 +4448,6 @@ declare class PreviewService {
|
|
|
4447
4448
|
relevanceTransforms?: string | undefined;
|
|
4448
4449
|
removeDuplicates?: boolean | undefined;
|
|
4449
4450
|
queryId?: string | undefined;
|
|
4450
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4451
4451
|
orderBy?: string | undefined;
|
|
4452
4452
|
groupBy?: string | undefined;
|
|
4453
4453
|
neuralSearch?: boolean | undefined;
|
|
@@ -4954,7 +4954,7 @@ declare class SavedSearchesService {
|
|
|
4954
4954
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4955
4955
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4956
4956
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4957
|
-
userTheme: _angular_core.Signal<"
|
|
4957
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4958
4958
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4959
4959
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4960
4960
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5000,8 +5000,10 @@ declare class SavedSearchesService {
|
|
|
5000
5000
|
agents: _sinequa_atomic_angular.AgentUserSettings;
|
|
5001
5001
|
}>;
|
|
5002
5002
|
protected readonly queryParamsStore: {
|
|
5003
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5004
5003
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5004
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5005
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5006
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5005
5007
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5006
5008
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5007
5009
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5009,7 +5011,6 @@ declare class SavedSearchesService {
|
|
|
5009
5011
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5010
5012
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5011
5013
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5012
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5013
5014
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5014
5015
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5015
5016
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5023,7 +5024,6 @@ declare class SavedSearchesService {
|
|
|
5023
5024
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5024
5025
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5025
5026
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5026
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5027
5027
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5028
5028
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5029
5029
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5055,8 +5055,10 @@ declare class SavedSearchesService {
|
|
|
5055
5055
|
}> | null;
|
|
5056
5056
|
getQuery: () => _sinequa_atomic.Query;
|
|
5057
5057
|
} & _ngrx_signals.StateSource<{
|
|
5058
|
-
name?: string | undefined;
|
|
5059
5058
|
text?: string | undefined;
|
|
5059
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5060
|
+
name?: string | undefined;
|
|
5061
|
+
sort?: string | undefined;
|
|
5060
5062
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5061
5063
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5062
5064
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5064,7 +5066,6 @@ declare class SavedSearchesService {
|
|
|
5064
5066
|
pageSize?: number | undefined;
|
|
5065
5067
|
tab?: string | undefined;
|
|
5066
5068
|
scope?: string | undefined;
|
|
5067
|
-
sort?: string | undefined;
|
|
5068
5069
|
basket?: string | undefined;
|
|
5069
5070
|
isFirstPage?: boolean | undefined;
|
|
5070
5071
|
strictRefine?: boolean | undefined;
|
|
@@ -5078,7 +5079,6 @@ declare class SavedSearchesService {
|
|
|
5078
5079
|
relevanceTransforms?: string | undefined;
|
|
5079
5080
|
removeDuplicates?: boolean | undefined;
|
|
5080
5081
|
queryId?: string | undefined;
|
|
5081
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5082
5082
|
orderBy?: string | undefined;
|
|
5083
5083
|
groupBy?: string | undefined;
|
|
5084
5084
|
neuralSearch?: boolean | undefined;
|
|
@@ -5141,8 +5141,10 @@ declare class SearchService {
|
|
|
5141
5141
|
result: Result;
|
|
5142
5142
|
audit?: AuditEvents;
|
|
5143
5143
|
protected readonly queryParamsStore: {
|
|
5144
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5145
5144
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5145
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5146
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5147
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5146
5148
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5147
5149
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5148
5150
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5150,7 +5152,6 @@ declare class SearchService {
|
|
|
5150
5152
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5151
5153
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5152
5154
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5153
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5154
5155
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5155
5156
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5156
5157
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5164,7 +5165,6 @@ declare class SearchService {
|
|
|
5164
5165
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5165
5166
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5166
5167
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5167
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5168
5168
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5169
5169
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5170
5170
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5196,8 +5196,10 @@ declare class SearchService {
|
|
|
5196
5196
|
}> | null;
|
|
5197
5197
|
getQuery: () => Query;
|
|
5198
5198
|
} & _ngrx_signals.StateSource<{
|
|
5199
|
-
name?: string | undefined;
|
|
5200
5199
|
text?: string | undefined;
|
|
5200
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5201
|
+
name?: string | undefined;
|
|
5202
|
+
sort?: string | undefined;
|
|
5201
5203
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5202
5204
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5203
5205
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5205,7 +5207,6 @@ declare class SearchService {
|
|
|
5205
5207
|
pageSize?: number | undefined;
|
|
5206
5208
|
tab?: string | undefined;
|
|
5207
5209
|
scope?: string | undefined;
|
|
5208
|
-
sort?: string | undefined;
|
|
5209
5210
|
basket?: string | undefined;
|
|
5210
5211
|
isFirstPage?: boolean | undefined;
|
|
5211
5212
|
strictRefine?: boolean | undefined;
|
|
@@ -5219,7 +5220,6 @@ declare class SearchService {
|
|
|
5219
5220
|
relevanceTransforms?: string | undefined;
|
|
5220
5221
|
removeDuplicates?: boolean | undefined;
|
|
5221
5222
|
queryId?: string | undefined;
|
|
5222
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5223
5223
|
orderBy?: string | undefined;
|
|
5224
5224
|
groupBy?: string | undefined;
|
|
5225
5225
|
neuralSearch?: boolean | undefined;
|
|
@@ -5236,7 +5236,7 @@ declare class SearchService {
|
|
|
5236
5236
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5237
5237
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5238
5238
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5239
|
-
userTheme: _angular_core.Signal<"
|
|
5239
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5240
5240
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5241
5241
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5242
5242
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5332,8 +5332,10 @@ declare class SelectionService {
|
|
|
5332
5332
|
private readonly location;
|
|
5333
5333
|
private readonly selectionStore;
|
|
5334
5334
|
queryParamsStore: {
|
|
5335
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5336
5335
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5336
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5337
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5338
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5337
5339
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5338
5340
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5339
5341
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5341,7 +5343,6 @@ declare class SelectionService {
|
|
|
5341
5343
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5342
5344
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5343
5345
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5344
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5345
5346
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5346
5347
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5347
5348
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5355,7 +5356,6 @@ declare class SelectionService {
|
|
|
5355
5356
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5356
5357
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5357
5358
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5358
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5359
5359
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5360
5360
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5361
5361
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5387,8 +5387,10 @@ declare class SelectionService {
|
|
|
5387
5387
|
}> | null;
|
|
5388
5388
|
getQuery: () => _sinequa_atomic.Query;
|
|
5389
5389
|
} & _ngrx_signals.StateSource<{
|
|
5390
|
-
name?: string | undefined;
|
|
5391
5390
|
text?: string | undefined;
|
|
5391
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5392
|
+
name?: string | undefined;
|
|
5393
|
+
sort?: string | undefined;
|
|
5392
5394
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5393
5395
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5394
5396
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5396,7 +5398,6 @@ declare class SelectionService {
|
|
|
5396
5398
|
pageSize?: number | undefined;
|
|
5397
5399
|
tab?: string | undefined;
|
|
5398
5400
|
scope?: string | undefined;
|
|
5399
|
-
sort?: string | undefined;
|
|
5400
5401
|
basket?: string | undefined;
|
|
5401
5402
|
isFirstPage?: boolean | undefined;
|
|
5402
5403
|
strictRefine?: boolean | undefined;
|
|
@@ -5410,7 +5411,6 @@ declare class SelectionService {
|
|
|
5410
5411
|
relevanceTransforms?: string | undefined;
|
|
5411
5412
|
removeDuplicates?: boolean | undefined;
|
|
5412
5413
|
queryId?: string | undefined;
|
|
5413
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5414
5414
|
orderBy?: string | undefined;
|
|
5415
5415
|
groupBy?: string | undefined;
|
|
5416
5416
|
neuralSearch?: boolean | undefined;
|
|
@@ -5868,8 +5868,10 @@ declare class NavbarTabsComponent {
|
|
|
5868
5868
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5869
5869
|
}>;
|
|
5870
5870
|
readonly queryParamsStore: {
|
|
5871
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5872
5871
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5872
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5873
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5874
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5873
5875
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5874
5876
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5875
5877
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5877,7 +5879,6 @@ declare class NavbarTabsComponent {
|
|
|
5877
5879
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5878
5880
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5879
5881
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5880
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5881
5882
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5882
5883
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5883
5884
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5891,7 +5892,6 @@ declare class NavbarTabsComponent {
|
|
|
5891
5892
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5892
5893
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5893
5894
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5894
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5895
5895
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5896
5896
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5897
5897
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5923,8 +5923,10 @@ declare class NavbarTabsComponent {
|
|
|
5923
5923
|
}> | null;
|
|
5924
5924
|
getQuery: () => _sinequa_atomic.Query;
|
|
5925
5925
|
} & _ngrx_signals.StateSource<{
|
|
5926
|
-
name?: string | undefined;
|
|
5927
5926
|
text?: string | undefined;
|
|
5927
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5928
|
+
name?: string | undefined;
|
|
5929
|
+
sort?: string | undefined;
|
|
5928
5930
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5929
5931
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5930
5932
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5932,7 +5934,6 @@ declare class NavbarTabsComponent {
|
|
|
5932
5934
|
pageSize?: number | undefined;
|
|
5933
5935
|
tab?: string | undefined;
|
|
5934
5936
|
scope?: string | undefined;
|
|
5935
|
-
sort?: string | undefined;
|
|
5936
5937
|
basket?: string | undefined;
|
|
5937
5938
|
isFirstPage?: boolean | undefined;
|
|
5938
5939
|
strictRefine?: boolean | undefined;
|
|
@@ -5946,7 +5947,6 @@ declare class NavbarTabsComponent {
|
|
|
5946
5947
|
relevanceTransforms?: string | undefined;
|
|
5947
5948
|
removeDuplicates?: boolean | undefined;
|
|
5948
5949
|
queryId?: string | undefined;
|
|
5949
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5950
5950
|
orderBy?: string | undefined;
|
|
5951
5951
|
groupBy?: string | undefined;
|
|
5952
5952
|
neuralSearch?: boolean | undefined;
|
|
@@ -6427,7 +6427,7 @@ declare class ShowBookmarkDirective {
|
|
|
6427
6427
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6428
6428
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6429
6429
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6430
|
-
userTheme: _angular_core.Signal<"
|
|
6430
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6431
6431
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6432
6432
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6433
6433
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -7125,8 +7125,10 @@ declare class SponsoredResultsComponent {
|
|
|
7125
7125
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7126
7126
|
}>;
|
|
7127
7127
|
queryParamStore: {
|
|
7128
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7129
7128
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7129
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7130
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7131
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7130
7132
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7131
7133
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7132
7134
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7134,7 +7136,6 @@ declare class SponsoredResultsComponent {
|
|
|
7134
7136
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7135
7137
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7136
7138
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7137
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7138
7139
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7139
7140
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7140
7141
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7148,7 +7149,6 @@ declare class SponsoredResultsComponent {
|
|
|
7148
7149
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7149
7150
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7150
7151
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7151
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7152
7152
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7153
7153
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7154
7154
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7180,8 +7180,10 @@ declare class SponsoredResultsComponent {
|
|
|
7180
7180
|
}> | null;
|
|
7181
7181
|
getQuery: () => _sinequa_atomic.Query;
|
|
7182
7182
|
} & _ngrx_signals.StateSource<{
|
|
7183
|
-
name?: string | undefined;
|
|
7184
7183
|
text?: string | undefined;
|
|
7184
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7185
|
+
name?: string | undefined;
|
|
7186
|
+
sort?: string | undefined;
|
|
7185
7187
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7186
7188
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7187
7189
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7189,7 +7191,6 @@ declare class SponsoredResultsComponent {
|
|
|
7189
7191
|
pageSize?: number | undefined;
|
|
7190
7192
|
tab?: string | undefined;
|
|
7191
7193
|
scope?: string | undefined;
|
|
7192
|
-
sort?: string | undefined;
|
|
7193
7194
|
basket?: string | undefined;
|
|
7194
7195
|
isFirstPage?: boolean | undefined;
|
|
7195
7196
|
strictRefine?: boolean | undefined;
|
|
@@ -7203,7 +7204,6 @@ declare class SponsoredResultsComponent {
|
|
|
7203
7204
|
relevanceTransforms?: string | undefined;
|
|
7204
7205
|
removeDuplicates?: boolean | undefined;
|
|
7205
7206
|
queryId?: string | undefined;
|
|
7206
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7207
7207
|
orderBy?: string | undefined;
|
|
7208
7208
|
groupBy?: string | undefined;
|
|
7209
7209
|
neuralSearch?: boolean | undefined;
|
|
@@ -7458,8 +7458,10 @@ declare class AggregationListComponent {
|
|
|
7458
7458
|
aggregations: Aggregation[];
|
|
7459
7459
|
}>;
|
|
7460
7460
|
queryParamsStore: {
|
|
7461
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7462
7461
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7462
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7463
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7464
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7463
7465
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7464
7466
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7465
7467
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7467,7 +7469,6 @@ declare class AggregationListComponent {
|
|
|
7467
7469
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7468
7470
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7469
7471
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7470
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7471
7472
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7472
7473
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7473
7474
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7481,7 +7482,6 @@ declare class AggregationListComponent {
|
|
|
7481
7482
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7482
7483
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7483
7484
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7484
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7485
7485
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7486
7486
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7487
7487
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7513,8 +7513,10 @@ declare class AggregationListComponent {
|
|
|
7513
7513
|
}> | null;
|
|
7514
7514
|
getQuery: () => Query;
|
|
7515
7515
|
} & _ngrx_signals.StateSource<{
|
|
7516
|
-
name?: string | undefined;
|
|
7517
7516
|
text?: string | undefined;
|
|
7517
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7518
|
+
name?: string | undefined;
|
|
7519
|
+
sort?: string | undefined;
|
|
7518
7520
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7519
7521
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7520
7522
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7522,7 +7524,6 @@ declare class AggregationListComponent {
|
|
|
7522
7524
|
pageSize?: number | undefined;
|
|
7523
7525
|
tab?: string | undefined;
|
|
7524
7526
|
scope?: string | undefined;
|
|
7525
|
-
sort?: string | undefined;
|
|
7526
7527
|
basket?: string | undefined;
|
|
7527
7528
|
isFirstPage?: boolean | undefined;
|
|
7528
7529
|
strictRefine?: boolean | undefined;
|
|
@@ -7536,7 +7537,6 @@ declare class AggregationListComponent {
|
|
|
7536
7537
|
relevanceTransforms?: string | undefined;
|
|
7537
7538
|
removeDuplicates?: boolean | undefined;
|
|
7538
7539
|
queryId?: string | undefined;
|
|
7539
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7540
7540
|
orderBy?: string | undefined;
|
|
7541
7541
|
groupBy?: string | undefined;
|
|
7542
7542
|
neuralSearch?: boolean | undefined;
|
|
@@ -8085,8 +8085,10 @@ declare class AdvancedSearch {
|
|
|
8085
8085
|
multiSelection: Article$1[];
|
|
8086
8086
|
}>;
|
|
8087
8087
|
protected readonly queryParamsStore: {
|
|
8088
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8089
8088
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8089
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8090
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8091
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8090
8092
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8091
8093
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8092
8094
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8094,7 +8096,6 @@ declare class AdvancedSearch {
|
|
|
8094
8096
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8095
8097
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8096
8098
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8097
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8098
8099
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8099
8100
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8100
8101
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8108,7 +8109,6 @@ declare class AdvancedSearch {
|
|
|
8108
8109
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8109
8110
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8110
8111
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8111
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8112
8112
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8113
8113
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8114
8114
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8140,8 +8140,10 @@ declare class AdvancedSearch {
|
|
|
8140
8140
|
}> | null;
|
|
8141
8141
|
getQuery: () => _sinequa_atomic.Query;
|
|
8142
8142
|
} & _ngrx_signals.StateSource<{
|
|
8143
|
-
name?: string | undefined;
|
|
8144
8143
|
text?: string | undefined;
|
|
8144
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8145
|
+
name?: string | undefined;
|
|
8146
|
+
sort?: string | undefined;
|
|
8145
8147
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8146
8148
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8147
8149
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8149,7 +8151,6 @@ declare class AdvancedSearch {
|
|
|
8149
8151
|
pageSize?: number | undefined;
|
|
8150
8152
|
tab?: string | undefined;
|
|
8151
8153
|
scope?: string | undefined;
|
|
8152
|
-
sort?: string | undefined;
|
|
8153
8154
|
basket?: string | undefined;
|
|
8154
8155
|
isFirstPage?: boolean | undefined;
|
|
8155
8156
|
strictRefine?: boolean | undefined;
|
|
@@ -8163,7 +8164,6 @@ declare class AdvancedSearch {
|
|
|
8163
8164
|
relevanceTransforms?: string | undefined;
|
|
8164
8165
|
removeDuplicates?: boolean | undefined;
|
|
8165
8166
|
queryId?: string | undefined;
|
|
8166
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8167
8167
|
orderBy?: string | undefined;
|
|
8168
8168
|
groupBy?: string | undefined;
|
|
8169
8169
|
neuralSearch?: boolean | undefined;
|
|
@@ -8554,8 +8554,10 @@ declare class ArticleLabels {
|
|
|
8554
8554
|
|
|
8555
8555
|
declare class ArticleSimilarDocuments {
|
|
8556
8556
|
protected readonly queryParamsStore: {
|
|
8557
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8558
8557
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8558
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8559
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8560
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8559
8561
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8560
8562
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8561
8563
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8563,7 +8565,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8563
8565
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8564
8566
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8565
8567
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8566
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8567
8568
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8568
8569
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8569
8570
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8577,7 +8578,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8577
8578
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8578
8579
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8579
8580
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8580
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8581
8581
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8582
8582
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8583
8583
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8609,8 +8609,10 @@ declare class ArticleSimilarDocuments {
|
|
|
8609
8609
|
}> | null;
|
|
8610
8610
|
getQuery: () => _sinequa_atomic.Query;
|
|
8611
8611
|
} & _ngrx_signals.StateSource<{
|
|
8612
|
-
name?: string | undefined;
|
|
8613
8612
|
text?: string | undefined;
|
|
8613
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8614
|
+
name?: string | undefined;
|
|
8615
|
+
sort?: string | undefined;
|
|
8614
8616
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8615
8617
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8616
8618
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8618,7 +8620,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8618
8620
|
pageSize?: number | undefined;
|
|
8619
8621
|
tab?: string | undefined;
|
|
8620
8622
|
scope?: string | undefined;
|
|
8621
|
-
sort?: string | undefined;
|
|
8622
8623
|
basket?: string | undefined;
|
|
8623
8624
|
isFirstPage?: boolean | undefined;
|
|
8624
8625
|
strictRefine?: boolean | undefined;
|
|
@@ -8632,7 +8633,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8632
8633
|
relevanceTransforms?: string | undefined;
|
|
8633
8634
|
removeDuplicates?: boolean | undefined;
|
|
8634
8635
|
queryId?: string | undefined;
|
|
8635
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8636
8636
|
orderBy?: string | undefined;
|
|
8637
8637
|
groupBy?: string | undefined;
|
|
8638
8638
|
neuralSearch?: boolean | undefined;
|
|
@@ -8830,6 +8830,13 @@ declare class SignInComponent {
|
|
|
8830
8830
|
state: "initial" | "loading" | "loaded" | "error";
|
|
8831
8831
|
}>;
|
|
8832
8832
|
readonly expiresSoonNotified: _angular_core.WritableSignal<boolean>;
|
|
8833
|
+
/**
|
|
8834
|
+
* Forces the credentials form to show even while `externalAuth` is true. Set when a silent
|
|
8835
|
+
* SSO/browser auth attempt fails and no OAuth/SAML provider is configured: in that case
|
|
8836
|
+
* `useSSO` only meant "unknown — try SSO, then credentials", so we fall back to the form
|
|
8837
|
+
* instead of routing to /error.
|
|
8838
|
+
*/
|
|
8839
|
+
readonly showCredentialsFallback: _angular_core.WritableSignal<boolean>;
|
|
8833
8840
|
constructor(destroyRef: DestroyRef);
|
|
8834
8841
|
private checkPasswordExpiresSoon;
|
|
8835
8842
|
handleLogout(): Promise<void>;
|
|
@@ -9228,8 +9235,10 @@ declare class AdvancedSearchComponent {
|
|
|
9228
9235
|
multiSelection: Article$1[];
|
|
9229
9236
|
}>;
|
|
9230
9237
|
protected readonly queryParamsStore: {
|
|
9231
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9232
9238
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9239
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9240
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9241
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9233
9242
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9234
9243
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9235
9244
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9237,7 +9246,6 @@ declare class AdvancedSearchComponent {
|
|
|
9237
9246
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9238
9247
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9239
9248
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9240
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9241
9249
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9242
9250
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9243
9251
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9251,7 +9259,6 @@ declare class AdvancedSearchComponent {
|
|
|
9251
9259
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9252
9260
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9253
9261
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9254
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9255
9262
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9256
9263
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9257
9264
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9283,8 +9290,10 @@ declare class AdvancedSearchComponent {
|
|
|
9283
9290
|
}> | null;
|
|
9284
9291
|
getQuery: () => _sinequa_atomic.Query;
|
|
9285
9292
|
} & _ngrx_signals.StateSource<{
|
|
9286
|
-
name?: string | undefined;
|
|
9287
9293
|
text?: string | undefined;
|
|
9294
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9295
|
+
name?: string | undefined;
|
|
9296
|
+
sort?: string | undefined;
|
|
9288
9297
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9289
9298
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9290
9299
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9292,7 +9301,6 @@ declare class AdvancedSearchComponent {
|
|
|
9292
9301
|
pageSize?: number | undefined;
|
|
9293
9302
|
tab?: string | undefined;
|
|
9294
9303
|
scope?: string | undefined;
|
|
9295
|
-
sort?: string | undefined;
|
|
9296
9304
|
basket?: string | undefined;
|
|
9297
9305
|
isFirstPage?: boolean | undefined;
|
|
9298
9306
|
strictRefine?: boolean | undefined;
|
|
@@ -9306,7 +9314,6 @@ declare class AdvancedSearchComponent {
|
|
|
9306
9314
|
relevanceTransforms?: string | undefined;
|
|
9307
9315
|
removeDuplicates?: boolean | undefined;
|
|
9308
9316
|
queryId?: string | undefined;
|
|
9309
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9310
9317
|
orderBy?: string | undefined;
|
|
9311
9318
|
groupBy?: string | undefined;
|
|
9312
9319
|
neuralSearch?: boolean | undefined;
|
|
@@ -9689,8 +9696,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9689
9696
|
multiSelection: _sinequa_atomic.Article[];
|
|
9690
9697
|
}>;
|
|
9691
9698
|
queryParamsStore: {
|
|
9692
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9693
9699
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9700
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9701
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9702
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9694
9703
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9695
9704
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9696
9705
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9698,7 +9707,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9698
9707
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9699
9708
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9700
9709
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9701
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9702
9710
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9703
9711
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9704
9712
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9712,7 +9720,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9712
9720
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9713
9721
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9714
9722
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9715
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9716
9723
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9717
9724
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9718
9725
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9744,8 +9751,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9744
9751
|
}> | null;
|
|
9745
9752
|
getQuery: () => _sinequa_atomic.Query;
|
|
9746
9753
|
} & _ngrx_signals.StateSource<{
|
|
9747
|
-
name?: string | undefined;
|
|
9748
9754
|
text?: string | undefined;
|
|
9755
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9756
|
+
name?: string | undefined;
|
|
9757
|
+
sort?: string | undefined;
|
|
9749
9758
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9750
9759
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9751
9760
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9753,7 +9762,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9753
9762
|
pageSize?: number | undefined;
|
|
9754
9763
|
tab?: string | undefined;
|
|
9755
9764
|
scope?: string | undefined;
|
|
9756
|
-
sort?: string | undefined;
|
|
9757
9765
|
basket?: string | undefined;
|
|
9758
9766
|
isFirstPage?: boolean | undefined;
|
|
9759
9767
|
strictRefine?: boolean | undefined;
|
|
@@ -9767,7 +9775,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9767
9775
|
relevanceTransforms?: string | undefined;
|
|
9768
9776
|
removeDuplicates?: boolean | undefined;
|
|
9769
9777
|
queryId?: string | undefined;
|
|
9770
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9771
9778
|
orderBy?: string | undefined;
|
|
9772
9779
|
groupBy?: string | undefined;
|
|
9773
9780
|
neuralSearch?: boolean | undefined;
|
|
@@ -9887,8 +9894,10 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9887
9894
|
private appStore;
|
|
9888
9895
|
readonly exportService: ExportService;
|
|
9889
9896
|
readonly queryParamsStore: {
|
|
9890
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9891
9897
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9898
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9899
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9900
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9892
9901
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9893
9902
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9894
9903
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9896,7 +9905,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9896
9905
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9897
9906
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9898
9907
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9899
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9900
9908
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9901
9909
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9902
9910
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9910,7 +9918,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9910
9918
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9911
9919
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9912
9920
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9913
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9914
9921
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9915
9922
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9916
9923
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9942,8 +9949,10 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9942
9949
|
}> | null;
|
|
9943
9950
|
getQuery: () => _sinequa_atomic.Query;
|
|
9944
9951
|
} & _ngrx_signals.StateSource<{
|
|
9945
|
-
name?: string | undefined;
|
|
9946
9952
|
text?: string | undefined;
|
|
9953
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9954
|
+
name?: string | undefined;
|
|
9955
|
+
sort?: string | undefined;
|
|
9947
9956
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9948
9957
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9949
9958
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9951,7 +9960,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9951
9960
|
pageSize?: number | undefined;
|
|
9952
9961
|
tab?: string | undefined;
|
|
9953
9962
|
scope?: string | undefined;
|
|
9954
|
-
sort?: string | undefined;
|
|
9955
9963
|
basket?: string | undefined;
|
|
9956
9964
|
isFirstPage?: boolean | undefined;
|
|
9957
9965
|
strictRefine?: boolean | undefined;
|
|
@@ -9965,7 +9973,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9965
9973
|
relevanceTransforms?: string | undefined;
|
|
9966
9974
|
removeDuplicates?: boolean | undefined;
|
|
9967
9975
|
queryId?: string | undefined;
|
|
9968
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9969
9976
|
orderBy?: string | undefined;
|
|
9970
9977
|
groupBy?: string | undefined;
|
|
9971
9978
|
neuralSearch?: boolean | undefined;
|
|
@@ -10324,8 +10331,10 @@ declare class SearchFeedbackComponent {
|
|
|
10324
10331
|
pages: _angular_core.InputSignal<any>;
|
|
10325
10332
|
readonly auditService: AuditService;
|
|
10326
10333
|
protected readonly queryParamsStore: {
|
|
10327
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10328
10334
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10335
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10336
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10337
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10329
10338
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10330
10339
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10331
10340
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -10333,7 +10342,6 @@ declare class SearchFeedbackComponent {
|
|
|
10333
10342
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10334
10343
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10335
10344
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10336
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10337
10345
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10338
10346
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10339
10347
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10347,7 +10355,6 @@ declare class SearchFeedbackComponent {
|
|
|
10347
10355
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10348
10356
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10349
10357
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10350
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10351
10358
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10352
10359
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10353
10360
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10379,8 +10386,10 @@ declare class SearchFeedbackComponent {
|
|
|
10379
10386
|
}> | null;
|
|
10380
10387
|
getQuery: () => _sinequa_atomic.Query;
|
|
10381
10388
|
} & _ngrx_signals.StateSource<{
|
|
10382
|
-
name?: string | undefined;
|
|
10383
10389
|
text?: string | undefined;
|
|
10390
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10391
|
+
name?: string | undefined;
|
|
10392
|
+
sort?: string | undefined;
|
|
10384
10393
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10385
10394
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10386
10395
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -10388,7 +10397,6 @@ declare class SearchFeedbackComponent {
|
|
|
10388
10397
|
pageSize?: number | undefined;
|
|
10389
10398
|
tab?: string | undefined;
|
|
10390
10399
|
scope?: string | undefined;
|
|
10391
|
-
sort?: string | undefined;
|
|
10392
10400
|
basket?: string | undefined;
|
|
10393
10401
|
isFirstPage?: boolean | undefined;
|
|
10394
10402
|
strictRefine?: boolean | undefined;
|
|
@@ -10402,7 +10410,6 @@ declare class SearchFeedbackComponent {
|
|
|
10402
10410
|
relevanceTransforms?: string | undefined;
|
|
10403
10411
|
removeDuplicates?: boolean | undefined;
|
|
10404
10412
|
queryId?: string | undefined;
|
|
10405
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10406
10413
|
orderBy?: string | undefined;
|
|
10407
10414
|
groupBy?: string | undefined;
|
|
10408
10415
|
neuralSearch?: boolean | undefined;
|
|
@@ -10439,8 +10446,10 @@ declare class AggregationTreeComponent {
|
|
|
10439
10446
|
aggregations: Aggregation[];
|
|
10440
10447
|
}>;
|
|
10441
10448
|
queryParamsStore: {
|
|
10442
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10443
10449
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10450
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10451
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10452
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10444
10453
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10445
10454
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10446
10455
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -10448,7 +10457,6 @@ declare class AggregationTreeComponent {
|
|
|
10448
10457
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10449
10458
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10450
10459
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10451
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10452
10460
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10453
10461
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10454
10462
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10462,7 +10470,6 @@ declare class AggregationTreeComponent {
|
|
|
10462
10470
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10463
10471
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10464
10472
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10465
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10466
10473
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10467
10474
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10468
10475
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10494,8 +10501,10 @@ declare class AggregationTreeComponent {
|
|
|
10494
10501
|
}> | null;
|
|
10495
10502
|
getQuery: () => Query;
|
|
10496
10503
|
} & _ngrx_signals.StateSource<{
|
|
10497
|
-
name?: string | undefined;
|
|
10498
10504
|
text?: string | undefined;
|
|
10505
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10506
|
+
name?: string | undefined;
|
|
10507
|
+
sort?: string | undefined;
|
|
10499
10508
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10500
10509
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10501
10510
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -10503,7 +10512,6 @@ declare class AggregationTreeComponent {
|
|
|
10503
10512
|
pageSize?: number | undefined;
|
|
10504
10513
|
tab?: string | undefined;
|
|
10505
10514
|
scope?: string | undefined;
|
|
10506
|
-
sort?: string | undefined;
|
|
10507
10515
|
basket?: string | undefined;
|
|
10508
10516
|
isFirstPage?: boolean | undefined;
|
|
10509
10517
|
strictRefine?: boolean | undefined;
|
|
@@ -10517,7 +10525,6 @@ declare class AggregationTreeComponent {
|
|
|
10517
10525
|
relevanceTransforms?: string | undefined;
|
|
10518
10526
|
removeDuplicates?: boolean | undefined;
|
|
10519
10527
|
queryId?: string | undefined;
|
|
10520
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10521
10528
|
orderBy?: string | undefined;
|
|
10522
10529
|
groupBy?: string | undefined;
|
|
10523
10530
|
neuralSearch?: boolean | undefined;
|
|
@@ -11494,7 +11501,7 @@ declare class FilterButtonComponent {
|
|
|
11494
11501
|
position: _angular_core.InputSignal<Placement>;
|
|
11495
11502
|
offset: _angular_core.InputSignal<number>;
|
|
11496
11503
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11497
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11504
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "none" | "secondary" | "destructive" | "ai" | "primary" | "link" | "accent" | "outline" | "ghost" | "light-accent" | "tertiary" | null | undefined>;
|
|
11498
11505
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11499
11506
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11500
11507
|
protected nativeElement: any;
|
|
@@ -11508,8 +11515,10 @@ declare class FilterButtonComponent {
|
|
|
11508
11515
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
11509
11516
|
}>;
|
|
11510
11517
|
protected queryParamsStore: {
|
|
11511
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11512
11518
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11519
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11520
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11521
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11513
11522
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11514
11523
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11515
11524
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -11517,7 +11526,6 @@ declare class FilterButtonComponent {
|
|
|
11517
11526
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11518
11527
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11519
11528
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11520
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11521
11529
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11522
11530
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11523
11531
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11531,7 +11539,6 @@ declare class FilterButtonComponent {
|
|
|
11531
11539
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11532
11540
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11533
11541
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11534
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11535
11542
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11536
11543
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11537
11544
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11563,8 +11570,10 @@ declare class FilterButtonComponent {
|
|
|
11563
11570
|
}> | null;
|
|
11564
11571
|
getQuery: () => _sinequa_atomic.Query;
|
|
11565
11572
|
} & _ngrx_signals.StateSource<{
|
|
11566
|
-
name?: string | undefined;
|
|
11567
11573
|
text?: string | undefined;
|
|
11574
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11575
|
+
name?: string | undefined;
|
|
11576
|
+
sort?: string | undefined;
|
|
11568
11577
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11569
11578
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11570
11579
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -11572,7 +11581,6 @@ declare class FilterButtonComponent {
|
|
|
11572
11581
|
pageSize?: number | undefined;
|
|
11573
11582
|
tab?: string | undefined;
|
|
11574
11583
|
scope?: string | undefined;
|
|
11575
|
-
sort?: string | undefined;
|
|
11576
11584
|
basket?: string | undefined;
|
|
11577
11585
|
isFirstPage?: boolean | undefined;
|
|
11578
11586
|
strictRefine?: boolean | undefined;
|
|
@@ -11586,7 +11594,6 @@ declare class FilterButtonComponent {
|
|
|
11586
11594
|
relevanceTransforms?: string | undefined;
|
|
11587
11595
|
removeDuplicates?: boolean | undefined;
|
|
11588
11596
|
queryId?: string | undefined;
|
|
11589
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11590
11597
|
orderBy?: string | undefined;
|
|
11591
11598
|
groupBy?: string | undefined;
|
|
11592
11599
|
neuralSearch?: boolean | undefined;
|
|
@@ -12232,8 +12239,10 @@ declare class MoreButtonComponent {
|
|
|
12232
12239
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
12233
12240
|
}>;
|
|
12234
12241
|
queryParamsStore: {
|
|
12235
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12236
12242
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12244
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12245
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12237
12246
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12238
12247
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12239
12248
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -12241,7 +12250,6 @@ declare class MoreButtonComponent {
|
|
|
12241
12250
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12242
12251
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
12252
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12244
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12245
12253
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12246
12254
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12247
12255
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12255,7 +12263,6 @@ declare class MoreButtonComponent {
|
|
|
12255
12263
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12256
12264
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12257
12265
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12258
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12259
12266
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12260
12267
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12261
12268
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12287,8 +12294,10 @@ declare class MoreButtonComponent {
|
|
|
12287
12294
|
}> | null;
|
|
12288
12295
|
getQuery: () => _sinequa_atomic.Query;
|
|
12289
12296
|
} & _ngrx_signals.StateSource<{
|
|
12290
|
-
name?: string | undefined;
|
|
12291
12297
|
text?: string | undefined;
|
|
12298
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12299
|
+
name?: string | undefined;
|
|
12300
|
+
sort?: string | undefined;
|
|
12292
12301
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12293
12302
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12294
12303
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -12296,7 +12305,6 @@ declare class MoreButtonComponent {
|
|
|
12296
12305
|
pageSize?: number | undefined;
|
|
12297
12306
|
tab?: string | undefined;
|
|
12298
12307
|
scope?: string | undefined;
|
|
12299
|
-
sort?: string | undefined;
|
|
12300
12308
|
basket?: string | undefined;
|
|
12301
12309
|
isFirstPage?: boolean | undefined;
|
|
12302
12310
|
strictRefine?: boolean | undefined;
|
|
@@ -12310,7 +12318,6 @@ declare class MoreButtonComponent {
|
|
|
12310
12318
|
relevanceTransforms?: string | undefined;
|
|
12311
12319
|
removeDuplicates?: boolean | undefined;
|
|
12312
12320
|
queryId?: string | undefined;
|
|
12313
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12314
12321
|
orderBy?: string | undefined;
|
|
12315
12322
|
groupBy?: string | undefined;
|
|
12316
12323
|
neuralSearch?: boolean | undefined;
|
|
@@ -12722,8 +12729,10 @@ declare class FiltersBarComponent {
|
|
|
12722
12729
|
aggregations: Aggregation[];
|
|
12723
12730
|
}>;
|
|
12724
12731
|
protected queryParamsStore: {
|
|
12725
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12726
12732
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12733
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12734
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12735
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12727
12736
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12728
12737
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12729
12738
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -12731,7 +12740,6 @@ declare class FiltersBarComponent {
|
|
|
12731
12740
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12732
12741
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12733
12742
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12734
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12735
12743
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12736
12744
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12737
12745
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12745,7 +12753,6 @@ declare class FiltersBarComponent {
|
|
|
12745
12753
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12746
12754
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12747
12755
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12748
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12749
12756
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12750
12757
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12751
12758
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12777,8 +12784,10 @@ declare class FiltersBarComponent {
|
|
|
12777
12784
|
}> | null;
|
|
12778
12785
|
getQuery: () => _sinequa_atomic.Query;
|
|
12779
12786
|
} & _ngrx_signals.StateSource<{
|
|
12780
|
-
name?: string | undefined;
|
|
12781
12787
|
text?: string | undefined;
|
|
12788
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12789
|
+
name?: string | undefined;
|
|
12790
|
+
sort?: string | undefined;
|
|
12782
12791
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12783
12792
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12784
12793
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -12786,7 +12795,6 @@ declare class FiltersBarComponent {
|
|
|
12786
12795
|
pageSize?: number | undefined;
|
|
12787
12796
|
tab?: string | undefined;
|
|
12788
12797
|
scope?: string | undefined;
|
|
12789
|
-
sort?: string | undefined;
|
|
12790
12798
|
basket?: string | undefined;
|
|
12791
12799
|
isFirstPage?: boolean | undefined;
|
|
12792
12800
|
strictRefine?: boolean | undefined;
|
|
@@ -12800,7 +12808,6 @@ declare class FiltersBarComponent {
|
|
|
12800
12808
|
relevanceTransforms?: string | undefined;
|
|
12801
12809
|
removeDuplicates?: boolean | undefined;
|
|
12802
12810
|
queryId?: string | undefined;
|
|
12803
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12804
12811
|
orderBy?: string | undefined;
|
|
12805
12812
|
groupBy?: string | undefined;
|
|
12806
12813
|
neuralSearch?: boolean | undefined;
|
|
@@ -13223,8 +13230,10 @@ declare class MoreComponent {
|
|
|
13223
13230
|
aggregations: Aggregation[];
|
|
13224
13231
|
}>;
|
|
13225
13232
|
queryParamsStore: {
|
|
13226
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13227
13233
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13234
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13235
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13236
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13228
13237
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13229
13238
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13230
13239
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -13232,7 +13241,6 @@ declare class MoreComponent {
|
|
|
13232
13241
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13233
13242
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13234
13243
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13235
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13236
13244
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13237
13245
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13238
13246
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13246,7 +13254,6 @@ declare class MoreComponent {
|
|
|
13246
13254
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13247
13255
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13248
13256
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13249
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13250
13257
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13251
13258
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13252
13259
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13278,8 +13285,10 @@ declare class MoreComponent {
|
|
|
13278
13285
|
}> | null;
|
|
13279
13286
|
getQuery: () => _sinequa_atomic.Query;
|
|
13280
13287
|
} & _ngrx_signals.StateSource<{
|
|
13281
|
-
name?: string | undefined;
|
|
13282
13288
|
text?: string | undefined;
|
|
13289
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13290
|
+
name?: string | undefined;
|
|
13291
|
+
sort?: string | undefined;
|
|
13283
13292
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13284
13293
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13285
13294
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -13287,7 +13296,6 @@ declare class MoreComponent {
|
|
|
13287
13296
|
pageSize?: number | undefined;
|
|
13288
13297
|
tab?: string | undefined;
|
|
13289
13298
|
scope?: string | undefined;
|
|
13290
|
-
sort?: string | undefined;
|
|
13291
13299
|
basket?: string | undefined;
|
|
13292
13300
|
isFirstPage?: boolean | undefined;
|
|
13293
13301
|
strictRefine?: boolean | undefined;
|
|
@@ -13301,7 +13309,6 @@ declare class MoreComponent {
|
|
|
13301
13309
|
relevanceTransforms?: string | undefined;
|
|
13302
13310
|
removeDuplicates?: boolean | undefined;
|
|
13303
13311
|
queryId?: string | undefined;
|
|
13304
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13305
13312
|
orderBy?: string | undefined;
|
|
13306
13313
|
groupBy?: string | undefined;
|
|
13307
13314
|
neuralSearch?: boolean | undefined;
|
|
@@ -13852,7 +13859,7 @@ declare class RecentSearchesComponent {
|
|
|
13852
13859
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13853
13860
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13854
13861
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13855
|
-
userTheme: _angular_core.Signal<"
|
|
13862
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13856
13863
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13857
13864
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13858
13865
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13917,8 +13924,10 @@ declare class RecentSearchesComponent {
|
|
|
13917
13924
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13918
13925
|
private readonly savedSearchesService;
|
|
13919
13926
|
protected readonly queryParamsStore: {
|
|
13920
|
-
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13921
13927
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13928
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13929
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13930
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13922
13931
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13923
13932
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13924
13933
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -13926,7 +13935,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13926
13935
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13927
13936
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13928
13937
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13929
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13930
13938
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13931
13939
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13932
13940
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13940,7 +13948,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13940
13948
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13941
13949
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13942
13950
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13943
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13944
13951
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13945
13952
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13946
13953
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13972,8 +13979,10 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13972
13979
|
}> | null;
|
|
13973
13980
|
getQuery: () => _sinequa_atomic.Query;
|
|
13974
13981
|
} & _ngrx_signals.StateSource<{
|
|
13975
|
-
name?: string | undefined;
|
|
13976
13982
|
text?: string | undefined;
|
|
13983
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13984
|
+
name?: string | undefined;
|
|
13985
|
+
sort?: string | undefined;
|
|
13977
13986
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13978
13987
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13979
13988
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -13981,7 +13990,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13981
13990
|
pageSize?: number | undefined;
|
|
13982
13991
|
tab?: string | undefined;
|
|
13983
13992
|
scope?: string | undefined;
|
|
13984
|
-
sort?: string | undefined;
|
|
13985
13993
|
basket?: string | undefined;
|
|
13986
13994
|
isFirstPage?: boolean | undefined;
|
|
13987
13995
|
strictRefine?: boolean | undefined;
|
|
@@ -13995,7 +14003,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13995
14003
|
relevanceTransforms?: string | undefined;
|
|
13996
14004
|
removeDuplicates?: boolean | undefined;
|
|
13997
14005
|
queryId?: string | undefined;
|
|
13998
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13999
14006
|
orderBy?: string | undefined;
|
|
14000
14007
|
groupBy?: string | undefined;
|
|
14001
14008
|
neuralSearch?: boolean | undefined;
|
|
@@ -14027,7 +14034,7 @@ declare class SavedSearchesComponent {
|
|
|
14027
14034
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
14028
14035
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
14029
14036
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
14030
|
-
userTheme: _angular_core.Signal<"
|
|
14037
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
14031
14038
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
14032
14039
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
14033
14040
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -14122,7 +14129,7 @@ declare class UserProfileFormComponent {
|
|
|
14122
14129
|
param9: _angular_core.Signal<string>;
|
|
14123
14130
|
param10: _angular_core.Signal<string>;
|
|
14124
14131
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
14125
|
-
state: _angular_core.Signal<"
|
|
14132
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
14126
14133
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
14127
14134
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
14128
14135
|
initials: _angular_core.Signal<string>;
|
|
@@ -14166,7 +14173,7 @@ declare class UserProfileFormComponent {
|
|
|
14166
14173
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
14167
14174
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
14168
14175
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
14169
|
-
userTheme: _angular_core.Signal<"
|
|
14176
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
14170
14177
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
14171
14178
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
14172
14179
|
isDarkMode: _angular_core.Signal<boolean>;
|