@sinequa/atomic-angular 1.0.5 → 1.0.8
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 +82 -43
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +185 -162
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -115,15 +115,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
117
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
-
|
|
118
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
119
120
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
120
122
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
121
123
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
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;
|
|
@@ -170,15 +170,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
172
|
name?: string | undefined;
|
|
173
|
-
|
|
173
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
|
+
sort?: string | undefined;
|
|
174
175
|
text?: string | undefined;
|
|
176
|
+
action?: "" | "search" | "open" | "aggregate" | 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>;
|
|
@@ -264,15 +264,16 @@ declare class MissingTermsComponent {
|
|
|
264
264
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
265
265
|
queryParamsStore: {
|
|
266
266
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
|
-
|
|
267
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
268
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
268
269
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
270
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | 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;
|
|
@@ -319,15 +319,16 @@ declare class MissingTermsComponent {
|
|
|
319
319
|
getQuery: () => _sinequa_atomic.Query;
|
|
320
320
|
} & _ngrx_signals.StateSource<{
|
|
321
321
|
name?: string | undefined;
|
|
322
|
-
|
|
322
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
323
|
+
sort?: string | undefined;
|
|
323
324
|
text?: string | undefined;
|
|
325
|
+
action?: "" | "search" | "open" | "aggregate" | 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>;
|
|
@@ -1693,7 +1693,7 @@ declare const PrincipalStore: _angular_core.Type<{
|
|
|
1693
1693
|
param9: _angular_core.Signal<string>;
|
|
1694
1694
|
param10: _angular_core.Signal<string>;
|
|
1695
1695
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
1696
|
-
state: _angular_core.Signal<"
|
|
1696
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
1697
1697
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
1698
1698
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
1699
1699
|
initials: _angular_core.Signal<string>;
|
|
@@ -1747,15 +1747,16 @@ type QueryParams = {
|
|
|
1747
1747
|
};
|
|
1748
1748
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1749
1749
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1750
|
-
|
|
1750
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1751
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1751
1752
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1753
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | 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;
|
|
@@ -1794,15 +1794,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1794
1794
|
getQuery: () => _sinequa_atomic.Query;
|
|
1795
1795
|
} & _ngrx_signals.StateSource<{
|
|
1796
1796
|
name?: string | undefined;
|
|
1797
|
-
|
|
1797
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1798
|
+
sort?: string | undefined;
|
|
1798
1799
|
text?: string | undefined;
|
|
1800
|
+
action?: "" | "search" | "open" | "aggregate" | 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;
|
|
@@ -1827,15 +1827,16 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1827
1827
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1828
1828
|
state: {
|
|
1829
1829
|
name?: string | undefined;
|
|
1830
|
-
|
|
1830
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1831
|
+
sort?: string | undefined;
|
|
1831
1832
|
text?: string | undefined;
|
|
1833
|
+
action?: "" | "search" | "open" | "aggregate" | 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>;
|
|
@@ -2576,15 +2576,16 @@ declare class AggregationsService {
|
|
|
2576
2576
|
}>;
|
|
2577
2577
|
queryParamsStore: {
|
|
2578
2578
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2579
|
-
|
|
2579
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2580
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2580
2581
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2582
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | 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;
|
|
@@ -2631,15 +2631,16 @@ declare class AggregationsService {
|
|
|
2631
2631
|
getQuery: () => Query;
|
|
2632
2632
|
} & _ngrx_signals.StateSource<{
|
|
2633
2633
|
name?: string | undefined;
|
|
2634
|
-
|
|
2634
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2635
|
+
sort?: string | undefined;
|
|
2635
2636
|
text?: string | undefined;
|
|
2637
|
+
action?: "" | "search" | "open" | "aggregate" | 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;
|
|
@@ -2705,12 +2705,24 @@ declare class AggregationsService {
|
|
|
2705
2705
|
* @returns The updated tree node with parent nodes opened if necessary.
|
|
2706
2706
|
*/
|
|
2707
2707
|
private openParentNodes;
|
|
2708
|
-
getAuthorizedFilters(aggregations: Aggregation[] | undefined, includedFilters?: string[], excludedFilters?: string[]): {
|
|
2708
|
+
getAuthorizedFilters(aggregations: Aggregation[] | undefined, includedFilters?: string[], excludedFilters?: string[], homepageOnly?: boolean): {
|
|
2709
2709
|
field: string;
|
|
2710
2710
|
column: string;
|
|
2711
2711
|
name: string;
|
|
2712
2712
|
}[];
|
|
2713
|
+
/**
|
|
2714
|
+
* Determines whether a custom JSON filter refers to the given aggregation.
|
|
2715
|
+
*
|
|
2716
|
+
* Matches by `name` when it is defined, otherwise falls back to `column`,
|
|
2717
|
+
* resolving column/alias ambiguity through the app store's column map.
|
|
2718
|
+
*
|
|
2719
|
+
* @param filter - The filter object coming from the custom JSON.
|
|
2720
|
+
* @param agg - The aggregation returned by the backend.
|
|
2721
|
+
* @returns `true` if the filter refers to the aggregation.
|
|
2722
|
+
*/
|
|
2723
|
+
private matchesAggregation;
|
|
2713
2724
|
private getFilterCriteria;
|
|
2725
|
+
private getHomepageFilterCriteria;
|
|
2714
2726
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AggregationsService, never>;
|
|
2715
2727
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AggregationsService>;
|
|
2716
2728
|
}
|
|
@@ -2758,7 +2770,7 @@ declare class ApplicationService {
|
|
|
2758
2770
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2759
2771
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2760
2772
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2761
|
-
userTheme: _angular_core.Signal<"
|
|
2773
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2762
2774
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2763
2775
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2764
2776
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2830,7 +2842,7 @@ declare class ApplicationService {
|
|
|
2830
2842
|
param9: _angular_core.Signal<string>;
|
|
2831
2843
|
param10: _angular_core.Signal<string>;
|
|
2832
2844
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2833
|
-
state: _angular_core.Signal<"
|
|
2845
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
2834
2846
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2835
2847
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2836
2848
|
initials: _angular_core.Signal<string>;
|
|
@@ -3608,7 +3620,7 @@ declare class AutocompleteService {
|
|
|
3608
3620
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3609
3621
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3610
3622
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3611
|
-
userTheme: _angular_core.Signal<"
|
|
3623
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
3612
3624
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
3613
3625
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
3614
3626
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4275,15 +4287,16 @@ declare class PreviewService {
|
|
|
4275
4287
|
}>;
|
|
4276
4288
|
protected readonly queryParamsStore: {
|
|
4277
4289
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4278
|
-
|
|
4290
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4291
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4279
4292
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4293
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4280
4294
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4281
4295
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4282
4296
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4283
4297
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4284
4298
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4285
4299
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4286
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4287
4300
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4288
4301
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4289
4302
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4297,7 +4310,6 @@ declare class PreviewService {
|
|
|
4297
4310
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4298
4311
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4299
4312
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4300
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4301
4313
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4302
4314
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4303
4315
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4330,15 +4342,16 @@ declare class PreviewService {
|
|
|
4330
4342
|
getQuery: () => Query;
|
|
4331
4343
|
} & _ngrx_signals.StateSource<{
|
|
4332
4344
|
name?: string | undefined;
|
|
4333
|
-
|
|
4345
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4346
|
+
sort?: string | undefined;
|
|
4334
4347
|
text?: string | undefined;
|
|
4348
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4335
4349
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4336
4350
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4337
4351
|
page?: number | undefined;
|
|
4338
4352
|
pageSize?: number | undefined;
|
|
4339
4353
|
tab?: string | undefined;
|
|
4340
4354
|
scope?: string | undefined;
|
|
4341
|
-
sort?: string | undefined;
|
|
4342
4355
|
basket?: string | undefined;
|
|
4343
4356
|
isFirstPage?: boolean | undefined;
|
|
4344
4357
|
strictRefine?: boolean | undefined;
|
|
@@ -4352,7 +4365,6 @@ declare class PreviewService {
|
|
|
4352
4365
|
relevanceTransforms?: string | undefined;
|
|
4353
4366
|
removeDuplicates?: boolean | undefined;
|
|
4354
4367
|
queryId?: string | undefined;
|
|
4355
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4356
4368
|
orderBy?: string | undefined;
|
|
4357
4369
|
groupBy?: string | undefined;
|
|
4358
4370
|
neuralSearch?: boolean | undefined;
|
|
@@ -4857,7 +4869,7 @@ declare class SavedSearchesService {
|
|
|
4857
4869
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4858
4870
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4859
4871
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4860
|
-
userTheme: _angular_core.Signal<"
|
|
4872
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4861
4873
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4862
4874
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4863
4875
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4904,15 +4916,16 @@ declare class SavedSearchesService {
|
|
|
4904
4916
|
}>;
|
|
4905
4917
|
protected readonly queryParamsStore: {
|
|
4906
4918
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4907
|
-
|
|
4919
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4920
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4908
4921
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4922
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4909
4923
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4910
4924
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4911
4925
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4912
4926
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4913
4927
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4914
4928
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4915
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4916
4929
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4917
4930
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4918
4931
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4926,7 +4939,6 @@ declare class SavedSearchesService {
|
|
|
4926
4939
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4927
4940
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4928
4941
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4929
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4930
4942
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4931
4943
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4932
4944
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4959,15 +4971,16 @@ declare class SavedSearchesService {
|
|
|
4959
4971
|
getQuery: () => _sinequa_atomic.Query;
|
|
4960
4972
|
} & _ngrx_signals.StateSource<{
|
|
4961
4973
|
name?: string | undefined;
|
|
4962
|
-
|
|
4974
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4975
|
+
sort?: string | undefined;
|
|
4963
4976
|
text?: string | undefined;
|
|
4977
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4964
4978
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4965
4979
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4966
4980
|
page?: number | undefined;
|
|
4967
4981
|
pageSize?: number | undefined;
|
|
4968
4982
|
tab?: string | undefined;
|
|
4969
4983
|
scope?: string | undefined;
|
|
4970
|
-
sort?: string | undefined;
|
|
4971
4984
|
basket?: string | undefined;
|
|
4972
4985
|
isFirstPage?: boolean | undefined;
|
|
4973
4986
|
strictRefine?: boolean | undefined;
|
|
@@ -4981,7 +4994,6 @@ declare class SavedSearchesService {
|
|
|
4981
4994
|
relevanceTransforms?: string | undefined;
|
|
4982
4995
|
removeDuplicates?: boolean | undefined;
|
|
4983
4996
|
queryId?: string | undefined;
|
|
4984
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4985
4997
|
orderBy?: string | undefined;
|
|
4986
4998
|
groupBy?: string | undefined;
|
|
4987
4999
|
neuralSearch?: boolean | undefined;
|
|
@@ -5045,15 +5057,16 @@ declare class SearchService {
|
|
|
5045
5057
|
audit?: AuditEvents;
|
|
5046
5058
|
protected readonly queryParamsStore: {
|
|
5047
5059
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5048
|
-
|
|
5060
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5061
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5049
5062
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5063
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5050
5064
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5051
5065
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5052
5066
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5053
5067
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5054
5068
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5055
5069
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5056
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5057
5070
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5058
5071
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5059
5072
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5067,7 +5080,6 @@ declare class SearchService {
|
|
|
5067
5080
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5068
5081
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5069
5082
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5070
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5071
5083
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5072
5084
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5073
5085
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5100,15 +5112,16 @@ declare class SearchService {
|
|
|
5100
5112
|
getQuery: () => Query;
|
|
5101
5113
|
} & _ngrx_signals.StateSource<{
|
|
5102
5114
|
name?: string | undefined;
|
|
5103
|
-
|
|
5115
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5116
|
+
sort?: string | undefined;
|
|
5104
5117
|
text?: string | undefined;
|
|
5118
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5105
5119
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5106
5120
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5107
5121
|
page?: number | undefined;
|
|
5108
5122
|
pageSize?: number | undefined;
|
|
5109
5123
|
tab?: string | undefined;
|
|
5110
5124
|
scope?: string | undefined;
|
|
5111
|
-
sort?: string | undefined;
|
|
5112
5125
|
basket?: string | undefined;
|
|
5113
5126
|
isFirstPage?: boolean | undefined;
|
|
5114
5127
|
strictRefine?: boolean | undefined;
|
|
@@ -5122,7 +5135,6 @@ declare class SearchService {
|
|
|
5122
5135
|
relevanceTransforms?: string | undefined;
|
|
5123
5136
|
removeDuplicates?: boolean | undefined;
|
|
5124
5137
|
queryId?: string | undefined;
|
|
5125
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5126
5138
|
orderBy?: string | undefined;
|
|
5127
5139
|
groupBy?: string | undefined;
|
|
5128
5140
|
neuralSearch?: boolean | undefined;
|
|
@@ -5139,7 +5151,7 @@ declare class SearchService {
|
|
|
5139
5151
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5140
5152
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5141
5153
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5142
|
-
userTheme: _angular_core.Signal<"
|
|
5154
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5143
5155
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5144
5156
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5145
5157
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5236,15 +5248,16 @@ declare class SelectionService {
|
|
|
5236
5248
|
private readonly selectionStore;
|
|
5237
5249
|
queryParamsStore: {
|
|
5238
5250
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5239
|
-
|
|
5251
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5252
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5240
5253
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5254
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5241
5255
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5242
5256
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5243
5257
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5244
5258
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5245
5259
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5246
5260
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5247
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5248
5261
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5249
5262
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5250
5263
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5258,7 +5271,6 @@ declare class SelectionService {
|
|
|
5258
5271
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5259
5272
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5260
5273
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5261
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5262
5274
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5263
5275
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5264
5276
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5291,15 +5303,16 @@ declare class SelectionService {
|
|
|
5291
5303
|
getQuery: () => _sinequa_atomic.Query;
|
|
5292
5304
|
} & _ngrx_signals.StateSource<{
|
|
5293
5305
|
name?: string | undefined;
|
|
5294
|
-
|
|
5306
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5307
|
+
sort?: string | undefined;
|
|
5295
5308
|
text?: string | undefined;
|
|
5309
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5296
5310
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5297
5311
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5298
5312
|
page?: number | undefined;
|
|
5299
5313
|
pageSize?: number | undefined;
|
|
5300
5314
|
tab?: string | undefined;
|
|
5301
5315
|
scope?: string | undefined;
|
|
5302
|
-
sort?: string | undefined;
|
|
5303
5316
|
basket?: string | undefined;
|
|
5304
5317
|
isFirstPage?: boolean | undefined;
|
|
5305
5318
|
strictRefine?: boolean | undefined;
|
|
@@ -5313,7 +5326,6 @@ declare class SelectionService {
|
|
|
5313
5326
|
relevanceTransforms?: string | undefined;
|
|
5314
5327
|
removeDuplicates?: boolean | undefined;
|
|
5315
5328
|
queryId?: string | undefined;
|
|
5316
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5317
5329
|
orderBy?: string | undefined;
|
|
5318
5330
|
groupBy?: string | undefined;
|
|
5319
5331
|
neuralSearch?: boolean | undefined;
|
|
@@ -5460,15 +5472,16 @@ declare class NavbarTabsComponent {
|
|
|
5460
5472
|
readonly route: ActivatedRoute;
|
|
5461
5473
|
readonly queryParamsStore: {
|
|
5462
5474
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5463
|
-
|
|
5475
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5476
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5464
5477
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5478
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5465
5479
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5466
5480
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5467
5481
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5468
5482
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5469
5483
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5470
5484
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5471
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5472
5485
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5473
5486
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5474
5487
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5482,7 +5495,6 @@ declare class NavbarTabsComponent {
|
|
|
5482
5495
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5483
5496
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5484
5497
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5485
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5486
5498
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5487
5499
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5488
5500
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5515,15 +5527,16 @@ declare class NavbarTabsComponent {
|
|
|
5515
5527
|
getQuery: () => _sinequa_atomic.Query;
|
|
5516
5528
|
} & _ngrx_signals.StateSource<{
|
|
5517
5529
|
name?: string | undefined;
|
|
5518
|
-
|
|
5530
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5531
|
+
sort?: string | undefined;
|
|
5519
5532
|
text?: string | undefined;
|
|
5533
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5520
5534
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5521
5535
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5522
5536
|
page?: number | undefined;
|
|
5523
5537
|
pageSize?: number | undefined;
|
|
5524
5538
|
tab?: string | undefined;
|
|
5525
5539
|
scope?: string | undefined;
|
|
5526
|
-
sort?: string | undefined;
|
|
5527
5540
|
basket?: string | undefined;
|
|
5528
5541
|
isFirstPage?: boolean | undefined;
|
|
5529
5542
|
strictRefine?: boolean | undefined;
|
|
@@ -5537,7 +5550,6 @@ declare class NavbarTabsComponent {
|
|
|
5537
5550
|
relevanceTransforms?: string | undefined;
|
|
5538
5551
|
removeDuplicates?: boolean | undefined;
|
|
5539
5552
|
queryId?: string | undefined;
|
|
5540
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5541
5553
|
orderBy?: string | undefined;
|
|
5542
5554
|
groupBy?: string | undefined;
|
|
5543
5555
|
neuralSearch?: boolean | undefined;
|
|
@@ -5922,7 +5934,7 @@ declare class SourceComponent {
|
|
|
5922
5934
|
readonly iconDetails: _angular_core.Signal<{
|
|
5923
5935
|
iconClass: string;
|
|
5924
5936
|
iconPath?: string;
|
|
5925
|
-
}
|
|
5937
|
+
}>;
|
|
5926
5938
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SourceComponent, never>;
|
|
5927
5939
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SourceComponent, "source, Source", never, { "collection": { "alias": "collection"; "required": false; "isSignal": true; }; "connector": { "alias": "connector"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5928
5940
|
}
|
|
@@ -6010,7 +6022,7 @@ declare class ShowBookmarkDirective {
|
|
|
6010
6022
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6011
6023
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6012
6024
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6013
|
-
userTheme: _angular_core.Signal<"
|
|
6025
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6014
6026
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6015
6027
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6016
6028
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -6685,15 +6697,16 @@ declare class SponsoredResultsComponent {
|
|
|
6685
6697
|
}>;
|
|
6686
6698
|
queryParamStore: {
|
|
6687
6699
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6688
|
-
|
|
6700
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6701
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6689
6702
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6703
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6690
6704
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6691
6705
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6692
6706
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6693
6707
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6694
6708
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6695
6709
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6696
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6697
6710
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6698
6711
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6699
6712
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6707,7 +6720,6 @@ declare class SponsoredResultsComponent {
|
|
|
6707
6720
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6708
6721
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6709
6722
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6710
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6711
6723
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6712
6724
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6713
6725
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6740,15 +6752,16 @@ declare class SponsoredResultsComponent {
|
|
|
6740
6752
|
getQuery: () => _sinequa_atomic.Query;
|
|
6741
6753
|
} & _ngrx_signals.StateSource<{
|
|
6742
6754
|
name?: string | undefined;
|
|
6743
|
-
|
|
6755
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6756
|
+
sort?: string | undefined;
|
|
6744
6757
|
text?: string | undefined;
|
|
6758
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6745
6759
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6746
6760
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6747
6761
|
page?: number | undefined;
|
|
6748
6762
|
pageSize?: number | undefined;
|
|
6749
6763
|
tab?: string | undefined;
|
|
6750
6764
|
scope?: string | undefined;
|
|
6751
|
-
sort?: string | undefined;
|
|
6752
6765
|
basket?: string | undefined;
|
|
6753
6766
|
isFirstPage?: boolean | undefined;
|
|
6754
6767
|
strictRefine?: boolean | undefined;
|
|
@@ -6762,7 +6775,6 @@ declare class SponsoredResultsComponent {
|
|
|
6762
6775
|
relevanceTransforms?: string | undefined;
|
|
6763
6776
|
removeDuplicates?: boolean | undefined;
|
|
6764
6777
|
queryId?: string | undefined;
|
|
6765
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6766
6778
|
orderBy?: string | undefined;
|
|
6767
6779
|
groupBy?: string | undefined;
|
|
6768
6780
|
neuralSearch?: boolean | undefined;
|
|
@@ -7018,15 +7030,16 @@ declare class AggregationListComponent {
|
|
|
7018
7030
|
}>;
|
|
7019
7031
|
queryParamsStore: {
|
|
7020
7032
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7021
|
-
|
|
7033
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7034
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7022
7035
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7036
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7023
7037
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7024
7038
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7025
7039
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7026
7040
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7027
7041
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7028
7042
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7029
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7030
7043
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7031
7044
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7032
7045
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7040,7 +7053,6 @@ declare class AggregationListComponent {
|
|
|
7040
7053
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7041
7054
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7042
7055
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7043
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7044
7056
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7045
7057
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7046
7058
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7073,15 +7085,16 @@ declare class AggregationListComponent {
|
|
|
7073
7085
|
getQuery: () => Query;
|
|
7074
7086
|
} & _ngrx_signals.StateSource<{
|
|
7075
7087
|
name?: string | undefined;
|
|
7076
|
-
|
|
7088
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7089
|
+
sort?: string | undefined;
|
|
7077
7090
|
text?: string | undefined;
|
|
7091
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7078
7092
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7079
7093
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7080
7094
|
page?: number | undefined;
|
|
7081
7095
|
pageSize?: number | undefined;
|
|
7082
7096
|
tab?: string | undefined;
|
|
7083
7097
|
scope?: string | undefined;
|
|
7084
|
-
sort?: string | undefined;
|
|
7085
7098
|
basket?: string | undefined;
|
|
7086
7099
|
isFirstPage?: boolean | undefined;
|
|
7087
7100
|
strictRefine?: boolean | undefined;
|
|
@@ -7095,7 +7108,6 @@ declare class AggregationListComponent {
|
|
|
7095
7108
|
relevanceTransforms?: string | undefined;
|
|
7096
7109
|
removeDuplicates?: boolean | undefined;
|
|
7097
7110
|
queryId?: string | undefined;
|
|
7098
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7099
7111
|
orderBy?: string | undefined;
|
|
7100
7112
|
groupBy?: string | undefined;
|
|
7101
7113
|
neuralSearch?: boolean | undefined;
|
|
@@ -7640,15 +7652,16 @@ declare class AdvancedSearch {
|
|
|
7640
7652
|
}>;
|
|
7641
7653
|
protected readonly queryParamsStore: {
|
|
7642
7654
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7643
|
-
|
|
7655
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7656
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7644
7657
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7658
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7645
7659
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7646
7660
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7647
7661
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7648
7662
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7649
7663
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7650
7664
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7651
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7652
7665
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7653
7666
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7654
7667
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7662,7 +7675,6 @@ declare class AdvancedSearch {
|
|
|
7662
7675
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7663
7676
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7664
7677
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7665
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7666
7678
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7667
7679
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7668
7680
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7695,15 +7707,16 @@ declare class AdvancedSearch {
|
|
|
7695
7707
|
getQuery: () => _sinequa_atomic.Query;
|
|
7696
7708
|
} & _ngrx_signals.StateSource<{
|
|
7697
7709
|
name?: string | undefined;
|
|
7698
|
-
|
|
7710
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7711
|
+
sort?: string | undefined;
|
|
7699
7712
|
text?: string | undefined;
|
|
7713
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7700
7714
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7701
7715
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7702
7716
|
page?: number | undefined;
|
|
7703
7717
|
pageSize?: number | undefined;
|
|
7704
7718
|
tab?: string | undefined;
|
|
7705
7719
|
scope?: string | undefined;
|
|
7706
|
-
sort?: string | undefined;
|
|
7707
7720
|
basket?: string | undefined;
|
|
7708
7721
|
isFirstPage?: boolean | undefined;
|
|
7709
7722
|
strictRefine?: boolean | undefined;
|
|
@@ -7717,7 +7730,6 @@ declare class AdvancedSearch {
|
|
|
7717
7730
|
relevanceTransforms?: string | undefined;
|
|
7718
7731
|
removeDuplicates?: boolean | undefined;
|
|
7719
7732
|
queryId?: string | undefined;
|
|
7720
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7721
7733
|
orderBy?: string | undefined;
|
|
7722
7734
|
groupBy?: string | undefined;
|
|
7723
7735
|
neuralSearch?: boolean | undefined;
|
|
@@ -8104,15 +8116,16 @@ declare class ArticleLabels {
|
|
|
8104
8116
|
declare class ArticleSimilarDocuments {
|
|
8105
8117
|
protected readonly queryParamsStore: {
|
|
8106
8118
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8107
|
-
|
|
8119
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8120
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8108
8121
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8122
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8109
8123
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8110
8124
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8111
8125
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8112
8126
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8113
8127
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8114
8128
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8115
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8116
8129
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8117
8130
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8118
8131
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8126,7 +8139,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8126
8139
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8127
8140
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8128
8141
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8129
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8130
8142
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8131
8143
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8132
8144
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8159,15 +8171,16 @@ declare class ArticleSimilarDocuments {
|
|
|
8159
8171
|
getQuery: () => _sinequa_atomic.Query;
|
|
8160
8172
|
} & _ngrx_signals.StateSource<{
|
|
8161
8173
|
name?: string | undefined;
|
|
8162
|
-
|
|
8174
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8175
|
+
sort?: string | undefined;
|
|
8163
8176
|
text?: string | undefined;
|
|
8177
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8164
8178
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8165
8179
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8166
8180
|
page?: number | undefined;
|
|
8167
8181
|
pageSize?: number | undefined;
|
|
8168
8182
|
tab?: string | undefined;
|
|
8169
8183
|
scope?: string | undefined;
|
|
8170
|
-
sort?: string | undefined;
|
|
8171
8184
|
basket?: string | undefined;
|
|
8172
8185
|
isFirstPage?: boolean | undefined;
|
|
8173
8186
|
strictRefine?: boolean | undefined;
|
|
@@ -8181,7 +8194,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8181
8194
|
relevanceTransforms?: string | undefined;
|
|
8182
8195
|
removeDuplicates?: boolean | undefined;
|
|
8183
8196
|
queryId?: string | undefined;
|
|
8184
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8185
8197
|
orderBy?: string | undefined;
|
|
8186
8198
|
groupBy?: string | undefined;
|
|
8187
8199
|
neuralSearch?: boolean | undefined;
|
|
@@ -8766,15 +8778,16 @@ declare class AdvancedSearchComponent {
|
|
|
8766
8778
|
}>;
|
|
8767
8779
|
protected readonly queryParamsStore: {
|
|
8768
8780
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8769
|
-
|
|
8781
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8782
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8770
8783
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8784
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8771
8785
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8772
8786
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8773
8787
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8774
8788
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8775
8789
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8776
8790
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8777
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8778
8791
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8779
8792
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8780
8793
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8788,7 +8801,6 @@ declare class AdvancedSearchComponent {
|
|
|
8788
8801
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8789
8802
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8790
8803
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8791
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8792
8804
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8793
8805
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8794
8806
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8821,15 +8833,16 @@ declare class AdvancedSearchComponent {
|
|
|
8821
8833
|
getQuery: () => _sinequa_atomic.Query;
|
|
8822
8834
|
} & _ngrx_signals.StateSource<{
|
|
8823
8835
|
name?: string | undefined;
|
|
8824
|
-
|
|
8836
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8837
|
+
sort?: string | undefined;
|
|
8825
8838
|
text?: string | undefined;
|
|
8839
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8826
8840
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8827
8841
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8828
8842
|
page?: number | undefined;
|
|
8829
8843
|
pageSize?: number | undefined;
|
|
8830
8844
|
tab?: string | undefined;
|
|
8831
8845
|
scope?: string | undefined;
|
|
8832
|
-
sort?: string | undefined;
|
|
8833
8846
|
basket?: string | undefined;
|
|
8834
8847
|
isFirstPage?: boolean | undefined;
|
|
8835
8848
|
strictRefine?: boolean | undefined;
|
|
@@ -8843,7 +8856,6 @@ declare class AdvancedSearchComponent {
|
|
|
8843
8856
|
relevanceTransforms?: string | undefined;
|
|
8844
8857
|
removeDuplicates?: boolean | undefined;
|
|
8845
8858
|
queryId?: string | undefined;
|
|
8846
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8847
8859
|
orderBy?: string | undefined;
|
|
8848
8860
|
groupBy?: string | undefined;
|
|
8849
8861
|
neuralSearch?: boolean | undefined;
|
|
@@ -9222,15 +9234,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9222
9234
|
}>;
|
|
9223
9235
|
queryParamsStore: {
|
|
9224
9236
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9225
|
-
|
|
9237
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9238
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9226
9239
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9240
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9227
9241
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9228
9242
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9229
9243
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9230
9244
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9231
9245
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9232
9246
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9233
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9234
9247
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9235
9248
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9236
9249
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9244,7 +9257,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9244
9257
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9245
9258
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9246
9259
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9247
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9248
9260
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9249
9261
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9250
9262
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9277,15 +9289,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9277
9289
|
getQuery: () => _sinequa_atomic.Query;
|
|
9278
9290
|
} & _ngrx_signals.StateSource<{
|
|
9279
9291
|
name?: string | undefined;
|
|
9280
|
-
|
|
9292
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9293
|
+
sort?: string | undefined;
|
|
9281
9294
|
text?: string | undefined;
|
|
9295
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9282
9296
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9283
9297
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9284
9298
|
page?: number | undefined;
|
|
9285
9299
|
pageSize?: number | undefined;
|
|
9286
9300
|
tab?: string | undefined;
|
|
9287
9301
|
scope?: string | undefined;
|
|
9288
|
-
sort?: string | undefined;
|
|
9289
9302
|
basket?: string | undefined;
|
|
9290
9303
|
isFirstPage?: boolean | undefined;
|
|
9291
9304
|
strictRefine?: boolean | undefined;
|
|
@@ -9299,7 +9312,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9299
9312
|
relevanceTransforms?: string | undefined;
|
|
9300
9313
|
removeDuplicates?: boolean | undefined;
|
|
9301
9314
|
queryId?: string | undefined;
|
|
9302
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9303
9315
|
orderBy?: string | undefined;
|
|
9304
9316
|
groupBy?: string | undefined;
|
|
9305
9317
|
neuralSearch?: boolean | undefined;
|
|
@@ -9420,15 +9432,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9420
9432
|
readonly exportService: ExportService;
|
|
9421
9433
|
readonly queryParamsStore: {
|
|
9422
9434
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9423
|
-
|
|
9435
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9436
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9424
9437
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9438
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9425
9439
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9426
9440
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9427
9441
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9428
9442
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9429
9443
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9430
9444
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9431
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9432
9445
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9433
9446
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9434
9447
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9442,7 +9455,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9442
9455
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9443
9456
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9444
9457
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9445
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9446
9458
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9447
9459
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9448
9460
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9475,15 +9487,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9475
9487
|
getQuery: () => _sinequa_atomic.Query;
|
|
9476
9488
|
} & _ngrx_signals.StateSource<{
|
|
9477
9489
|
name?: string | undefined;
|
|
9478
|
-
|
|
9490
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9491
|
+
sort?: string | undefined;
|
|
9479
9492
|
text?: string | undefined;
|
|
9493
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9480
9494
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9481
9495
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9482
9496
|
page?: number | undefined;
|
|
9483
9497
|
pageSize?: number | undefined;
|
|
9484
9498
|
tab?: string | undefined;
|
|
9485
9499
|
scope?: string | undefined;
|
|
9486
|
-
sort?: string | undefined;
|
|
9487
9500
|
basket?: string | undefined;
|
|
9488
9501
|
isFirstPage?: boolean | undefined;
|
|
9489
9502
|
strictRefine?: boolean | undefined;
|
|
@@ -9497,7 +9510,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9497
9510
|
relevanceTransforms?: string | undefined;
|
|
9498
9511
|
removeDuplicates?: boolean | undefined;
|
|
9499
9512
|
queryId?: string | undefined;
|
|
9500
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9501
9513
|
orderBy?: string | undefined;
|
|
9502
9514
|
groupBy?: string | undefined;
|
|
9503
9515
|
neuralSearch?: boolean | undefined;
|
|
@@ -9852,15 +9864,16 @@ declare class SearchFeedbackComponent {
|
|
|
9852
9864
|
readonly auditService: AuditService;
|
|
9853
9865
|
protected readonly queryParamsStore: {
|
|
9854
9866
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9855
|
-
|
|
9867
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9868
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9856
9869
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9870
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9857
9871
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9858
9872
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9859
9873
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9860
9874
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9861
9875
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9862
9876
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9863
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9864
9877
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9865
9878
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9866
9879
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9874,7 +9887,6 @@ declare class SearchFeedbackComponent {
|
|
|
9874
9887
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9875
9888
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9876
9889
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9877
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9878
9890
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9879
9891
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9880
9892
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9907,15 +9919,16 @@ declare class SearchFeedbackComponent {
|
|
|
9907
9919
|
getQuery: () => _sinequa_atomic.Query;
|
|
9908
9920
|
} & _ngrx_signals.StateSource<{
|
|
9909
9921
|
name?: string | undefined;
|
|
9910
|
-
|
|
9922
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9923
|
+
sort?: string | undefined;
|
|
9911
9924
|
text?: string | undefined;
|
|
9925
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9912
9926
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9913
9927
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9914
9928
|
page?: number | undefined;
|
|
9915
9929
|
pageSize?: number | undefined;
|
|
9916
9930
|
tab?: string | undefined;
|
|
9917
9931
|
scope?: string | undefined;
|
|
9918
|
-
sort?: string | undefined;
|
|
9919
9932
|
basket?: string | undefined;
|
|
9920
9933
|
isFirstPage?: boolean | undefined;
|
|
9921
9934
|
strictRefine?: boolean | undefined;
|
|
@@ -9929,7 +9942,6 @@ declare class SearchFeedbackComponent {
|
|
|
9929
9942
|
relevanceTransforms?: string | undefined;
|
|
9930
9943
|
removeDuplicates?: boolean | undefined;
|
|
9931
9944
|
queryId?: string | undefined;
|
|
9932
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9933
9945
|
orderBy?: string | undefined;
|
|
9934
9946
|
groupBy?: string | undefined;
|
|
9935
9947
|
neuralSearch?: boolean | undefined;
|
|
@@ -9967,15 +9979,16 @@ declare class AggregationTreeComponent {
|
|
|
9967
9979
|
}>;
|
|
9968
9980
|
queryParamsStore: {
|
|
9969
9981
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9970
|
-
|
|
9982
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9983
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9971
9984
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9985
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9972
9986
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9973
9987
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9974
9988
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9975
9989
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9976
9990
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9977
9991
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9978
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9979
9992
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9980
9993
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9981
9994
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9989,7 +10002,6 @@ declare class AggregationTreeComponent {
|
|
|
9989
10002
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9990
10003
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9991
10004
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9992
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9993
10005
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9994
10006
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9995
10007
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10022,15 +10034,16 @@ declare class AggregationTreeComponent {
|
|
|
10022
10034
|
getQuery: () => Query;
|
|
10023
10035
|
} & _ngrx_signals.StateSource<{
|
|
10024
10036
|
name?: string | undefined;
|
|
10025
|
-
|
|
10037
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10038
|
+
sort?: string | undefined;
|
|
10026
10039
|
text?: string | undefined;
|
|
10040
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10027
10041
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10028
10042
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10029
10043
|
page?: number | undefined;
|
|
10030
10044
|
pageSize?: number | undefined;
|
|
10031
10045
|
tab?: string | undefined;
|
|
10032
10046
|
scope?: string | undefined;
|
|
10033
|
-
sort?: string | undefined;
|
|
10034
10047
|
basket?: string | undefined;
|
|
10035
10048
|
isFirstPage?: boolean | undefined;
|
|
10036
10049
|
strictRefine?: boolean | undefined;
|
|
@@ -10044,7 +10057,6 @@ declare class AggregationTreeComponent {
|
|
|
10044
10057
|
relevanceTransforms?: string | undefined;
|
|
10045
10058
|
removeDuplicates?: boolean | undefined;
|
|
10046
10059
|
queryId?: string | undefined;
|
|
10047
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10048
10060
|
orderBy?: string | undefined;
|
|
10049
10061
|
groupBy?: string | undefined;
|
|
10050
10062
|
neuralSearch?: boolean | undefined;
|
|
@@ -11011,7 +11023,7 @@ declare class FilterButtonComponent {
|
|
|
11011
11023
|
position: _angular_core.InputSignal<Placement>;
|
|
11012
11024
|
offset: _angular_core.InputSignal<number>;
|
|
11013
11025
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11014
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11026
|
+
protected variant: _angular_core.WritableSignal<"icon" | "default" | "none" | "secondary" | "destructive" | "ai" | "primary" | "link" | "accent" | "outline" | "ghost" | "light-accent" | "tertiary" | null | undefined>;
|
|
11015
11027
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11016
11028
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11017
11029
|
protected nativeElement: any;
|
|
@@ -11026,15 +11038,16 @@ declare class FilterButtonComponent {
|
|
|
11026
11038
|
}>;
|
|
11027
11039
|
protected queryParamsStore: {
|
|
11028
11040
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11029
|
-
|
|
11041
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11042
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11030
11043
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11044
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11031
11045
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11032
11046
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11033
11047
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11034
11048
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11035
11049
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11036
11050
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11037
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11038
11051
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11039
11052
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11040
11053
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11048,7 +11061,6 @@ declare class FilterButtonComponent {
|
|
|
11048
11061
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11049
11062
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11050
11063
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11051
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11052
11064
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11053
11065
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11054
11066
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11081,15 +11093,16 @@ declare class FilterButtonComponent {
|
|
|
11081
11093
|
getQuery: () => _sinequa_atomic.Query;
|
|
11082
11094
|
} & _ngrx_signals.StateSource<{
|
|
11083
11095
|
name?: string | undefined;
|
|
11084
|
-
|
|
11096
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11097
|
+
sort?: string | undefined;
|
|
11085
11098
|
text?: string | undefined;
|
|
11099
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11086
11100
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11087
11101
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11088
11102
|
page?: number | undefined;
|
|
11089
11103
|
pageSize?: number | undefined;
|
|
11090
11104
|
tab?: string | undefined;
|
|
11091
11105
|
scope?: string | undefined;
|
|
11092
|
-
sort?: string | undefined;
|
|
11093
11106
|
basket?: string | undefined;
|
|
11094
11107
|
isFirstPage?: boolean | undefined;
|
|
11095
11108
|
strictRefine?: boolean | undefined;
|
|
@@ -11103,7 +11116,6 @@ declare class FilterButtonComponent {
|
|
|
11103
11116
|
relevanceTransforms?: string | undefined;
|
|
11104
11117
|
removeDuplicates?: boolean | undefined;
|
|
11105
11118
|
queryId?: string | undefined;
|
|
11106
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11107
11119
|
orderBy?: string | undefined;
|
|
11108
11120
|
groupBy?: string | undefined;
|
|
11109
11121
|
neuralSearch?: boolean | undefined;
|
|
@@ -11740,15 +11752,16 @@ declare class MoreButtonComponent {
|
|
|
11740
11752
|
}>;
|
|
11741
11753
|
queryParamsStore: {
|
|
11742
11754
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11743
|
-
|
|
11755
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11756
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11744
11757
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11758
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11745
11759
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11746
11760
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11747
11761
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11748
11762
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11749
11763
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11750
11764
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11751
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11752
11765
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11753
11766
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11754
11767
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11762,7 +11775,6 @@ declare class MoreButtonComponent {
|
|
|
11762
11775
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11763
11776
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11764
11777
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11765
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11766
11778
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11767
11779
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11768
11780
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11795,15 +11807,16 @@ declare class MoreButtonComponent {
|
|
|
11795
11807
|
getQuery: () => _sinequa_atomic.Query;
|
|
11796
11808
|
} & _ngrx_signals.StateSource<{
|
|
11797
11809
|
name?: string | undefined;
|
|
11798
|
-
|
|
11810
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11811
|
+
sort?: string | undefined;
|
|
11799
11812
|
text?: string | undefined;
|
|
11813
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11800
11814
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11801
11815
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11802
11816
|
page?: number | undefined;
|
|
11803
11817
|
pageSize?: number | undefined;
|
|
11804
11818
|
tab?: string | undefined;
|
|
11805
11819
|
scope?: string | undefined;
|
|
11806
|
-
sort?: string | undefined;
|
|
11807
11820
|
basket?: string | undefined;
|
|
11808
11821
|
isFirstPage?: boolean | undefined;
|
|
11809
11822
|
strictRefine?: boolean | undefined;
|
|
@@ -11817,7 +11830,6 @@ declare class MoreButtonComponent {
|
|
|
11817
11830
|
relevanceTransforms?: string | undefined;
|
|
11818
11831
|
removeDuplicates?: boolean | undefined;
|
|
11819
11832
|
queryId?: string | undefined;
|
|
11820
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11821
11833
|
orderBy?: string | undefined;
|
|
11822
11834
|
groupBy?: string | undefined;
|
|
11823
11835
|
neuralSearch?: boolean | undefined;
|
|
@@ -11832,9 +11844,10 @@ declare class MoreButtonComponent {
|
|
|
11832
11844
|
includedFilters: _angular_core.InputSignal<string[]>;
|
|
11833
11845
|
excludedFilters: _angular_core.InputSignal<string[]>;
|
|
11834
11846
|
aggregations: _angular_core.InputSignal<Aggregation[] | undefined>;
|
|
11847
|
+
homepage: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
11835
11848
|
totalFiltersCount: _angular_core.Signal<number>;
|
|
11836
11849
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MoreButtonComponent, never>;
|
|
11837
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MoreButtonComponent, "more-button, MoreButton", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "includedFilters": { "alias": "includedFilters"; "required": false; "isSignal": true; }; "excludedFilters": { "alias": "excludedFilters"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11850
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MoreButtonComponent, "more-button, MoreButton", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "includedFilters": { "alias": "includedFilters"; "required": false; "isSignal": true; }; "excludedFilters": { "alias": "excludedFilters"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; "homepage": { "alias": "homepage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11838
11851
|
}
|
|
11839
11852
|
|
|
11840
11853
|
declare class FiltersBarComponent {
|
|
@@ -11873,6 +11886,15 @@ declare class FiltersBarComponent {
|
|
|
11873
11886
|
* @default true
|
|
11874
11887
|
*/
|
|
11875
11888
|
showMoreFiltersButton: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
11889
|
+
/**
|
|
11890
|
+
* When enabled, only the filters flagged with `homepage: true` in the "filters" custom JSON
|
|
11891
|
+
* are displayed. If no filter is flagged, the bar shows no filters.
|
|
11892
|
+
*
|
|
11893
|
+
* Accepts a boolean value or a string that can be transformed to a boolean.
|
|
11894
|
+
*
|
|
11895
|
+
* @default false
|
|
11896
|
+
*/
|
|
11897
|
+
homepage: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
11876
11898
|
direction: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
11877
11899
|
/**
|
|
11878
11900
|
* The distance in pixels between the popover and its trigger element.
|
|
@@ -12215,15 +12237,16 @@ declare class FiltersBarComponent {
|
|
|
12215
12237
|
}>;
|
|
12216
12238
|
protected queryParamsStore: {
|
|
12217
12239
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12218
|
-
|
|
12240
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12241
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12219
12242
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12220
12244
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12221
12245
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12222
12246
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12223
12247
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12224
12248
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12225
12249
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12226
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12227
12250
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12228
12251
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12229
12252
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12237,7 +12260,6 @@ declare class FiltersBarComponent {
|
|
|
12237
12260
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12238
12261
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12239
12262
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12240
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12241
12263
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12242
12264
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
12265
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12270,15 +12292,16 @@ declare class FiltersBarComponent {
|
|
|
12270
12292
|
getQuery: () => _sinequa_atomic.Query;
|
|
12271
12293
|
} & _ngrx_signals.StateSource<{
|
|
12272
12294
|
name?: string | undefined;
|
|
12273
|
-
|
|
12295
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12296
|
+
sort?: string | undefined;
|
|
12274
12297
|
text?: string | undefined;
|
|
12298
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12275
12299
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12276
12300
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12277
12301
|
page?: number | undefined;
|
|
12278
12302
|
pageSize?: number | undefined;
|
|
12279
12303
|
tab?: string | undefined;
|
|
12280
12304
|
scope?: string | undefined;
|
|
12281
|
-
sort?: string | undefined;
|
|
12282
12305
|
basket?: string | undefined;
|
|
12283
12306
|
isFirstPage?: boolean | undefined;
|
|
12284
12307
|
strictRefine?: boolean | undefined;
|
|
@@ -12292,7 +12315,6 @@ declare class FiltersBarComponent {
|
|
|
12292
12315
|
relevanceTransforms?: string | undefined;
|
|
12293
12316
|
removeDuplicates?: boolean | undefined;
|
|
12294
12317
|
queryId?: string | undefined;
|
|
12295
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12296
12318
|
orderBy?: string | undefined;
|
|
12297
12319
|
groupBy?: string | undefined;
|
|
12298
12320
|
neuralSearch?: boolean | undefined;
|
|
@@ -12369,7 +12391,7 @@ declare class FiltersBarComponent {
|
|
|
12369
12391
|
*/
|
|
12370
12392
|
handleClick(event: MouseEvent): void;
|
|
12371
12393
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FiltersBarComponent, never>;
|
|
12372
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FiltersBarComponent, "filters-bar, FiltersBar, filtersbar", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "morePosition": { "alias": "morePosition"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; "includeFilters": { "alias": "includeFilters"; "required": false; "isSignal": true; }; "excludeFilters": { "alias": "excludeFilters"; "required": false; "isSignal": true; }; "filtersCount": { "alias": "filtersCount"; "required": false; "isSignal": true; }; "showMoreFiltersButton": { "alias": "showMoreFiltersButton"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "expandedLevel": { "alias": "expandedLevel"; "required": false; "isSignal": true; }; }, { "onClearFilters": "onClearFilters"; "onClearBasket": "onClearBasket"; }, never, never, true, never>;
|
|
12394
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FiltersBarComponent, "filters-bar, FiltersBar, filtersbar", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "morePosition": { "alias": "morePosition"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; "includeFilters": { "alias": "includeFilters"; "required": false; "isSignal": true; }; "excludeFilters": { "alias": "excludeFilters"; "required": false; "isSignal": true; }; "filtersCount": { "alias": "filtersCount"; "required": false; "isSignal": true; }; "showMoreFiltersButton": { "alias": "showMoreFiltersButton"; "required": false; "isSignal": true; }; "homepage": { "alias": "homepage"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "expandedLevel": { "alias": "expandedLevel"; "required": false; "isSignal": true; }; }, { "onClearFilters": "onClearFilters"; "onClearBasket": "onClearBasket"; }, never, never, true, never>;
|
|
12373
12395
|
}
|
|
12374
12396
|
|
|
12375
12397
|
declare class MoreComponent {
|
|
@@ -12378,6 +12400,7 @@ declare class MoreComponent {
|
|
|
12378
12400
|
includedFilters: _angular_core.InputSignal<string[]>;
|
|
12379
12401
|
excludedFilters: _angular_core.InputSignal<string[]>;
|
|
12380
12402
|
aggregations: _angular_core.InputSignal<Aggregation[] | undefined>;
|
|
12403
|
+
homepage: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
12381
12404
|
appStore: {
|
|
12382
12405
|
name: _angular_core.Signal<string>;
|
|
12383
12406
|
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
@@ -12696,15 +12719,16 @@ declare class MoreComponent {
|
|
|
12696
12719
|
}>;
|
|
12697
12720
|
queryParamsStore: {
|
|
12698
12721
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12699
|
-
|
|
12722
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12723
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12700
12724
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12725
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12701
12726
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12702
12727
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12703
12728
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12704
12729
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12705
12730
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12706
12731
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12707
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12708
12732
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12709
12733
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12710
12734
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12718,7 +12742,6 @@ declare class MoreComponent {
|
|
|
12718
12742
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12719
12743
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12720
12744
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12721
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12722
12745
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12723
12746
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12724
12747
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12751,15 +12774,16 @@ declare class MoreComponent {
|
|
|
12751
12774
|
getQuery: () => _sinequa_atomic.Query;
|
|
12752
12775
|
} & _ngrx_signals.StateSource<{
|
|
12753
12776
|
name?: string | undefined;
|
|
12754
|
-
|
|
12777
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12778
|
+
sort?: string | undefined;
|
|
12755
12779
|
text?: string | undefined;
|
|
12780
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12756
12781
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12757
12782
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12758
12783
|
page?: number | undefined;
|
|
12759
12784
|
pageSize?: number | undefined;
|
|
12760
12785
|
tab?: string | undefined;
|
|
12761
12786
|
scope?: string | undefined;
|
|
12762
|
-
sort?: string | undefined;
|
|
12763
12787
|
basket?: string | undefined;
|
|
12764
12788
|
isFirstPage?: boolean | undefined;
|
|
12765
12789
|
strictRefine?: boolean | undefined;
|
|
@@ -12773,7 +12797,6 @@ declare class MoreComponent {
|
|
|
12773
12797
|
relevanceTransforms?: string | undefined;
|
|
12774
12798
|
removeDuplicates?: boolean | undefined;
|
|
12775
12799
|
queryId?: string | undefined;
|
|
12776
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12777
12800
|
orderBy?: string | undefined;
|
|
12778
12801
|
groupBy?: string | undefined;
|
|
12779
12802
|
neuralSearch?: boolean | undefined;
|
|
@@ -12810,7 +12833,7 @@ declare class MoreComponent {
|
|
|
12810
12833
|
*/
|
|
12811
12834
|
hasFilters(aggregation: Aggregation): boolean;
|
|
12812
12835
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MoreComponent, never>;
|
|
12813
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MoreComponent, "more, More", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "includedFilters": { "alias": "includedFilters"; "required": false; "isSignal": true; }; "excludedFilters": { "alias": "excludedFilters"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12836
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MoreComponent, "more, More", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "includedFilters": { "alias": "includedFilters"; "required": false; "isSignal": true; }; "excludedFilters": { "alias": "excludedFilters"; "required": false; "isSignal": true; }; "aggregations": { "alias": "aggregations"; "required": false; "isSignal": true; }; "homepage": { "alias": "homepage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12814
12837
|
}
|
|
12815
12838
|
|
|
12816
12839
|
/**
|
|
@@ -13319,7 +13342,7 @@ declare class RecentSearchesComponent {
|
|
|
13319
13342
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13320
13343
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13321
13344
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13322
|
-
userTheme: _angular_core.Signal<"
|
|
13345
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13323
13346
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13324
13347
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13325
13348
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13385,15 +13408,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13385
13408
|
private readonly savedSearchesService;
|
|
13386
13409
|
protected readonly queryParamsStore: {
|
|
13387
13410
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13388
|
-
|
|
13411
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13412
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13389
13413
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13414
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13390
13415
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13391
13416
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13392
13417
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13393
13418
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13394
13419
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13395
13420
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13396
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13397
13421
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13398
13422
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13399
13423
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13407,7 +13431,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13407
13431
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13408
13432
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13409
13433
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13410
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13411
13434
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13412
13435
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13413
13436
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13440,15 +13463,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13440
13463
|
getQuery: () => _sinequa_atomic.Query;
|
|
13441
13464
|
} & _ngrx_signals.StateSource<{
|
|
13442
13465
|
name?: string | undefined;
|
|
13443
|
-
|
|
13466
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13467
|
+
sort?: string | undefined;
|
|
13444
13468
|
text?: string | undefined;
|
|
13469
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13445
13470
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13446
13471
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13447
13472
|
page?: number | undefined;
|
|
13448
13473
|
pageSize?: number | undefined;
|
|
13449
13474
|
tab?: string | undefined;
|
|
13450
13475
|
scope?: string | undefined;
|
|
13451
|
-
sort?: string | undefined;
|
|
13452
13476
|
basket?: string | undefined;
|
|
13453
13477
|
isFirstPage?: boolean | undefined;
|
|
13454
13478
|
strictRefine?: boolean | undefined;
|
|
@@ -13462,7 +13486,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13462
13486
|
relevanceTransforms?: string | undefined;
|
|
13463
13487
|
removeDuplicates?: boolean | undefined;
|
|
13464
13488
|
queryId?: string | undefined;
|
|
13465
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13466
13489
|
orderBy?: string | undefined;
|
|
13467
13490
|
groupBy?: string | undefined;
|
|
13468
13491
|
neuralSearch?: boolean | undefined;
|
|
@@ -13494,7 +13517,7 @@ declare class SavedSearchesComponent {
|
|
|
13494
13517
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13495
13518
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13496
13519
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13497
|
-
userTheme: _angular_core.Signal<"
|
|
13520
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13498
13521
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13499
13522
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13500
13523
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13589,7 +13612,7 @@ declare class UserProfileFormComponent {
|
|
|
13589
13612
|
param9: _angular_core.Signal<string>;
|
|
13590
13613
|
param10: _angular_core.Signal<string>;
|
|
13591
13614
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
13592
|
-
state: _angular_core.Signal<"
|
|
13615
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
13593
13616
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
13594
13617
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
13595
13618
|
initials: _angular_core.Signal<string>;
|
|
@@ -13633,7 +13656,7 @@ declare class UserProfileFormComponent {
|
|
|
13633
13656
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13634
13657
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13635
13658
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13636
|
-
userTheme: _angular_core.Signal<"
|
|
13659
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13637
13660
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13638
13661
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13639
13662
|
isDarkMode: _angular_core.Signal<boolean>;
|