@sinequa/atomic-angular 1.0.11 → 1.0.13
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 +156 -115
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +106 -99
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,10 +114,10 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
114
114
|
readonly el: ElementRef<any>;
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
|
-
|
|
117
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
118
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
119
120
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
121
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
122
122
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
123
123
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -169,10 +169,10 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
169
169
|
}> | null;
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
|
-
|
|
172
|
+
text?: string | undefined;
|
|
173
173
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
|
+
name?: string | undefined;
|
|
174
175
|
sort?: string | undefined;
|
|
175
|
-
text?: string | undefined;
|
|
176
176
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
177
177
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
178
178
|
open?: _sinequa_atomic.Open[] | 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<"
|
|
253
|
+
variant: _angular_core.InputSignal<"error" | "default" | "none" | "secondary" | "destructive" | "ai" | "accent" | "outline" | "ghost" | "info" | "success" | "warning" | null | undefined>;
|
|
254
254
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
255
255
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
256
256
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -263,10 +263,10 @@ declare class MetadataComponent {
|
|
|
263
263
|
declare class MissingTermsComponent {
|
|
264
264
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
265
265
|
queryParamsStore: {
|
|
266
|
-
|
|
266
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
267
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
268
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
268
269
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
270
270
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
271
271
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
272
272
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -318,10 +318,10 @@ declare class MissingTermsComponent {
|
|
|
318
318
|
}> | null;
|
|
319
319
|
getQuery: () => _sinequa_atomic.Query;
|
|
320
320
|
} & _ngrx_signals.StateSource<{
|
|
321
|
-
|
|
321
|
+
text?: string | undefined;
|
|
322
322
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
323
|
+
name?: string | undefined;
|
|
323
324
|
sort?: string | undefined;
|
|
324
|
-
text?: string | undefined;
|
|
325
325
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
326
326
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
327
327
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -1746,10 +1746,10 @@ type QueryParams = {
|
|
|
1746
1746
|
n?: string;
|
|
1747
1747
|
};
|
|
1748
1748
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1749
|
-
|
|
1749
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1750
1750
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1751
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1751
1752
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1752
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1753
1753
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1754
1754
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1755
1755
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -1793,10 +1793,10 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1793
1793
|
}> | null;
|
|
1794
1794
|
getQuery: () => _sinequa_atomic.Query;
|
|
1795
1795
|
} & _ngrx_signals.StateSource<{
|
|
1796
|
-
|
|
1796
|
+
text?: string | undefined;
|
|
1797
1797
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1798
|
+
name?: string | undefined;
|
|
1798
1799
|
sort?: string | undefined;
|
|
1799
|
-
text?: string | undefined;
|
|
1800
1800
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1801
1801
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1802
1802
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -1826,10 +1826,10 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1826
1826
|
}>>;
|
|
1827
1827
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1828
1828
|
state: {
|
|
1829
|
-
|
|
1829
|
+
text?: string | undefined;
|
|
1830
1830
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1831
|
+
name?: string | undefined;
|
|
1831
1832
|
sort?: string | undefined;
|
|
1832
|
-
text?: string | undefined;
|
|
1833
1833
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1834
1834
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1835
1835
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -2575,10 +2575,10 @@ declare class AggregationsService {
|
|
|
2575
2575
|
aggregations: Aggregation[];
|
|
2576
2576
|
}>;
|
|
2577
2577
|
queryParamsStore: {
|
|
2578
|
-
|
|
2578
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2579
2579
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2580
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2580
2581
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
2581
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2582
2582
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2583
2583
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2584
2584
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -2630,10 +2630,10 @@ declare class AggregationsService {
|
|
|
2630
2630
|
}> | null;
|
|
2631
2631
|
getQuery: () => Query;
|
|
2632
2632
|
} & _ngrx_signals.StateSource<{
|
|
2633
|
-
|
|
2633
|
+
text?: string | undefined;
|
|
2634
2634
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
2635
|
+
name?: string | undefined;
|
|
2635
2636
|
sort?: string | undefined;
|
|
2636
|
-
text?: string | undefined;
|
|
2637
2637
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2638
2638
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2639
2639
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4043,7 +4043,7 @@ declare class NavigationService {
|
|
|
4043
4043
|
* - Maps all router events to `RouterEvent`.
|
|
4044
4044
|
* - Filters the events to only include instances of `NavigationEnd`.
|
|
4045
4045
|
* - Taps into the event stream to extract the route name from the URL and notify the audit service of route changes,
|
|
4046
|
-
* excluding
|
|
4046
|
+
* excluding duplicate navigations.
|
|
4047
4047
|
* - Updates the `urlAfterNavigation` property with the current URL after navigation.
|
|
4048
4048
|
* - Shares the replayed value with a buffer size of 1 to ensure subscribers receive the latest emitted value.
|
|
4049
4049
|
*
|
|
@@ -4286,10 +4286,10 @@ declare class PreviewService {
|
|
|
4286
4286
|
multiSelection: Article$1[];
|
|
4287
4287
|
}>;
|
|
4288
4288
|
protected readonly queryParamsStore: {
|
|
4289
|
-
|
|
4289
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4290
4290
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4291
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4291
4292
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4292
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4293
4293
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4294
4294
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4295
4295
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4341,10 +4341,10 @@ declare class PreviewService {
|
|
|
4341
4341
|
}> | null;
|
|
4342
4342
|
getQuery: () => Query;
|
|
4343
4343
|
} & _ngrx_signals.StateSource<{
|
|
4344
|
-
|
|
4344
|
+
text?: string | undefined;
|
|
4345
4345
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4346
|
+
name?: string | undefined;
|
|
4346
4347
|
sort?: string | undefined;
|
|
4347
|
-
text?: string | undefined;
|
|
4348
4348
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4349
4349
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4350
4350
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4915,10 +4915,10 @@ declare class SavedSearchesService {
|
|
|
4915
4915
|
agents: _sinequa_atomic_angular.AgentUserSettings;
|
|
4916
4916
|
}>;
|
|
4917
4917
|
protected readonly queryParamsStore: {
|
|
4918
|
-
|
|
4918
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4919
4919
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4920
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4920
4921
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4921
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4922
4922
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4923
4923
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4924
4924
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4970,10 +4970,10 @@ declare class SavedSearchesService {
|
|
|
4970
4970
|
}> | null;
|
|
4971
4971
|
getQuery: () => _sinequa_atomic.Query;
|
|
4972
4972
|
} & _ngrx_signals.StateSource<{
|
|
4973
|
-
|
|
4973
|
+
text?: string | undefined;
|
|
4974
4974
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4975
|
+
name?: string | undefined;
|
|
4975
4976
|
sort?: string | undefined;
|
|
4976
|
-
text?: string | undefined;
|
|
4977
4977
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4978
4978
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4979
4979
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5056,10 +5056,10 @@ declare class SearchService {
|
|
|
5056
5056
|
result: Result;
|
|
5057
5057
|
audit?: AuditEvents;
|
|
5058
5058
|
protected readonly queryParamsStore: {
|
|
5059
|
-
|
|
5059
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5060
5060
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5061
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5061
5062
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5062
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5063
5063
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5064
5064
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5065
5065
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5111,10 +5111,10 @@ declare class SearchService {
|
|
|
5111
5111
|
}> | null;
|
|
5112
5112
|
getQuery: () => Query;
|
|
5113
5113
|
} & _ngrx_signals.StateSource<{
|
|
5114
|
-
|
|
5114
|
+
text?: string | undefined;
|
|
5115
5115
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5116
|
+
name?: string | undefined;
|
|
5116
5117
|
sort?: string | undefined;
|
|
5117
|
-
text?: string | undefined;
|
|
5118
5118
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5119
5119
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5120
5120
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5247,10 +5247,10 @@ declare class SelectionService {
|
|
|
5247
5247
|
private readonly location;
|
|
5248
5248
|
private readonly selectionStore;
|
|
5249
5249
|
queryParamsStore: {
|
|
5250
|
-
|
|
5250
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5251
5251
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5252
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5252
5253
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5253
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5254
5254
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5255
5255
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5256
5256
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5302,10 +5302,10 @@ declare class SelectionService {
|
|
|
5302
5302
|
}> | null;
|
|
5303
5303
|
getQuery: () => _sinequa_atomic.Query;
|
|
5304
5304
|
} & _ngrx_signals.StateSource<{
|
|
5305
|
-
|
|
5305
|
+
text?: string | undefined;
|
|
5306
5306
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5307
|
+
name?: string | undefined;
|
|
5307
5308
|
sort?: string | undefined;
|
|
5308
|
-
text?: string | undefined;
|
|
5309
5309
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5310
5310
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5311
5311
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5471,10 +5471,10 @@ declare class NavbarTabsComponent {
|
|
|
5471
5471
|
readonly router: Router;
|
|
5472
5472
|
readonly route: ActivatedRoute;
|
|
5473
5473
|
readonly queryParamsStore: {
|
|
5474
|
-
|
|
5474
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5475
5475
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5476
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5476
5477
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5477
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5478
5478
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5479
5479
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5480
5480
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5526,10 +5526,10 @@ declare class NavbarTabsComponent {
|
|
|
5526
5526
|
}> | null;
|
|
5527
5527
|
getQuery: () => _sinequa_atomic.Query;
|
|
5528
5528
|
} & _ngrx_signals.StateSource<{
|
|
5529
|
-
|
|
5529
|
+
text?: string | undefined;
|
|
5530
5530
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5531
|
+
name?: string | undefined;
|
|
5531
5532
|
sort?: string | undefined;
|
|
5532
|
-
text?: string | undefined;
|
|
5533
5533
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5534
5534
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5535
5535
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -6715,10 +6715,10 @@ declare class SponsoredResultsComponent {
|
|
|
6715
6715
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6716
6716
|
}>;
|
|
6717
6717
|
queryParamStore: {
|
|
6718
|
-
|
|
6718
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6719
6719
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6720
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6720
6721
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6721
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6722
6722
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6723
6723
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6724
6724
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -6770,10 +6770,10 @@ declare class SponsoredResultsComponent {
|
|
|
6770
6770
|
}> | null;
|
|
6771
6771
|
getQuery: () => _sinequa_atomic.Query;
|
|
6772
6772
|
} & _ngrx_signals.StateSource<{
|
|
6773
|
-
|
|
6773
|
+
text?: string | undefined;
|
|
6774
6774
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6775
|
+
name?: string | undefined;
|
|
6775
6776
|
sort?: string | undefined;
|
|
6776
|
-
text?: string | undefined;
|
|
6777
6777
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6778
6778
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6779
6779
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7048,10 +7048,10 @@ declare class AggregationListComponent {
|
|
|
7048
7048
|
aggregations: Aggregation[];
|
|
7049
7049
|
}>;
|
|
7050
7050
|
queryParamsStore: {
|
|
7051
|
-
|
|
7051
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7052
7052
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7053
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7053
7054
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7054
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7055
7055
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7056
7056
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7057
7057
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7103,10 +7103,10 @@ declare class AggregationListComponent {
|
|
|
7103
7103
|
}> | null;
|
|
7104
7104
|
getQuery: () => Query;
|
|
7105
7105
|
} & _ngrx_signals.StateSource<{
|
|
7106
|
-
|
|
7106
|
+
text?: string | undefined;
|
|
7107
7107
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7108
|
+
name?: string | undefined;
|
|
7108
7109
|
sort?: string | undefined;
|
|
7109
|
-
text?: string | undefined;
|
|
7110
7110
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7111
7111
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7112
7112
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7670,10 +7670,10 @@ declare class AdvancedSearch {
|
|
|
7670
7670
|
multiSelection: Article$1[];
|
|
7671
7671
|
}>;
|
|
7672
7672
|
protected readonly queryParamsStore: {
|
|
7673
|
-
|
|
7673
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7674
7674
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7675
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7675
7676
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7676
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7677
7677
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7678
7678
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7679
7679
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7725,10 +7725,10 @@ declare class AdvancedSearch {
|
|
|
7725
7725
|
}> | null;
|
|
7726
7726
|
getQuery: () => _sinequa_atomic.Query;
|
|
7727
7727
|
} & _ngrx_signals.StateSource<{
|
|
7728
|
-
|
|
7728
|
+
text?: string | undefined;
|
|
7729
7729
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7730
|
+
name?: string | undefined;
|
|
7730
7731
|
sort?: string | undefined;
|
|
7731
|
-
text?: string | undefined;
|
|
7732
7732
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7733
7733
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7734
7734
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8134,10 +8134,10 @@ declare class ArticleLabels {
|
|
|
8134
8134
|
|
|
8135
8135
|
declare class ArticleSimilarDocuments {
|
|
8136
8136
|
protected readonly queryParamsStore: {
|
|
8137
|
-
|
|
8137
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8138
8138
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8139
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8139
8140
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8140
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8141
8141
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8142
8142
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8143
8143
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8189,10 +8189,10 @@ declare class ArticleSimilarDocuments {
|
|
|
8189
8189
|
}> | null;
|
|
8190
8190
|
getQuery: () => _sinequa_atomic.Query;
|
|
8191
8191
|
} & _ngrx_signals.StateSource<{
|
|
8192
|
-
|
|
8192
|
+
text?: string | undefined;
|
|
8193
8193
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8194
|
+
name?: string | undefined;
|
|
8194
8195
|
sort?: string | undefined;
|
|
8195
|
-
text?: string | undefined;
|
|
8196
8196
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8197
8197
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8198
8198
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8352,6 +8352,13 @@ declare class SignInComponent {
|
|
|
8352
8352
|
logLevel: _sinequa_atomic.LogLevel;
|
|
8353
8353
|
createRoutes: boolean;
|
|
8354
8354
|
} & Record<string, any>>;
|
|
8355
|
+
/**
|
|
8356
|
+
* True when authentication is handled outside the credentials form — i.e. by the
|
|
8357
|
+
* browser/proxy (`useSSO`) or by an auto-configured OAuth/SAML provider. In those
|
|
8358
|
+
* modes this screen shows a loader instead of a login form and initiates the
|
|
8359
|
+
* handshake automatically by calling `handleLogin()`.
|
|
8360
|
+
*/
|
|
8361
|
+
readonly externalAuth: boolean;
|
|
8355
8362
|
class: _angular_core.InputSignal<string | undefined>;
|
|
8356
8363
|
readonly forgotPassword: _angular_core.OutputEmitterRef<void>;
|
|
8357
8364
|
username: _angular_core.ModelSignal<string>;
|
|
@@ -8401,7 +8408,7 @@ declare class SignInComponent {
|
|
|
8401
8408
|
constructor(destroyRef: DestroyRef);
|
|
8402
8409
|
private checkPasswordExpiresSoon;
|
|
8403
8410
|
handleLogout(): Promise<void>;
|
|
8404
|
-
handleLogin(): Promise<
|
|
8411
|
+
handleLogin(): Promise<boolean>;
|
|
8405
8412
|
handleLoginWithCredentials(): Promise<void>;
|
|
8406
8413
|
handleBack(): void;
|
|
8407
8414
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
@@ -8502,7 +8509,7 @@ declare class CollectionsDialog implements DialogInterface {
|
|
|
8502
8509
|
readonly removedFromCollection: _angular_core.WritableSignal<boolean>;
|
|
8503
8510
|
readonly addedToCollection: _angular_core.WritableSignal<boolean>;
|
|
8504
8511
|
readonly collections: _angular_core.Signal<Basket[]>;
|
|
8505
|
-
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "
|
|
8512
|
+
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "some" | "none" | "all">>;
|
|
8506
8513
|
open(article: Article$1 | Article$1[]): void;
|
|
8507
8514
|
containsArticleByName(collectionName: string): boolean;
|
|
8508
8515
|
containsArticle(collection: Basket): "all" | "some" | "none";
|
|
@@ -8796,10 +8803,10 @@ declare class AdvancedSearchComponent {
|
|
|
8796
8803
|
multiSelection: Article$1[];
|
|
8797
8804
|
}>;
|
|
8798
8805
|
protected readonly queryParamsStore: {
|
|
8799
|
-
|
|
8806
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8800
8807
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8808
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8801
8809
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8802
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8803
8810
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8804
8811
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8805
8812
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8851,10 +8858,10 @@ declare class AdvancedSearchComponent {
|
|
|
8851
8858
|
}> | null;
|
|
8852
8859
|
getQuery: () => _sinequa_atomic.Query;
|
|
8853
8860
|
} & _ngrx_signals.StateSource<{
|
|
8854
|
-
|
|
8861
|
+
text?: string | undefined;
|
|
8855
8862
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8863
|
+
name?: string | undefined;
|
|
8856
8864
|
sort?: string | undefined;
|
|
8857
|
-
text?: string | undefined;
|
|
8858
8865
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8859
8866
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8860
8867
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9252,10 +9259,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9252
9259
|
multiSelection: _sinequa_atomic.Article[];
|
|
9253
9260
|
}>;
|
|
9254
9261
|
queryParamsStore: {
|
|
9255
|
-
|
|
9262
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9256
9263
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9264
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9257
9265
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9258
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9259
9266
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9260
9267
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9261
9268
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9307,10 +9314,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9307
9314
|
}> | null;
|
|
9308
9315
|
getQuery: () => _sinequa_atomic.Query;
|
|
9309
9316
|
} & _ngrx_signals.StateSource<{
|
|
9310
|
-
|
|
9317
|
+
text?: string | undefined;
|
|
9311
9318
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9319
|
+
name?: string | undefined;
|
|
9312
9320
|
sort?: string | undefined;
|
|
9313
|
-
text?: string | undefined;
|
|
9314
9321
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9315
9322
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9316
9323
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9450,10 +9457,10 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9450
9457
|
private appStore;
|
|
9451
9458
|
readonly exportService: ExportService;
|
|
9452
9459
|
readonly queryParamsStore: {
|
|
9453
|
-
|
|
9460
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9454
9461
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9462
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9455
9463
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9456
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9457
9464
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9458
9465
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9459
9466
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9505,10 +9512,10 @@ declare class ExportDialog implements DialogInterface {
|
|
|
9505
9512
|
}> | null;
|
|
9506
9513
|
getQuery: () => _sinequa_atomic.Query;
|
|
9507
9514
|
} & _ngrx_signals.StateSource<{
|
|
9508
|
-
|
|
9515
|
+
text?: string | undefined;
|
|
9509
9516
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9517
|
+
name?: string | undefined;
|
|
9510
9518
|
sort?: string | undefined;
|
|
9511
|
-
text?: string | undefined;
|
|
9512
9519
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9513
9520
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9514
9521
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9882,10 +9889,10 @@ declare class SearchFeedbackComponent {
|
|
|
9882
9889
|
pages: _angular_core.InputSignal<any>;
|
|
9883
9890
|
readonly auditService: AuditService;
|
|
9884
9891
|
protected readonly queryParamsStore: {
|
|
9885
|
-
|
|
9892
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9886
9893
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9894
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9887
9895
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9888
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9889
9896
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9890
9897
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9891
9898
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9937,10 +9944,10 @@ declare class SearchFeedbackComponent {
|
|
|
9937
9944
|
}> | null;
|
|
9938
9945
|
getQuery: () => _sinequa_atomic.Query;
|
|
9939
9946
|
} & _ngrx_signals.StateSource<{
|
|
9940
|
-
|
|
9947
|
+
text?: string | undefined;
|
|
9941
9948
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9949
|
+
name?: string | undefined;
|
|
9942
9950
|
sort?: string | undefined;
|
|
9943
|
-
text?: string | undefined;
|
|
9944
9951
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9945
9952
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9946
9953
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9997,10 +10004,10 @@ declare class AggregationTreeComponent {
|
|
|
9997
10004
|
aggregations: Aggregation[];
|
|
9998
10005
|
}>;
|
|
9999
10006
|
queryParamsStore: {
|
|
10000
|
-
|
|
10007
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10001
10008
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10009
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10002
10010
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10003
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10004
10011
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10005
10012
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10006
10013
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -10052,10 +10059,10 @@ declare class AggregationTreeComponent {
|
|
|
10052
10059
|
}> | null;
|
|
10053
10060
|
getQuery: () => Query;
|
|
10054
10061
|
} & _ngrx_signals.StateSource<{
|
|
10055
|
-
|
|
10062
|
+
text?: string | undefined;
|
|
10056
10063
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10064
|
+
name?: string | undefined;
|
|
10057
10065
|
sort?: string | undefined;
|
|
10058
|
-
text?: string | undefined;
|
|
10059
10066
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10060
10067
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10061
10068
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -11042,7 +11049,7 @@ declare class FilterButtonComponent {
|
|
|
11042
11049
|
position: _angular_core.InputSignal<Placement>;
|
|
11043
11050
|
offset: _angular_core.InputSignal<number>;
|
|
11044
11051
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11045
|
-
protected variant: _angular_core.WritableSignal<"
|
|
11052
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "none" | "secondary" | "destructive" | "ai" | "primary" | "link" | "accent" | "outline" | "ghost" | "light-accent" | "tertiary" | null | undefined>;
|
|
11046
11053
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11047
11054
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11048
11055
|
protected nativeElement: any;
|
|
@@ -11056,10 +11063,10 @@ declare class FilterButtonComponent {
|
|
|
11056
11063
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
11057
11064
|
}>;
|
|
11058
11065
|
protected queryParamsStore: {
|
|
11059
|
-
|
|
11066
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11060
11067
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11068
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11061
11069
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11062
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11063
11070
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11064
11071
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11065
11072
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -11111,10 +11118,10 @@ declare class FilterButtonComponent {
|
|
|
11111
11118
|
}> | null;
|
|
11112
11119
|
getQuery: () => _sinequa_atomic.Query;
|
|
11113
11120
|
} & _ngrx_signals.StateSource<{
|
|
11114
|
-
|
|
11121
|
+
text?: string | undefined;
|
|
11115
11122
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11123
|
+
name?: string | undefined;
|
|
11116
11124
|
sort?: string | undefined;
|
|
11117
|
-
text?: string | undefined;
|
|
11118
11125
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11119
11126
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11120
11127
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -11770,10 +11777,10 @@ declare class MoreButtonComponent {
|
|
|
11770
11777
|
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
11771
11778
|
}>;
|
|
11772
11779
|
queryParamsStore: {
|
|
11773
|
-
|
|
11780
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11774
11781
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
11782
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11775
11783
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
11776
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11777
11784
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11778
11785
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11779
11786
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -11825,10 +11832,10 @@ declare class MoreButtonComponent {
|
|
|
11825
11832
|
}> | null;
|
|
11826
11833
|
getQuery: () => _sinequa_atomic.Query;
|
|
11827
11834
|
} & _ngrx_signals.StateSource<{
|
|
11828
|
-
|
|
11835
|
+
text?: string | undefined;
|
|
11829
11836
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
11837
|
+
name?: string | undefined;
|
|
11830
11838
|
sort?: string | undefined;
|
|
11831
|
-
text?: string | undefined;
|
|
11832
11839
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11833
11840
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11834
11841
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -12255,10 +12262,10 @@ declare class FiltersBarComponent {
|
|
|
12255
12262
|
aggregations: Aggregation[];
|
|
12256
12263
|
}>;
|
|
12257
12264
|
protected queryParamsStore: {
|
|
12258
|
-
|
|
12265
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12259
12266
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12267
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12260
12268
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12261
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12262
12269
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12263
12270
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12264
12271
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -12310,10 +12317,10 @@ declare class FiltersBarComponent {
|
|
|
12310
12317
|
}> | null;
|
|
12311
12318
|
getQuery: () => _sinequa_atomic.Query;
|
|
12312
12319
|
} & _ngrx_signals.StateSource<{
|
|
12313
|
-
|
|
12320
|
+
text?: string | undefined;
|
|
12314
12321
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12322
|
+
name?: string | undefined;
|
|
12315
12323
|
sort?: string | undefined;
|
|
12316
|
-
text?: string | undefined;
|
|
12317
12324
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12318
12325
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12319
12326
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -12751,10 +12758,10 @@ declare class MoreComponent {
|
|
|
12751
12758
|
aggregations: Aggregation[];
|
|
12752
12759
|
}>;
|
|
12753
12760
|
queryParamsStore: {
|
|
12754
|
-
|
|
12761
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12755
12762
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
12763
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12756
12764
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
12757
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12758
12765
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12759
12766
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12760
12767
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -12806,10 +12813,10 @@ declare class MoreComponent {
|
|
|
12806
12813
|
}> | null;
|
|
12807
12814
|
getQuery: () => _sinequa_atomic.Query;
|
|
12808
12815
|
} & _ngrx_signals.StateSource<{
|
|
12809
|
-
|
|
12816
|
+
text?: string | undefined;
|
|
12810
12817
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
12818
|
+
name?: string | undefined;
|
|
12811
12819
|
sort?: string | undefined;
|
|
12812
|
-
text?: string | undefined;
|
|
12813
12820
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12814
12821
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12815
12822
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -13440,10 +13447,10 @@ declare class RecentSearchesComponent {
|
|
|
13440
13447
|
declare class SavedSearchDialog implements DialogInterface {
|
|
13441
13448
|
private readonly savedSearchesService;
|
|
13442
13449
|
protected readonly queryParamsStore: {
|
|
13443
|
-
|
|
13450
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13444
13451
|
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
13452
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13445
13453
|
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
13446
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13447
13454
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13448
13455
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13449
13456
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -13495,10 +13502,10 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13495
13502
|
}> | null;
|
|
13496
13503
|
getQuery: () => _sinequa_atomic.Query;
|
|
13497
13504
|
} & _ngrx_signals.StateSource<{
|
|
13498
|
-
|
|
13505
|
+
text?: string | undefined;
|
|
13499
13506
|
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
13507
|
+
name?: string | undefined;
|
|
13500
13508
|
sort?: string | undefined;
|
|
13501
|
-
text?: string | undefined;
|
|
13502
13509
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13503
13510
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13504
13511
|
open?: _sinequa_atomic.Open[] | undefined;
|