@sinequa/atomic-angular 1.0.7 → 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 +13 -2
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +157 -157
- 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;
|
|
@@ -2770,7 +2770,7 @@ declare class ApplicationService {
|
|
|
2770
2770
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2771
2771
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2772
2772
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2773
|
-
userTheme: _angular_core.Signal<"
|
|
2773
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2774
2774
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
2775
2775
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
2776
2776
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -2842,7 +2842,7 @@ declare class ApplicationService {
|
|
|
2842
2842
|
param9: _angular_core.Signal<string>;
|
|
2843
2843
|
param10: _angular_core.Signal<string>;
|
|
2844
2844
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2845
|
-
state: _angular_core.Signal<"
|
|
2845
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
2846
2846
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2847
2847
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2848
2848
|
initials: _angular_core.Signal<string>;
|
|
@@ -3620,7 +3620,7 @@ declare class AutocompleteService {
|
|
|
3620
3620
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3621
3621
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3622
3622
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3623
|
-
userTheme: _angular_core.Signal<"
|
|
3623
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
3624
3624
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
3625
3625
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
3626
3626
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4287,15 +4287,16 @@ declare class PreviewService {
|
|
|
4287
4287
|
}>;
|
|
4288
4288
|
protected readonly queryParamsStore: {
|
|
4289
4289
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4290
|
-
|
|
4290
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4291
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4291
4292
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4293
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4292
4294
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4293
4295
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4294
4296
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4295
4297
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4296
4298
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4297
4299
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4298
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4299
4300
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4300
4301
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4301
4302
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4309,7 +4310,6 @@ declare class PreviewService {
|
|
|
4309
4310
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4310
4311
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4311
4312
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4312
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4313
4313
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4314
4314
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4315
4315
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4342,15 +4342,16 @@ declare class PreviewService {
|
|
|
4342
4342
|
getQuery: () => Query;
|
|
4343
4343
|
} & _ngrx_signals.StateSource<{
|
|
4344
4344
|
name?: string | undefined;
|
|
4345
|
-
|
|
4345
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4346
|
+
sort?: string | undefined;
|
|
4346
4347
|
text?: string | undefined;
|
|
4348
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4347
4349
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4348
4350
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4349
4351
|
page?: number | undefined;
|
|
4350
4352
|
pageSize?: number | undefined;
|
|
4351
4353
|
tab?: string | undefined;
|
|
4352
4354
|
scope?: string | undefined;
|
|
4353
|
-
sort?: string | undefined;
|
|
4354
4355
|
basket?: string | undefined;
|
|
4355
4356
|
isFirstPage?: boolean | undefined;
|
|
4356
4357
|
strictRefine?: boolean | undefined;
|
|
@@ -4364,7 +4365,6 @@ declare class PreviewService {
|
|
|
4364
4365
|
relevanceTransforms?: string | undefined;
|
|
4365
4366
|
removeDuplicates?: boolean | undefined;
|
|
4366
4367
|
queryId?: string | undefined;
|
|
4367
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4368
4368
|
orderBy?: string | undefined;
|
|
4369
4369
|
groupBy?: string | undefined;
|
|
4370
4370
|
neuralSearch?: boolean | undefined;
|
|
@@ -4869,7 +4869,7 @@ declare class SavedSearchesService {
|
|
|
4869
4869
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4870
4870
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4871
4871
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4872
|
-
userTheme: _angular_core.Signal<"
|
|
4872
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4873
4873
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
4874
4874
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
4875
4875
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -4916,15 +4916,16 @@ declare class SavedSearchesService {
|
|
|
4916
4916
|
}>;
|
|
4917
4917
|
protected readonly queryParamsStore: {
|
|
4918
4918
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4919
|
-
|
|
4919
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4920
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4920
4921
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4922
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4921
4923
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4922
4924
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4923
4925
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
4924
4926
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4925
4927
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4926
4928
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4927
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4928
4929
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4929
4930
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4930
4931
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4938,7 +4939,6 @@ declare class SavedSearchesService {
|
|
|
4938
4939
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4939
4940
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4940
4941
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4941
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4942
4942
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4943
4943
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4944
4944
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4971,15 +4971,16 @@ declare class SavedSearchesService {
|
|
|
4971
4971
|
getQuery: () => _sinequa_atomic.Query;
|
|
4972
4972
|
} & _ngrx_signals.StateSource<{
|
|
4973
4973
|
name?: string | undefined;
|
|
4974
|
-
|
|
4974
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4975
|
+
sort?: string | undefined;
|
|
4975
4976
|
text?: string | undefined;
|
|
4977
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4976
4978
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4977
4979
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4978
4980
|
page?: number | undefined;
|
|
4979
4981
|
pageSize?: number | undefined;
|
|
4980
4982
|
tab?: string | undefined;
|
|
4981
4983
|
scope?: string | undefined;
|
|
4982
|
-
sort?: string | undefined;
|
|
4983
4984
|
basket?: string | undefined;
|
|
4984
4985
|
isFirstPage?: boolean | undefined;
|
|
4985
4986
|
strictRefine?: boolean | undefined;
|
|
@@ -4993,7 +4994,6 @@ declare class SavedSearchesService {
|
|
|
4993
4994
|
relevanceTransforms?: string | undefined;
|
|
4994
4995
|
removeDuplicates?: boolean | undefined;
|
|
4995
4996
|
queryId?: string | undefined;
|
|
4996
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4997
4997
|
orderBy?: string | undefined;
|
|
4998
4998
|
groupBy?: string | undefined;
|
|
4999
4999
|
neuralSearch?: boolean | undefined;
|
|
@@ -5057,15 +5057,16 @@ declare class SearchService {
|
|
|
5057
5057
|
audit?: AuditEvents;
|
|
5058
5058
|
protected readonly queryParamsStore: {
|
|
5059
5059
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5060
|
-
|
|
5060
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5061
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5061
5062
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5063
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5062
5064
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5063
5065
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5064
5066
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5065
5067
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5066
5068
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5067
5069
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5068
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5069
5070
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5070
5071
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5071
5072
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5079,7 +5080,6 @@ declare class SearchService {
|
|
|
5079
5080
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5080
5081
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5081
5082
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5082
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5083
5083
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5084
5084
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5085
5085
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5112,15 +5112,16 @@ declare class SearchService {
|
|
|
5112
5112
|
getQuery: () => Query;
|
|
5113
5113
|
} & _ngrx_signals.StateSource<{
|
|
5114
5114
|
name?: string | undefined;
|
|
5115
|
-
|
|
5115
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5116
|
+
sort?: string | undefined;
|
|
5116
5117
|
text?: string | undefined;
|
|
5118
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5117
5119
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5118
5120
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5119
5121
|
page?: number | undefined;
|
|
5120
5122
|
pageSize?: number | undefined;
|
|
5121
5123
|
tab?: string | undefined;
|
|
5122
5124
|
scope?: string | undefined;
|
|
5123
|
-
sort?: string | undefined;
|
|
5124
5125
|
basket?: string | undefined;
|
|
5125
5126
|
isFirstPage?: boolean | undefined;
|
|
5126
5127
|
strictRefine?: boolean | undefined;
|
|
@@ -5134,7 +5135,6 @@ declare class SearchService {
|
|
|
5134
5135
|
relevanceTransforms?: string | undefined;
|
|
5135
5136
|
removeDuplicates?: boolean | undefined;
|
|
5136
5137
|
queryId?: string | undefined;
|
|
5137
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5138
5138
|
orderBy?: string | undefined;
|
|
5139
5139
|
groupBy?: string | undefined;
|
|
5140
5140
|
neuralSearch?: boolean | undefined;
|
|
@@ -5151,7 +5151,7 @@ declare class SearchService {
|
|
|
5151
5151
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5152
5152
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5153
5153
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5154
|
-
userTheme: _angular_core.Signal<"
|
|
5154
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5155
5155
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
5156
5156
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
5157
5157
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -5248,15 +5248,16 @@ declare class SelectionService {
|
|
|
5248
5248
|
private readonly selectionStore;
|
|
5249
5249
|
queryParamsStore: {
|
|
5250
5250
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5251
|
-
|
|
5251
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5252
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5252
5253
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5254
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5253
5255
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5254
5256
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5255
5257
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5256
5258
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5257
5259
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5258
5260
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5259
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5260
5261
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5261
5262
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5262
5263
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5270,7 +5271,6 @@ declare class SelectionService {
|
|
|
5270
5271
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5271
5272
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5272
5273
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5273
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5274
5274
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5275
5275
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5276
5276
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5303,15 +5303,16 @@ declare class SelectionService {
|
|
|
5303
5303
|
getQuery: () => _sinequa_atomic.Query;
|
|
5304
5304
|
} & _ngrx_signals.StateSource<{
|
|
5305
5305
|
name?: string | undefined;
|
|
5306
|
-
|
|
5306
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5307
|
+
sort?: string | undefined;
|
|
5307
5308
|
text?: string | undefined;
|
|
5309
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5308
5310
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5309
5311
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5310
5312
|
page?: number | undefined;
|
|
5311
5313
|
pageSize?: number | undefined;
|
|
5312
5314
|
tab?: string | undefined;
|
|
5313
5315
|
scope?: string | undefined;
|
|
5314
|
-
sort?: string | undefined;
|
|
5315
5316
|
basket?: string | undefined;
|
|
5316
5317
|
isFirstPage?: boolean | undefined;
|
|
5317
5318
|
strictRefine?: boolean | undefined;
|
|
@@ -5325,7 +5326,6 @@ declare class SelectionService {
|
|
|
5325
5326
|
relevanceTransforms?: string | undefined;
|
|
5326
5327
|
removeDuplicates?: boolean | undefined;
|
|
5327
5328
|
queryId?: string | undefined;
|
|
5328
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5329
5329
|
orderBy?: string | undefined;
|
|
5330
5330
|
groupBy?: string | undefined;
|
|
5331
5331
|
neuralSearch?: boolean | undefined;
|
|
@@ -5472,15 +5472,16 @@ declare class NavbarTabsComponent {
|
|
|
5472
5472
|
readonly route: ActivatedRoute;
|
|
5473
5473
|
readonly queryParamsStore: {
|
|
5474
5474
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5475
|
-
|
|
5475
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5476
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5476
5477
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5478
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5477
5479
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5478
5480
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5479
5481
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
5480
5482
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5481
5483
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5482
5484
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5483
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5484
5485
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5485
5486
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5486
5487
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5494,7 +5495,6 @@ declare class NavbarTabsComponent {
|
|
|
5494
5495
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5495
5496
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5496
5497
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5497
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5498
5498
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5499
5499
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5500
5500
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5527,15 +5527,16 @@ declare class NavbarTabsComponent {
|
|
|
5527
5527
|
getQuery: () => _sinequa_atomic.Query;
|
|
5528
5528
|
} & _ngrx_signals.StateSource<{
|
|
5529
5529
|
name?: string | undefined;
|
|
5530
|
-
|
|
5530
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5531
|
+
sort?: string | undefined;
|
|
5531
5532
|
text?: string | undefined;
|
|
5533
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5532
5534
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5533
5535
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5534
5536
|
page?: number | undefined;
|
|
5535
5537
|
pageSize?: number | undefined;
|
|
5536
5538
|
tab?: string | undefined;
|
|
5537
5539
|
scope?: string | undefined;
|
|
5538
|
-
sort?: string | undefined;
|
|
5539
5540
|
basket?: string | undefined;
|
|
5540
5541
|
isFirstPage?: boolean | undefined;
|
|
5541
5542
|
strictRefine?: boolean | undefined;
|
|
@@ -5549,7 +5550,6 @@ declare class NavbarTabsComponent {
|
|
|
5549
5550
|
relevanceTransforms?: string | undefined;
|
|
5550
5551
|
removeDuplicates?: boolean | undefined;
|
|
5551
5552
|
queryId?: string | undefined;
|
|
5552
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5553
5553
|
orderBy?: string | undefined;
|
|
5554
5554
|
groupBy?: string | undefined;
|
|
5555
5555
|
neuralSearch?: boolean | undefined;
|
|
@@ -6022,7 +6022,7 @@ declare class ShowBookmarkDirective {
|
|
|
6022
6022
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6023
6023
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6024
6024
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6025
|
-
userTheme: _angular_core.Signal<"
|
|
6025
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6026
6026
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
6027
6027
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
6028
6028
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -6697,15 +6697,16 @@ declare class SponsoredResultsComponent {
|
|
|
6697
6697
|
}>;
|
|
6698
6698
|
queryParamStore: {
|
|
6699
6699
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6700
|
-
|
|
6700
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6701
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6701
6702
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6703
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6702
6704
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6703
6705
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6704
6706
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6705
6707
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6706
6708
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6707
6709
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6708
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6709
6710
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6710
6711
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6711
6712
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6719,7 +6720,6 @@ declare class SponsoredResultsComponent {
|
|
|
6719
6720
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6720
6721
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6721
6722
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6722
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6723
6723
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6724
6724
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6725
6725
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6752,15 +6752,16 @@ declare class SponsoredResultsComponent {
|
|
|
6752
6752
|
getQuery: () => _sinequa_atomic.Query;
|
|
6753
6753
|
} & _ngrx_signals.StateSource<{
|
|
6754
6754
|
name?: string | undefined;
|
|
6755
|
-
|
|
6755
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6756
|
+
sort?: string | undefined;
|
|
6756
6757
|
text?: string | undefined;
|
|
6758
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6757
6759
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6758
6760
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6759
6761
|
page?: number | undefined;
|
|
6760
6762
|
pageSize?: number | undefined;
|
|
6761
6763
|
tab?: string | undefined;
|
|
6762
6764
|
scope?: string | undefined;
|
|
6763
|
-
sort?: string | undefined;
|
|
6764
6765
|
basket?: string | undefined;
|
|
6765
6766
|
isFirstPage?: boolean | undefined;
|
|
6766
6767
|
strictRefine?: boolean | undefined;
|
|
@@ -6774,7 +6775,6 @@ declare class SponsoredResultsComponent {
|
|
|
6774
6775
|
relevanceTransforms?: string | undefined;
|
|
6775
6776
|
removeDuplicates?: boolean | undefined;
|
|
6776
6777
|
queryId?: string | undefined;
|
|
6777
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6778
6778
|
orderBy?: string | undefined;
|
|
6779
6779
|
groupBy?: string | undefined;
|
|
6780
6780
|
neuralSearch?: boolean | undefined;
|
|
@@ -7030,15 +7030,16 @@ declare class AggregationListComponent {
|
|
|
7030
7030
|
}>;
|
|
7031
7031
|
queryParamsStore: {
|
|
7032
7032
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7033
|
-
|
|
7033
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7034
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7034
7035
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7036
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7035
7037
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7036
7038
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7037
7039
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7038
7040
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7039
7041
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7040
7042
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7041
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7042
7043
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7043
7044
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7044
7045
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7052,7 +7053,6 @@ declare class AggregationListComponent {
|
|
|
7052
7053
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7053
7054
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7054
7055
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7055
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7056
7056
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7057
7057
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7058
7058
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7085,15 +7085,16 @@ declare class AggregationListComponent {
|
|
|
7085
7085
|
getQuery: () => Query;
|
|
7086
7086
|
} & _ngrx_signals.StateSource<{
|
|
7087
7087
|
name?: string | undefined;
|
|
7088
|
-
|
|
7088
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7089
|
+
sort?: string | undefined;
|
|
7089
7090
|
text?: string | undefined;
|
|
7091
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7090
7092
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7091
7093
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7092
7094
|
page?: number | undefined;
|
|
7093
7095
|
pageSize?: number | undefined;
|
|
7094
7096
|
tab?: string | undefined;
|
|
7095
7097
|
scope?: string | undefined;
|
|
7096
|
-
sort?: string | undefined;
|
|
7097
7098
|
basket?: string | undefined;
|
|
7098
7099
|
isFirstPage?: boolean | undefined;
|
|
7099
7100
|
strictRefine?: boolean | undefined;
|
|
@@ -7107,7 +7108,6 @@ declare class AggregationListComponent {
|
|
|
7107
7108
|
relevanceTransforms?: string | undefined;
|
|
7108
7109
|
removeDuplicates?: boolean | undefined;
|
|
7109
7110
|
queryId?: string | undefined;
|
|
7110
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7111
7111
|
orderBy?: string | undefined;
|
|
7112
7112
|
groupBy?: string | undefined;
|
|
7113
7113
|
neuralSearch?: boolean | undefined;
|
|
@@ -7652,15 +7652,16 @@ declare class AdvancedSearch {
|
|
|
7652
7652
|
}>;
|
|
7653
7653
|
protected readonly queryParamsStore: {
|
|
7654
7654
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7655
|
-
|
|
7655
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7656
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7656
7657
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7658
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7657
7659
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7658
7660
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7659
7661
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7660
7662
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7661
7663
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7662
7664
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7663
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7664
7665
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7665
7666
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7666
7667
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7674,7 +7675,6 @@ declare class AdvancedSearch {
|
|
|
7674
7675
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7675
7676
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7676
7677
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7677
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7678
7678
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7679
7679
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7680
7680
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7707,15 +7707,16 @@ declare class AdvancedSearch {
|
|
|
7707
7707
|
getQuery: () => _sinequa_atomic.Query;
|
|
7708
7708
|
} & _ngrx_signals.StateSource<{
|
|
7709
7709
|
name?: string | undefined;
|
|
7710
|
-
|
|
7710
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7711
|
+
sort?: string | undefined;
|
|
7711
7712
|
text?: string | undefined;
|
|
7713
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7712
7714
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7713
7715
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7714
7716
|
page?: number | undefined;
|
|
7715
7717
|
pageSize?: number | undefined;
|
|
7716
7718
|
tab?: string | undefined;
|
|
7717
7719
|
scope?: string | undefined;
|
|
7718
|
-
sort?: string | undefined;
|
|
7719
7720
|
basket?: string | undefined;
|
|
7720
7721
|
isFirstPage?: boolean | undefined;
|
|
7721
7722
|
strictRefine?: boolean | undefined;
|
|
@@ -7729,7 +7730,6 @@ declare class AdvancedSearch {
|
|
|
7729
7730
|
relevanceTransforms?: string | undefined;
|
|
7730
7731
|
removeDuplicates?: boolean | undefined;
|
|
7731
7732
|
queryId?: string | undefined;
|
|
7732
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7733
7733
|
orderBy?: string | undefined;
|
|
7734
7734
|
groupBy?: string | undefined;
|
|
7735
7735
|
neuralSearch?: boolean | undefined;
|
|
@@ -8116,15 +8116,16 @@ declare class ArticleLabels {
|
|
|
8116
8116
|
declare class ArticleSimilarDocuments {
|
|
8117
8117
|
protected readonly queryParamsStore: {
|
|
8118
8118
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8119
|
-
|
|
8119
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8120
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8120
8121
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8122
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8121
8123
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8122
8124
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8123
8125
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8124
8126
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8125
8127
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8126
8128
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8127
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8128
8129
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8129
8130
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8130
8131
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8138,7 +8139,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8138
8139
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8139
8140
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8140
8141
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8141
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8142
8142
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8143
8143
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8144
8144
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8171,15 +8171,16 @@ declare class ArticleSimilarDocuments {
|
|
|
8171
8171
|
getQuery: () => _sinequa_atomic.Query;
|
|
8172
8172
|
} & _ngrx_signals.StateSource<{
|
|
8173
8173
|
name?: string | undefined;
|
|
8174
|
-
|
|
8174
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8175
|
+
sort?: string | undefined;
|
|
8175
8176
|
text?: string | undefined;
|
|
8177
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8176
8178
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8177
8179
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8178
8180
|
page?: number | undefined;
|
|
8179
8181
|
pageSize?: number | undefined;
|
|
8180
8182
|
tab?: string | undefined;
|
|
8181
8183
|
scope?: string | undefined;
|
|
8182
|
-
sort?: string | undefined;
|
|
8183
8184
|
basket?: string | undefined;
|
|
8184
8185
|
isFirstPage?: boolean | undefined;
|
|
8185
8186
|
strictRefine?: boolean | undefined;
|
|
@@ -8193,7 +8194,6 @@ declare class ArticleSimilarDocuments {
|
|
|
8193
8194
|
relevanceTransforms?: string | undefined;
|
|
8194
8195
|
removeDuplicates?: boolean | undefined;
|
|
8195
8196
|
queryId?: string | undefined;
|
|
8196
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8197
8197
|
orderBy?: string | undefined;
|
|
8198
8198
|
groupBy?: string | undefined;
|
|
8199
8199
|
neuralSearch?: boolean | undefined;
|
|
@@ -8778,15 +8778,16 @@ declare class AdvancedSearchComponent {
|
|
|
8778
8778
|
}>;
|
|
8779
8779
|
protected readonly queryParamsStore: {
|
|
8780
8780
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8781
|
-
|
|
8781
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8782
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8782
8783
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8784
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8783
8785
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8784
8786
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8785
8787
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
8786
8788
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8787
8789
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8788
8790
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8789
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8790
8791
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8791
8792
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8792
8793
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8800,7 +8801,6 @@ declare class AdvancedSearchComponent {
|
|
|
8800
8801
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8801
8802
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8802
8803
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8803
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8804
8804
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8805
8805
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8806
8806
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8833,15 +8833,16 @@ declare class AdvancedSearchComponent {
|
|
|
8833
8833
|
getQuery: () => _sinequa_atomic.Query;
|
|
8834
8834
|
} & _ngrx_signals.StateSource<{
|
|
8835
8835
|
name?: string | undefined;
|
|
8836
|
-
|
|
8836
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8837
|
+
sort?: string | undefined;
|
|
8837
8838
|
text?: string | undefined;
|
|
8839
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8838
8840
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8839
8841
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8840
8842
|
page?: number | undefined;
|
|
8841
8843
|
pageSize?: number | undefined;
|
|
8842
8844
|
tab?: string | undefined;
|
|
8843
8845
|
scope?: string | undefined;
|
|
8844
|
-
sort?: string | undefined;
|
|
8845
8846
|
basket?: string | undefined;
|
|
8846
8847
|
isFirstPage?: boolean | undefined;
|
|
8847
8848
|
strictRefine?: boolean | undefined;
|
|
@@ -8855,7 +8856,6 @@ declare class AdvancedSearchComponent {
|
|
|
8855
8856
|
relevanceTransforms?: string | undefined;
|
|
8856
8857
|
removeDuplicates?: boolean | undefined;
|
|
8857
8858
|
queryId?: string | undefined;
|
|
8858
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8859
8859
|
orderBy?: string | undefined;
|
|
8860
8860
|
groupBy?: string | undefined;
|
|
8861
8861
|
neuralSearch?: boolean | undefined;
|
|
@@ -9234,15 +9234,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9234
9234
|
}>;
|
|
9235
9235
|
queryParamsStore: {
|
|
9236
9236
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9237
|
-
|
|
9237
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9238
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9238
9239
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9240
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9239
9241
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9240
9242
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9241
9243
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9242
9244
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9243
9245
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9244
9246
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9245
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9246
9247
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9247
9248
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9248
9249
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9256,7 +9257,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9256
9257
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9257
9258
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9258
9259
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9259
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9260
9260
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9261
9261
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9262
9262
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9289,15 +9289,16 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9289
9289
|
getQuery: () => _sinequa_atomic.Query;
|
|
9290
9290
|
} & _ngrx_signals.StateSource<{
|
|
9291
9291
|
name?: string | undefined;
|
|
9292
|
-
|
|
9292
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9293
|
+
sort?: string | undefined;
|
|
9293
9294
|
text?: string | undefined;
|
|
9295
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9294
9296
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9295
9297
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9296
9298
|
page?: number | undefined;
|
|
9297
9299
|
pageSize?: number | undefined;
|
|
9298
9300
|
tab?: string | undefined;
|
|
9299
9301
|
scope?: string | undefined;
|
|
9300
|
-
sort?: string | undefined;
|
|
9301
9302
|
basket?: string | undefined;
|
|
9302
9303
|
isFirstPage?: boolean | undefined;
|
|
9303
9304
|
strictRefine?: boolean | undefined;
|
|
@@ -9311,7 +9312,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9311
9312
|
relevanceTransforms?: string | undefined;
|
|
9312
9313
|
removeDuplicates?: boolean | undefined;
|
|
9313
9314
|
queryId?: string | undefined;
|
|
9314
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9315
9315
|
orderBy?: string | undefined;
|
|
9316
9316
|
groupBy?: string | undefined;
|
|
9317
9317
|
neuralSearch?: boolean | undefined;
|
|
@@ -9432,15 +9432,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9432
9432
|
readonly exportService: ExportService;
|
|
9433
9433
|
readonly queryParamsStore: {
|
|
9434
9434
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9435
|
-
|
|
9435
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9436
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9436
9437
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9438
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9437
9439
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9438
9440
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9439
9441
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9440
9442
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9441
9443
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9442
9444
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9443
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9444
9445
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9445
9446
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9446
9447
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9454,7 +9455,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9454
9455
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9455
9456
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9456
9457
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9457
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9458
9458
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9459
9459
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9460
9460
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9487,15 +9487,16 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9487
9487
|
getQuery: () => _sinequa_atomic.Query;
|
|
9488
9488
|
} & _ngrx_signals.StateSource<{
|
|
9489
9489
|
name?: string | undefined;
|
|
9490
|
-
|
|
9490
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9491
|
+
sort?: string | undefined;
|
|
9491
9492
|
text?: string | undefined;
|
|
9493
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9492
9494
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9493
9495
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9494
9496
|
page?: number | undefined;
|
|
9495
9497
|
pageSize?: number | undefined;
|
|
9496
9498
|
tab?: string | undefined;
|
|
9497
9499
|
scope?: string | undefined;
|
|
9498
|
-
sort?: string | undefined;
|
|
9499
9500
|
basket?: string | undefined;
|
|
9500
9501
|
isFirstPage?: boolean | undefined;
|
|
9501
9502
|
strictRefine?: boolean | undefined;
|
|
@@ -9509,7 +9510,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9509
9510
|
relevanceTransforms?: string | undefined;
|
|
9510
9511
|
removeDuplicates?: boolean | undefined;
|
|
9511
9512
|
queryId?: string | undefined;
|
|
9512
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9513
9513
|
orderBy?: string | undefined;
|
|
9514
9514
|
groupBy?: string | undefined;
|
|
9515
9515
|
neuralSearch?: boolean | undefined;
|
|
@@ -9864,15 +9864,16 @@ declare class SearchFeedbackComponent {
|
|
|
9864
9864
|
readonly auditService: AuditService;
|
|
9865
9865
|
protected readonly queryParamsStore: {
|
|
9866
9866
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9867
|
-
|
|
9867
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9868
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9868
9869
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9870
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9869
9871
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9870
9872
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9871
9873
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9872
9874
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9873
9875
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9874
9876
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9875
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9876
9877
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9877
9878
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9878
9879
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9886,7 +9887,6 @@ declare class SearchFeedbackComponent {
|
|
|
9886
9887
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9887
9888
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9888
9889
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9889
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9890
9890
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9891
9891
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9892
9892
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9919,15 +9919,16 @@ declare class SearchFeedbackComponent {
|
|
|
9919
9919
|
getQuery: () => _sinequa_atomic.Query;
|
|
9920
9920
|
} & _ngrx_signals.StateSource<{
|
|
9921
9921
|
name?: string | undefined;
|
|
9922
|
-
|
|
9922
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9923
|
+
sort?: string | undefined;
|
|
9923
9924
|
text?: string | undefined;
|
|
9925
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9924
9926
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9925
9927
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9926
9928
|
page?: number | undefined;
|
|
9927
9929
|
pageSize?: number | undefined;
|
|
9928
9930
|
tab?: string | undefined;
|
|
9929
9931
|
scope?: string | undefined;
|
|
9930
|
-
sort?: string | undefined;
|
|
9931
9932
|
basket?: string | undefined;
|
|
9932
9933
|
isFirstPage?: boolean | undefined;
|
|
9933
9934
|
strictRefine?: boolean | undefined;
|
|
@@ -9941,7 +9942,6 @@ declare class SearchFeedbackComponent {
|
|
|
9941
9942
|
relevanceTransforms?: string | undefined;
|
|
9942
9943
|
removeDuplicates?: boolean | undefined;
|
|
9943
9944
|
queryId?: string | undefined;
|
|
9944
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9945
9945
|
orderBy?: string | undefined;
|
|
9946
9946
|
groupBy?: string | undefined;
|
|
9947
9947
|
neuralSearch?: boolean | undefined;
|
|
@@ -9979,15 +9979,16 @@ declare class AggregationTreeComponent {
|
|
|
9979
9979
|
}>;
|
|
9980
9980
|
queryParamsStore: {
|
|
9981
9981
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9982
|
-
|
|
9982
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9983
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9983
9984
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9985
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9984
9986
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9985
9987
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9986
9988
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
9987
9989
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9988
9990
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9989
9991
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9990
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9991
9992
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9992
9993
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9993
9994
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10001,7 +10002,6 @@ declare class AggregationTreeComponent {
|
|
|
10001
10002
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10002
10003
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10003
10004
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10004
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10005
10005
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10006
10006
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10007
10007
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10034,15 +10034,16 @@ declare class AggregationTreeComponent {
|
|
|
10034
10034
|
getQuery: () => Query;
|
|
10035
10035
|
} & _ngrx_signals.StateSource<{
|
|
10036
10036
|
name?: string | undefined;
|
|
10037
|
-
|
|
10037
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10038
|
+
sort?: string | undefined;
|
|
10038
10039
|
text?: string | undefined;
|
|
10040
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10039
10041
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10040
10042
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10041
10043
|
page?: number | undefined;
|
|
10042
10044
|
pageSize?: number | undefined;
|
|
10043
10045
|
tab?: string | undefined;
|
|
10044
10046
|
scope?: string | undefined;
|
|
10045
|
-
sort?: string | undefined;
|
|
10046
10047
|
basket?: string | undefined;
|
|
10047
10048
|
isFirstPage?: boolean | undefined;
|
|
10048
10049
|
strictRefine?: boolean | undefined;
|
|
@@ -10056,7 +10057,6 @@ declare class AggregationTreeComponent {
|
|
|
10056
10057
|
relevanceTransforms?: string | undefined;
|
|
10057
10058
|
removeDuplicates?: boolean | undefined;
|
|
10058
10059
|
queryId?: string | undefined;
|
|
10059
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10060
10060
|
orderBy?: string | undefined;
|
|
10061
10061
|
groupBy?: string | undefined;
|
|
10062
10062
|
neuralSearch?: boolean | undefined;
|
|
@@ -11023,7 +11023,7 @@ declare class FilterButtonComponent {
|
|
|
11023
11023
|
position: _angular_core.InputSignal<Placement>;
|
|
11024
11024
|
offset: _angular_core.InputSignal<number>;
|
|
11025
11025
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11026
|
-
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>;
|
|
11027
11027
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11028
11028
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11029
11029
|
protected nativeElement: any;
|
|
@@ -11038,15 +11038,16 @@ declare class FilterButtonComponent {
|
|
|
11038
11038
|
}>;
|
|
11039
11039
|
protected queryParamsStore: {
|
|
11040
11040
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11041
|
-
|
|
11041
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11042
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11042
11043
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11044
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11043
11045
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11044
11046
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11045
11047
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11046
11048
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11047
11049
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11048
11050
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11049
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11050
11051
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11051
11052
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11052
11053
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11060,7 +11061,6 @@ declare class FilterButtonComponent {
|
|
|
11060
11061
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11061
11062
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11062
11063
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11063
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11064
11064
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11065
11065
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11066
11066
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11093,15 +11093,16 @@ declare class FilterButtonComponent {
|
|
|
11093
11093
|
getQuery: () => _sinequa_atomic.Query;
|
|
11094
11094
|
} & _ngrx_signals.StateSource<{
|
|
11095
11095
|
name?: string | undefined;
|
|
11096
|
-
|
|
11096
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11097
|
+
sort?: string | undefined;
|
|
11097
11098
|
text?: string | undefined;
|
|
11099
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11098
11100
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11099
11101
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11100
11102
|
page?: number | undefined;
|
|
11101
11103
|
pageSize?: number | undefined;
|
|
11102
11104
|
tab?: string | undefined;
|
|
11103
11105
|
scope?: string | undefined;
|
|
11104
|
-
sort?: string | undefined;
|
|
11105
11106
|
basket?: string | undefined;
|
|
11106
11107
|
isFirstPage?: boolean | undefined;
|
|
11107
11108
|
strictRefine?: boolean | undefined;
|
|
@@ -11115,7 +11116,6 @@ declare class FilterButtonComponent {
|
|
|
11115
11116
|
relevanceTransforms?: string | undefined;
|
|
11116
11117
|
removeDuplicates?: boolean | undefined;
|
|
11117
11118
|
queryId?: string | undefined;
|
|
11118
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11119
11119
|
orderBy?: string | undefined;
|
|
11120
11120
|
groupBy?: string | undefined;
|
|
11121
11121
|
neuralSearch?: boolean | undefined;
|
|
@@ -11752,15 +11752,16 @@ declare class MoreButtonComponent {
|
|
|
11752
11752
|
}>;
|
|
11753
11753
|
queryParamsStore: {
|
|
11754
11754
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11755
|
-
|
|
11755
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11756
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11756
11757
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11758
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11757
11759
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11758
11760
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11759
11761
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
11760
11762
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
11761
11763
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
11762
11764
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11763
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11764
11765
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
11765
11766
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11766
11767
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11774,7 +11775,6 @@ declare class MoreButtonComponent {
|
|
|
11774
11775
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
11775
11776
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11776
11777
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11777
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11778
11778
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11779
11779
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
11780
11780
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -11807,15 +11807,16 @@ declare class MoreButtonComponent {
|
|
|
11807
11807
|
getQuery: () => _sinequa_atomic.Query;
|
|
11808
11808
|
} & _ngrx_signals.StateSource<{
|
|
11809
11809
|
name?: string | undefined;
|
|
11810
|
-
|
|
11810
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11811
|
+
sort?: string | undefined;
|
|
11811
11812
|
text?: string | undefined;
|
|
11813
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11812
11814
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11813
11815
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11814
11816
|
page?: number | undefined;
|
|
11815
11817
|
pageSize?: number | undefined;
|
|
11816
11818
|
tab?: string | undefined;
|
|
11817
11819
|
scope?: string | undefined;
|
|
11818
|
-
sort?: string | undefined;
|
|
11819
11820
|
basket?: string | undefined;
|
|
11820
11821
|
isFirstPage?: boolean | undefined;
|
|
11821
11822
|
strictRefine?: boolean | undefined;
|
|
@@ -11829,7 +11830,6 @@ declare class MoreButtonComponent {
|
|
|
11829
11830
|
relevanceTransforms?: string | undefined;
|
|
11830
11831
|
removeDuplicates?: boolean | undefined;
|
|
11831
11832
|
queryId?: string | undefined;
|
|
11832
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11833
11833
|
orderBy?: string | undefined;
|
|
11834
11834
|
groupBy?: string | undefined;
|
|
11835
11835
|
neuralSearch?: boolean | undefined;
|
|
@@ -12237,15 +12237,16 @@ declare class FiltersBarComponent {
|
|
|
12237
12237
|
}>;
|
|
12238
12238
|
protected queryParamsStore: {
|
|
12239
12239
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12240
|
-
|
|
12240
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12241
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12241
12242
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12243
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12242
12244
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12243
12245
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12244
12246
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12245
12247
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12246
12248
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12247
12249
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12248
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12249
12250
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12250
12251
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12251
12252
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12259,7 +12260,6 @@ declare class FiltersBarComponent {
|
|
|
12259
12260
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12260
12261
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12261
12262
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12262
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12263
12263
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12264
12264
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12265
12265
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12292,15 +12292,16 @@ declare class FiltersBarComponent {
|
|
|
12292
12292
|
getQuery: () => _sinequa_atomic.Query;
|
|
12293
12293
|
} & _ngrx_signals.StateSource<{
|
|
12294
12294
|
name?: string | undefined;
|
|
12295
|
-
|
|
12295
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12296
|
+
sort?: string | undefined;
|
|
12296
12297
|
text?: string | undefined;
|
|
12298
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12297
12299
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12298
12300
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12299
12301
|
page?: number | undefined;
|
|
12300
12302
|
pageSize?: number | undefined;
|
|
12301
12303
|
tab?: string | undefined;
|
|
12302
12304
|
scope?: string | undefined;
|
|
12303
|
-
sort?: string | undefined;
|
|
12304
12305
|
basket?: string | undefined;
|
|
12305
12306
|
isFirstPage?: boolean | undefined;
|
|
12306
12307
|
strictRefine?: boolean | undefined;
|
|
@@ -12314,7 +12315,6 @@ declare class FiltersBarComponent {
|
|
|
12314
12315
|
relevanceTransforms?: string | undefined;
|
|
12315
12316
|
removeDuplicates?: boolean | undefined;
|
|
12316
12317
|
queryId?: string | undefined;
|
|
12317
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12318
12318
|
orderBy?: string | undefined;
|
|
12319
12319
|
groupBy?: string | undefined;
|
|
12320
12320
|
neuralSearch?: boolean | undefined;
|
|
@@ -12719,15 +12719,16 @@ declare class MoreComponent {
|
|
|
12719
12719
|
}>;
|
|
12720
12720
|
queryParamsStore: {
|
|
12721
12721
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12722
|
-
|
|
12722
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12723
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12723
12724
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12725
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12724
12726
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12725
12727
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12726
12728
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
12727
12729
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
12728
12730
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
12729
12731
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
12730
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12731
12732
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
12732
12733
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12733
12734
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12741,7 +12742,6 @@ declare class MoreComponent {
|
|
|
12741
12742
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
12742
12743
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
12743
12744
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
12744
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12745
12745
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12746
12746
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
12747
12747
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -12774,15 +12774,16 @@ declare class MoreComponent {
|
|
|
12774
12774
|
getQuery: () => _sinequa_atomic.Query;
|
|
12775
12775
|
} & _ngrx_signals.StateSource<{
|
|
12776
12776
|
name?: string | undefined;
|
|
12777
|
-
|
|
12777
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12778
|
+
sort?: string | undefined;
|
|
12778
12779
|
text?: string | undefined;
|
|
12780
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12779
12781
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12780
12782
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12781
12783
|
page?: number | undefined;
|
|
12782
12784
|
pageSize?: number | undefined;
|
|
12783
12785
|
tab?: string | undefined;
|
|
12784
12786
|
scope?: string | undefined;
|
|
12785
|
-
sort?: string | undefined;
|
|
12786
12787
|
basket?: string | undefined;
|
|
12787
12788
|
isFirstPage?: boolean | undefined;
|
|
12788
12789
|
strictRefine?: boolean | undefined;
|
|
@@ -12796,7 +12797,6 @@ declare class MoreComponent {
|
|
|
12796
12797
|
relevanceTransforms?: string | undefined;
|
|
12797
12798
|
removeDuplicates?: boolean | undefined;
|
|
12798
12799
|
queryId?: string | undefined;
|
|
12799
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12800
12800
|
orderBy?: string | undefined;
|
|
12801
12801
|
groupBy?: string | undefined;
|
|
12802
12802
|
neuralSearch?: boolean | undefined;
|
|
@@ -13342,7 +13342,7 @@ declare class RecentSearchesComponent {
|
|
|
13342
13342
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13343
13343
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13344
13344
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13345
|
-
userTheme: _angular_core.Signal<"
|
|
13345
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13346
13346
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13347
13347
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13348
13348
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13408,15 +13408,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13408
13408
|
private readonly savedSearchesService;
|
|
13409
13409
|
protected readonly queryParamsStore: {
|
|
13410
13410
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13411
|
-
|
|
13411
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13412
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13412
13413
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13414
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13413
13415
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13414
13416
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13415
13417
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
13416
13418
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
13417
13419
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
13418
13420
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
13419
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13420
13421
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
13421
13422
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13422
13423
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13430,7 +13431,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13430
13431
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
13431
13432
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13432
13433
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
13433
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13434
13434
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13435
13435
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
13436
13436
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -13463,15 +13463,16 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13463
13463
|
getQuery: () => _sinequa_atomic.Query;
|
|
13464
13464
|
} & _ngrx_signals.StateSource<{
|
|
13465
13465
|
name?: string | undefined;
|
|
13466
|
-
|
|
13466
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13467
|
+
sort?: string | undefined;
|
|
13467
13468
|
text?: string | undefined;
|
|
13469
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13468
13470
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13469
13471
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13470
13472
|
page?: number | undefined;
|
|
13471
13473
|
pageSize?: number | undefined;
|
|
13472
13474
|
tab?: string | undefined;
|
|
13473
13475
|
scope?: string | undefined;
|
|
13474
|
-
sort?: string | undefined;
|
|
13475
13476
|
basket?: string | undefined;
|
|
13476
13477
|
isFirstPage?: boolean | undefined;
|
|
13477
13478
|
strictRefine?: boolean | undefined;
|
|
@@ -13485,7 +13486,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13485
13486
|
relevanceTransforms?: string | undefined;
|
|
13486
13487
|
removeDuplicates?: boolean | undefined;
|
|
13487
13488
|
queryId?: string | undefined;
|
|
13488
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13489
13489
|
orderBy?: string | undefined;
|
|
13490
13490
|
groupBy?: string | undefined;
|
|
13491
13491
|
neuralSearch?: boolean | undefined;
|
|
@@ -13517,7 +13517,7 @@ declare class SavedSearchesComponent {
|
|
|
13517
13517
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13518
13518
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13519
13519
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13520
|
-
userTheme: _angular_core.Signal<"
|
|
13520
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13521
13521
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13522
13522
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13523
13523
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
@@ -13612,7 +13612,7 @@ declare class UserProfileFormComponent {
|
|
|
13612
13612
|
param9: _angular_core.Signal<string>;
|
|
13613
13613
|
param10: _angular_core.Signal<string>;
|
|
13614
13614
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
13615
|
-
state: _angular_core.Signal<"
|
|
13615
|
+
state: _angular_core.Signal<"error" | "initial" | "loading" | "loaded">;
|
|
13616
13616
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
13617
13617
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
13618
13618
|
initials: _angular_core.Signal<string>;
|
|
@@ -13656,7 +13656,7 @@ declare class UserProfileFormComponent {
|
|
|
13656
13656
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
13657
13657
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
13658
13658
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
13659
|
-
userTheme: _angular_core.Signal<"
|
|
13659
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
13660
13660
|
agents: _angular_core.Signal<_sinequa_atomic_angular.AgentUserSettings | undefined>;
|
|
13661
13661
|
isDebugMode: _angular_core.Signal<boolean>;
|
|
13662
13662
|
isDarkMode: _angular_core.Signal<boolean>;
|