@sinequa/atomic-angular 0.4.46 → 1.0.2
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 +31 -27
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +156 -160
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,16 +114,17 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
117
119
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
121
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
119
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
122
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
121
123
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
122
124
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
123
125
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
124
126
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
125
127
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
126
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
127
128
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
128
129
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
129
130
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -137,7 +138,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
137
138
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
138
139
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
139
140
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
140
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
141
141
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
142
142
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
143
143
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -169,16 +169,17 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
+
text?: string | undefined;
|
|
173
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
172
174
|
name?: string | undefined;
|
|
175
|
+
sort?: string | undefined;
|
|
173
176
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
174
|
-
text?: string | undefined;
|
|
175
177
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
176
178
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
177
179
|
page?: number | undefined;
|
|
178
180
|
pageSize?: number | undefined;
|
|
179
181
|
tab?: string | undefined;
|
|
180
182
|
scope?: string | undefined;
|
|
181
|
-
sort?: string | undefined;
|
|
182
183
|
basket?: string | undefined;
|
|
183
184
|
isFirstPage?: boolean | undefined;
|
|
184
185
|
strictRefine?: boolean | undefined;
|
|
@@ -192,7 +193,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
192
193
|
relevanceTransforms?: string | undefined;
|
|
193
194
|
removeDuplicates?: boolean | undefined;
|
|
194
195
|
queryId?: string | undefined;
|
|
195
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
196
196
|
orderBy?: string | undefined;
|
|
197
197
|
groupBy?: string | undefined;
|
|
198
198
|
neuralSearch?: boolean | undefined;
|
|
@@ -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" | "none" | "secondary" | "destructive" | "ai" | "accent" | "outline" | "ghost" | "info" | "success" | "warning" | null | undefined>;
|
|
254
254
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
255
255
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
256
256
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -263,16 +263,17 @@ 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;
|
|
266
268
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
270
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
268
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
271
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
270
272
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
271
273
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
272
274
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
273
275
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
274
276
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
275
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
276
277
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
277
278
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
278
279
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -286,7 +287,6 @@ declare class MissingTermsComponent {
|
|
|
286
287
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
287
288
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
288
289
|
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,16 +318,17 @@ 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;
|
|
321
323
|
name?: string | undefined;
|
|
324
|
+
sort?: string | undefined;
|
|
322
325
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
323
|
-
text?: string | undefined;
|
|
324
326
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
325
327
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
326
328
|
page?: number | undefined;
|
|
327
329
|
pageSize?: number | undefined;
|
|
328
330
|
tab?: string | undefined;
|
|
329
331
|
scope?: string | undefined;
|
|
330
|
-
sort?: string | undefined;
|
|
331
332
|
basket?: string | undefined;
|
|
332
333
|
isFirstPage?: boolean | undefined;
|
|
333
334
|
strictRefine?: boolean | undefined;
|
|
@@ -341,7 +342,6 @@ declare class MissingTermsComponent {
|
|
|
341
342
|
relevanceTransforms?: string | undefined;
|
|
342
343
|
removeDuplicates?: boolean | undefined;
|
|
343
344
|
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?: "dark" | "light" | "glassy" | null | undefined;
|
|
365
365
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
366
366
|
type MultiSelectionToolbarVariants = VariantProps<typeof multiSelectionToolbarVariants>;
|
|
367
367
|
declare class MultiSelectionToolbarComponent {
|
|
@@ -740,7 +740,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
740
740
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
741
741
|
} | undefined;
|
|
742
742
|
readonly class: _angular_core.InputSignal<string>;
|
|
743
|
-
readonly variant: _angular_core.InputSignal<"
|
|
743
|
+
readonly variant: _angular_core.InputSignal<"dark" | "light" | "glassy" | null | undefined>;
|
|
744
744
|
readonly updatedCollections: _angular_core.OutputEmitterRef<void>;
|
|
745
745
|
readonly count: _angular_core.Signal<number>;
|
|
746
746
|
readonly variants: _angular_core.Signal<string>;
|
|
@@ -1746,16 +1746,17 @@ type QueryParams = {
|
|
|
1746
1746
|
n?: string;
|
|
1747
1747
|
};
|
|
1748
1748
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1749
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1750
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1749
1751
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1752
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1750
1753
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1751
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1752
1754
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1753
1755
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
1754
1756
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
1755
1757
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1756
1758
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1757
1759
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1758
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1759
1760
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1760
1761
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1761
1762
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1769,7 +1770,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1769
1770
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1770
1771
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1771
1772
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1772
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1773
1773
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1774
1774
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1775
1775
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1793,16 +1793,17 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1793
1793
|
}> | null;
|
|
1794
1794
|
getQuery: () => _sinequa_atomic.Query;
|
|
1795
1795
|
} & _ngrx_signals.StateSource<{
|
|
1796
|
+
text?: string | undefined;
|
|
1797
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1796
1798
|
name?: string | undefined;
|
|
1799
|
+
sort?: string | undefined;
|
|
1797
1800
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1798
|
-
text?: string | undefined;
|
|
1799
1801
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1800
1802
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1801
1803
|
page?: number | undefined;
|
|
1802
1804
|
pageSize?: number | undefined;
|
|
1803
1805
|
tab?: string | undefined;
|
|
1804
1806
|
scope?: string | undefined;
|
|
1805
|
-
sort?: string | undefined;
|
|
1806
1807
|
basket?: string | undefined;
|
|
1807
1808
|
isFirstPage?: boolean | undefined;
|
|
1808
1809
|
strictRefine?: boolean | undefined;
|
|
@@ -1816,7 +1817,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1816
1817
|
relevanceTransforms?: string | undefined;
|
|
1817
1818
|
removeDuplicates?: boolean | undefined;
|
|
1818
1819
|
queryId?: string | undefined;
|
|
1819
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1820
1820
|
orderBy?: string | undefined;
|
|
1821
1821
|
groupBy?: string | undefined;
|
|
1822
1822
|
neuralSearch?: boolean | undefined;
|
|
@@ -1826,16 +1826,17 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1826
1826
|
}>>;
|
|
1827
1827
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1828
1828
|
state: {
|
|
1829
|
+
text?: string | undefined;
|
|
1830
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1829
1831
|
name?: string | undefined;
|
|
1832
|
+
sort?: string | undefined;
|
|
1830
1833
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1831
|
-
text?: string | undefined;
|
|
1832
1834
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1833
1835
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1834
1836
|
page?: number | undefined;
|
|
1835
1837
|
pageSize?: number | undefined;
|
|
1836
1838
|
tab?: string | undefined;
|
|
1837
1839
|
scope?: string | undefined;
|
|
1838
|
-
sort?: string | undefined;
|
|
1839
1840
|
basket?: string | undefined;
|
|
1840
1841
|
isFirstPage?: boolean | undefined;
|
|
1841
1842
|
strictRefine?: boolean | undefined;
|
|
@@ -1849,7 +1850,6 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
1849
1850
|
relevanceTransforms?: string | undefined;
|
|
1850
1851
|
removeDuplicates?: boolean | undefined;
|
|
1851
1852
|
queryId?: string | undefined;
|
|
1852
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1853
1853
|
orderBy?: string | undefined;
|
|
1854
1854
|
groupBy?: string | undefined;
|
|
1855
1855
|
neuralSearch?: boolean | undefined;
|
|
@@ -2043,7 +2043,7 @@ declare const UserSettingsStore: _angular_core.Type<{
|
|
|
2043
2043
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2044
2044
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2045
2045
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2046
|
-
userTheme: _angular_core.Signal<"
|
|
2046
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2047
2047
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2048
2048
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2049
2049
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2575,16 +2575,17 @@ declare class AggregationsService {
|
|
|
2575
2575
|
aggregations: Aggregation[];
|
|
2576
2576
|
}>;
|
|
2577
2577
|
queryParamsStore: {
|
|
2578
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2579
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2578
2580
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2581
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2579
2582
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2580
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2581
2583
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2582
2584
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
2583
2585
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
2584
2586
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
2585
2587
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
2586
2588
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
2587
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2588
2589
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
2589
2590
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2590
2591
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2598,7 +2599,6 @@ declare class AggregationsService {
|
|
|
2598
2599
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
2599
2600
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2600
2601
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
2601
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2602
2602
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2603
2603
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
2604
2604
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -2630,16 +2630,17 @@ declare class AggregationsService {
|
|
|
2630
2630
|
}> | null;
|
|
2631
2631
|
getQuery: () => Query;
|
|
2632
2632
|
} & _ngrx_signals.StateSource<{
|
|
2633
|
+
text?: string | undefined;
|
|
2634
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2633
2635
|
name?: string | undefined;
|
|
2636
|
+
sort?: string | undefined;
|
|
2634
2637
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2635
|
-
text?: string | undefined;
|
|
2636
2638
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2637
2639
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
2638
2640
|
page?: number | undefined;
|
|
2639
2641
|
pageSize?: number | undefined;
|
|
2640
2642
|
tab?: string | undefined;
|
|
2641
2643
|
scope?: string | undefined;
|
|
2642
|
-
sort?: string | undefined;
|
|
2643
2644
|
basket?: string | undefined;
|
|
2644
2645
|
isFirstPage?: boolean | undefined;
|
|
2645
2646
|
strictRefine?: boolean | undefined;
|
|
@@ -2653,7 +2654,6 @@ declare class AggregationsService {
|
|
|
2653
2654
|
relevanceTransforms?: string | undefined;
|
|
2654
2655
|
removeDuplicates?: boolean | undefined;
|
|
2655
2656
|
queryId?: string | undefined;
|
|
2656
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2657
2657
|
orderBy?: string | undefined;
|
|
2658
2658
|
groupBy?: string | undefined;
|
|
2659
2659
|
neuralSearch?: boolean | undefined;
|
|
@@ -2758,7 +2758,7 @@ declare class ApplicationService {
|
|
|
2758
2758
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2759
2759
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2760
2760
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2761
|
-
userTheme: _angular_core.Signal<"
|
|
2761
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2762
2762
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2763
2763
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2764
2764
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -3347,9 +3347,7 @@ declare class AuditService {
|
|
|
3347
3347
|
};
|
|
3348
3348
|
previewMultiConversion?: boolean;
|
|
3349
3349
|
};
|
|
3350
|
-
converters
|
|
3351
|
-
* Notify route change
|
|
3352
|
-
*/: _sinequa_atomic_angular.CConverter[];
|
|
3350
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3353
3351
|
};
|
|
3354
3352
|
documentsUploadSettings?: {
|
|
3355
3353
|
enabled?: boolean;
|
|
@@ -3542,9 +3540,7 @@ declare class AuditService {
|
|
|
3542
3540
|
};
|
|
3543
3541
|
previewMultiConversion?: boolean;
|
|
3544
3542
|
};
|
|
3545
|
-
converters
|
|
3546
|
-
* Notify route change
|
|
3547
|
-
*/: _sinequa_atomic_angular.CConverter[];
|
|
3543
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3548
3544
|
};
|
|
3549
3545
|
documentsUploadSettings?: {
|
|
3550
3546
|
enabled?: boolean;
|
|
@@ -3612,7 +3608,7 @@ declare class AutocompleteService {
|
|
|
3612
3608
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3613
3609
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3614
3610
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3615
|
-
userTheme: _angular_core.Signal<"
|
|
3611
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
3616
3612
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
3617
3613
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
3618
3614
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4268,16 +4264,17 @@ declare class PreviewService {
|
|
|
4268
4264
|
multiSelection: Article$1[];
|
|
4269
4265
|
}>;
|
|
4270
4266
|
protected readonly queryParamsStore: {
|
|
4267
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4268
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4271
4269
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4270
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4272
4271
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4273
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4274
4272
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4275
4273
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4276
4274
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4277
4275
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4278
4276
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4279
4277
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4280
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4281
4278
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4282
4279
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4283
4280
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4291,7 +4288,6 @@ declare class PreviewService {
|
|
|
4291
4288
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4292
4289
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4293
4290
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4294
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4295
4291
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4296
4292
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4297
4293
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4323,16 +4319,17 @@ declare class PreviewService {
|
|
|
4323
4319
|
}> | null;
|
|
4324
4320
|
getQuery: () => Query;
|
|
4325
4321
|
} & _ngrx_signals.StateSource<{
|
|
4322
|
+
text?: string | undefined;
|
|
4323
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4326
4324
|
name?: string | undefined;
|
|
4325
|
+
sort?: string | undefined;
|
|
4327
4326
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4328
|
-
text?: string | undefined;
|
|
4329
4327
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4330
4328
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4331
4329
|
page?: number | undefined;
|
|
4332
4330
|
pageSize?: number | undefined;
|
|
4333
4331
|
tab?: string | undefined;
|
|
4334
4332
|
scope?: string | undefined;
|
|
4335
|
-
sort?: string | undefined;
|
|
4336
4333
|
basket?: string | undefined;
|
|
4337
4334
|
isFirstPage?: boolean | undefined;
|
|
4338
4335
|
strictRefine?: boolean | undefined;
|
|
@@ -4346,7 +4343,6 @@ declare class PreviewService {
|
|
|
4346
4343
|
relevanceTransforms?: string | undefined;
|
|
4347
4344
|
removeDuplicates?: boolean | undefined;
|
|
4348
4345
|
queryId?: string | undefined;
|
|
4349
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4350
4346
|
orderBy?: string | undefined;
|
|
4351
4347
|
groupBy?: string | undefined;
|
|
4352
4348
|
neuralSearch?: boolean | undefined;
|
|
@@ -4851,7 +4847,7 @@ declare class SavedSearchesService {
|
|
|
4851
4847
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4852
4848
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4853
4849
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4854
|
-
userTheme: _angular_core.Signal<"
|
|
4850
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4855
4851
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4856
4852
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4857
4853
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4897,16 +4893,17 @@ declare class SavedSearchesService {
|
|
|
4897
4893
|
agents: _sinequa_atomic_angular.AgentUserSettings;
|
|
4898
4894
|
}>;
|
|
4899
4895
|
protected readonly queryParamsStore: {
|
|
4896
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4897
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4900
4898
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4899
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4901
4900
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4902
|
-
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;
|
|
4909
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4910
4907
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4911
4908
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4912
4909
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4920,7 +4917,6 @@ declare class SavedSearchesService {
|
|
|
4920
4917
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4921
4918
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4922
4919
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4923
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4924
4920
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4925
4921
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4926
4922
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4952,16 +4948,17 @@ declare class SavedSearchesService {
|
|
|
4952
4948
|
}> | null;
|
|
4953
4949
|
getQuery: () => _sinequa_atomic.Query;
|
|
4954
4950
|
} & _ngrx_signals.StateSource<{
|
|
4951
|
+
text?: string | undefined;
|
|
4952
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4955
4953
|
name?: string | undefined;
|
|
4954
|
+
sort?: string | undefined;
|
|
4956
4955
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4957
|
-
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;
|
|
4964
|
-
sort?: string | undefined;
|
|
4965
4962
|
basket?: string | undefined;
|
|
4966
4963
|
isFirstPage?: boolean | undefined;
|
|
4967
4964
|
strictRefine?: boolean | undefined;
|
|
@@ -4975,7 +4972,6 @@ declare class SavedSearchesService {
|
|
|
4975
4972
|
relevanceTransforms?: string | undefined;
|
|
4976
4973
|
removeDuplicates?: boolean | undefined;
|
|
4977
4974
|
queryId?: string | undefined;
|
|
4978
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4979
4975
|
orderBy?: string | undefined;
|
|
4980
4976
|
groupBy?: string | undefined;
|
|
4981
4977
|
neuralSearch?: boolean | undefined;
|
|
@@ -5038,16 +5034,17 @@ declare class SearchService {
|
|
|
5038
5034
|
result: Result;
|
|
5039
5035
|
audit?: AuditEvents;
|
|
5040
5036
|
protected readonly queryParamsStore: {
|
|
5037
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5038
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5041
5039
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5040
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5042
5041
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5043
|
-
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;
|
|
5050
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5051
5048
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5052
5049
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5053
5050
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5061,7 +5058,6 @@ declare class SearchService {
|
|
|
5061
5058
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5062
5059
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5063
5060
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5064
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5065
5061
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5066
5062
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5067
5063
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5093,16 +5089,17 @@ declare class SearchService {
|
|
|
5093
5089
|
}> | null;
|
|
5094
5090
|
getQuery: () => Query;
|
|
5095
5091
|
} & _ngrx_signals.StateSource<{
|
|
5092
|
+
text?: string | undefined;
|
|
5093
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5096
5094
|
name?: string | undefined;
|
|
5095
|
+
sort?: string | undefined;
|
|
5097
5096
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5098
|
-
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;
|
|
5105
|
-
sort?: string | undefined;
|
|
5106
5103
|
basket?: string | undefined;
|
|
5107
5104
|
isFirstPage?: boolean | undefined;
|
|
5108
5105
|
strictRefine?: boolean | undefined;
|
|
@@ -5116,7 +5113,6 @@ declare class SearchService {
|
|
|
5116
5113
|
relevanceTransforms?: string | undefined;
|
|
5117
5114
|
removeDuplicates?: boolean | undefined;
|
|
5118
5115
|
queryId?: string | undefined;
|
|
5119
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5120
5116
|
orderBy?: string | undefined;
|
|
5121
5117
|
groupBy?: string | undefined;
|
|
5122
5118
|
neuralSearch?: boolean | undefined;
|
|
@@ -5133,7 +5129,7 @@ declare class SearchService {
|
|
|
5133
5129
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5134
5130
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5135
5131
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5136
|
-
userTheme: _angular_core.Signal<"
|
|
5132
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5137
5133
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5138
5134
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5139
5135
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5229,16 +5225,17 @@ declare class SelectionService {
|
|
|
5229
5225
|
private readonly location;
|
|
5230
5226
|
private readonly selectionStore;
|
|
5231
5227
|
queryParamsStore: {
|
|
5228
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5229
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5232
5230
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5231
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5233
5232
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5234
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5235
5233
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5236
5234
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5237
5235
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5238
5236
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5239
5237
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5240
5238
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5241
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5242
5239
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5243
5240
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5244
5241
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5252,7 +5249,6 @@ declare class SelectionService {
|
|
|
5252
5249
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5253
5250
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5254
5251
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5255
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5256
5252
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5257
5253
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5258
5254
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5284,16 +5280,17 @@ declare class SelectionService {
|
|
|
5284
5280
|
}> | null;
|
|
5285
5281
|
getQuery: () => _sinequa_atomic.Query;
|
|
5286
5282
|
} & _ngrx_signals.StateSource<{
|
|
5283
|
+
text?: string | undefined;
|
|
5284
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5287
5285
|
name?: string | undefined;
|
|
5286
|
+
sort?: string | undefined;
|
|
5288
5287
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5289
|
-
text?: string | undefined;
|
|
5290
5288
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5291
5289
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5292
5290
|
page?: number | undefined;
|
|
5293
5291
|
pageSize?: number | undefined;
|
|
5294
5292
|
tab?: string | undefined;
|
|
5295
5293
|
scope?: string | undefined;
|
|
5296
|
-
sort?: string | undefined;
|
|
5297
5294
|
basket?: string | undefined;
|
|
5298
5295
|
isFirstPage?: boolean | undefined;
|
|
5299
5296
|
strictRefine?: boolean | undefined;
|
|
@@ -5307,7 +5304,6 @@ declare class SelectionService {
|
|
|
5307
5304
|
relevanceTransforms?: string | undefined;
|
|
5308
5305
|
removeDuplicates?: boolean | undefined;
|
|
5309
5306
|
queryId?: string | undefined;
|
|
5310
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5311
5307
|
orderBy?: string | undefined;
|
|
5312
5308
|
groupBy?: string | undefined;
|
|
5313
5309
|
neuralSearch?: boolean | undefined;
|
|
@@ -5453,16 +5449,17 @@ declare class NavbarTabsComponent {
|
|
|
5453
5449
|
readonly router: Router;
|
|
5454
5450
|
readonly route: ActivatedRoute;
|
|
5455
5451
|
readonly queryParamsStore: {
|
|
5452
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5453
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5456
5454
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5455
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5457
5456
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5458
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5459
5457
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5460
5458
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5461
5459
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5462
5460
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5463
5461
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5464
5462
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5465
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5466
5463
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5467
5464
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5468
5465
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5476,7 +5473,6 @@ declare class NavbarTabsComponent {
|
|
|
5476
5473
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5477
5474
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5478
5475
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5479
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5480
5476
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5481
5477
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5482
5478
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5508,16 +5504,17 @@ declare class NavbarTabsComponent {
|
|
|
5508
5504
|
}> | null;
|
|
5509
5505
|
getQuery: () => _sinequa_atomic.Query;
|
|
5510
5506
|
} & _ngrx_signals.StateSource<{
|
|
5507
|
+
text?: string | undefined;
|
|
5508
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5511
5509
|
name?: string | undefined;
|
|
5510
|
+
sort?: string | undefined;
|
|
5512
5511
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5513
|
-
text?: string | undefined;
|
|
5514
5512
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5515
5513
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5516
5514
|
page?: number | undefined;
|
|
5517
5515
|
pageSize?: number | undefined;
|
|
5518
5516
|
tab?: string | undefined;
|
|
5519
5517
|
scope?: string | undefined;
|
|
5520
|
-
sort?: string | undefined;
|
|
5521
5518
|
basket?: string | undefined;
|
|
5522
5519
|
isFirstPage?: boolean | undefined;
|
|
5523
5520
|
strictRefine?: boolean | undefined;
|
|
@@ -5531,7 +5528,6 @@ declare class NavbarTabsComponent {
|
|
|
5531
5528
|
relevanceTransforms?: string | undefined;
|
|
5532
5529
|
removeDuplicates?: boolean | undefined;
|
|
5533
5530
|
queryId?: string | undefined;
|
|
5534
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5535
5531
|
orderBy?: string | undefined;
|
|
5536
5532
|
groupBy?: string | undefined;
|
|
5537
5533
|
neuralSearch?: boolean | undefined;
|
|
@@ -6004,7 +6000,7 @@ declare class ShowBookmarkDirective {
|
|
|
6004
6000
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6005
6001
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6006
6002
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6007
|
-
userTheme: _angular_core.Signal<"
|
|
6003
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6008
6004
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6009
6005
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6010
6006
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -6678,16 +6674,17 @@ declare class SponsoredResultsComponent {
|
|
|
6678
6674
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6679
6675
|
}>;
|
|
6680
6676
|
queryParamStore: {
|
|
6677
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6678
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6681
6679
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6680
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6682
6681
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6683
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6684
6682
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6685
6683
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6686
6684
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6687
6685
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6688
6686
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6689
6687
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6690
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6691
6688
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6692
6689
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6693
6690
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6701,7 +6698,6 @@ declare class SponsoredResultsComponent {
|
|
|
6701
6698
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6702
6699
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6703
6700
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6704
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6705
6701
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6706
6702
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6707
6703
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6733,16 +6729,17 @@ declare class SponsoredResultsComponent {
|
|
|
6733
6729
|
}> | null;
|
|
6734
6730
|
getQuery: () => _sinequa_atomic.Query;
|
|
6735
6731
|
} & _ngrx_signals.StateSource<{
|
|
6732
|
+
text?: string | undefined;
|
|
6733
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6736
6734
|
name?: string | undefined;
|
|
6735
|
+
sort?: string | undefined;
|
|
6737
6736
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6738
|
-
text?: string | undefined;
|
|
6739
6737
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6740
6738
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6741
6739
|
page?: number | undefined;
|
|
6742
6740
|
pageSize?: number | undefined;
|
|
6743
6741
|
tab?: string | undefined;
|
|
6744
6742
|
scope?: string | undefined;
|
|
6745
|
-
sort?: string | undefined;
|
|
6746
6743
|
basket?: string | undefined;
|
|
6747
6744
|
isFirstPage?: boolean | undefined;
|
|
6748
6745
|
strictRefine?: boolean | undefined;
|
|
@@ -6756,7 +6753,6 @@ declare class SponsoredResultsComponent {
|
|
|
6756
6753
|
relevanceTransforms?: string | undefined;
|
|
6757
6754
|
removeDuplicates?: boolean | undefined;
|
|
6758
6755
|
queryId?: string | undefined;
|
|
6759
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6760
6756
|
orderBy?: string | undefined;
|
|
6761
6757
|
groupBy?: string | undefined;
|
|
6762
6758
|
neuralSearch?: boolean | undefined;
|
|
@@ -7011,16 +7007,17 @@ declare class AggregationListComponent {
|
|
|
7011
7007
|
aggregations: Aggregation[];
|
|
7012
7008
|
}>;
|
|
7013
7009
|
queryParamsStore: {
|
|
7010
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7011
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7014
7012
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7013
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7015
7014
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7016
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7017
7015
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7018
7016
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7019
7017
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7020
7018
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7021
7019
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7022
7020
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7023
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7024
7021
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7025
7022
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7026
7023
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7034,7 +7031,6 @@ declare class AggregationListComponent {
|
|
|
7034
7031
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7035
7032
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7036
7033
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7037
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7038
7034
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7039
7035
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7040
7036
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7066,16 +7062,17 @@ declare class AggregationListComponent {
|
|
|
7066
7062
|
}> | null;
|
|
7067
7063
|
getQuery: () => Query;
|
|
7068
7064
|
} & _ngrx_signals.StateSource<{
|
|
7065
|
+
text?: string | undefined;
|
|
7066
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7069
7067
|
name?: string | undefined;
|
|
7068
|
+
sort?: string | undefined;
|
|
7070
7069
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7071
|
-
text?: string | undefined;
|
|
7072
7070
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7073
7071
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7074
7072
|
page?: number | undefined;
|
|
7075
7073
|
pageSize?: number | undefined;
|
|
7076
7074
|
tab?: string | undefined;
|
|
7077
7075
|
scope?: string | undefined;
|
|
7078
|
-
sort?: string | undefined;
|
|
7079
7076
|
basket?: string | undefined;
|
|
7080
7077
|
isFirstPage?: boolean | undefined;
|
|
7081
7078
|
strictRefine?: boolean | undefined;
|
|
@@ -7089,7 +7086,6 @@ declare class AggregationListComponent {
|
|
|
7089
7086
|
relevanceTransforms?: string | undefined;
|
|
7090
7087
|
removeDuplicates?: boolean | undefined;
|
|
7091
7088
|
queryId?: string | undefined;
|
|
7092
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7093
7089
|
orderBy?: string | undefined;
|
|
7094
7090
|
groupBy?: string | undefined;
|
|
7095
7091
|
neuralSearch?: boolean | undefined;
|
|
@@ -7632,16 +7628,17 @@ declare class AdvancedSearch {
|
|
|
7632
7628
|
multiSelection: Article$1[];
|
|
7633
7629
|
}>;
|
|
7634
7630
|
protected readonly queryParamsStore: {
|
|
7631
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7632
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7635
7633
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7634
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7636
7635
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7637
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7638
7636
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7639
7637
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7640
7638
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7641
7639
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7642
7640
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7643
7641
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7644
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7645
7642
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7646
7643
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7647
7644
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7655,7 +7652,6 @@ declare class AdvancedSearch {
|
|
|
7655
7652
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7656
7653
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7657
7654
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7658
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7659
7655
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7660
7656
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7661
7657
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7687,16 +7683,17 @@ declare class AdvancedSearch {
|
|
|
7687
7683
|
}> | null;
|
|
7688
7684
|
getQuery: () => _sinequa_atomic.Query;
|
|
7689
7685
|
} & _ngrx_signals.StateSource<{
|
|
7686
|
+
text?: string | undefined;
|
|
7687
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7690
7688
|
name?: string | undefined;
|
|
7689
|
+
sort?: string | undefined;
|
|
7691
7690
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7692
|
-
text?: string | undefined;
|
|
7693
7691
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7694
7692
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7695
7693
|
page?: number | undefined;
|
|
7696
7694
|
pageSize?: number | undefined;
|
|
7697
7695
|
tab?: string | undefined;
|
|
7698
7696
|
scope?: string | undefined;
|
|
7699
|
-
sort?: string | undefined;
|
|
7700
7697
|
basket?: string | undefined;
|
|
7701
7698
|
isFirstPage?: boolean | undefined;
|
|
7702
7699
|
strictRefine?: boolean | undefined;
|
|
@@ -7710,7 +7707,6 @@ declare class AdvancedSearch {
|
|
|
7710
7707
|
relevanceTransforms?: string | undefined;
|
|
7711
7708
|
removeDuplicates?: boolean | undefined;
|
|
7712
7709
|
queryId?: string | undefined;
|
|
7713
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7714
7710
|
orderBy?: string | undefined;
|
|
7715
7711
|
groupBy?: string | undefined;
|
|
7716
7712
|
neuralSearch?: boolean | undefined;
|
|
@@ -8096,16 +8092,17 @@ declare class ArticleLabels {
|
|
|
8096
8092
|
|
|
8097
8093
|
declare class ArticleSimilarDocuments {
|
|
8098
8094
|
protected readonly queryParamsStore: {
|
|
8095
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8096
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8099
8097
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8098
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8100
8099
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8101
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8102
8100
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8103
8101
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8104
8102
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8105
8103
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8106
8104
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8107
8105
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8108
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8109
8106
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8110
8107
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8111
8108
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8119,7 +8116,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8119
8116
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8120
8117
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8121
8118
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8122
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8123
8119
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8124
8120
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8125
8121
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8151,16 +8147,17 @@ declare class ArticleSimilarDocuments {
|
|
|
8151
8147
|
}> | null;
|
|
8152
8148
|
getQuery: () => _sinequa_atomic.Query;
|
|
8153
8149
|
} & _ngrx_signals.StateSource<{
|
|
8150
|
+
text?: string | undefined;
|
|
8151
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8154
8152
|
name?: string | undefined;
|
|
8153
|
+
sort?: string | undefined;
|
|
8155
8154
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8156
|
-
text?: string | undefined;
|
|
8157
8155
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8158
8156
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8159
8157
|
page?: number | undefined;
|
|
8160
8158
|
pageSize?: number | undefined;
|
|
8161
8159
|
tab?: string | undefined;
|
|
8162
8160
|
scope?: string | undefined;
|
|
8163
|
-
sort?: string | undefined;
|
|
8164
8161
|
basket?: string | undefined;
|
|
8165
8162
|
isFirstPage?: boolean | undefined;
|
|
8166
8163
|
strictRefine?: boolean | undefined;
|
|
@@ -8174,7 +8171,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8174
8171
|
relevanceTransforms?: string | undefined;
|
|
8175
8172
|
removeDuplicates?: boolean | undefined;
|
|
8176
8173
|
queryId?: string | undefined;
|
|
8177
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8178
8174
|
orderBy?: string | undefined;
|
|
8179
8175
|
groupBy?: string | undefined;
|
|
8180
8176
|
neuralSearch?: boolean | undefined;
|
|
@@ -8758,16 +8754,17 @@ declare class AdvancedSearchComponent {
|
|
|
8758
8754
|
multiSelection: Article$1[];
|
|
8759
8755
|
}>;
|
|
8760
8756
|
protected readonly queryParamsStore: {
|
|
8757
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8758
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8761
8759
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8760
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8762
8761
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8763
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8764
8762
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8765
8763
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8766
8764
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8767
8765
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8768
8766
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8769
8767
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8770
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8771
8768
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8772
8769
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8773
8770
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8781,7 +8778,6 @@ declare class AdvancedSearchComponent {
|
|
|
8781
8778
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8782
8779
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8783
8780
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8784
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8785
8781
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8786
8782
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8787
8783
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8813,16 +8809,17 @@ declare class AdvancedSearchComponent {
|
|
|
8813
8809
|
}> | null;
|
|
8814
8810
|
getQuery: () => _sinequa_atomic.Query;
|
|
8815
8811
|
} & _ngrx_signals.StateSource<{
|
|
8812
|
+
text?: string | undefined;
|
|
8813
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8816
8814
|
name?: string | undefined;
|
|
8815
|
+
sort?: string | undefined;
|
|
8817
8816
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8818
|
-
text?: string | undefined;
|
|
8819
8817
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8820
8818
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8821
8819
|
page?: number | undefined;
|
|
8822
8820
|
pageSize?: number | undefined;
|
|
8823
8821
|
tab?: string | undefined;
|
|
8824
8822
|
scope?: string | undefined;
|
|
8825
|
-
sort?: string | undefined;
|
|
8826
8823
|
basket?: string | undefined;
|
|
8827
8824
|
isFirstPage?: boolean | undefined;
|
|
8828
8825
|
strictRefine?: boolean | undefined;
|
|
@@ -8836,7 +8833,6 @@ declare class AdvancedSearchComponent {
|
|
|
8836
8833
|
relevanceTransforms?: string | undefined;
|
|
8837
8834
|
removeDuplicates?: boolean | undefined;
|
|
8838
8835
|
queryId?: string | undefined;
|
|
8839
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8840
8836
|
orderBy?: string | undefined;
|
|
8841
8837
|
groupBy?: string | undefined;
|
|
8842
8838
|
neuralSearch?: boolean | undefined;
|
|
@@ -9214,16 +9210,17 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9214
9210
|
multiSelection: _sinequa_atomic.Article[];
|
|
9215
9211
|
}>;
|
|
9216
9212
|
queryParamsStore: {
|
|
9213
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9214
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9217
9215
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9216
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9218
9217
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9219
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9220
9218
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9221
9219
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9222
9220
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9223
9221
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9224
9222
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9225
9223
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9226
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9227
9224
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9228
9225
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9229
9226
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9237,7 +9234,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9237
9234
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9238
9235
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9239
9236
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9240
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9241
9237
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9242
9238
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9243
9239
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9269,16 +9265,17 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9269
9265
|
}> | null;
|
|
9270
9266
|
getQuery: () => _sinequa_atomic.Query;
|
|
9271
9267
|
} & _ngrx_signals.StateSource<{
|
|
9268
|
+
text?: string | undefined;
|
|
9269
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9272
9270
|
name?: string | undefined;
|
|
9271
|
+
sort?: string | undefined;
|
|
9273
9272
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9274
|
-
text?: string | undefined;
|
|
9275
9273
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9276
9274
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9277
9275
|
page?: number | undefined;
|
|
9278
9276
|
pageSize?: number | undefined;
|
|
9279
9277
|
tab?: string | undefined;
|
|
9280
9278
|
scope?: string | undefined;
|
|
9281
|
-
sort?: string | undefined;
|
|
9282
9279
|
basket?: string | undefined;
|
|
9283
9280
|
isFirstPage?: boolean | undefined;
|
|
9284
9281
|
strictRefine?: boolean | undefined;
|
|
@@ -9292,7 +9289,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9292
9289
|
relevanceTransforms?: string | undefined;
|
|
9293
9290
|
removeDuplicates?: boolean | undefined;
|
|
9294
9291
|
queryId?: string | undefined;
|
|
9295
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9296
9292
|
orderBy?: string | undefined;
|
|
9297
9293
|
groupBy?: string | undefined;
|
|
9298
9294
|
neuralSearch?: boolean | undefined;
|
|
@@ -9412,16 +9408,17 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9412
9408
|
private appStore;
|
|
9413
9409
|
readonly exportService: ExportService;
|
|
9414
9410
|
readonly queryParamsStore: {
|
|
9411
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9412
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9415
9413
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9414
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9416
9415
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9417
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9418
9416
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9419
9417
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9420
9418
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9421
9419
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9422
9420
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9423
9421
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9424
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9425
9422
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9426
9423
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9427
9424
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9435,7 +9432,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9435
9432
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9436
9433
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9437
9434
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9438
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9439
9435
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9440
9436
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9441
9437
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9467,16 +9463,17 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9467
9463
|
}> | null;
|
|
9468
9464
|
getQuery: () => _sinequa_atomic.Query;
|
|
9469
9465
|
} & _ngrx_signals.StateSource<{
|
|
9466
|
+
text?: string | undefined;
|
|
9467
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9470
9468
|
name?: string | undefined;
|
|
9469
|
+
sort?: string | undefined;
|
|
9471
9470
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9472
|
-
text?: string | undefined;
|
|
9473
9471
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9474
9472
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9475
9473
|
page?: number | undefined;
|
|
9476
9474
|
pageSize?: number | undefined;
|
|
9477
9475
|
tab?: string | undefined;
|
|
9478
9476
|
scope?: string | undefined;
|
|
9479
|
-
sort?: string | undefined;
|
|
9480
9477
|
basket?: string | undefined;
|
|
9481
9478
|
isFirstPage?: boolean | undefined;
|
|
9482
9479
|
strictRefine?: boolean | undefined;
|
|
@@ -9490,7 +9487,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9490
9487
|
relevanceTransforms?: string | undefined;
|
|
9491
9488
|
removeDuplicates?: boolean | undefined;
|
|
9492
9489
|
queryId?: string | undefined;
|
|
9493
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9494
9490
|
orderBy?: string | undefined;
|
|
9495
9491
|
groupBy?: string | undefined;
|
|
9496
9492
|
neuralSearch?: boolean | undefined;
|
|
@@ -9844,16 +9840,17 @@ declare class SearchFeedbackComponent {
|
|
|
9844
9840
|
pages: _angular_core.InputSignal<any>;
|
|
9845
9841
|
readonly auditService: AuditService;
|
|
9846
9842
|
protected readonly queryParamsStore: {
|
|
9843
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9844
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9847
9845
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9846
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9848
9847
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9849
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9850
9848
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9851
9849
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9852
9850
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9853
9851
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9854
9852
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9855
9853
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9856
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9857
9854
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9858
9855
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9859
9856
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9867,7 +9864,6 @@ declare class SearchFeedbackComponent {
|
|
|
9867
9864
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9868
9865
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9869
9866
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9870
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9871
9867
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9872
9868
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9873
9869
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9899,16 +9895,17 @@ declare class SearchFeedbackComponent {
|
|
|
9899
9895
|
}> | null;
|
|
9900
9896
|
getQuery: () => _sinequa_atomic.Query;
|
|
9901
9897
|
} & _ngrx_signals.StateSource<{
|
|
9898
|
+
text?: string | undefined;
|
|
9899
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9902
9900
|
name?: string | undefined;
|
|
9901
|
+
sort?: string | undefined;
|
|
9903
9902
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9904
|
-
text?: string | undefined;
|
|
9905
9903
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9906
9904
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9907
9905
|
page?: number | undefined;
|
|
9908
9906
|
pageSize?: number | undefined;
|
|
9909
9907
|
tab?: string | undefined;
|
|
9910
9908
|
scope?: string | undefined;
|
|
9911
|
-
sort?: string | undefined;
|
|
9912
9909
|
basket?: string | undefined;
|
|
9913
9910
|
isFirstPage?: boolean | undefined;
|
|
9914
9911
|
strictRefine?: boolean | undefined;
|
|
@@ -9922,7 +9919,6 @@ declare class SearchFeedbackComponent {
|
|
|
9922
9919
|
relevanceTransforms?: string | undefined;
|
|
9923
9920
|
removeDuplicates?: boolean | undefined;
|
|
9924
9921
|
queryId?: string | undefined;
|
|
9925
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9926
9922
|
orderBy?: string | undefined;
|
|
9927
9923
|
groupBy?: string | undefined;
|
|
9928
9924
|
neuralSearch?: boolean | undefined;
|
|
@@ -9959,16 +9955,17 @@ declare class AggregationTreeComponent {
|
|
|
9959
9955
|
aggregations: Aggregation[];
|
|
9960
9956
|
}>;
|
|
9961
9957
|
queryParamsStore: {
|
|
9958
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9959
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9962
9960
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9961
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9963
9962
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9964
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9965
9963
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9966
9964
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9967
9965
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9968
9966
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9969
9967
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9970
9968
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9971
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9972
9969
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9973
9970
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9974
9971
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9982,7 +9979,6 @@ declare class AggregationTreeComponent {
|
|
|
9982
9979
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9983
9980
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9984
9981
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9985
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9986
9982
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9987
9983
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9988
9984
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10014,16 +10010,17 @@ declare class AggregationTreeComponent {
|
|
|
10014
10010
|
}> | null;
|
|
10015
10011
|
getQuery: () => Query;
|
|
10016
10012
|
} & _ngrx_signals.StateSource<{
|
|
10013
|
+
text?: string | undefined;
|
|
10014
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10017
10015
|
name?: string | undefined;
|
|
10016
|
+
sort?: string | undefined;
|
|
10018
10017
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10019
|
-
text?: string | undefined;
|
|
10020
10018
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10021
10019
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10022
10020
|
page?: number | undefined;
|
|
10023
10021
|
pageSize?: number | undefined;
|
|
10024
10022
|
tab?: string | undefined;
|
|
10025
10023
|
scope?: string | undefined;
|
|
10026
|
-
sort?: string | undefined;
|
|
10027
10024
|
basket?: string | undefined;
|
|
10028
10025
|
isFirstPage?: boolean | undefined;
|
|
10029
10026
|
strictRefine?: boolean | undefined;
|
|
@@ -10037,7 +10034,6 @@ declare class AggregationTreeComponent {
|
|
|
10037
10034
|
relevanceTransforms?: string | undefined;
|
|
10038
10035
|
removeDuplicates?: boolean | undefined;
|
|
10039
10036
|
queryId?: string | undefined;
|
|
10040
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10041
10037
|
orderBy?: string | undefined;
|
|
10042
10038
|
groupBy?: string | undefined;
|
|
10043
10039
|
neuralSearch?: boolean | undefined;
|
|
@@ -11004,7 +11000,7 @@ declare class FilterButtonComponent {
|
|
|
11004
11000
|
position: _angular_core.InputSignal<Placement>;
|
|
11005
11001
|
offset: _angular_core.InputSignal<number>;
|
|
11006
11002
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11007
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11003
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "none" | "secondary" | "destructive" | "ai" | "primary" | "link" | "accent" | "outline" | "ghost" | "light-accent" | "tertiary" | null | undefined>;
|
|
11008
11004
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11009
11005
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11010
11006
|
protected nativeElement: any;
|
|
@@ -11018,16 +11014,17 @@ declare class FilterButtonComponent {
|
|
|
11018
11014
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
11019
11015
|
}>;
|
|
11020
11016
|
protected queryParamsStore: {
|
|
11017
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11018
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11021
11019
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11020
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11022
11021
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11023
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11024
11022
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11025
11023
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11026
11024
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11027
11025
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11028
11026
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11029
11027
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11030
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11031
11028
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11032
11029
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11033
11030
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11041,7 +11038,6 @@ declare class FilterButtonComponent {
|
|
|
11041
11038
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11042
11039
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11043
11040
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11044
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11045
11041
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11046
11042
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11047
11043
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11073,16 +11069,17 @@ declare class FilterButtonComponent {
|
|
|
11073
11069
|
}> | null;
|
|
11074
11070
|
getQuery: () => _sinequa_atomic.Query;
|
|
11075
11071
|
} & _ngrx_signals.StateSource<{
|
|
11072
|
+
text?: string | undefined;
|
|
11073
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11076
11074
|
name?: string | undefined;
|
|
11075
|
+
sort?: string | undefined;
|
|
11077
11076
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11078
|
-
text?: string | undefined;
|
|
11079
11077
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11080
11078
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11081
11079
|
page?: number | undefined;
|
|
11082
11080
|
pageSize?: number | undefined;
|
|
11083
11081
|
tab?: string | undefined;
|
|
11084
11082
|
scope?: string | undefined;
|
|
11085
|
-
sort?: string | undefined;
|
|
11086
11083
|
basket?: string | undefined;
|
|
11087
11084
|
isFirstPage?: boolean | undefined;
|
|
11088
11085
|
strictRefine?: boolean | undefined;
|
|
@@ -11096,7 +11093,6 @@ declare class FilterButtonComponent {
|
|
|
11096
11093
|
relevanceTransforms?: string | undefined;
|
|
11097
11094
|
removeDuplicates?: boolean | undefined;
|
|
11098
11095
|
queryId?: string | undefined;
|
|
11099
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11100
11096
|
orderBy?: string | undefined;
|
|
11101
11097
|
groupBy?: string | undefined;
|
|
11102
11098
|
neuralSearch?: boolean | undefined;
|
|
@@ -11732,16 +11728,17 @@ declare class MoreButtonComponent {
|
|
|
11732
11728
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
11733
11729
|
}>;
|
|
11734
11730
|
queryParamsStore: {
|
|
11731
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11732
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11735
11733
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11734
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11736
11735
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11737
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11738
11736
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11739
11737
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11740
11738
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11741
11739
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11742
11740
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11743
11741
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11744
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11745
11742
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11746
11743
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11747
11744
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11755,7 +11752,6 @@ declare class MoreButtonComponent {
|
|
|
11755
11752
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11756
11753
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11757
11754
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11758
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11759
11755
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11760
11756
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11761
11757
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11787,16 +11783,17 @@ declare class MoreButtonComponent {
|
|
|
11787
11783
|
}> | null;
|
|
11788
11784
|
getQuery: () => _sinequa_atomic.Query;
|
|
11789
11785
|
} & _ngrx_signals.StateSource<{
|
|
11786
|
+
text?: string | undefined;
|
|
11787
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11790
11788
|
name?: string | undefined;
|
|
11789
|
+
sort?: string | undefined;
|
|
11791
11790
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11792
|
-
text?: string | undefined;
|
|
11793
11791
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11794
11792
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11795
11793
|
page?: number | undefined;
|
|
11796
11794
|
pageSize?: number | undefined;
|
|
11797
11795
|
tab?: string | undefined;
|
|
11798
11796
|
scope?: string | undefined;
|
|
11799
|
-
sort?: string | undefined;
|
|
11800
11797
|
basket?: string | undefined;
|
|
11801
11798
|
isFirstPage?: boolean | undefined;
|
|
11802
11799
|
strictRefine?: boolean | undefined;
|
|
@@ -11810,7 +11807,6 @@ declare class MoreButtonComponent {
|
|
|
11810
11807
|
relevanceTransforms?: string | undefined;
|
|
11811
11808
|
removeDuplicates?: boolean | undefined;
|
|
11812
11809
|
queryId?: string | undefined;
|
|
11813
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11814
11810
|
orderBy?: string | undefined;
|
|
11815
11811
|
groupBy?: string | undefined;
|
|
11816
11812
|
neuralSearch?: boolean | undefined;
|
|
@@ -12207,16 +12203,17 @@ declare class FiltersBarComponent {
|
|
|
12207
12203
|
aggregations: Aggregation[];
|
|
12208
12204
|
}>;
|
|
12209
12205
|
protected queryParamsStore: {
|
|
12206
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12207
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12210
12208
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12209
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12211
12210
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12212
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12213
12211
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12214
12212
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12215
12213
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12216
12214
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12217
12215
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12218
12216
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12219
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12220
12217
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12221
12218
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12222
12219
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12230,7 +12227,6 @@ declare class FiltersBarComponent {
|
|
|
12230
12227
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12231
12228
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12232
12229
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12233
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12234
12230
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12235
12231
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12236
12232
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12262,16 +12258,17 @@ declare class FiltersBarComponent {
|
|
|
12262
12258
|
}> | null;
|
|
12263
12259
|
getQuery: () => _sinequa_atomic.Query;
|
|
12264
12260
|
} & _ngrx_signals.StateSource<{
|
|
12261
|
+
text?: string | undefined;
|
|
12262
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12265
12263
|
name?: string | undefined;
|
|
12264
|
+
sort?: string | undefined;
|
|
12266
12265
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12267
|
-
text?: string | undefined;
|
|
12268
12266
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12269
12267
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12270
12268
|
page?: number | undefined;
|
|
12271
12269
|
pageSize?: number | undefined;
|
|
12272
12270
|
tab?: string | undefined;
|
|
12273
12271
|
scope?: string | undefined;
|
|
12274
|
-
sort?: string | undefined;
|
|
12275
12272
|
basket?: string | undefined;
|
|
12276
12273
|
isFirstPage?: boolean | undefined;
|
|
12277
12274
|
strictRefine?: boolean | undefined;
|
|
@@ -12285,7 +12282,6 @@ declare class FiltersBarComponent {
|
|
|
12285
12282
|
relevanceTransforms?: string | undefined;
|
|
12286
12283
|
removeDuplicates?: boolean | undefined;
|
|
12287
12284
|
queryId?: string | undefined;
|
|
12288
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12289
12285
|
orderBy?: string | undefined;
|
|
12290
12286
|
groupBy?: string | undefined;
|
|
12291
12287
|
neuralSearch?: boolean | undefined;
|
|
@@ -12688,16 +12684,17 @@ declare class MoreComponent {
|
|
|
12688
12684
|
aggregations: Aggregation[];
|
|
12689
12685
|
}>;
|
|
12690
12686
|
queryParamsStore: {
|
|
12687
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12688
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12691
12689
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12690
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12692
12691
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12693
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12694
12692
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12695
12693
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12696
12694
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12697
12695
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12698
12696
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12699
12697
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12700
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12701
12698
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12702
12699
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12703
12700
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12711,7 +12708,6 @@ declare class MoreComponent {
|
|
|
12711
12708
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12712
12709
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12713
12710
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12714
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12715
12711
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12716
12712
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12717
12713
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12743,16 +12739,17 @@ declare class MoreComponent {
|
|
|
12743
12739
|
}> | null;
|
|
12744
12740
|
getQuery: () => _sinequa_atomic.Query;
|
|
12745
12741
|
} & _ngrx_signals.StateSource<{
|
|
12742
|
+
text?: string | undefined;
|
|
12743
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12746
12744
|
name?: string | undefined;
|
|
12745
|
+
sort?: string | undefined;
|
|
12747
12746
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12748
|
-
text?: string | undefined;
|
|
12749
12747
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12750
12748
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12751
12749
|
page?: number | undefined;
|
|
12752
12750
|
pageSize?: number | undefined;
|
|
12753
12751
|
tab?: string | undefined;
|
|
12754
12752
|
scope?: string | undefined;
|
|
12755
|
-
sort?: string | undefined;
|
|
12756
12753
|
basket?: string | undefined;
|
|
12757
12754
|
isFirstPage?: boolean | undefined;
|
|
12758
12755
|
strictRefine?: boolean | undefined;
|
|
@@ -12766,7 +12763,6 @@ declare class MoreComponent {
|
|
|
12766
12763
|
relevanceTransforms?: string | undefined;
|
|
12767
12764
|
removeDuplicates?: boolean | undefined;
|
|
12768
12765
|
queryId?: string | undefined;
|
|
12769
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12770
12766
|
orderBy?: string | undefined;
|
|
12771
12767
|
groupBy?: string | undefined;
|
|
12772
12768
|
neuralSearch?: boolean | undefined;
|
|
@@ -13312,7 +13308,7 @@ declare class RecentSearchesComponent {
|
|
|
13312
13308
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13313
13309
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13314
13310
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13315
|
-
userTheme: _angular_core.Signal<"
|
|
13311
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13316
13312
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13317
13313
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13318
13314
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13377,16 +13373,17 @@ declare class RecentSearchesComponent {
|
|
|
13377
13373
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13378
13374
|
private readonly savedSearchesService;
|
|
13379
13375
|
protected readonly queryParamsStore: {
|
|
13376
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13377
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13380
13378
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13379
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13381
13380
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13382
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13383
13381
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13384
13382
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13385
13383
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13386
13384
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13387
13385
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13388
13386
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13389
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13390
13387
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13391
13388
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13392
13389
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13400,7 +13397,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13400
13397
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13401
13398
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13402
13399
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13403
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13404
13400
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13405
13401
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13406
13402
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13432,16 +13428,17 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13432
13428
|
}> | null;
|
|
13433
13429
|
getQuery: () => _sinequa_atomic.Query;
|
|
13434
13430
|
} & _ngrx_signals.StateSource<{
|
|
13431
|
+
text?: string | undefined;
|
|
13432
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13435
13433
|
name?: string | undefined;
|
|
13434
|
+
sort?: string | undefined;
|
|
13436
13435
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13437
|
-
text?: string | undefined;
|
|
13438
13436
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13439
13437
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13440
13438
|
page?: number | undefined;
|
|
13441
13439
|
pageSize?: number | undefined;
|
|
13442
13440
|
tab?: string | undefined;
|
|
13443
13441
|
scope?: string | undefined;
|
|
13444
|
-
sort?: string | undefined;
|
|
13445
13442
|
basket?: string | undefined;
|
|
13446
13443
|
isFirstPage?: boolean | undefined;
|
|
13447
13444
|
strictRefine?: boolean | undefined;
|
|
@@ -13455,7 +13452,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13455
13452
|
relevanceTransforms?: string | undefined;
|
|
13456
13453
|
removeDuplicates?: boolean | undefined;
|
|
13457
13454
|
queryId?: string | undefined;
|
|
13458
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13459
13455
|
orderBy?: string | undefined;
|
|
13460
13456
|
groupBy?: string | undefined;
|
|
13461
13457
|
neuralSearch?: boolean | undefined;
|
|
@@ -13487,7 +13483,7 @@ declare class SavedSearchesComponent {
|
|
|
13487
13483
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13488
13484
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13489
13485
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13490
|
-
userTheme: _angular_core.Signal<"
|
|
13486
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13491
13487
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13492
13488
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13493
13489
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13626,7 +13622,7 @@ declare class UserProfileFormComponent {
|
|
|
13626
13622
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13627
13623
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13628
13624
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13629
|
-
userTheme: _angular_core.Signal<"
|
|
13625
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13630
13626
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13631
13627
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13632
13628
|
isDarkMode: _angular_core.Signal<boolean>;
|