@sinequa/atomic-angular 1.0.17 → 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 +72 -42
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +166 -162
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,16 +114,17 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
117
119
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
121
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
119
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
122
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
121
123
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
122
124
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
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,16 +169,17 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
+
text?: string | undefined;
|
|
173
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
172
174
|
name?: string | undefined;
|
|
175
|
+
sort?: string | undefined;
|
|
173
176
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
174
|
-
text?: string | undefined;
|
|
175
177
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
176
178
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
177
179
|
page?: number | undefined;
|
|
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,16 +271,17 @@ declare class MetadataComponent {
|
|
|
271
271
|
declare class MissingTermsComponent {
|
|
272
272
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
273
273
|
queryParamsStore: {
|
|
274
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
274
276
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
278
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
276
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
279
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
278
280
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
279
281
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
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,16 +326,17 @@ declare class MissingTermsComponent {
|
|
|
326
326
|
}> | null;
|
|
327
327
|
getQuery: () => _sinequa_atomic.Query;
|
|
328
328
|
} & _ngrx_signals.StateSource<{
|
|
329
|
+
text?: string | undefined;
|
|
330
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
329
331
|
name?: string | undefined;
|
|
332
|
+
sort?: string | undefined;
|
|
330
333
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
331
|
-
text?: string | undefined;
|
|
332
334
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
333
335
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
334
336
|
page?: number | undefined;
|
|
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,16 +1769,17 @@ type QueryParams = {
|
|
|
1769
1769
|
n?: string;
|
|
1770
1770
|
};
|
|
1771
1771
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1772
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1773
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1772
1774
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1775
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1773
1776
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1774
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1775
1777
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1776
1778
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
1777
1779
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
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,16 +1816,17 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1816
1816
|
}> | null;
|
|
1817
1817
|
getQuery: () => _sinequa_atomic.Query;
|
|
1818
1818
|
} & _ngrx_signals.StateSource<{
|
|
1819
|
+
text?: string | undefined;
|
|
1820
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1819
1821
|
name?: string | undefined;
|
|
1822
|
+
sort?: string | undefined;
|
|
1820
1823
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1821
|
-
text?: string | undefined;
|
|
1822
1824
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1823
1825
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1824
1826
|
page?: number | undefined;
|
|
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,16 +1849,17 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1849
1849
|
}>>;
|
|
1850
1850
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1851
1851
|
state: {
|
|
1852
|
+
text?: string | undefined;
|
|
1853
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1852
1854
|
name?: string | undefined;
|
|
1855
|
+
sort?: string | undefined;
|
|
1853
1856
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1854
|
-
text?: string | undefined;
|
|
1855
1857
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1856
1858
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1857
1859
|
page?: number | undefined;
|
|
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,16 +2603,17 @@ declare class AggregationsService {
|
|
|
2603
2603
|
aggregations: Aggregation[];
|
|
2604
2604
|
}>;
|
|
2605
2605
|
queryParamsStore: {
|
|
2606
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2607
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2606
2608
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2609
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2607
2610
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2608
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2609
2611
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2610
2612
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
2611
2613
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
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,16 +2658,17 @@ declare class AggregationsService {
|
|
|
2658
2658
|
}> | null;
|
|
2659
2659
|
getQuery: () => Query;
|
|
2660
2660
|
} & _ngrx_signals.StateSource<{
|
|
2661
|
+
text?: string | undefined;
|
|
2662
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2661
2663
|
name?: string | undefined;
|
|
2664
|
+
sort?: string | undefined;
|
|
2662
2665
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2663
|
-
text?: string | undefined;
|
|
2664
2666
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2665
2667
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
2666
2668
|
page?: number | undefined;
|
|
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,16 +4369,17 @@ declare class PreviewService {
|
|
|
4369
4369
|
multiSelection: Article$1[];
|
|
4370
4370
|
}>;
|
|
4371
4371
|
protected readonly queryParamsStore: {
|
|
4372
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4372
4374
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
4376
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4374
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
4377
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4376
4378
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4377
4379
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
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,16 +4424,17 @@ declare class PreviewService {
|
|
|
4424
4424
|
}> | null;
|
|
4425
4425
|
getQuery: () => Query;
|
|
4426
4426
|
} & _ngrx_signals.StateSource<{
|
|
4427
|
+
text?: string | undefined;
|
|
4428
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4427
4429
|
name?: string | undefined;
|
|
4430
|
+
sort?: string | undefined;
|
|
4428
4431
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4429
|
-
text?: string | undefined;
|
|
4430
4432
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4431
4433
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4432
4434
|
page?: number | undefined;
|
|
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;
|
|
@@ -4923,17 +4923,14 @@ declare class PreviewService {
|
|
|
4923
4923
|
* @deprecated This service is deprecated and should not be used directly. Please use the PrincipalStore instead.
|
|
4924
4924
|
*/
|
|
4925
4925
|
declare class PrincipalService {
|
|
4926
|
-
protected readonly http: HttpClient;
|
|
4927
|
-
protected readonly API_URL: string;
|
|
4928
4926
|
/**
|
|
4929
4927
|
* Retrieves the principal information from the server.
|
|
4930
4928
|
*
|
|
4931
4929
|
* @returns Observable<Principal> An observable that emits the principal information.
|
|
4932
4930
|
*
|
|
4933
4931
|
* @remarks
|
|
4934
|
-
*
|
|
4935
|
-
*
|
|
4936
|
-
* In case of an error, it logs the error to the console and returns an empty observable.
|
|
4932
|
+
* Delegates to the SDK's fetchPrincipal so the request goes through atomic's auth handling
|
|
4933
|
+
* (credentials + authMode-aware noAutoAuthentication). On error it logs and returns EMPTY.
|
|
4937
4934
|
*
|
|
4938
4935
|
* @example
|
|
4939
4936
|
* ```typescript
|
|
@@ -4957,7 +4954,7 @@ declare class SavedSearchesService {
|
|
|
4957
4954
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4958
4955
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4959
4956
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4960
|
-
userTheme: _angular_core.Signal<"
|
|
4957
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4961
4958
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4962
4959
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4963
4960
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5003,16 +5000,17 @@ declare class SavedSearchesService {
|
|
|
5003
5000
|
agents: _sinequa_atomic_angular.AgentUserSettings;
|
|
5004
5001
|
}>;
|
|
5005
5002
|
protected readonly queryParamsStore: {
|
|
5003
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5004
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5006
5005
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5006
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5007
5007
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5008
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5009
5008
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5010
5009
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5011
5010
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5012
5011
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5013
5012
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5014
5013
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5015
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5016
5014
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5017
5015
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5018
5016
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5026,7 +5024,6 @@ declare class SavedSearchesService {
|
|
|
5026
5024
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5027
5025
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5028
5026
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5029
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5030
5027
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5031
5028
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5032
5029
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5058,16 +5055,17 @@ declare class SavedSearchesService {
|
|
|
5058
5055
|
}> | null;
|
|
5059
5056
|
getQuery: () => _sinequa_atomic.Query;
|
|
5060
5057
|
} & _ngrx_signals.StateSource<{
|
|
5058
|
+
text?: string | undefined;
|
|
5059
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5061
5060
|
name?: string | undefined;
|
|
5061
|
+
sort?: string | undefined;
|
|
5062
5062
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5063
|
-
text?: string | undefined;
|
|
5064
5063
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5065
5064
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5066
5065
|
page?: number | undefined;
|
|
5067
5066
|
pageSize?: number | undefined;
|
|
5068
5067
|
tab?: string | undefined;
|
|
5069
5068
|
scope?: string | undefined;
|
|
5070
|
-
sort?: string | undefined;
|
|
5071
5069
|
basket?: string | undefined;
|
|
5072
5070
|
isFirstPage?: boolean | undefined;
|
|
5073
5071
|
strictRefine?: boolean | undefined;
|
|
@@ -5081,7 +5079,6 @@ declare class SavedSearchesService {
|
|
|
5081
5079
|
relevanceTransforms?: string | undefined;
|
|
5082
5080
|
removeDuplicates?: boolean | undefined;
|
|
5083
5081
|
queryId?: string | undefined;
|
|
5084
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5085
5082
|
orderBy?: string | undefined;
|
|
5086
5083
|
groupBy?: string | undefined;
|
|
5087
5084
|
neuralSearch?: boolean | undefined;
|
|
@@ -5144,16 +5141,17 @@ declare class SearchService {
|
|
|
5144
5141
|
result: Result;
|
|
5145
5142
|
audit?: AuditEvents;
|
|
5146
5143
|
protected readonly queryParamsStore: {
|
|
5144
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5145
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5147
5146
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5147
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5148
5148
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5149
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5150
5149
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5151
5150
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5152
5151
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5153
5152
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5154
5153
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5155
5154
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5156
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5157
5155
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5158
5156
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5159
5157
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5167,7 +5165,6 @@ declare class SearchService {
|
|
|
5167
5165
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5168
5166
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5169
5167
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5170
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5171
5168
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5172
5169
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5173
5170
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5199,16 +5196,17 @@ declare class SearchService {
|
|
|
5199
5196
|
}> | null;
|
|
5200
5197
|
getQuery: () => Query;
|
|
5201
5198
|
} & _ngrx_signals.StateSource<{
|
|
5199
|
+
text?: string | undefined;
|
|
5200
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5202
5201
|
name?: string | undefined;
|
|
5202
|
+
sort?: string | undefined;
|
|
5203
5203
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5204
|
-
text?: string | undefined;
|
|
5205
5204
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5206
5205
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5207
5206
|
page?: number | undefined;
|
|
5208
5207
|
pageSize?: number | undefined;
|
|
5209
5208
|
tab?: string | undefined;
|
|
5210
5209
|
scope?: string | undefined;
|
|
5211
|
-
sort?: string | undefined;
|
|
5212
5210
|
basket?: string | undefined;
|
|
5213
5211
|
isFirstPage?: boolean | undefined;
|
|
5214
5212
|
strictRefine?: boolean | undefined;
|
|
@@ -5222,7 +5220,6 @@ declare class SearchService {
|
|
|
5222
5220
|
relevanceTransforms?: string | undefined;
|
|
5223
5221
|
removeDuplicates?: boolean | undefined;
|
|
5224
5222
|
queryId?: string | undefined;
|
|
5225
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5226
5223
|
orderBy?: string | undefined;
|
|
5227
5224
|
groupBy?: string | undefined;
|
|
5228
5225
|
neuralSearch?: boolean | undefined;
|
|
@@ -5239,7 +5236,7 @@ declare class SearchService {
|
|
|
5239
5236
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5240
5237
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5241
5238
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5242
|
-
userTheme: _angular_core.Signal<"
|
|
5239
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5243
5240
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5244
5241
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5245
5242
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5335,16 +5332,17 @@ declare class SelectionService {
|
|
|
5335
5332
|
private readonly location;
|
|
5336
5333
|
private readonly selectionStore;
|
|
5337
5334
|
queryParamsStore: {
|
|
5335
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5336
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5338
5337
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5338
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5339
5339
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5340
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5341
5340
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5342
5341
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5343
5342
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5344
5343
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5345
5344
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5346
5345
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5347
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5348
5346
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5349
5347
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5350
5348
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5358,7 +5356,6 @@ declare class SelectionService {
|
|
|
5358
5356
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5359
5357
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5360
5358
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5361
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5362
5359
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5363
5360
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5364
5361
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5390,16 +5387,17 @@ declare class SelectionService {
|
|
|
5390
5387
|
}> | null;
|
|
5391
5388
|
getQuery: () => _sinequa_atomic.Query;
|
|
5392
5389
|
} & _ngrx_signals.StateSource<{
|
|
5390
|
+
text?: string | undefined;
|
|
5391
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5393
5392
|
name?: string | undefined;
|
|
5393
|
+
sort?: string | undefined;
|
|
5394
5394
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5395
|
-
text?: string | undefined;
|
|
5396
5395
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5397
5396
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5398
5397
|
page?: number | undefined;
|
|
5399
5398
|
pageSize?: number | undefined;
|
|
5400
5399
|
tab?: string | undefined;
|
|
5401
5400
|
scope?: string | undefined;
|
|
5402
|
-
sort?: string | undefined;
|
|
5403
5401
|
basket?: string | undefined;
|
|
5404
5402
|
isFirstPage?: boolean | undefined;
|
|
5405
5403
|
strictRefine?: boolean | undefined;
|
|
@@ -5413,7 +5411,6 @@ declare class SelectionService {
|
|
|
5413
5411
|
relevanceTransforms?: string | undefined;
|
|
5414
5412
|
removeDuplicates?: boolean | undefined;
|
|
5415
5413
|
queryId?: string | undefined;
|
|
5416
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5417
5414
|
orderBy?: string | undefined;
|
|
5418
5415
|
groupBy?: string | undefined;
|
|
5419
5416
|
neuralSearch?: boolean | undefined;
|
|
@@ -5871,16 +5868,17 @@ declare class NavbarTabsComponent {
|
|
|
5871
5868
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5872
5869
|
}>;
|
|
5873
5870
|
readonly queryParamsStore: {
|
|
5871
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5872
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5874
5873
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5874
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5875
5875
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5876
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5877
5876
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5878
5877
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5879
5878
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5880
5879
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5881
5880
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5882
5881
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5883
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5884
5882
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5885
5883
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5886
5884
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5894,7 +5892,6 @@ declare class NavbarTabsComponent {
|
|
|
5894
5892
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5895
5893
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5896
5894
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5897
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5898
5895
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5899
5896
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5900
5897
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5926,16 +5923,17 @@ declare class NavbarTabsComponent {
|
|
|
5926
5923
|
}> | null;
|
|
5927
5924
|
getQuery: () => _sinequa_atomic.Query;
|
|
5928
5925
|
} & _ngrx_signals.StateSource<{
|
|
5926
|
+
text?: string | undefined;
|
|
5927
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5929
5928
|
name?: string | undefined;
|
|
5929
|
+
sort?: string | undefined;
|
|
5930
5930
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5931
|
-
text?: string | undefined;
|
|
5932
5931
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5933
5932
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5934
5933
|
page?: number | undefined;
|
|
5935
5934
|
pageSize?: number | undefined;
|
|
5936
5935
|
tab?: string | undefined;
|
|
5937
5936
|
scope?: string | undefined;
|
|
5938
|
-
sort?: string | undefined;
|
|
5939
5937
|
basket?: string | undefined;
|
|
5940
5938
|
isFirstPage?: boolean | undefined;
|
|
5941
5939
|
strictRefine?: boolean | undefined;
|
|
@@ -5949,7 +5947,6 @@ declare class NavbarTabsComponent {
|
|
|
5949
5947
|
relevanceTransforms?: string | undefined;
|
|
5950
5948
|
removeDuplicates?: boolean | undefined;
|
|
5951
5949
|
queryId?: string | undefined;
|
|
5952
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5953
5950
|
orderBy?: string | undefined;
|
|
5954
5951
|
groupBy?: string | undefined;
|
|
5955
5952
|
neuralSearch?: boolean | undefined;
|
|
@@ -6430,7 +6427,7 @@ declare class ShowBookmarkDirective {
|
|
|
6430
6427
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6431
6428
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6432
6429
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6433
|
-
userTheme: _angular_core.Signal<"
|
|
6430
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6434
6431
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6435
6432
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6436
6433
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -7128,16 +7125,17 @@ declare class SponsoredResultsComponent {
|
|
|
7128
7125
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7129
7126
|
}>;
|
|
7130
7127
|
queryParamStore: {
|
|
7128
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7129
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7131
7130
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7131
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7132
7132
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7133
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7134
7133
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7135
7134
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7136
7135
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7137
7136
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7138
7137
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7139
7138
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7140
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7141
7139
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7142
7140
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7143
7141
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7151,7 +7149,6 @@ declare class SponsoredResultsComponent {
|
|
|
7151
7149
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7152
7150
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7153
7151
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7154
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7155
7152
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7156
7153
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7157
7154
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7183,16 +7180,17 @@ declare class SponsoredResultsComponent {
|
|
|
7183
7180
|
}> | null;
|
|
7184
7181
|
getQuery: () => _sinequa_atomic.Query;
|
|
7185
7182
|
} & _ngrx_signals.StateSource<{
|
|
7183
|
+
text?: string | undefined;
|
|
7184
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7186
7185
|
name?: string | undefined;
|
|
7186
|
+
sort?: string | undefined;
|
|
7187
7187
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7188
|
-
text?: string | undefined;
|
|
7189
7188
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7190
7189
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7191
7190
|
page?: number | undefined;
|
|
7192
7191
|
pageSize?: number | undefined;
|
|
7193
7192
|
tab?: string | undefined;
|
|
7194
7193
|
scope?: string | undefined;
|
|
7195
|
-
sort?: string | undefined;
|
|
7196
7194
|
basket?: string | undefined;
|
|
7197
7195
|
isFirstPage?: boolean | undefined;
|
|
7198
7196
|
strictRefine?: boolean | undefined;
|
|
@@ -7206,7 +7204,6 @@ declare class SponsoredResultsComponent {
|
|
|
7206
7204
|
relevanceTransforms?: string | undefined;
|
|
7207
7205
|
removeDuplicates?: boolean | undefined;
|
|
7208
7206
|
queryId?: string | undefined;
|
|
7209
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7210
7207
|
orderBy?: string | undefined;
|
|
7211
7208
|
groupBy?: string | undefined;
|
|
7212
7209
|
neuralSearch?: boolean | undefined;
|
|
@@ -7461,16 +7458,17 @@ declare class AggregationListComponent {
|
|
|
7461
7458
|
aggregations: Aggregation[];
|
|
7462
7459
|
}>;
|
|
7463
7460
|
queryParamsStore: {
|
|
7461
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7462
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7464
7463
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7464
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7465
7465
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7466
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7467
7466
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7468
7467
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7469
7468
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7470
7469
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7471
7470
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7472
7471
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7473
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7474
7472
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7475
7473
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7476
7474
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7484,7 +7482,6 @@ declare class AggregationListComponent {
|
|
|
7484
7482
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7485
7483
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7486
7484
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7487
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7488
7485
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7489
7486
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7490
7487
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7516,16 +7513,17 @@ declare class AggregationListComponent {
|
|
|
7516
7513
|
}> | null;
|
|
7517
7514
|
getQuery: () => Query;
|
|
7518
7515
|
} & _ngrx_signals.StateSource<{
|
|
7516
|
+
text?: string | undefined;
|
|
7517
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7519
7518
|
name?: string | undefined;
|
|
7519
|
+
sort?: string | undefined;
|
|
7520
7520
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7521
|
-
text?: string | undefined;
|
|
7522
7521
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7523
7522
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7524
7523
|
page?: number | undefined;
|
|
7525
7524
|
pageSize?: number | undefined;
|
|
7526
7525
|
tab?: string | undefined;
|
|
7527
7526
|
scope?: string | undefined;
|
|
7528
|
-
sort?: string | undefined;
|
|
7529
7527
|
basket?: string | undefined;
|
|
7530
7528
|
isFirstPage?: boolean | undefined;
|
|
7531
7529
|
strictRefine?: boolean | undefined;
|
|
@@ -7539,7 +7537,6 @@ declare class AggregationListComponent {
|
|
|
7539
7537
|
relevanceTransforms?: string | undefined;
|
|
7540
7538
|
removeDuplicates?: boolean | undefined;
|
|
7541
7539
|
queryId?: string | undefined;
|
|
7542
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7543
7540
|
orderBy?: string | undefined;
|
|
7544
7541
|
groupBy?: string | undefined;
|
|
7545
7542
|
neuralSearch?: boolean | undefined;
|
|
@@ -8088,16 +8085,17 @@ declare class AdvancedSearch {
|
|
|
8088
8085
|
multiSelection: Article$1[];
|
|
8089
8086
|
}>;
|
|
8090
8087
|
protected readonly queryParamsStore: {
|
|
8088
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8089
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8091
8090
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8091
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8092
8092
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8093
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8094
8093
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8095
8094
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8096
8095
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8097
8096
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8098
8097
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8099
8098
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8100
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8101
8099
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8102
8100
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8103
8101
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8111,7 +8109,6 @@ declare class AdvancedSearch {
|
|
|
8111
8109
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8112
8110
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8113
8111
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8114
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8115
8112
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8116
8113
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8117
8114
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8143,16 +8140,17 @@ declare class AdvancedSearch {
|
|
|
8143
8140
|
}> | null;
|
|
8144
8141
|
getQuery: () => _sinequa_atomic.Query;
|
|
8145
8142
|
} & _ngrx_signals.StateSource<{
|
|
8143
|
+
text?: string | undefined;
|
|
8144
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8146
8145
|
name?: string | undefined;
|
|
8146
|
+
sort?: string | undefined;
|
|
8147
8147
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8148
|
-
text?: string | undefined;
|
|
8149
8148
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8150
8149
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8151
8150
|
page?: number | undefined;
|
|
8152
8151
|
pageSize?: number | undefined;
|
|
8153
8152
|
tab?: string | undefined;
|
|
8154
8153
|
scope?: string | undefined;
|
|
8155
|
-
sort?: string | undefined;
|
|
8156
8154
|
basket?: string | undefined;
|
|
8157
8155
|
isFirstPage?: boolean | undefined;
|
|
8158
8156
|
strictRefine?: boolean | undefined;
|
|
@@ -8166,7 +8164,6 @@ declare class AdvancedSearch {
|
|
|
8166
8164
|
relevanceTransforms?: string | undefined;
|
|
8167
8165
|
removeDuplicates?: boolean | undefined;
|
|
8168
8166
|
queryId?: string | undefined;
|
|
8169
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8170
8167
|
orderBy?: string | undefined;
|
|
8171
8168
|
groupBy?: string | undefined;
|
|
8172
8169
|
neuralSearch?: boolean | undefined;
|
|
@@ -8557,16 +8554,17 @@ declare class ArticleLabels {
|
|
|
8557
8554
|
|
|
8558
8555
|
declare class ArticleSimilarDocuments {
|
|
8559
8556
|
protected readonly queryParamsStore: {
|
|
8557
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8558
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8560
8559
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8560
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8561
8561
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8562
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8563
8562
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8564
8563
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8565
8564
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8566
8565
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8567
8566
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8568
8567
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8569
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8570
8568
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8571
8569
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8572
8570
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8580,7 +8578,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8580
8578
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8581
8579
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8582
8580
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8583
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8584
8581
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8585
8582
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8586
8583
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8612,16 +8609,17 @@ declare class ArticleSimilarDocuments {
|
|
|
8612
8609
|
}> | null;
|
|
8613
8610
|
getQuery: () => _sinequa_atomic.Query;
|
|
8614
8611
|
} & _ngrx_signals.StateSource<{
|
|
8612
|
+
text?: string | undefined;
|
|
8613
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8615
8614
|
name?: string | undefined;
|
|
8615
|
+
sort?: string | undefined;
|
|
8616
8616
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8617
|
-
text?: string | undefined;
|
|
8618
8617
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8619
8618
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8620
8619
|
page?: number | undefined;
|
|
8621
8620
|
pageSize?: number | undefined;
|
|
8622
8621
|
tab?: string | undefined;
|
|
8623
8622
|
scope?: string | undefined;
|
|
8624
|
-
sort?: string | undefined;
|
|
8625
8623
|
basket?: string | undefined;
|
|
8626
8624
|
isFirstPage?: boolean | undefined;
|
|
8627
8625
|
strictRefine?: boolean | undefined;
|
|
@@ -8635,7 +8633,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8635
8633
|
relevanceTransforms?: string | undefined;
|
|
8636
8634
|
removeDuplicates?: boolean | undefined;
|
|
8637
8635
|
queryId?: string | undefined;
|
|
8638
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8639
8636
|
orderBy?: string | undefined;
|
|
8640
8637
|
groupBy?: string | undefined;
|
|
8641
8638
|
neuralSearch?: boolean | undefined;
|
|
@@ -8833,6 +8830,13 @@ declare class SignInComponent {
|
|
|
8833
8830
|
state: "initial" | "loading" | "loaded" | "error";
|
|
8834
8831
|
}>;
|
|
8835
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>;
|
|
8836
8840
|
constructor(destroyRef: DestroyRef);
|
|
8837
8841
|
private checkPasswordExpiresSoon;
|
|
8838
8842
|
handleLogout(): Promise<void>;
|
|
@@ -9231,16 +9235,17 @@ declare class AdvancedSearchComponent {
|
|
|
9231
9235
|
multiSelection: Article$1[];
|
|
9232
9236
|
}>;
|
|
9233
9237
|
protected readonly queryParamsStore: {
|
|
9238
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9239
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9234
9240
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9241
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9235
9242
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9236
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9237
9243
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9238
9244
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9239
9245
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9240
9246
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9241
9247
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9242
9248
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9243
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9244
9249
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9245
9250
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9246
9251
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9254,7 +9259,6 @@ declare class AdvancedSearchComponent {
|
|
|
9254
9259
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9255
9260
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9256
9261
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9257
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9258
9262
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9259
9263
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9260
9264
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9286,16 +9290,17 @@ declare class AdvancedSearchComponent {
|
|
|
9286
9290
|
}> | null;
|
|
9287
9291
|
getQuery: () => _sinequa_atomic.Query;
|
|
9288
9292
|
} & _ngrx_signals.StateSource<{
|
|
9293
|
+
text?: string | undefined;
|
|
9294
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9289
9295
|
name?: string | undefined;
|
|
9296
|
+
sort?: string | undefined;
|
|
9290
9297
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9291
|
-
text?: string | undefined;
|
|
9292
9298
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9293
9299
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9294
9300
|
page?: number | undefined;
|
|
9295
9301
|
pageSize?: number | undefined;
|
|
9296
9302
|
tab?: string | undefined;
|
|
9297
9303
|
scope?: string | undefined;
|
|
9298
|
-
sort?: string | undefined;
|
|
9299
9304
|
basket?: string | undefined;
|
|
9300
9305
|
isFirstPage?: boolean | undefined;
|
|
9301
9306
|
strictRefine?: boolean | undefined;
|
|
@@ -9309,7 +9314,6 @@ declare class AdvancedSearchComponent {
|
|
|
9309
9314
|
relevanceTransforms?: string | undefined;
|
|
9310
9315
|
removeDuplicates?: boolean | undefined;
|
|
9311
9316
|
queryId?: string | undefined;
|
|
9312
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9313
9317
|
orderBy?: string | undefined;
|
|
9314
9318
|
groupBy?: string | undefined;
|
|
9315
9319
|
neuralSearch?: boolean | undefined;
|
|
@@ -9692,16 +9696,17 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9692
9696
|
multiSelection: _sinequa_atomic.Article[];
|
|
9693
9697
|
}>;
|
|
9694
9698
|
queryParamsStore: {
|
|
9699
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9700
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9695
9701
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9702
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9696
9703
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9697
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9698
9704
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9699
9705
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9700
9706
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9701
9707
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9702
9708
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9703
9709
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9704
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9705
9710
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9706
9711
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9707
9712
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9715,7 +9720,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9715
9720
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9716
9721
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9717
9722
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9718
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9719
9723
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9720
9724
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9721
9725
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9747,16 +9751,17 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9747
9751
|
}> | null;
|
|
9748
9752
|
getQuery: () => _sinequa_atomic.Query;
|
|
9749
9753
|
} & _ngrx_signals.StateSource<{
|
|
9754
|
+
text?: string | undefined;
|
|
9755
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9750
9756
|
name?: string | undefined;
|
|
9757
|
+
sort?: string | undefined;
|
|
9751
9758
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9752
|
-
text?: string | undefined;
|
|
9753
9759
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9754
9760
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9755
9761
|
page?: number | undefined;
|
|
9756
9762
|
pageSize?: number | undefined;
|
|
9757
9763
|
tab?: string | undefined;
|
|
9758
9764
|
scope?: string | undefined;
|
|
9759
|
-
sort?: string | undefined;
|
|
9760
9765
|
basket?: string | undefined;
|
|
9761
9766
|
isFirstPage?: boolean | undefined;
|
|
9762
9767
|
strictRefine?: boolean | undefined;
|
|
@@ -9770,7 +9775,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9770
9775
|
relevanceTransforms?: string | undefined;
|
|
9771
9776
|
removeDuplicates?: boolean | undefined;
|
|
9772
9777
|
queryId?: string | undefined;
|
|
9773
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9774
9778
|
orderBy?: string | undefined;
|
|
9775
9779
|
groupBy?: string | undefined;
|
|
9776
9780
|
neuralSearch?: boolean | undefined;
|
|
@@ -9890,16 +9894,17 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9890
9894
|
private appStore;
|
|
9891
9895
|
readonly exportService: ExportService;
|
|
9892
9896
|
readonly queryParamsStore: {
|
|
9897
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9898
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9893
9899
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9900
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9894
9901
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9895
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9896
9902
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9897
9903
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9898
9904
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9899
9905
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9900
9906
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9901
9907
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9902
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9903
9908
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9904
9909
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9905
9910
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9913,7 +9918,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9913
9918
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9914
9919
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9915
9920
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9916
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9917
9921
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9918
9922
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9919
9923
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9945,16 +9949,17 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9945
9949
|
}> | null;
|
|
9946
9950
|
getQuery: () => _sinequa_atomic.Query;
|
|
9947
9951
|
} & _ngrx_signals.StateSource<{
|
|
9952
|
+
text?: string | undefined;
|
|
9953
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9948
9954
|
name?: string | undefined;
|
|
9955
|
+
sort?: string | undefined;
|
|
9949
9956
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9950
|
-
text?: string | undefined;
|
|
9951
9957
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9952
9958
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9953
9959
|
page?: number | undefined;
|
|
9954
9960
|
pageSize?: number | undefined;
|
|
9955
9961
|
tab?: string | undefined;
|
|
9956
9962
|
scope?: string | undefined;
|
|
9957
|
-
sort?: string | undefined;
|
|
9958
9963
|
basket?: string | undefined;
|
|
9959
9964
|
isFirstPage?: boolean | undefined;
|
|
9960
9965
|
strictRefine?: boolean | undefined;
|
|
@@ -9968,7 +9973,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9968
9973
|
relevanceTransforms?: string | undefined;
|
|
9969
9974
|
removeDuplicates?: boolean | undefined;
|
|
9970
9975
|
queryId?: string | undefined;
|
|
9971
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9972
9976
|
orderBy?: string | undefined;
|
|
9973
9977
|
groupBy?: string | undefined;
|
|
9974
9978
|
neuralSearch?: boolean | undefined;
|
|
@@ -10327,16 +10331,17 @@ declare class SearchFeedbackComponent {
|
|
|
10327
10331
|
pages: _angular_core.InputSignal<any>;
|
|
10328
10332
|
readonly auditService: AuditService;
|
|
10329
10333
|
protected readonly queryParamsStore: {
|
|
10334
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10335
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10330
10336
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10337
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10331
10338
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10332
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10333
10339
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10334
10340
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
10335
10341
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
10336
10342
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10337
10343
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10338
10344
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10339
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10340
10345
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10341
10346
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10342
10347
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10350,7 +10355,6 @@ declare class SearchFeedbackComponent {
|
|
|
10350
10355
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10351
10356
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10352
10357
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10353
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10354
10358
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10355
10359
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10356
10360
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10382,16 +10386,17 @@ declare class SearchFeedbackComponent {
|
|
|
10382
10386
|
}> | null;
|
|
10383
10387
|
getQuery: () => _sinequa_atomic.Query;
|
|
10384
10388
|
} & _ngrx_signals.StateSource<{
|
|
10389
|
+
text?: string | undefined;
|
|
10390
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10385
10391
|
name?: string | undefined;
|
|
10392
|
+
sort?: string | undefined;
|
|
10386
10393
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10387
|
-
text?: string | undefined;
|
|
10388
10394
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10389
10395
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10390
10396
|
page?: number | undefined;
|
|
10391
10397
|
pageSize?: number | undefined;
|
|
10392
10398
|
tab?: string | undefined;
|
|
10393
10399
|
scope?: string | undefined;
|
|
10394
|
-
sort?: string | undefined;
|
|
10395
10400
|
basket?: string | undefined;
|
|
10396
10401
|
isFirstPage?: boolean | undefined;
|
|
10397
10402
|
strictRefine?: boolean | undefined;
|
|
@@ -10405,7 +10410,6 @@ declare class SearchFeedbackComponent {
|
|
|
10405
10410
|
relevanceTransforms?: string | undefined;
|
|
10406
10411
|
removeDuplicates?: boolean | undefined;
|
|
10407
10412
|
queryId?: string | undefined;
|
|
10408
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10409
10413
|
orderBy?: string | undefined;
|
|
10410
10414
|
groupBy?: string | undefined;
|
|
10411
10415
|
neuralSearch?: boolean | undefined;
|
|
@@ -10442,16 +10446,17 @@ declare class AggregationTreeComponent {
|
|
|
10442
10446
|
aggregations: Aggregation[];
|
|
10443
10447
|
}>;
|
|
10444
10448
|
queryParamsStore: {
|
|
10449
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10450
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10445
10451
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10452
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10446
10453
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10447
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10448
10454
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10449
10455
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
10450
10456
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
10451
10457
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10452
10458
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10453
10459
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10454
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10455
10460
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10456
10461
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10457
10462
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10465,7 +10470,6 @@ declare class AggregationTreeComponent {
|
|
|
10465
10470
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10466
10471
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10467
10472
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10468
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10469
10473
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10470
10474
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10471
10475
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10497,16 +10501,17 @@ declare class AggregationTreeComponent {
|
|
|
10497
10501
|
}> | null;
|
|
10498
10502
|
getQuery: () => Query;
|
|
10499
10503
|
} & _ngrx_signals.StateSource<{
|
|
10504
|
+
text?: string | undefined;
|
|
10505
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10500
10506
|
name?: string | undefined;
|
|
10507
|
+
sort?: string | undefined;
|
|
10501
10508
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10502
|
-
text?: string | undefined;
|
|
10503
10509
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10504
10510
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10505
10511
|
page?: number | undefined;
|
|
10506
10512
|
pageSize?: number | undefined;
|
|
10507
10513
|
tab?: string | undefined;
|
|
10508
10514
|
scope?: string | undefined;
|
|
10509
|
-
sort?: string | undefined;
|
|
10510
10515
|
basket?: string | undefined;
|
|
10511
10516
|
isFirstPage?: boolean | undefined;
|
|
10512
10517
|
strictRefine?: boolean | undefined;
|
|
@@ -10520,7 +10525,6 @@ declare class AggregationTreeComponent {
|
|
|
10520
10525
|
relevanceTransforms?: string | undefined;
|
|
10521
10526
|
removeDuplicates?: boolean | undefined;
|
|
10522
10527
|
queryId?: string | undefined;
|
|
10523
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10524
10528
|
orderBy?: string | undefined;
|
|
10525
10529
|
groupBy?: string | undefined;
|
|
10526
10530
|
neuralSearch?: boolean | undefined;
|
|
@@ -11497,7 +11501,7 @@ declare class FilterButtonComponent {
|
|
|
11497
11501
|
position: _angular_core.InputSignal<Placement>;
|
|
11498
11502
|
offset: _angular_core.InputSignal<number>;
|
|
11499
11503
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11500
|
-
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>;
|
|
11501
11505
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11502
11506
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11503
11507
|
protected nativeElement: any;
|
|
@@ -11511,16 +11515,17 @@ declare class FilterButtonComponent {
|
|
|
11511
11515
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
11512
11516
|
}>;
|
|
11513
11517
|
protected queryParamsStore: {
|
|
11518
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11519
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11514
11520
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11521
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11515
11522
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11516
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11517
11523
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11518
11524
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11519
11525
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11520
11526
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11521
11527
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11522
11528
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11523
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11524
11529
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11525
11530
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11526
11531
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11534,7 +11539,6 @@ declare class FilterButtonComponent {
|
|
|
11534
11539
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11535
11540
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11536
11541
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11537
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11538
11542
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11539
11543
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11540
11544
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11566,16 +11570,17 @@ declare class FilterButtonComponent {
|
|
|
11566
11570
|
}> | null;
|
|
11567
11571
|
getQuery: () => _sinequa_atomic.Query;
|
|
11568
11572
|
} & _ngrx_signals.StateSource<{
|
|
11573
|
+
text?: string | undefined;
|
|
11574
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11569
11575
|
name?: string | undefined;
|
|
11576
|
+
sort?: string | undefined;
|
|
11570
11577
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11571
|
-
text?: string | undefined;
|
|
11572
11578
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11573
11579
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11574
11580
|
page?: number | undefined;
|
|
11575
11581
|
pageSize?: number | undefined;
|
|
11576
11582
|
tab?: string | undefined;
|
|
11577
11583
|
scope?: string | undefined;
|
|
11578
|
-
sort?: string | undefined;
|
|
11579
11584
|
basket?: string | undefined;
|
|
11580
11585
|
isFirstPage?: boolean | undefined;
|
|
11581
11586
|
strictRefine?: boolean | undefined;
|
|
@@ -11589,7 +11594,6 @@ declare class FilterButtonComponent {
|
|
|
11589
11594
|
relevanceTransforms?: string | undefined;
|
|
11590
11595
|
removeDuplicates?: boolean | undefined;
|
|
11591
11596
|
queryId?: string | undefined;
|
|
11592
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11593
11597
|
orderBy?: string | undefined;
|
|
11594
11598
|
groupBy?: string | undefined;
|
|
11595
11599
|
neuralSearch?: boolean | undefined;
|
|
@@ -12235,16 +12239,17 @@ declare class MoreButtonComponent {
|
|
|
12235
12239
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
12236
12240
|
}>;
|
|
12237
12241
|
queryParamsStore: {
|
|
12242
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12238
12244
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12245
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12239
12246
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12240
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12241
12247
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12242
12248
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12243
12249
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12244
12250
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12245
12251
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12246
12252
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12247
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12248
12253
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12249
12254
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12250
12255
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12258,7 +12263,6 @@ declare class MoreButtonComponent {
|
|
|
12258
12263
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12259
12264
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12260
12265
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12261
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12262
12266
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12263
12267
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12264
12268
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12290,16 +12294,17 @@ declare class MoreButtonComponent {
|
|
|
12290
12294
|
}> | null;
|
|
12291
12295
|
getQuery: () => _sinequa_atomic.Query;
|
|
12292
12296
|
} & _ngrx_signals.StateSource<{
|
|
12297
|
+
text?: string | undefined;
|
|
12298
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12293
12299
|
name?: string | undefined;
|
|
12300
|
+
sort?: string | undefined;
|
|
12294
12301
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12295
|
-
text?: string | undefined;
|
|
12296
12302
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12297
12303
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12298
12304
|
page?: number | undefined;
|
|
12299
12305
|
pageSize?: number | undefined;
|
|
12300
12306
|
tab?: string | undefined;
|
|
12301
12307
|
scope?: string | undefined;
|
|
12302
|
-
sort?: string | undefined;
|
|
12303
12308
|
basket?: string | undefined;
|
|
12304
12309
|
isFirstPage?: boolean | undefined;
|
|
12305
12310
|
strictRefine?: boolean | undefined;
|
|
@@ -12313,7 +12318,6 @@ declare class MoreButtonComponent {
|
|
|
12313
12318
|
relevanceTransforms?: string | undefined;
|
|
12314
12319
|
removeDuplicates?: boolean | undefined;
|
|
12315
12320
|
queryId?: string | undefined;
|
|
12316
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12317
12321
|
orderBy?: string | undefined;
|
|
12318
12322
|
groupBy?: string | undefined;
|
|
12319
12323
|
neuralSearch?: boolean | undefined;
|
|
@@ -12725,16 +12729,17 @@ declare class FiltersBarComponent {
|
|
|
12725
12729
|
aggregations: Aggregation[];
|
|
12726
12730
|
}>;
|
|
12727
12731
|
protected queryParamsStore: {
|
|
12732
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12733
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12728
12734
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12735
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12729
12736
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12730
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12731
12737
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12732
12738
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12733
12739
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12734
12740
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12735
12741
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12736
12742
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12737
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12738
12743
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12739
12744
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12740
12745
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12748,7 +12753,6 @@ declare class FiltersBarComponent {
|
|
|
12748
12753
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12749
12754
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12750
12755
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12751
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12752
12756
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12753
12757
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12754
12758
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12780,16 +12784,17 @@ declare class FiltersBarComponent {
|
|
|
12780
12784
|
}> | null;
|
|
12781
12785
|
getQuery: () => _sinequa_atomic.Query;
|
|
12782
12786
|
} & _ngrx_signals.StateSource<{
|
|
12787
|
+
text?: string | undefined;
|
|
12788
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12783
12789
|
name?: string | undefined;
|
|
12790
|
+
sort?: string | undefined;
|
|
12784
12791
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12785
|
-
text?: string | undefined;
|
|
12786
12792
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12787
12793
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12788
12794
|
page?: number | undefined;
|
|
12789
12795
|
pageSize?: number | undefined;
|
|
12790
12796
|
tab?: string | undefined;
|
|
12791
12797
|
scope?: string | undefined;
|
|
12792
|
-
sort?: string | undefined;
|
|
12793
12798
|
basket?: string | undefined;
|
|
12794
12799
|
isFirstPage?: boolean | undefined;
|
|
12795
12800
|
strictRefine?: boolean | undefined;
|
|
@@ -12803,7 +12808,6 @@ declare class FiltersBarComponent {
|
|
|
12803
12808
|
relevanceTransforms?: string | undefined;
|
|
12804
12809
|
removeDuplicates?: boolean | undefined;
|
|
12805
12810
|
queryId?: string | undefined;
|
|
12806
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12807
12811
|
orderBy?: string | undefined;
|
|
12808
12812
|
groupBy?: string | undefined;
|
|
12809
12813
|
neuralSearch?: boolean | undefined;
|
|
@@ -13226,16 +13230,17 @@ declare class MoreComponent {
|
|
|
13226
13230
|
aggregations: Aggregation[];
|
|
13227
13231
|
}>;
|
|
13228
13232
|
queryParamsStore: {
|
|
13233
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13234
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13229
13235
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13236
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13230
13237
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13231
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13232
13238
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13233
13239
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13234
13240
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13235
13241
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13236
13242
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13237
13243
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13238
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13239
13244
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13240
13245
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13241
13246
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13249,7 +13254,6 @@ declare class MoreComponent {
|
|
|
13249
13254
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13250
13255
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13251
13256
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13252
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13253
13257
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13254
13258
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13255
13259
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13281,16 +13285,17 @@ declare class MoreComponent {
|
|
|
13281
13285
|
}> | null;
|
|
13282
13286
|
getQuery: () => _sinequa_atomic.Query;
|
|
13283
13287
|
} & _ngrx_signals.StateSource<{
|
|
13288
|
+
text?: string | undefined;
|
|
13289
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13284
13290
|
name?: string | undefined;
|
|
13291
|
+
sort?: string | undefined;
|
|
13285
13292
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13286
|
-
text?: string | undefined;
|
|
13287
13293
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13288
13294
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13289
13295
|
page?: number | undefined;
|
|
13290
13296
|
pageSize?: number | undefined;
|
|
13291
13297
|
tab?: string | undefined;
|
|
13292
13298
|
scope?: string | undefined;
|
|
13293
|
-
sort?: string | undefined;
|
|
13294
13299
|
basket?: string | undefined;
|
|
13295
13300
|
isFirstPage?: boolean | undefined;
|
|
13296
13301
|
strictRefine?: boolean | undefined;
|
|
@@ -13304,7 +13309,6 @@ declare class MoreComponent {
|
|
|
13304
13309
|
relevanceTransforms?: string | undefined;
|
|
13305
13310
|
removeDuplicates?: boolean | undefined;
|
|
13306
13311
|
queryId?: string | undefined;
|
|
13307
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13308
13312
|
orderBy?: string | undefined;
|
|
13309
13313
|
groupBy?: string | undefined;
|
|
13310
13314
|
neuralSearch?: boolean | undefined;
|
|
@@ -13855,7 +13859,7 @@ declare class RecentSearchesComponent {
|
|
|
13855
13859
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13856
13860
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13857
13861
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13858
|
-
userTheme: _angular_core.Signal<"
|
|
13862
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13859
13863
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13860
13864
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13861
13865
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13920,16 +13924,17 @@ declare class RecentSearchesComponent {
|
|
|
13920
13924
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13921
13925
|
private readonly savedSearchesService;
|
|
13922
13926
|
protected readonly queryParamsStore: {
|
|
13927
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13928
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13923
13929
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13930
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13924
13931
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13925
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13926
13932
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13927
13933
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13928
13934
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13929
13935
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13930
13936
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13931
13937
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13932
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13933
13938
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13934
13939
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13935
13940
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13943,7 +13948,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13943
13948
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13944
13949
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13945
13950
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13946
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13947
13951
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13948
13952
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13949
13953
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13975,16 +13979,17 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13975
13979
|
}> | null;
|
|
13976
13980
|
getQuery: () => _sinequa_atomic.Query;
|
|
13977
13981
|
} & _ngrx_signals.StateSource<{
|
|
13982
|
+
text?: string | undefined;
|
|
13983
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13978
13984
|
name?: string | undefined;
|
|
13985
|
+
sort?: string | undefined;
|
|
13979
13986
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13980
|
-
text?: string | undefined;
|
|
13981
13987
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13982
13988
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13983
13989
|
page?: number | undefined;
|
|
13984
13990
|
pageSize?: number | undefined;
|
|
13985
13991
|
tab?: string | undefined;
|
|
13986
13992
|
scope?: string | undefined;
|
|
13987
|
-
sort?: string | undefined;
|
|
13988
13993
|
basket?: string | undefined;
|
|
13989
13994
|
isFirstPage?: boolean | undefined;
|
|
13990
13995
|
strictRefine?: boolean | undefined;
|
|
@@ -13998,7 +14003,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13998
14003
|
relevanceTransforms?: string | undefined;
|
|
13999
14004
|
removeDuplicates?: boolean | undefined;
|
|
14000
14005
|
queryId?: string | undefined;
|
|
14001
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
14002
14006
|
orderBy?: string | undefined;
|
|
14003
14007
|
groupBy?: string | undefined;
|
|
14004
14008
|
neuralSearch?: boolean | undefined;
|
|
@@ -14030,7 +14034,7 @@ declare class SavedSearchesComponent {
|
|
|
14030
14034
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
14031
14035
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
14032
14036
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
14033
|
-
userTheme: _angular_core.Signal<"
|
|
14037
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
14034
14038
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
14035
14039
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
14036
14040
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -14125,7 +14129,7 @@ declare class UserProfileFormComponent {
|
|
|
14125
14129
|
param9: _angular_core.Signal<string>;
|
|
14126
14130
|
param10: _angular_core.Signal<string>;
|
|
14127
14131
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
14128
|
-
state: _angular_core.Signal<"
|
|
14132
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
14129
14133
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
14130
14134
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
14131
14135
|
initials: _angular_core.Signal<string>;
|
|
@@ -14169,7 +14173,7 @@ declare class UserProfileFormComponent {
|
|
|
14169
14173
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
14170
14174
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
14171
14175
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
14172
|
-
userTheme: _angular_core.Signal<"
|
|
14176
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
14173
14177
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
14174
14178
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
14175
14179
|
isDarkMode: _angular_core.Signal<boolean>;
|