@sinequa/atomic-angular 0.4.19-dev.3 → 0.4.22
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 +364 -359
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +154 -154
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,17 +114,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
117
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
118
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
119
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
122
120
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
123
121
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
124
122
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
125
123
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
126
124
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
127
125
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
126
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
128
127
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
129
128
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
130
129
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -138,6 +137,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
138
137
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
139
138
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
140
139
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
140
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
141
141
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
142
142
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
143
143
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -169,17 +169,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
-
text?: string | undefined;
|
|
173
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
172
|
name?: string | undefined;
|
|
175
|
-
sort?: string | undefined;
|
|
176
173
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
174
|
+
text?: string | undefined;
|
|
177
175
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
178
176
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
179
177
|
page?: number | undefined;
|
|
180
178
|
pageSize?: number | undefined;
|
|
181
179
|
tab?: string | undefined;
|
|
182
180
|
scope?: string | undefined;
|
|
181
|
+
sort?: string | undefined;
|
|
183
182
|
basket?: string | undefined;
|
|
184
183
|
isFirstPage?: boolean | undefined;
|
|
185
184
|
strictRefine?: boolean | undefined;
|
|
@@ -193,6 +192,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
193
192
|
relevanceTransforms?: string | undefined;
|
|
194
193
|
removeDuplicates?: boolean | undefined;
|
|
195
194
|
queryId?: string | undefined;
|
|
195
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
196
196
|
orderBy?: string | undefined;
|
|
197
197
|
groupBy?: string | undefined;
|
|
198
198
|
neuralSearch?: boolean | undefined;
|
|
@@ -250,7 +250,7 @@ declare class MetadataComponent {
|
|
|
250
250
|
event: Event;
|
|
251
251
|
}>;
|
|
252
252
|
class: _angular_core.InputSignal<string | undefined>;
|
|
253
|
-
variant: _angular_core.InputSignal<"error" | "default" | "
|
|
253
|
+
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "accent" | "destructive" | "outline" | "ghost" | "ai" | "none" | "info" | "success" | "warning" | null | undefined>;
|
|
254
254
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
255
255
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
256
256
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -263,17 +263,16 @@ declare class MetadataComponent {
|
|
|
263
263
|
declare class MissingTermsComponent {
|
|
264
264
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
265
265
|
queryParamsStore: {
|
|
266
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
268
266
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
270
267
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
268
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
271
269
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
272
270
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
273
271
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
274
272
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
275
273
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
276
274
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
276
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
278
277
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
279
278
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -287,6 +286,7 @@ declare class MissingTermsComponent {
|
|
|
287
286
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
288
287
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
289
288
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
289
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
290
290
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
291
291
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
292
292
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -318,17 +318,16 @@ declare class MissingTermsComponent {
|
|
|
318
318
|
}> | null;
|
|
319
319
|
getQuery: () => _sinequa_atomic.Query;
|
|
320
320
|
} & _ngrx_signals.StateSource<{
|
|
321
|
-
text?: string | undefined;
|
|
322
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
323
321
|
name?: string | undefined;
|
|
324
|
-
sort?: string | undefined;
|
|
325
322
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
323
|
+
text?: string | undefined;
|
|
326
324
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
327
325
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
328
326
|
page?: number | undefined;
|
|
329
327
|
pageSize?: number | undefined;
|
|
330
328
|
tab?: string | undefined;
|
|
331
329
|
scope?: string | undefined;
|
|
330
|
+
sort?: string | undefined;
|
|
332
331
|
basket?: string | undefined;
|
|
333
332
|
isFirstPage?: boolean | undefined;
|
|
334
333
|
strictRefine?: boolean | undefined;
|
|
@@ -342,6 +341,7 @@ declare class MissingTermsComponent {
|
|
|
342
341
|
relevanceTransforms?: string | undefined;
|
|
343
342
|
removeDuplicates?: boolean | undefined;
|
|
344
343
|
queryId?: string | undefined;
|
|
344
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
345
345
|
orderBy?: string | undefined;
|
|
346
346
|
groupBy?: string | undefined;
|
|
347
347
|
neuralSearch?: boolean | undefined;
|
|
@@ -361,7 +361,7 @@ declare class MissingTermsComponent {
|
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
declare const multiSelectionToolbarVariants: (props?: ({
|
|
364
|
-
variant?: "
|
|
364
|
+
variant?: "light" | "dark" | "glassy" | null | undefined;
|
|
365
365
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
366
366
|
type MultiSelectionToolbarVariants = VariantProps<typeof multiSelectionToolbarVariants>;
|
|
367
367
|
declare class MultiSelectionToolbarComponent {
|
|
@@ -732,7 +732,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
732
732
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
733
733
|
} | undefined;
|
|
734
734
|
readonly class: _angular_core.InputSignal<string>;
|
|
735
|
-
readonly variant: _angular_core.InputSignal<"
|
|
735
|
+
readonly variant: _angular_core.InputSignal<"light" | "dark" | "glassy" | null | undefined>;
|
|
736
736
|
readonly updatedCollections: _angular_core.OutputEmitterRef<void>;
|
|
737
737
|
readonly count: _angular_core.Signal<number>;
|
|
738
738
|
readonly variants: _angular_core.Signal<string>;
|
|
@@ -1795,17 +1795,16 @@ type QueryParams = {
|
|
|
1795
1795
|
n?: string;
|
|
1796
1796
|
};
|
|
1797
1797
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1798
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1799
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1800
1798
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1801
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1802
1799
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1800
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1803
1801
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1804
1802
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
1805
1803
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
1806
1804
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1807
1805
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1808
1806
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1807
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1809
1808
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1810
1809
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1811
1810
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1819,6 +1818,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1819
1818
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1820
1819
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1821
1820
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1821
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1822
1822
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1823
1823
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1824
1824
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1842,17 +1842,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1842
1842
|
}> | null;
|
|
1843
1843
|
getQuery: () => _sinequa_atomic.Query;
|
|
1844
1844
|
} & _ngrx_signals.StateSource<{
|
|
1845
|
-
text?: string | undefined;
|
|
1846
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1847
1845
|
name?: string | undefined;
|
|
1848
|
-
sort?: string | undefined;
|
|
1849
1846
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1847
|
+
text?: string | undefined;
|
|
1850
1848
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1851
1849
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1852
1850
|
page?: number | undefined;
|
|
1853
1851
|
pageSize?: number | undefined;
|
|
1854
1852
|
tab?: string | undefined;
|
|
1855
1853
|
scope?: string | undefined;
|
|
1854
|
+
sort?: string | undefined;
|
|
1856
1855
|
basket?: string | undefined;
|
|
1857
1856
|
isFirstPage?: boolean | undefined;
|
|
1858
1857
|
strictRefine?: boolean | undefined;
|
|
@@ -1866,6 +1865,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1866
1865
|
relevanceTransforms?: string | undefined;
|
|
1867
1866
|
removeDuplicates?: boolean | undefined;
|
|
1868
1867
|
queryId?: string | undefined;
|
|
1868
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1869
1869
|
orderBy?: string | undefined;
|
|
1870
1870
|
groupBy?: string | undefined;
|
|
1871
1871
|
neuralSearch?: boolean | undefined;
|
|
@@ -1875,17 +1875,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1875
1875
|
}>>;
|
|
1876
1876
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1877
1877
|
state: {
|
|
1878
|
-
text?: string | undefined;
|
|
1879
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1880
1878
|
name?: string | undefined;
|
|
1881
|
-
sort?: string | undefined;
|
|
1882
1879
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1880
|
+
text?: string | undefined;
|
|
1883
1881
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1884
1882
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1885
1883
|
page?: number | undefined;
|
|
1886
1884
|
pageSize?: number | undefined;
|
|
1887
1885
|
tab?: string | undefined;
|
|
1888
1886
|
scope?: string | undefined;
|
|
1887
|
+
sort?: string | undefined;
|
|
1889
1888
|
basket?: string | undefined;
|
|
1890
1889
|
isFirstPage?: boolean | undefined;
|
|
1891
1890
|
strictRefine?: boolean | undefined;
|
|
@@ -1899,6 +1898,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
1899
1898
|
relevanceTransforms?: string | undefined;
|
|
1900
1899
|
removeDuplicates?: boolean | undefined;
|
|
1901
1900
|
queryId?: string | undefined;
|
|
1901
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1902
1902
|
orderBy?: string | undefined;
|
|
1903
1903
|
groupBy?: string | undefined;
|
|
1904
1904
|
neuralSearch?: boolean | undefined;
|
|
@@ -2092,7 +2092,7 @@ declare const UserSettingsStore: _angular_core.Type<{
|
|
|
2092
2092
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2093
2093
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2094
2094
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2095
|
-
userTheme: _angular_core.Signal<"
|
|
2095
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
2096
2096
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
2097
2097
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
2098
2098
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -2613,17 +2613,16 @@ declare class AggregationsService {
|
|
|
2613
2613
|
aggregations: Aggregation[];
|
|
2614
2614
|
}>;
|
|
2615
2615
|
queryParamsStore: {
|
|
2616
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2617
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2618
2616
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2619
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2620
2617
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2618
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2621
2619
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2622
2620
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
2623
2621
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
2624
2622
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
2625
2623
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
2626
2624
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
2625
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2627
2626
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
2628
2627
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2629
2628
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2637,6 +2636,7 @@ declare class AggregationsService {
|
|
|
2637
2636
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
2638
2637
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2639
2638
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
2639
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2640
2640
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2641
2641
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2642
2642
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2668,17 +2668,16 @@ declare class AggregationsService {
|
|
|
2668
2668
|
}> | null;
|
|
2669
2669
|
getQuery: () => Query;
|
|
2670
2670
|
} & _ngrx_signals.StateSource<{
|
|
2671
|
-
text?: string | undefined;
|
|
2672
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2673
2671
|
name?: string | undefined;
|
|
2674
|
-
sort?: string | undefined;
|
|
2675
2672
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2673
|
+
text?: string | undefined;
|
|
2676
2674
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2677
2675
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
2678
2676
|
page?: number | undefined;
|
|
2679
2677
|
pageSize?: number | undefined;
|
|
2680
2678
|
tab?: string | undefined;
|
|
2681
2679
|
scope?: string | undefined;
|
|
2680
|
+
sort?: string | undefined;
|
|
2682
2681
|
basket?: string | undefined;
|
|
2683
2682
|
isFirstPage?: boolean | undefined;
|
|
2684
2683
|
strictRefine?: boolean | undefined;
|
|
@@ -2692,6 +2691,7 @@ declare class AggregationsService {
|
|
|
2692
2691
|
relevanceTransforms?: string | undefined;
|
|
2693
2692
|
removeDuplicates?: boolean | undefined;
|
|
2694
2693
|
queryId?: string | undefined;
|
|
2694
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2695
2695
|
orderBy?: string | undefined;
|
|
2696
2696
|
groupBy?: string | undefined;
|
|
2697
2697
|
neuralSearch?: boolean | undefined;
|
|
@@ -2796,7 +2796,7 @@ declare class ApplicationService {
|
|
|
2796
2796
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2797
2797
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2798
2798
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2799
|
-
userTheme: _angular_core.Signal<"
|
|
2799
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
2800
2800
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
2801
2801
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
2802
2802
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -3630,7 +3630,7 @@ declare class AutocompleteService {
|
|
|
3630
3630
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3631
3631
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3632
3632
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3633
|
-
userTheme: _angular_core.Signal<"
|
|
3633
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
3634
3634
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
3635
3635
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
3636
3636
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -4276,17 +4276,16 @@ declare class PreviewService {
|
|
|
4276
4276
|
multiSelection: Article$1[];
|
|
4277
4277
|
}>;
|
|
4278
4278
|
protected readonly queryParamsStore: {
|
|
4279
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4280
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4281
4279
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4282
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4283
4280
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4281
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4284
4282
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4285
4283
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4286
4284
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4287
4285
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4288
4286
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4289
4287
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4288
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4290
4289
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4291
4290
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4292
4291
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4300,6 +4299,7 @@ declare class PreviewService {
|
|
|
4300
4299
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4301
4300
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4302
4301
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4302
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4303
4303
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4304
4304
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4305
4305
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4331,17 +4331,16 @@ declare class PreviewService {
|
|
|
4331
4331
|
}> | null;
|
|
4332
4332
|
getQuery: () => Query;
|
|
4333
4333
|
} & _ngrx_signals.StateSource<{
|
|
4334
|
-
text?: string | undefined;
|
|
4335
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4336
4334
|
name?: string | undefined;
|
|
4337
|
-
sort?: string | undefined;
|
|
4338
4335
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4336
|
+
text?: string | undefined;
|
|
4339
4337
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4340
4338
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4341
4339
|
page?: number | undefined;
|
|
4342
4340
|
pageSize?: number | undefined;
|
|
4343
4341
|
tab?: string | undefined;
|
|
4344
4342
|
scope?: string | undefined;
|
|
4343
|
+
sort?: string | undefined;
|
|
4345
4344
|
basket?: string | undefined;
|
|
4346
4345
|
isFirstPage?: boolean | undefined;
|
|
4347
4346
|
strictRefine?: boolean | undefined;
|
|
@@ -4355,6 +4354,7 @@ declare class PreviewService {
|
|
|
4355
4354
|
relevanceTransforms?: string | undefined;
|
|
4356
4355
|
removeDuplicates?: boolean | undefined;
|
|
4357
4356
|
queryId?: string | undefined;
|
|
4357
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4358
4358
|
orderBy?: string | undefined;
|
|
4359
4359
|
groupBy?: string | undefined;
|
|
4360
4360
|
neuralSearch?: boolean | undefined;
|
|
@@ -4853,7 +4853,7 @@ declare class SavedSearchesService {
|
|
|
4853
4853
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4854
4854
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4855
4855
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4856
|
-
userTheme: _angular_core.Signal<"
|
|
4856
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
4857
4857
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
4858
4858
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
4859
4859
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -4895,17 +4895,16 @@ declare class SavedSearchesService {
|
|
|
4895
4895
|
userTheme: "dark" | "light" | "system";
|
|
4896
4896
|
}>;
|
|
4897
4897
|
protected readonly queryParamsStore: {
|
|
4898
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4899
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4900
4898
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4901
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4902
4899
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4900
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4903
4901
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4904
4902
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4905
4903
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4906
4904
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4907
4905
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4908
4906
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4907
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4909
4908
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4910
4909
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4911
4910
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4919,6 +4918,7 @@ declare class SavedSearchesService {
|
|
|
4919
4918
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4920
4919
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4921
4920
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4921
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4922
4922
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4923
4923
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4924
4924
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4950,17 +4950,16 @@ declare class SavedSearchesService {
|
|
|
4950
4950
|
}> | null;
|
|
4951
4951
|
getQuery: () => _sinequa_atomic.Query;
|
|
4952
4952
|
} & _ngrx_signals.StateSource<{
|
|
4953
|
-
text?: string | undefined;
|
|
4954
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4955
4953
|
name?: string | undefined;
|
|
4956
|
-
sort?: string | undefined;
|
|
4957
4954
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4955
|
+
text?: string | undefined;
|
|
4958
4956
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4959
4957
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4960
4958
|
page?: number | undefined;
|
|
4961
4959
|
pageSize?: number | undefined;
|
|
4962
4960
|
tab?: string | undefined;
|
|
4963
4961
|
scope?: string | undefined;
|
|
4962
|
+
sort?: string | undefined;
|
|
4964
4963
|
basket?: string | undefined;
|
|
4965
4964
|
isFirstPage?: boolean | undefined;
|
|
4966
4965
|
strictRefine?: boolean | undefined;
|
|
@@ -4974,6 +4973,7 @@ declare class SavedSearchesService {
|
|
|
4974
4973
|
relevanceTransforms?: string | undefined;
|
|
4975
4974
|
removeDuplicates?: boolean | undefined;
|
|
4976
4975
|
queryId?: string | undefined;
|
|
4976
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4977
4977
|
orderBy?: string | undefined;
|
|
4978
4978
|
groupBy?: string | undefined;
|
|
4979
4979
|
neuralSearch?: boolean | undefined;
|
|
@@ -5036,17 +5036,16 @@ declare class SearchService {
|
|
|
5036
5036
|
result: Result;
|
|
5037
5037
|
audit?: AuditEvents;
|
|
5038
5038
|
protected readonly queryParamsStore: {
|
|
5039
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5040
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5041
5039
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5042
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5043
5040
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5041
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5044
5042
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5045
5043
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5046
5044
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5047
5045
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5048
5046
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5049
5047
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5048
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5050
5049
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5051
5050
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5052
5051
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5060,6 +5059,7 @@ declare class SearchService {
|
|
|
5060
5059
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5061
5060
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5062
5061
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5062
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5063
5063
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5064
5064
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5065
5065
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5091,17 +5091,16 @@ declare class SearchService {
|
|
|
5091
5091
|
}> | null;
|
|
5092
5092
|
getQuery: () => Query;
|
|
5093
5093
|
} & _ngrx_signals.StateSource<{
|
|
5094
|
-
text?: string | undefined;
|
|
5095
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5096
5094
|
name?: string | undefined;
|
|
5097
|
-
sort?: string | undefined;
|
|
5098
5095
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5096
|
+
text?: string | undefined;
|
|
5099
5097
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5100
5098
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5101
5099
|
page?: number | undefined;
|
|
5102
5100
|
pageSize?: number | undefined;
|
|
5103
5101
|
tab?: string | undefined;
|
|
5104
5102
|
scope?: string | undefined;
|
|
5103
|
+
sort?: string | undefined;
|
|
5105
5104
|
basket?: string | undefined;
|
|
5106
5105
|
isFirstPage?: boolean | undefined;
|
|
5107
5106
|
strictRefine?: boolean | undefined;
|
|
@@ -5115,6 +5114,7 @@ declare class SearchService {
|
|
|
5115
5114
|
relevanceTransforms?: string | undefined;
|
|
5116
5115
|
removeDuplicates?: boolean | undefined;
|
|
5117
5116
|
queryId?: string | undefined;
|
|
5117
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5118
5118
|
orderBy?: string | undefined;
|
|
5119
5119
|
groupBy?: string | undefined;
|
|
5120
5120
|
neuralSearch?: boolean | undefined;
|
|
@@ -5131,7 +5131,7 @@ declare class SearchService {
|
|
|
5131
5131
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5132
5132
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5133
5133
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5134
|
-
userTheme: _angular_core.Signal<"
|
|
5134
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
5135
5135
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
5136
5136
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: AuditEvents) => Promise<void>;
|
|
5137
5137
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -5223,17 +5223,16 @@ declare class SelectionService {
|
|
|
5223
5223
|
private readonly location;
|
|
5224
5224
|
private readonly selectionStore;
|
|
5225
5225
|
queryParamsStore: {
|
|
5226
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5227
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5228
5226
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5229
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5230
5227
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5228
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5231
5229
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5232
5230
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5233
5231
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5234
5232
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5235
5233
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5236
5234
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5235
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5237
5236
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5238
5237
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5239
5238
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5247,6 +5246,7 @@ declare class SelectionService {
|
|
|
5247
5246
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5248
5247
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5249
5248
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5249
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5250
5250
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5251
5251
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5252
5252
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5278,17 +5278,16 @@ declare class SelectionService {
|
|
|
5278
5278
|
}> | null;
|
|
5279
5279
|
getQuery: () => _sinequa_atomic.Query;
|
|
5280
5280
|
} & _ngrx_signals.StateSource<{
|
|
5281
|
-
text?: string | undefined;
|
|
5282
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5283
5281
|
name?: string | undefined;
|
|
5284
|
-
sort?: string | undefined;
|
|
5285
5282
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5283
|
+
text?: string | undefined;
|
|
5286
5284
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5287
5285
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5288
5286
|
page?: number | undefined;
|
|
5289
5287
|
pageSize?: number | undefined;
|
|
5290
5288
|
tab?: string | undefined;
|
|
5291
5289
|
scope?: string | undefined;
|
|
5290
|
+
sort?: string | undefined;
|
|
5292
5291
|
basket?: string | undefined;
|
|
5293
5292
|
isFirstPage?: boolean | undefined;
|
|
5294
5293
|
strictRefine?: boolean | undefined;
|
|
@@ -5302,6 +5301,7 @@ declare class SelectionService {
|
|
|
5302
5301
|
relevanceTransforms?: string | undefined;
|
|
5303
5302
|
removeDuplicates?: boolean | undefined;
|
|
5304
5303
|
queryId?: string | undefined;
|
|
5304
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5305
5305
|
orderBy?: string | undefined;
|
|
5306
5306
|
groupBy?: string | undefined;
|
|
5307
5307
|
neuralSearch?: boolean | undefined;
|
|
@@ -5449,17 +5449,16 @@ declare class NavbarTabsComponent {
|
|
|
5449
5449
|
readonly drawerStack: DrawerStackService;
|
|
5450
5450
|
readonly drawerOpened: _angular_core.Signal<boolean>;
|
|
5451
5451
|
readonly queryParamsStore: {
|
|
5452
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5453
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5454
5452
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5455
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5456
5453
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5454
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5457
5455
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5458
5456
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5459
5457
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5460
5458
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5461
5459
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5462
5460
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5461
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5463
5462
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5464
5463
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5465
5464
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5473,6 +5472,7 @@ declare class NavbarTabsComponent {
|
|
|
5473
5472
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5474
5473
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5475
5474
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5475
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5476
5476
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5477
5477
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5478
5478
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5504,17 +5504,16 @@ declare class NavbarTabsComponent {
|
|
|
5504
5504
|
}> | null;
|
|
5505
5505
|
getQuery: () => _sinequa_atomic.Query;
|
|
5506
5506
|
} & _ngrx_signals.StateSource<{
|
|
5507
|
-
text?: string | undefined;
|
|
5508
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5509
5507
|
name?: string | undefined;
|
|
5510
|
-
sort?: string | undefined;
|
|
5511
5508
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5509
|
+
text?: string | undefined;
|
|
5512
5510
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5513
5511
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5514
5512
|
page?: number | undefined;
|
|
5515
5513
|
pageSize?: number | undefined;
|
|
5516
5514
|
tab?: string | undefined;
|
|
5517
5515
|
scope?: string | undefined;
|
|
5516
|
+
sort?: string | undefined;
|
|
5518
5517
|
basket?: string | undefined;
|
|
5519
5518
|
isFirstPage?: boolean | undefined;
|
|
5520
5519
|
strictRefine?: boolean | undefined;
|
|
@@ -5528,6 +5527,7 @@ declare class NavbarTabsComponent {
|
|
|
5528
5527
|
relevanceTransforms?: string | undefined;
|
|
5529
5528
|
removeDuplicates?: boolean | undefined;
|
|
5530
5529
|
queryId?: string | undefined;
|
|
5530
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5531
5531
|
orderBy?: string | undefined;
|
|
5532
5532
|
groupBy?: string | undefined;
|
|
5533
5533
|
neuralSearch?: boolean | undefined;
|
|
@@ -5992,7 +5992,7 @@ declare class ShowBookmarkDirective {
|
|
|
5992
5992
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5993
5993
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5994
5994
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5995
|
-
userTheme: _angular_core.Signal<"
|
|
5995
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
5996
5996
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
5997
5997
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5998
5998
|
bookmark: (article: Article$1, queryName?: string) => Promise<void>;
|
|
@@ -6657,17 +6657,16 @@ declare class SponsoredResultsComponent {
|
|
|
6657
6657
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6658
6658
|
}>;
|
|
6659
6659
|
queryParamStore: {
|
|
6660
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6661
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6662
6660
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6663
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6664
6661
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6662
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6665
6663
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6666
6664
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6667
6665
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6668
6666
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6669
6667
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6670
6668
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6669
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6671
6670
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6672
6671
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6673
6672
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6681,6 +6680,7 @@ declare class SponsoredResultsComponent {
|
|
|
6681
6680
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6682
6681
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6683
6682
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6683
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6684
6684
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6685
6685
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6686
6686
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6712,17 +6712,16 @@ declare class SponsoredResultsComponent {
|
|
|
6712
6712
|
}> | null;
|
|
6713
6713
|
getQuery: () => _sinequa_atomic.Query;
|
|
6714
6714
|
} & _ngrx_signals.StateSource<{
|
|
6715
|
-
text?: string | undefined;
|
|
6716
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6717
6715
|
name?: string | undefined;
|
|
6718
|
-
sort?: string | undefined;
|
|
6719
6716
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6717
|
+
text?: string | undefined;
|
|
6720
6718
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6721
6719
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6722
6720
|
page?: number | undefined;
|
|
6723
6721
|
pageSize?: number | undefined;
|
|
6724
6722
|
tab?: string | undefined;
|
|
6725
6723
|
scope?: string | undefined;
|
|
6724
|
+
sort?: string | undefined;
|
|
6726
6725
|
basket?: string | undefined;
|
|
6727
6726
|
isFirstPage?: boolean | undefined;
|
|
6728
6727
|
strictRefine?: boolean | undefined;
|
|
@@ -6736,6 +6735,7 @@ declare class SponsoredResultsComponent {
|
|
|
6736
6735
|
relevanceTransforms?: string | undefined;
|
|
6737
6736
|
removeDuplicates?: boolean | undefined;
|
|
6738
6737
|
queryId?: string | undefined;
|
|
6738
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6739
6739
|
orderBy?: string | undefined;
|
|
6740
6740
|
groupBy?: string | undefined;
|
|
6741
6741
|
neuralSearch?: boolean | undefined;
|
|
@@ -6937,17 +6937,16 @@ declare class AggregationListComponent {
|
|
|
6937
6937
|
aggregations: Aggregation[];
|
|
6938
6938
|
}>;
|
|
6939
6939
|
queryParamsStore: {
|
|
6940
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6941
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6942
6940
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6943
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6944
6941
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6942
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6945
6943
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6946
6944
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6947
6945
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6948
6946
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6949
6947
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6950
6948
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6949
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6951
6950
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6952
6951
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6953
6952
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6961,6 +6960,7 @@ declare class AggregationListComponent {
|
|
|
6961
6960
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6962
6961
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6963
6962
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6963
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6964
6964
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6965
6965
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6966
6966
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6992,17 +6992,16 @@ declare class AggregationListComponent {
|
|
|
6992
6992
|
}> | null;
|
|
6993
6993
|
getQuery: () => Query;
|
|
6994
6994
|
} & _ngrx_signals.StateSource<{
|
|
6995
|
-
text?: string | undefined;
|
|
6996
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6997
6995
|
name?: string | undefined;
|
|
6998
|
-
sort?: string | undefined;
|
|
6999
6996
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6997
|
+
text?: string | undefined;
|
|
7000
6998
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7001
6999
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7002
7000
|
page?: number | undefined;
|
|
7003
7001
|
pageSize?: number | undefined;
|
|
7004
7002
|
tab?: string | undefined;
|
|
7005
7003
|
scope?: string | undefined;
|
|
7004
|
+
sort?: string | undefined;
|
|
7006
7005
|
basket?: string | undefined;
|
|
7007
7006
|
isFirstPage?: boolean | undefined;
|
|
7008
7007
|
strictRefine?: boolean | undefined;
|
|
@@ -7016,6 +7015,7 @@ declare class AggregationListComponent {
|
|
|
7016
7015
|
relevanceTransforms?: string | undefined;
|
|
7017
7016
|
removeDuplicates?: boolean | undefined;
|
|
7018
7017
|
queryId?: string | undefined;
|
|
7018
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7019
7019
|
orderBy?: string | undefined;
|
|
7020
7020
|
groupBy?: string | undefined;
|
|
7021
7021
|
neuralSearch?: boolean | undefined;
|
|
@@ -7544,17 +7544,16 @@ declare class AdvancedSearch {
|
|
|
7544
7544
|
multiSelection: Article$1[];
|
|
7545
7545
|
}>;
|
|
7546
7546
|
protected readonly queryParamsStore: {
|
|
7547
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7548
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7549
7547
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7550
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7551
7548
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7549
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7552
7550
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7553
7551
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7554
7552
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7555
7553
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7556
7554
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7557
7555
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7556
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7558
7557
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7559
7558
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7560
7559
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7568,6 +7567,7 @@ declare class AdvancedSearch {
|
|
|
7568
7567
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7569
7568
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7570
7569
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7570
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7571
7571
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7572
7572
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7573
7573
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7599,17 +7599,16 @@ declare class AdvancedSearch {
|
|
|
7599
7599
|
}> | null;
|
|
7600
7600
|
getQuery: () => _sinequa_atomic.Query;
|
|
7601
7601
|
} & _ngrx_signals.StateSource<{
|
|
7602
|
-
text?: string | undefined;
|
|
7603
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7604
7602
|
name?: string | undefined;
|
|
7605
|
-
sort?: string | undefined;
|
|
7606
7603
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7604
|
+
text?: string | undefined;
|
|
7607
7605
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7608
7606
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7609
7607
|
page?: number | undefined;
|
|
7610
7608
|
pageSize?: number | undefined;
|
|
7611
7609
|
tab?: string | undefined;
|
|
7612
7610
|
scope?: string | undefined;
|
|
7611
|
+
sort?: string | undefined;
|
|
7613
7612
|
basket?: string | undefined;
|
|
7614
7613
|
isFirstPage?: boolean | undefined;
|
|
7615
7614
|
strictRefine?: boolean | undefined;
|
|
@@ -7623,6 +7622,7 @@ declare class AdvancedSearch {
|
|
|
7623
7622
|
relevanceTransforms?: string | undefined;
|
|
7624
7623
|
removeDuplicates?: boolean | undefined;
|
|
7625
7624
|
queryId?: string | undefined;
|
|
7625
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7626
7626
|
orderBy?: string | undefined;
|
|
7627
7627
|
groupBy?: string | undefined;
|
|
7628
7628
|
neuralSearch?: boolean | undefined;
|
|
@@ -8002,17 +8002,16 @@ declare class ArticleLabels {
|
|
|
8002
8002
|
|
|
8003
8003
|
declare class ArticleSimilarDocuments {
|
|
8004
8004
|
protected readonly queryParamsStore: {
|
|
8005
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8006
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8007
8005
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8008
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8009
8006
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8007
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8010
8008
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8011
8009
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8012
8010
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8013
8011
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8014
8012
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8015
8013
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8014
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8016
8015
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8017
8016
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8018
8017
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8026,6 +8025,7 @@ declare class ArticleSimilarDocuments {
|
|
|
8026
8025
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8027
8026
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8028
8027
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8028
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8029
8029
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8030
8030
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8031
8031
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8057,17 +8057,16 @@ declare class ArticleSimilarDocuments {
|
|
|
8057
8057
|
}> | null;
|
|
8058
8058
|
getQuery: () => _sinequa_atomic.Query;
|
|
8059
8059
|
} & _ngrx_signals.StateSource<{
|
|
8060
|
-
text?: string | undefined;
|
|
8061
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8062
8060
|
name?: string | undefined;
|
|
8063
|
-
sort?: string | undefined;
|
|
8064
8061
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8062
|
+
text?: string | undefined;
|
|
8065
8063
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8066
8064
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8067
8065
|
page?: number | undefined;
|
|
8068
8066
|
pageSize?: number | undefined;
|
|
8069
8067
|
tab?: string | undefined;
|
|
8070
8068
|
scope?: string | undefined;
|
|
8069
|
+
sort?: string | undefined;
|
|
8071
8070
|
basket?: string | undefined;
|
|
8072
8071
|
isFirstPage?: boolean | undefined;
|
|
8073
8072
|
strictRefine?: boolean | undefined;
|
|
@@ -8081,6 +8080,7 @@ declare class ArticleSimilarDocuments {
|
|
|
8081
8080
|
relevanceTransforms?: string | undefined;
|
|
8082
8081
|
removeDuplicates?: boolean | undefined;
|
|
8083
8082
|
queryId?: string | undefined;
|
|
8083
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8084
8084
|
orderBy?: string | undefined;
|
|
8085
8085
|
groupBy?: string | undefined;
|
|
8086
8086
|
neuralSearch?: boolean | undefined;
|
|
@@ -8589,17 +8589,16 @@ declare class AdvancedSearchComponent {
|
|
|
8589
8589
|
multiSelection: Article$1[];
|
|
8590
8590
|
}>;
|
|
8591
8591
|
protected readonly queryParamsStore: {
|
|
8592
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8593
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8594
8592
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8595
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8596
8593
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8594
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8597
8595
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8598
8596
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8599
8597
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8600
8598
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8601
8599
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8602
8600
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8601
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8603
8602
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8604
8603
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8605
8604
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8613,6 +8612,7 @@ declare class AdvancedSearchComponent {
|
|
|
8613
8612
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8614
8613
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8615
8614
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8615
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8616
8616
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8617
8617
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8618
8618
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8644,17 +8644,16 @@ declare class AdvancedSearchComponent {
|
|
|
8644
8644
|
}> | null;
|
|
8645
8645
|
getQuery: () => _sinequa_atomic.Query;
|
|
8646
8646
|
} & _ngrx_signals.StateSource<{
|
|
8647
|
-
text?: string | undefined;
|
|
8648
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8649
8647
|
name?: string | undefined;
|
|
8650
|
-
sort?: string | undefined;
|
|
8651
8648
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8649
|
+
text?: string | undefined;
|
|
8652
8650
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8653
8651
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8654
8652
|
page?: number | undefined;
|
|
8655
8653
|
pageSize?: number | undefined;
|
|
8656
8654
|
tab?: string | undefined;
|
|
8657
8655
|
scope?: string | undefined;
|
|
8656
|
+
sort?: string | undefined;
|
|
8658
8657
|
basket?: string | undefined;
|
|
8659
8658
|
isFirstPage?: boolean | undefined;
|
|
8660
8659
|
strictRefine?: boolean | undefined;
|
|
@@ -8668,6 +8667,7 @@ declare class AdvancedSearchComponent {
|
|
|
8668
8667
|
relevanceTransforms?: string | undefined;
|
|
8669
8668
|
removeDuplicates?: boolean | undefined;
|
|
8670
8669
|
queryId?: string | undefined;
|
|
8670
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8671
8671
|
orderBy?: string | undefined;
|
|
8672
8672
|
groupBy?: string | undefined;
|
|
8673
8673
|
neuralSearch?: boolean | undefined;
|
|
@@ -9039,17 +9039,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9039
9039
|
multiSelection: _sinequa_atomic.Article[];
|
|
9040
9040
|
}>;
|
|
9041
9041
|
queryParamsStore: {
|
|
9042
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9043
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9044
9042
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9045
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9046
9043
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9044
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9047
9045
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9048
9046
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9049
9047
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9050
9048
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9051
9049
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9052
9050
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9051
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9053
9052
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9054
9053
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9055
9054
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9063,6 +9062,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9063
9062
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9064
9063
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9065
9064
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9065
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9066
9066
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9067
9067
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9068
9068
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9094,17 +9094,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9094
9094
|
}> | null;
|
|
9095
9095
|
getQuery: () => _sinequa_atomic.Query;
|
|
9096
9096
|
} & _ngrx_signals.StateSource<{
|
|
9097
|
-
text?: string | undefined;
|
|
9098
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9099
9097
|
name?: string | undefined;
|
|
9100
|
-
sort?: string | undefined;
|
|
9101
9098
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9099
|
+
text?: string | undefined;
|
|
9102
9100
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9103
9101
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9104
9102
|
page?: number | undefined;
|
|
9105
9103
|
pageSize?: number | undefined;
|
|
9106
9104
|
tab?: string | undefined;
|
|
9107
9105
|
scope?: string | undefined;
|
|
9106
|
+
sort?: string | undefined;
|
|
9108
9107
|
basket?: string | undefined;
|
|
9109
9108
|
isFirstPage?: boolean | undefined;
|
|
9110
9109
|
strictRefine?: boolean | undefined;
|
|
@@ -9118,6 +9117,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9118
9117
|
relevanceTransforms?: string | undefined;
|
|
9119
9118
|
removeDuplicates?: boolean | undefined;
|
|
9120
9119
|
queryId?: string | undefined;
|
|
9120
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9121
9121
|
orderBy?: string | undefined;
|
|
9122
9122
|
groupBy?: string | undefined;
|
|
9123
9123
|
neuralSearch?: boolean | undefined;
|
|
@@ -9237,17 +9237,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9237
9237
|
private appStore;
|
|
9238
9238
|
readonly exportService: ExportService;
|
|
9239
9239
|
readonly queryParamsStore: {
|
|
9240
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9241
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9242
9240
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9243
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9244
9241
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9242
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9245
9243
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9246
9244
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9247
9245
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9248
9246
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9249
9247
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9250
9248
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9249
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9251
9250
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9252
9251
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9253
9252
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9261,6 +9260,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9261
9260
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9262
9261
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9263
9262
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9263
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9264
9264
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9265
9265
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9266
9266
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9292,17 +9292,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9292
9292
|
}> | null;
|
|
9293
9293
|
getQuery: () => _sinequa_atomic.Query;
|
|
9294
9294
|
} & _ngrx_signals.StateSource<{
|
|
9295
|
-
text?: string | undefined;
|
|
9296
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9297
9295
|
name?: string | undefined;
|
|
9298
|
-
sort?: string | undefined;
|
|
9299
9296
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9297
|
+
text?: string | undefined;
|
|
9300
9298
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9301
9299
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9302
9300
|
page?: number | undefined;
|
|
9303
9301
|
pageSize?: number | undefined;
|
|
9304
9302
|
tab?: string | undefined;
|
|
9305
9303
|
scope?: string | undefined;
|
|
9304
|
+
sort?: string | undefined;
|
|
9306
9305
|
basket?: string | undefined;
|
|
9307
9306
|
isFirstPage?: boolean | undefined;
|
|
9308
9307
|
strictRefine?: boolean | undefined;
|
|
@@ -9316,6 +9315,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9316
9315
|
relevanceTransforms?: string | undefined;
|
|
9317
9316
|
removeDuplicates?: boolean | undefined;
|
|
9318
9317
|
queryId?: string | undefined;
|
|
9318
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9319
9319
|
orderBy?: string | undefined;
|
|
9320
9320
|
groupBy?: string | undefined;
|
|
9321
9321
|
neuralSearch?: boolean | undefined;
|
|
@@ -9663,17 +9663,16 @@ declare class SearchFeedbackComponent {
|
|
|
9663
9663
|
pages: _angular_core.InputSignal<any>;
|
|
9664
9664
|
readonly auditService: AuditService;
|
|
9665
9665
|
protected readonly queryParamsStore: {
|
|
9666
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9667
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9668
9666
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9669
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9670
9667
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9668
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9671
9669
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9672
9670
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9673
9671
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9674
9672
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9675
9673
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9676
9674
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9675
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9677
9676
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9678
9677
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9679
9678
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9687,6 +9686,7 @@ declare class SearchFeedbackComponent {
|
|
|
9687
9686
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9688
9687
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9689
9688
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9689
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9690
9690
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9691
9691
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9692
9692
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9718,17 +9718,16 @@ declare class SearchFeedbackComponent {
|
|
|
9718
9718
|
}> | null;
|
|
9719
9719
|
getQuery: () => _sinequa_atomic.Query;
|
|
9720
9720
|
} & _ngrx_signals.StateSource<{
|
|
9721
|
-
text?: string | undefined;
|
|
9722
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9723
9721
|
name?: string | undefined;
|
|
9724
|
-
sort?: string | undefined;
|
|
9725
9722
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9723
|
+
text?: string | undefined;
|
|
9726
9724
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9727
9725
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9728
9726
|
page?: number | undefined;
|
|
9729
9727
|
pageSize?: number | undefined;
|
|
9730
9728
|
tab?: string | undefined;
|
|
9731
9729
|
scope?: string | undefined;
|
|
9730
|
+
sort?: string | undefined;
|
|
9732
9731
|
basket?: string | undefined;
|
|
9733
9732
|
isFirstPage?: boolean | undefined;
|
|
9734
9733
|
strictRefine?: boolean | undefined;
|
|
@@ -9742,6 +9741,7 @@ declare class SearchFeedbackComponent {
|
|
|
9742
9741
|
relevanceTransforms?: string | undefined;
|
|
9743
9742
|
removeDuplicates?: boolean | undefined;
|
|
9744
9743
|
queryId?: string | undefined;
|
|
9744
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9745
9745
|
orderBy?: string | undefined;
|
|
9746
9746
|
groupBy?: string | undefined;
|
|
9747
9747
|
neuralSearch?: boolean | undefined;
|
|
@@ -9778,17 +9778,16 @@ declare class AggregationTreeComponent {
|
|
|
9778
9778
|
aggregations: Aggregation[];
|
|
9779
9779
|
}>;
|
|
9780
9780
|
queryParamsStore: {
|
|
9781
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9782
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9783
9781
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9784
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9785
9782
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9783
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9786
9784
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9787
9785
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9788
9786
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9789
9787
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9790
9788
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9791
9789
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9790
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9792
9791
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9793
9792
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9794
9793
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9802,6 +9801,7 @@ declare class AggregationTreeComponent {
|
|
|
9802
9801
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9803
9802
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9804
9803
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9804
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9805
9805
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9806
9806
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9807
9807
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9833,17 +9833,16 @@ declare class AggregationTreeComponent {
|
|
|
9833
9833
|
}> | null;
|
|
9834
9834
|
getQuery: () => Query;
|
|
9835
9835
|
} & _ngrx_signals.StateSource<{
|
|
9836
|
-
text?: string | undefined;
|
|
9837
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9838
9836
|
name?: string | undefined;
|
|
9839
|
-
sort?: string | undefined;
|
|
9840
9837
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9838
|
+
text?: string | undefined;
|
|
9841
9839
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9842
9840
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9843
9841
|
page?: number | undefined;
|
|
9844
9842
|
pageSize?: number | undefined;
|
|
9845
9843
|
tab?: string | undefined;
|
|
9846
9844
|
scope?: string | undefined;
|
|
9845
|
+
sort?: string | undefined;
|
|
9847
9846
|
basket?: string | undefined;
|
|
9848
9847
|
isFirstPage?: boolean | undefined;
|
|
9849
9848
|
strictRefine?: boolean | undefined;
|
|
@@ -9857,6 +9856,7 @@ declare class AggregationTreeComponent {
|
|
|
9857
9856
|
relevanceTransforms?: string | undefined;
|
|
9858
9857
|
removeDuplicates?: boolean | undefined;
|
|
9859
9858
|
queryId?: string | undefined;
|
|
9859
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9860
9860
|
orderBy?: string | undefined;
|
|
9861
9861
|
groupBy?: string | undefined;
|
|
9862
9862
|
neuralSearch?: boolean | undefined;
|
|
@@ -10806,7 +10806,7 @@ declare class FilterButtonComponent {
|
|
|
10806
10806
|
position: _angular_core.InputSignal<Placement>;
|
|
10807
10807
|
offset: _angular_core.InputSignal<number>;
|
|
10808
10808
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
10809
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
10809
|
+
protected variant: _angular_core.WritableSignal<"default" | "link" | "secondary" | "accent" | "destructive" | "outline" | "ghost" | "ai" | "none" | "primary" | "icon" | null | undefined>;
|
|
10810
10810
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
10811
10811
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
10812
10812
|
protected nativeElement: any;
|
|
@@ -10820,17 +10820,16 @@ declare class FilterButtonComponent {
|
|
|
10820
10820
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
10821
10821
|
}>;
|
|
10822
10822
|
protected queryParamsStore: {
|
|
10823
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10824
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10825
10823
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10826
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10827
10824
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10825
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10828
10826
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10829
10827
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
10830
10828
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
10831
10829
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10832
10830
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10833
10831
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10832
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10834
10833
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10835
10834
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10836
10835
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10844,6 +10843,7 @@ declare class FilterButtonComponent {
|
|
|
10844
10843
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10845
10844
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10846
10845
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10846
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10847
10847
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10848
10848
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10849
10849
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10875,17 +10875,16 @@ declare class FilterButtonComponent {
|
|
|
10875
10875
|
}> | null;
|
|
10876
10876
|
getQuery: () => _sinequa_atomic.Query;
|
|
10877
10877
|
} & _ngrx_signals.StateSource<{
|
|
10878
|
-
text?: string | undefined;
|
|
10879
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10880
10878
|
name?: string | undefined;
|
|
10881
|
-
sort?: string | undefined;
|
|
10882
10879
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10880
|
+
text?: string | undefined;
|
|
10883
10881
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10884
10882
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10885
10883
|
page?: number | undefined;
|
|
10886
10884
|
pageSize?: number | undefined;
|
|
10887
10885
|
tab?: string | undefined;
|
|
10888
10886
|
scope?: string | undefined;
|
|
10887
|
+
sort?: string | undefined;
|
|
10889
10888
|
basket?: string | undefined;
|
|
10890
10889
|
isFirstPage?: boolean | undefined;
|
|
10891
10890
|
strictRefine?: boolean | undefined;
|
|
@@ -10899,6 +10898,7 @@ declare class FilterButtonComponent {
|
|
|
10899
10898
|
relevanceTransforms?: string | undefined;
|
|
10900
10899
|
removeDuplicates?: boolean | undefined;
|
|
10901
10900
|
queryId?: string | undefined;
|
|
10901
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10902
10902
|
orderBy?: string | undefined;
|
|
10903
10903
|
groupBy?: string | undefined;
|
|
10904
10904
|
neuralSearch?: boolean | undefined;
|
|
@@ -11522,17 +11522,16 @@ declare class MoreButtonComponent {
|
|
|
11522
11522
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
11523
11523
|
}>;
|
|
11524
11524
|
queryParamsStore: {
|
|
11525
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11526
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11527
11525
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11528
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11529
11526
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11527
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11530
11528
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11531
11529
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11532
11530
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11533
11531
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11534
11532
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11535
11533
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11534
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11536
11535
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11537
11536
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11538
11537
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11546,6 +11545,7 @@ declare class MoreButtonComponent {
|
|
|
11546
11545
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11547
11546
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11548
11547
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11548
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11549
11549
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11550
11550
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11551
11551
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11577,17 +11577,16 @@ declare class MoreButtonComponent {
|
|
|
11577
11577
|
}> | null;
|
|
11578
11578
|
getQuery: () => _sinequa_atomic.Query;
|
|
11579
11579
|
} & _ngrx_signals.StateSource<{
|
|
11580
|
-
text?: string | undefined;
|
|
11581
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11582
11580
|
name?: string | undefined;
|
|
11583
|
-
sort?: string | undefined;
|
|
11584
11581
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11582
|
+
text?: string | undefined;
|
|
11585
11583
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11586
11584
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11587
11585
|
page?: number | undefined;
|
|
11588
11586
|
pageSize?: number | undefined;
|
|
11589
11587
|
tab?: string | undefined;
|
|
11590
11588
|
scope?: string | undefined;
|
|
11589
|
+
sort?: string | undefined;
|
|
11591
11590
|
basket?: string | undefined;
|
|
11592
11591
|
isFirstPage?: boolean | undefined;
|
|
11593
11592
|
strictRefine?: boolean | undefined;
|
|
@@ -11601,6 +11600,7 @@ declare class MoreButtonComponent {
|
|
|
11601
11600
|
relevanceTransforms?: string | undefined;
|
|
11602
11601
|
removeDuplicates?: boolean | undefined;
|
|
11603
11602
|
queryId?: string | undefined;
|
|
11603
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11604
11604
|
orderBy?: string | undefined;
|
|
11605
11605
|
groupBy?: string | undefined;
|
|
11606
11606
|
neuralSearch?: boolean | undefined;
|
|
@@ -11991,17 +11991,16 @@ declare class FiltersBarComponent {
|
|
|
11991
11991
|
aggregations: Aggregation[];
|
|
11992
11992
|
}>;
|
|
11993
11993
|
protected queryParamsStore: {
|
|
11994
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11995
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11996
11994
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11997
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11998
11995
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11996
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11999
11997
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12000
11998
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12001
11999
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12002
12000
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12003
12001
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12004
12002
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12003
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12005
12004
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12006
12005
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12007
12006
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12015,6 +12014,7 @@ declare class FiltersBarComponent {
|
|
|
12015
12014
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12016
12015
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12017
12016
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12017
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12018
12018
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12019
12019
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12020
12020
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12046,17 +12046,16 @@ declare class FiltersBarComponent {
|
|
|
12046
12046
|
}> | null;
|
|
12047
12047
|
getQuery: () => _sinequa_atomic.Query;
|
|
12048
12048
|
} & _ngrx_signals.StateSource<{
|
|
12049
|
-
text?: string | undefined;
|
|
12050
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12051
12049
|
name?: string | undefined;
|
|
12052
|
-
sort?: string | undefined;
|
|
12053
12050
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12051
|
+
text?: string | undefined;
|
|
12054
12052
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12055
12053
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12056
12054
|
page?: number | undefined;
|
|
12057
12055
|
pageSize?: number | undefined;
|
|
12058
12056
|
tab?: string | undefined;
|
|
12059
12057
|
scope?: string | undefined;
|
|
12058
|
+
sort?: string | undefined;
|
|
12060
12059
|
basket?: string | undefined;
|
|
12061
12060
|
isFirstPage?: boolean | undefined;
|
|
12062
12061
|
strictRefine?: boolean | undefined;
|
|
@@ -12070,6 +12069,7 @@ declare class FiltersBarComponent {
|
|
|
12070
12069
|
relevanceTransforms?: string | undefined;
|
|
12071
12070
|
removeDuplicates?: boolean | undefined;
|
|
12072
12071
|
queryId?: string | undefined;
|
|
12072
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12073
12073
|
orderBy?: string | undefined;
|
|
12074
12074
|
groupBy?: string | undefined;
|
|
12075
12075
|
neuralSearch?: boolean | undefined;
|
|
@@ -12466,17 +12466,16 @@ declare class MoreComponent {
|
|
|
12466
12466
|
aggregations: Aggregation[];
|
|
12467
12467
|
}>;
|
|
12468
12468
|
queryParamsStore: {
|
|
12469
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12470
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12471
12469
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12472
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12473
12470
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12471
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12474
12472
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12475
12473
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12476
12474
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12477
12475
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12478
12476
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12479
12477
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12478
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12480
12479
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12481
12480
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12482
12481
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12490,6 +12489,7 @@ declare class MoreComponent {
|
|
|
12490
12489
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12491
12490
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12492
12491
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12492
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12493
12493
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12494
12494
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12495
12495
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12521,17 +12521,16 @@ declare class MoreComponent {
|
|
|
12521
12521
|
}> | null;
|
|
12522
12522
|
getQuery: () => _sinequa_atomic.Query;
|
|
12523
12523
|
} & _ngrx_signals.StateSource<{
|
|
12524
|
-
text?: string | undefined;
|
|
12525
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12526
12524
|
name?: string | undefined;
|
|
12527
|
-
sort?: string | undefined;
|
|
12528
12525
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12526
|
+
text?: string | undefined;
|
|
12529
12527
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12530
12528
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12531
12529
|
page?: number | undefined;
|
|
12532
12530
|
pageSize?: number | undefined;
|
|
12533
12531
|
tab?: string | undefined;
|
|
12534
12532
|
scope?: string | undefined;
|
|
12533
|
+
sort?: string | undefined;
|
|
12535
12534
|
basket?: string | undefined;
|
|
12536
12535
|
isFirstPage?: boolean | undefined;
|
|
12537
12536
|
strictRefine?: boolean | undefined;
|
|
@@ -12545,6 +12544,7 @@ declare class MoreComponent {
|
|
|
12545
12544
|
relevanceTransforms?: string | undefined;
|
|
12546
12545
|
removeDuplicates?: boolean | undefined;
|
|
12547
12546
|
queryId?: string | undefined;
|
|
12547
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12548
12548
|
orderBy?: string | undefined;
|
|
12549
12549
|
groupBy?: string | undefined;
|
|
12550
12550
|
neuralSearch?: boolean | undefined;
|
|
@@ -13084,7 +13084,7 @@ declare class RecentSearchesComponent {
|
|
|
13084
13084
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13085
13085
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13086
13086
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13087
|
-
userTheme: _angular_core.Signal<"
|
|
13087
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13088
13088
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
13089
13089
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
13090
13090
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -13145,17 +13145,16 @@ declare class RecentSearchesComponent {
|
|
|
13145
13145
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13146
13146
|
private readonly savedSearchesService;
|
|
13147
13147
|
protected readonly queryParamsStore: {
|
|
13148
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13149
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13150
13148
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13151
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13152
13149
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13150
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13153
13151
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13154
13152
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13155
13153
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13156
13154
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13157
13155
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13158
13156
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13157
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13159
13158
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13160
13159
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13161
13160
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13169,6 +13168,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13169
13168
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13170
13169
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13171
13170
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13171
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13172
13172
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13173
13173
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13174
13174
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13200,17 +13200,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13200
13200
|
}> | null;
|
|
13201
13201
|
getQuery: () => _sinequa_atomic.Query;
|
|
13202
13202
|
} & _ngrx_signals.StateSource<{
|
|
13203
|
-
text?: string | undefined;
|
|
13204
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13205
13203
|
name?: string | undefined;
|
|
13206
|
-
sort?: string | undefined;
|
|
13207
13204
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13205
|
+
text?: string | undefined;
|
|
13208
13206
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13209
13207
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13210
13208
|
page?: number | undefined;
|
|
13211
13209
|
pageSize?: number | undefined;
|
|
13212
13210
|
tab?: string | undefined;
|
|
13213
13211
|
scope?: string | undefined;
|
|
13212
|
+
sort?: string | undefined;
|
|
13214
13213
|
basket?: string | undefined;
|
|
13215
13214
|
isFirstPage?: boolean | undefined;
|
|
13216
13215
|
strictRefine?: boolean | undefined;
|
|
@@ -13224,6 +13223,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13224
13223
|
relevanceTransforms?: string | undefined;
|
|
13225
13224
|
removeDuplicates?: boolean | undefined;
|
|
13226
13225
|
queryId?: string | undefined;
|
|
13226
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13227
13227
|
orderBy?: string | undefined;
|
|
13228
13228
|
groupBy?: string | undefined;
|
|
13229
13229
|
neuralSearch?: boolean | undefined;
|
|
@@ -13255,7 +13255,7 @@ declare class SavedSearchesComponent {
|
|
|
13255
13255
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13256
13256
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13257
13257
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13258
|
-
userTheme: _angular_core.Signal<"
|
|
13258
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13259
13259
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
13260
13260
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
13261
13261
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -13390,7 +13390,7 @@ declare class UserProfileFormComponent {
|
|
|
13390
13390
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13391
13391
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13392
13392
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13393
|
-
userTheme: _angular_core.Signal<"
|
|
13393
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
13394
13394
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
13395
13395
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
13396
13396
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|