@sinequa/atomic-angular 0.2.2 → 0.2.10
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 +671 -499
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +411 -204
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -82,10 +82,8 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
82
82
|
readonly el: ElementRef<any>;
|
|
83
83
|
readonly router: Router;
|
|
84
84
|
readonly queryParamStore: {
|
|
85
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
86
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
87
85
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
88
|
-
|
|
86
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
89
87
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
90
88
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
91
89
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -93,6 +91,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
93
91
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
94
92
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
95
93
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
94
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
96
95
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
97
96
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
98
97
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -106,6 +105,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
106
105
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
107
106
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
108
107
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
108
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
109
109
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
110
110
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
111
111
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -136,10 +136,8 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
136
136
|
}> | null;
|
|
137
137
|
getQuery: () => _sinequa_atomic.Query;
|
|
138
138
|
} & _ngrx_signals.StateSource<{
|
|
139
|
-
text?: string | undefined;
|
|
140
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
141
139
|
name?: string | undefined;
|
|
142
|
-
|
|
140
|
+
text?: string | undefined;
|
|
143
141
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
144
142
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
145
143
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -147,6 +145,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
147
145
|
pageSize?: number | undefined;
|
|
148
146
|
tab?: string | undefined;
|
|
149
147
|
scope?: string | undefined;
|
|
148
|
+
sort?: string | undefined;
|
|
150
149
|
basket?: string | undefined;
|
|
151
150
|
isFirstPage?: boolean | undefined;
|
|
152
151
|
strictRefine?: boolean | undefined;
|
|
@@ -160,6 +159,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
160
159
|
relevanceTransforms?: string | undefined;
|
|
161
160
|
removeDuplicates?: boolean | undefined;
|
|
162
161
|
queryId?: string | undefined;
|
|
162
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
163
163
|
orderBy?: string | undefined;
|
|
164
164
|
groupBy?: string | undefined;
|
|
165
165
|
neuralSearch?: boolean | undefined;
|
|
@@ -217,11 +217,11 @@ declare class MetadataComponent {
|
|
|
217
217
|
event: Event;
|
|
218
218
|
}>;
|
|
219
219
|
class: _angular_core.InputSignal<string | undefined>;
|
|
220
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
220
|
+
variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "ghost" | "none" | null | undefined>;
|
|
221
221
|
decoration: _angular_core.InputSignal<"none" | "outline" | null | undefined>;
|
|
222
222
|
hover: _angular_core.InputSignal<"yes" | "no" | null | undefined>;
|
|
223
223
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
224
|
-
article: _angular_core.InputSignal<
|
|
224
|
+
article: _angular_core.InputSignal<(string & Record<never, never>) | Partial<Article$1>>;
|
|
225
225
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
226
226
|
items: _angular_core.Signal<string[]>;
|
|
227
227
|
handleClick(event: Event, item: LegacyFilter): void;
|
|
@@ -232,10 +232,8 @@ declare class MetadataComponent {
|
|
|
232
232
|
declare class MissingTermsComponent {
|
|
233
233
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
234
234
|
queryParamsStore: {
|
|
235
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
236
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
237
235
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
238
|
-
|
|
236
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
239
237
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
240
238
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
241
239
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -243,6 +241,7 @@ declare class MissingTermsComponent {
|
|
|
243
241
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
244
242
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
245
243
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
244
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
246
245
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
247
246
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
248
247
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -256,6 +255,7 @@ declare class MissingTermsComponent {
|
|
|
256
255
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
257
256
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
258
257
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
258
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
259
259
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
260
260
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
261
261
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -286,10 +286,8 @@ declare class MissingTermsComponent {
|
|
|
286
286
|
}> | null;
|
|
287
287
|
getQuery: () => _sinequa_atomic.Query;
|
|
288
288
|
} & _ngrx_signals.StateSource<{
|
|
289
|
-
text?: string | undefined;
|
|
290
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
291
289
|
name?: string | undefined;
|
|
292
|
-
|
|
290
|
+
text?: string | undefined;
|
|
293
291
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
294
292
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
295
293
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -297,6 +295,7 @@ declare class MissingTermsComponent {
|
|
|
297
295
|
pageSize?: number | undefined;
|
|
298
296
|
tab?: string | undefined;
|
|
299
297
|
scope?: string | undefined;
|
|
298
|
+
sort?: string | undefined;
|
|
300
299
|
basket?: string | undefined;
|
|
301
300
|
isFirstPage?: boolean | undefined;
|
|
302
301
|
strictRefine?: boolean | undefined;
|
|
@@ -310,6 +309,7 @@ declare class MissingTermsComponent {
|
|
|
310
309
|
relevanceTransforms?: string | undefined;
|
|
311
310
|
removeDuplicates?: boolean | undefined;
|
|
312
311
|
queryId?: string | undefined;
|
|
312
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
313
313
|
orderBy?: string | undefined;
|
|
314
314
|
groupBy?: string | undefined;
|
|
315
315
|
neuralSearch?: boolean | undefined;
|
|
@@ -340,7 +340,9 @@ declare class MultiSelectionToolbarComponent {
|
|
|
340
340
|
versionId: _angular_core.Signal<string>;
|
|
341
341
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
342
342
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
343
|
-
indexes: _angular_core.Signal<
|
|
343
|
+
indexes: _angular_core.Signal<{
|
|
344
|
+
_: _sinequa_atomic.CCIndex;
|
|
345
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
344
346
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
345
347
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
346
348
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -368,6 +370,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
368
370
|
advancedSearch?: boolean;
|
|
369
371
|
allowChatDrawer?: boolean;
|
|
370
372
|
filterLinkChildren?: boolean;
|
|
373
|
+
expandPreview?: boolean;
|
|
371
374
|
quickFilter?: boolean;
|
|
372
375
|
assistant?: {
|
|
373
376
|
usePrefixName?: boolean;
|
|
@@ -398,6 +401,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
398
401
|
advancedSearch?: boolean;
|
|
399
402
|
allowChatDrawer?: boolean;
|
|
400
403
|
filterLinkChildren?: boolean;
|
|
404
|
+
expandPreview?: boolean;
|
|
401
405
|
quickFilter?: boolean;
|
|
402
406
|
assistant?: {
|
|
403
407
|
usePrefixName?: boolean;
|
|
@@ -420,6 +424,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
420
424
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
421
425
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
422
426
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
427
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
423
428
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
424
429
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
425
430
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -444,6 +449,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
444
449
|
advancedSearch?: boolean;
|
|
445
450
|
allowChatDrawer?: boolean;
|
|
446
451
|
filterLinkChildren?: boolean;
|
|
452
|
+
expandPreview?: boolean;
|
|
447
453
|
quickFilter?: boolean;
|
|
448
454
|
assistant?: {
|
|
449
455
|
usePrefixName?: boolean;
|
|
@@ -471,7 +477,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
471
477
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
472
478
|
allowLabels: () => boolean;
|
|
473
479
|
getColumnAlias: (column: string) => string;
|
|
474
|
-
getColumn: (
|
|
480
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
475
481
|
isDateColumn: (column: string) => boolean;
|
|
476
482
|
isTabSearch: (queryName: string) => boolean;
|
|
477
483
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -488,7 +494,9 @@ declare class MultiSelectionToolbarComponent {
|
|
|
488
494
|
versionId: string;
|
|
489
495
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
490
496
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
491
|
-
indexes:
|
|
497
|
+
indexes: {
|
|
498
|
+
_: _sinequa_atomic.CCIndex;
|
|
499
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
492
500
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
493
501
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
494
502
|
queryNames: string;
|
|
@@ -516,6 +524,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
516
524
|
advancedSearch?: boolean;
|
|
517
525
|
allowChatDrawer?: boolean;
|
|
518
526
|
filterLinkChildren?: boolean;
|
|
527
|
+
expandPreview?: boolean;
|
|
519
528
|
quickFilter?: boolean;
|
|
520
529
|
assistant?: {
|
|
521
530
|
usePrefixName?: boolean;
|
|
@@ -546,6 +555,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
546
555
|
advancedSearch?: boolean;
|
|
547
556
|
allowChatDrawer?: boolean;
|
|
548
557
|
filterLinkChildren?: boolean;
|
|
558
|
+
expandPreview?: boolean;
|
|
549
559
|
quickFilter?: boolean;
|
|
550
560
|
assistant?: {
|
|
551
561
|
usePrefixName?: boolean;
|
|
@@ -568,6 +578,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
568
578
|
revision?: number | undefined;
|
|
569
579
|
runnableModels?: string | undefined;
|
|
570
580
|
authorizationLevel?: string | undefined;
|
|
581
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
571
582
|
}>;
|
|
572
583
|
readonly selection: {
|
|
573
584
|
article?: _angular_core.Signal<_sinequa_atomic.Article | undefined> | undefined;
|
|
@@ -612,6 +623,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
612
623
|
advancedSearch?: boolean;
|
|
613
624
|
allowChatDrawer?: boolean;
|
|
614
625
|
filterLinkChildren?: boolean;
|
|
626
|
+
expandPreview?: boolean;
|
|
615
627
|
quickFilter?: boolean;
|
|
616
628
|
assistant?: {
|
|
617
629
|
usePrefixName?: boolean;
|
|
@@ -855,7 +867,7 @@ type CFilter = {
|
|
|
855
867
|
searchable?: boolean;
|
|
856
868
|
hidden?: boolean;
|
|
857
869
|
homepage?: boolean;
|
|
858
|
-
position?:
|
|
870
|
+
position?: "left" | "both";
|
|
859
871
|
items?: CFilterItem[];
|
|
860
872
|
};
|
|
861
873
|
type CAggregationItem = AggregationListItem & {
|
|
@@ -865,7 +877,7 @@ type CAggregation = Aggregation & {
|
|
|
865
877
|
display?: string;
|
|
866
878
|
icon?: string;
|
|
867
879
|
items?: CAggregationItem[];
|
|
868
|
-
position?:
|
|
880
|
+
position?: "left" | "both";
|
|
869
881
|
};
|
|
870
882
|
type CJ = {
|
|
871
883
|
name: string;
|
|
@@ -879,6 +891,7 @@ type CFeatures = {
|
|
|
879
891
|
advancedSearch?: boolean;
|
|
880
892
|
allowChatDrawer?: boolean;
|
|
881
893
|
filterLinkChildren?: boolean;
|
|
894
|
+
expandPreview?: boolean;
|
|
882
895
|
quickFilter?: boolean;
|
|
883
896
|
assistant?: {
|
|
884
897
|
usePrefixName?: boolean;
|
|
@@ -980,7 +993,9 @@ declare class AggregationsService {
|
|
|
980
993
|
versionId: _angular_core.Signal<string>;
|
|
981
994
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
982
995
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
983
|
-
indexes: _angular_core.Signal<
|
|
996
|
+
indexes: _angular_core.Signal<{
|
|
997
|
+
_: _sinequa_atomic.CCIndex;
|
|
998
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
984
999
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
985
1000
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
986
1001
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1008,6 +1023,7 @@ declare class AggregationsService {
|
|
|
1008
1023
|
advancedSearch?: boolean;
|
|
1009
1024
|
allowChatDrawer?: boolean;
|
|
1010
1025
|
filterLinkChildren?: boolean;
|
|
1026
|
+
expandPreview?: boolean;
|
|
1011
1027
|
quickFilter?: boolean;
|
|
1012
1028
|
assistant?: {
|
|
1013
1029
|
usePrefixName?: boolean;
|
|
@@ -1038,6 +1054,7 @@ declare class AggregationsService {
|
|
|
1038
1054
|
advancedSearch?: boolean;
|
|
1039
1055
|
allowChatDrawer?: boolean;
|
|
1040
1056
|
filterLinkChildren?: boolean;
|
|
1057
|
+
expandPreview?: boolean;
|
|
1041
1058
|
quickFilter?: boolean;
|
|
1042
1059
|
assistant?: {
|
|
1043
1060
|
usePrefixName?: boolean;
|
|
@@ -1060,6 +1077,7 @@ declare class AggregationsService {
|
|
|
1060
1077
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1061
1078
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1062
1079
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1080
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1063
1081
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1064
1082
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1065
1083
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -1084,6 +1102,7 @@ declare class AggregationsService {
|
|
|
1084
1102
|
advancedSearch?: boolean;
|
|
1085
1103
|
allowChatDrawer?: boolean;
|
|
1086
1104
|
filterLinkChildren?: boolean;
|
|
1105
|
+
expandPreview?: boolean;
|
|
1087
1106
|
quickFilter?: boolean;
|
|
1088
1107
|
assistant?: {
|
|
1089
1108
|
usePrefixName?: boolean;
|
|
@@ -1111,7 +1130,7 @@ declare class AggregationsService {
|
|
|
1111
1130
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1112
1131
|
allowLabels: () => boolean;
|
|
1113
1132
|
getColumnAlias: (column: string) => string;
|
|
1114
|
-
getColumn: (
|
|
1133
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1115
1134
|
isDateColumn: (column: string) => boolean;
|
|
1116
1135
|
isTabSearch: (queryName: string) => boolean;
|
|
1117
1136
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1128,7 +1147,9 @@ declare class AggregationsService {
|
|
|
1128
1147
|
versionId: string;
|
|
1129
1148
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
1130
1149
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1131
|
-
indexes:
|
|
1150
|
+
indexes: {
|
|
1151
|
+
_: _sinequa_atomic.CCIndex;
|
|
1152
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1132
1153
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1133
1154
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1134
1155
|
queryNames: string;
|
|
@@ -1156,6 +1177,7 @@ declare class AggregationsService {
|
|
|
1156
1177
|
advancedSearch?: boolean;
|
|
1157
1178
|
allowChatDrawer?: boolean;
|
|
1158
1179
|
filterLinkChildren?: boolean;
|
|
1180
|
+
expandPreview?: boolean;
|
|
1159
1181
|
quickFilter?: boolean;
|
|
1160
1182
|
assistant?: {
|
|
1161
1183
|
usePrefixName?: boolean;
|
|
@@ -1186,6 +1208,7 @@ declare class AggregationsService {
|
|
|
1186
1208
|
advancedSearch?: boolean;
|
|
1187
1209
|
allowChatDrawer?: boolean;
|
|
1188
1210
|
filterLinkChildren?: boolean;
|
|
1211
|
+
expandPreview?: boolean;
|
|
1189
1212
|
quickFilter?: boolean;
|
|
1190
1213
|
assistant?: {
|
|
1191
1214
|
usePrefixName?: boolean;
|
|
@@ -1208,6 +1231,7 @@ declare class AggregationsService {
|
|
|
1208
1231
|
revision?: number | undefined;
|
|
1209
1232
|
runnableModels?: string | undefined;
|
|
1210
1233
|
authorizationLevel?: string | undefined;
|
|
1234
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1211
1235
|
}>;
|
|
1212
1236
|
aggregationsStore: {
|
|
1213
1237
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -1219,10 +1243,8 @@ declare class AggregationsService {
|
|
|
1219
1243
|
aggregations: Aggregation[];
|
|
1220
1244
|
}>;
|
|
1221
1245
|
queryParamsStore: {
|
|
1222
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1223
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1224
1246
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1225
|
-
|
|
1247
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1226
1248
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1227
1249
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1228
1250
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -1230,6 +1252,7 @@ declare class AggregationsService {
|
|
|
1230
1252
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1231
1253
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1232
1254
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1255
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1233
1256
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1234
1257
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1235
1258
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1243,6 +1266,7 @@ declare class AggregationsService {
|
|
|
1243
1266
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1244
1267
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1245
1268
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1269
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1246
1270
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1247
1271
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1248
1272
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1273,10 +1297,8 @@ declare class AggregationsService {
|
|
|
1273
1297
|
}> | null;
|
|
1274
1298
|
getQuery: () => Query;
|
|
1275
1299
|
} & _ngrx_signals.StateSource<{
|
|
1276
|
-
text?: string | undefined;
|
|
1277
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1278
1300
|
name?: string | undefined;
|
|
1279
|
-
|
|
1301
|
+
text?: string | undefined;
|
|
1280
1302
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1281
1303
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1282
1304
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -1284,6 +1306,7 @@ declare class AggregationsService {
|
|
|
1284
1306
|
pageSize?: number | undefined;
|
|
1285
1307
|
tab?: string | undefined;
|
|
1286
1308
|
scope?: string | undefined;
|
|
1309
|
+
sort?: string | undefined;
|
|
1287
1310
|
basket?: string | undefined;
|
|
1288
1311
|
isFirstPage?: boolean | undefined;
|
|
1289
1312
|
strictRefine?: boolean | undefined;
|
|
@@ -1297,6 +1320,7 @@ declare class AggregationsService {
|
|
|
1297
1320
|
relevanceTransforms?: string | undefined;
|
|
1298
1321
|
removeDuplicates?: boolean | undefined;
|
|
1299
1322
|
queryId?: string | undefined;
|
|
1323
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1300
1324
|
orderBy?: string | undefined;
|
|
1301
1325
|
groupBy?: string | undefined;
|
|
1302
1326
|
neuralSearch?: boolean | undefined;
|
|
@@ -1452,7 +1476,9 @@ declare class ApplicationService {
|
|
|
1452
1476
|
versionId: _angular_core.Signal<string>;
|
|
1453
1477
|
queries: _angular_core.Signal<Record<string, CCQuery>>;
|
|
1454
1478
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
1455
|
-
indexes: _angular_core.Signal<
|
|
1479
|
+
indexes: _angular_core.Signal<{
|
|
1480
|
+
_: _sinequa_atomic.CCIndex;
|
|
1481
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
1456
1482
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
1457
1483
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
1458
1484
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1480,6 +1506,7 @@ declare class ApplicationService {
|
|
|
1480
1506
|
advancedSearch?: boolean;
|
|
1481
1507
|
allowChatDrawer?: boolean;
|
|
1482
1508
|
filterLinkChildren?: boolean;
|
|
1509
|
+
expandPreview?: boolean;
|
|
1483
1510
|
quickFilter?: boolean;
|
|
1484
1511
|
assistant?: {
|
|
1485
1512
|
usePrefixName?: boolean;
|
|
@@ -1491,7 +1518,12 @@ declare class ApplicationService {
|
|
|
1491
1518
|
allowAdvancedFilters?: boolean;
|
|
1492
1519
|
general?: {
|
|
1493
1520
|
name?: string;
|
|
1494
|
-
logo
|
|
1521
|
+
logo? /**
|
|
1522
|
+
* Initializes the application stores.
|
|
1523
|
+
* - Fetches the application configuration.
|
|
1524
|
+
* - Sets the fetched application configuration in the app store.
|
|
1525
|
+
* - Loads the user settings and logs the state of the user settings store.
|
|
1526
|
+
*/: {
|
|
1495
1527
|
alt?: string;
|
|
1496
1528
|
light?: {
|
|
1497
1529
|
small?: string;
|
|
@@ -1510,6 +1542,7 @@ declare class ApplicationService {
|
|
|
1510
1542
|
advancedSearch?: boolean;
|
|
1511
1543
|
allowChatDrawer?: boolean;
|
|
1512
1544
|
filterLinkChildren?: boolean;
|
|
1545
|
+
expandPreview?: boolean;
|
|
1513
1546
|
quickFilter?: boolean;
|
|
1514
1547
|
assistant?: {
|
|
1515
1548
|
usePrefixName?: boolean;
|
|
@@ -1532,6 +1565,7 @@ declare class ApplicationService {
|
|
|
1532
1565
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1533
1566
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1534
1567
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1568
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1535
1569
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1536
1570
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1537
1571
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -1556,6 +1590,7 @@ declare class ApplicationService {
|
|
|
1556
1590
|
advancedSearch?: boolean;
|
|
1557
1591
|
allowChatDrawer?: boolean;
|
|
1558
1592
|
filterLinkChildren?: boolean;
|
|
1593
|
+
expandPreview?: boolean;
|
|
1559
1594
|
quickFilter?: boolean;
|
|
1560
1595
|
assistant?: {
|
|
1561
1596
|
usePrefixName?: boolean;
|
|
@@ -1583,7 +1618,7 @@ declare class ApplicationService {
|
|
|
1583
1618
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1584
1619
|
allowLabels: () => boolean;
|
|
1585
1620
|
getColumnAlias: (column: string) => string;
|
|
1586
|
-
getColumn: (
|
|
1621
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1587
1622
|
isDateColumn: (column: string) => boolean;
|
|
1588
1623
|
isTabSearch: (queryName: string) => boolean;
|
|
1589
1624
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1600,7 +1635,9 @@ declare class ApplicationService {
|
|
|
1600
1635
|
versionId: string;
|
|
1601
1636
|
queries: Record<string, CCQuery>;
|
|
1602
1637
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1603
|
-
indexes:
|
|
1638
|
+
indexes: {
|
|
1639
|
+
_: _sinequa_atomic.CCIndex;
|
|
1640
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1604
1641
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1605
1642
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1606
1643
|
queryNames: string;
|
|
@@ -1628,6 +1665,7 @@ declare class ApplicationService {
|
|
|
1628
1665
|
advancedSearch?: boolean;
|
|
1629
1666
|
allowChatDrawer?: boolean;
|
|
1630
1667
|
filterLinkChildren?: boolean;
|
|
1668
|
+
expandPreview?: boolean;
|
|
1631
1669
|
quickFilter?: boolean;
|
|
1632
1670
|
assistant?: {
|
|
1633
1671
|
usePrefixName?: boolean;
|
|
@@ -1639,7 +1677,12 @@ declare class ApplicationService {
|
|
|
1639
1677
|
allowAdvancedFilters?: boolean;
|
|
1640
1678
|
general?: {
|
|
1641
1679
|
name?: string;
|
|
1642
|
-
logo
|
|
1680
|
+
logo? /**
|
|
1681
|
+
* Initializes the application stores.
|
|
1682
|
+
* - Fetches the application configuration.
|
|
1683
|
+
* - Sets the fetched application configuration in the app store.
|
|
1684
|
+
* - Loads the user settings and logs the state of the user settings store.
|
|
1685
|
+
*/: {
|
|
1643
1686
|
alt?: string;
|
|
1644
1687
|
light?: {
|
|
1645
1688
|
small?: string;
|
|
@@ -1658,6 +1701,7 @@ declare class ApplicationService {
|
|
|
1658
1701
|
advancedSearch?: boolean;
|
|
1659
1702
|
allowChatDrawer?: boolean;
|
|
1660
1703
|
filterLinkChildren?: boolean;
|
|
1704
|
+
expandPreview?: boolean;
|
|
1661
1705
|
quickFilter?: boolean;
|
|
1662
1706
|
assistant?: {
|
|
1663
1707
|
usePrefixName?: boolean;
|
|
@@ -1680,6 +1724,7 @@ declare class ApplicationService {
|
|
|
1680
1724
|
revision?: number | undefined;
|
|
1681
1725
|
runnableModels?: string | undefined;
|
|
1682
1726
|
authorizationLevel?: string | undefined;
|
|
1727
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1683
1728
|
}>;
|
|
1684
1729
|
router: Router;
|
|
1685
1730
|
titleService: Title;
|
|
@@ -1751,7 +1796,9 @@ declare class AuditService {
|
|
|
1751
1796
|
versionId: _angular_core.Signal<string>;
|
|
1752
1797
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
1753
1798
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
1754
|
-
indexes: _angular_core.Signal<
|
|
1799
|
+
indexes: _angular_core.Signal<{
|
|
1800
|
+
_: _sinequa_atomic.CCIndex;
|
|
1801
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
1755
1802
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
1756
1803
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
1757
1804
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1779,6 +1826,7 @@ declare class AuditService {
|
|
|
1779
1826
|
advancedSearch?: boolean;
|
|
1780
1827
|
allowChatDrawer?: boolean;
|
|
1781
1828
|
filterLinkChildren?: boolean;
|
|
1829
|
+
expandPreview?: boolean;
|
|
1782
1830
|
quickFilter?: boolean;
|
|
1783
1831
|
assistant?: {
|
|
1784
1832
|
usePrefixName?: boolean;
|
|
@@ -1809,6 +1857,7 @@ declare class AuditService {
|
|
|
1809
1857
|
advancedSearch?: boolean;
|
|
1810
1858
|
allowChatDrawer?: boolean;
|
|
1811
1859
|
filterLinkChildren?: boolean;
|
|
1860
|
+
expandPreview?: boolean;
|
|
1812
1861
|
quickFilter?: boolean;
|
|
1813
1862
|
assistant?: {
|
|
1814
1863
|
usePrefixName?: boolean;
|
|
@@ -1831,6 +1880,7 @@ declare class AuditService {
|
|
|
1831
1880
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1832
1881
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1833
1882
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1883
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1834
1884
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1835
1885
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1836
1886
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -1855,6 +1905,7 @@ declare class AuditService {
|
|
|
1855
1905
|
advancedSearch?: boolean;
|
|
1856
1906
|
allowChatDrawer?: boolean;
|
|
1857
1907
|
filterLinkChildren?: boolean;
|
|
1908
|
+
expandPreview?: boolean;
|
|
1858
1909
|
quickFilter?: boolean;
|
|
1859
1910
|
assistant?: {
|
|
1860
1911
|
usePrefixName?: boolean;
|
|
@@ -1882,7 +1933,7 @@ declare class AuditService {
|
|
|
1882
1933
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1883
1934
|
allowLabels: () => boolean;
|
|
1884
1935
|
getColumnAlias: (column: string) => string;
|
|
1885
|
-
getColumn: (
|
|
1936
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1886
1937
|
isDateColumn: (column: string) => boolean;
|
|
1887
1938
|
isTabSearch: (queryName: string) => boolean;
|
|
1888
1939
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1899,7 +1950,9 @@ declare class AuditService {
|
|
|
1899
1950
|
versionId: string;
|
|
1900
1951
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
1901
1952
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1902
|
-
indexes:
|
|
1953
|
+
indexes: {
|
|
1954
|
+
_: _sinequa_atomic.CCIndex;
|
|
1955
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1903
1956
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1904
1957
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1905
1958
|
queryNames: string;
|
|
@@ -1927,6 +1980,7 @@ declare class AuditService {
|
|
|
1927
1980
|
advancedSearch?: boolean;
|
|
1928
1981
|
allowChatDrawer?: boolean;
|
|
1929
1982
|
filterLinkChildren?: boolean;
|
|
1983
|
+
expandPreview?: boolean;
|
|
1930
1984
|
quickFilter?: boolean;
|
|
1931
1985
|
assistant?: {
|
|
1932
1986
|
usePrefixName?: boolean;
|
|
@@ -1957,6 +2011,7 @@ declare class AuditService {
|
|
|
1957
2011
|
advancedSearch?: boolean;
|
|
1958
2012
|
allowChatDrawer?: boolean;
|
|
1959
2013
|
filterLinkChildren?: boolean;
|
|
2014
|
+
expandPreview?: boolean;
|
|
1960
2015
|
quickFilter?: boolean;
|
|
1961
2016
|
assistant?: {
|
|
1962
2017
|
usePrefixName?: boolean;
|
|
@@ -1979,6 +2034,7 @@ declare class AuditService {
|
|
|
1979
2034
|
revision?: number | undefined;
|
|
1980
2035
|
runnableModels?: string | undefined;
|
|
1981
2036
|
authorizationLevel?: string | undefined;
|
|
2037
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1982
2038
|
}>;
|
|
1983
2039
|
app: _angular_core.Signal<CCApp>;
|
|
1984
2040
|
protected readonly http: HttpClient;
|
|
@@ -2075,7 +2131,9 @@ declare class AutocompleteService {
|
|
|
2075
2131
|
versionId: _angular_core.Signal<string>;
|
|
2076
2132
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
2077
2133
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
2078
|
-
indexes: _angular_core.Signal<
|
|
2134
|
+
indexes: _angular_core.Signal<{
|
|
2135
|
+
_: _sinequa_atomic.CCIndex;
|
|
2136
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
2079
2137
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
2080
2138
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
2081
2139
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -2103,6 +2161,7 @@ declare class AutocompleteService {
|
|
|
2103
2161
|
advancedSearch?: boolean;
|
|
2104
2162
|
allowChatDrawer?: boolean;
|
|
2105
2163
|
filterLinkChildren?: boolean;
|
|
2164
|
+
expandPreview?: boolean;
|
|
2106
2165
|
quickFilter?: boolean;
|
|
2107
2166
|
assistant?: {
|
|
2108
2167
|
usePrefixName?: boolean;
|
|
@@ -2133,6 +2192,7 @@ declare class AutocompleteService {
|
|
|
2133
2192
|
advancedSearch?: boolean;
|
|
2134
2193
|
allowChatDrawer?: boolean;
|
|
2135
2194
|
filterLinkChildren?: boolean;
|
|
2195
|
+
expandPreview?: boolean;
|
|
2136
2196
|
quickFilter?: boolean;
|
|
2137
2197
|
assistant?: {
|
|
2138
2198
|
usePrefixName?: boolean;
|
|
@@ -2155,6 +2215,7 @@ declare class AutocompleteService {
|
|
|
2155
2215
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
2156
2216
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
2157
2217
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
2218
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
2158
2219
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
2159
2220
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
2160
2221
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -2179,6 +2240,7 @@ declare class AutocompleteService {
|
|
|
2179
2240
|
advancedSearch?: boolean;
|
|
2180
2241
|
allowChatDrawer?: boolean;
|
|
2181
2242
|
filterLinkChildren?: boolean;
|
|
2243
|
+
expandPreview?: boolean;
|
|
2182
2244
|
quickFilter?: boolean;
|
|
2183
2245
|
assistant?: {
|
|
2184
2246
|
usePrefixName?: boolean;
|
|
@@ -2206,7 +2268,7 @@ declare class AutocompleteService {
|
|
|
2206
2268
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2207
2269
|
allowLabels: () => boolean;
|
|
2208
2270
|
getColumnAlias: (column: string) => string;
|
|
2209
|
-
getColumn: (
|
|
2271
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
2210
2272
|
isDateColumn: (column: string) => boolean;
|
|
2211
2273
|
isTabSearch: (queryName: string) => boolean;
|
|
2212
2274
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2223,7 +2285,9 @@ declare class AutocompleteService {
|
|
|
2223
2285
|
versionId: string;
|
|
2224
2286
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
2225
2287
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2226
|
-
indexes:
|
|
2288
|
+
indexes: {
|
|
2289
|
+
_: _sinequa_atomic.CCIndex;
|
|
2290
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2227
2291
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2228
2292
|
webServices: Record<string, CCWebService>;
|
|
2229
2293
|
queryNames: string;
|
|
@@ -2251,6 +2315,7 @@ declare class AutocompleteService {
|
|
|
2251
2315
|
advancedSearch?: boolean;
|
|
2252
2316
|
allowChatDrawer?: boolean;
|
|
2253
2317
|
filterLinkChildren?: boolean;
|
|
2318
|
+
expandPreview?: boolean;
|
|
2254
2319
|
quickFilter?: boolean;
|
|
2255
2320
|
assistant?: {
|
|
2256
2321
|
usePrefixName?: boolean;
|
|
@@ -2281,6 +2346,7 @@ declare class AutocompleteService {
|
|
|
2281
2346
|
advancedSearch?: boolean;
|
|
2282
2347
|
allowChatDrawer?: boolean;
|
|
2283
2348
|
filterLinkChildren?: boolean;
|
|
2349
|
+
expandPreview?: boolean;
|
|
2284
2350
|
quickFilter?: boolean;
|
|
2285
2351
|
assistant?: {
|
|
2286
2352
|
usePrefixName?: boolean;
|
|
@@ -2303,6 +2369,7 @@ declare class AutocompleteService {
|
|
|
2303
2369
|
revision?: number | undefined;
|
|
2304
2370
|
runnableModels?: string | undefined;
|
|
2305
2371
|
authorizationLevel?: string | undefined;
|
|
2372
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
2306
2373
|
}>;
|
|
2307
2374
|
/**
|
|
2308
2375
|
* Retrieves autocomplete items for the given text, max count for each
|
|
@@ -2449,6 +2516,7 @@ type CCAppState = CCApp & {
|
|
|
2449
2516
|
revision?: number;
|
|
2450
2517
|
runnableModels?: string;
|
|
2451
2518
|
authorizationLevel?: string;
|
|
2519
|
+
columnMap?: Record<string, CCColumn>;
|
|
2452
2520
|
};
|
|
2453
2521
|
type AssistantConfiguration = Record<string, AssistantDetails>;
|
|
2454
2522
|
interface AssistantDetails {
|
|
@@ -2470,7 +2538,9 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2470
2538
|
versionId: _angular_core.Signal<string>;
|
|
2471
2539
|
queries: _angular_core.Signal<Record<string, CCQuery>>;
|
|
2472
2540
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
2473
|
-
indexes: _angular_core.Signal<
|
|
2541
|
+
indexes: _angular_core.Signal<{
|
|
2542
|
+
_: _sinequa_atomic.CCIndex;
|
|
2543
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
2474
2544
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
2475
2545
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
2476
2546
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -2498,6 +2568,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2498
2568
|
advancedSearch?: boolean;
|
|
2499
2569
|
allowChatDrawer?: boolean;
|
|
2500
2570
|
filterLinkChildren?: boolean;
|
|
2571
|
+
expandPreview?: boolean;
|
|
2501
2572
|
quickFilter?: boolean;
|
|
2502
2573
|
assistant?: {
|
|
2503
2574
|
usePrefixName?: boolean;
|
|
@@ -2528,6 +2599,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2528
2599
|
advancedSearch?: boolean;
|
|
2529
2600
|
allowChatDrawer?: boolean;
|
|
2530
2601
|
filterLinkChildren?: boolean;
|
|
2602
|
+
expandPreview?: boolean;
|
|
2531
2603
|
quickFilter?: boolean;
|
|
2532
2604
|
assistant?: {
|
|
2533
2605
|
usePrefixName?: boolean;
|
|
@@ -2550,6 +2622,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2550
2622
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
2551
2623
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
2552
2624
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
2625
|
+
columnMap?: _angular_core.Signal<Record<string, CCColumn> | undefined> | undefined;
|
|
2553
2626
|
customizationJson: _angular_core.Signal<CJsonMint>;
|
|
2554
2627
|
sources: _angular_core.Signal<CSources>;
|
|
2555
2628
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -2574,6 +2647,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2574
2647
|
advancedSearch?: boolean;
|
|
2575
2648
|
allowChatDrawer?: boolean;
|
|
2576
2649
|
filterLinkChildren?: boolean;
|
|
2650
|
+
expandPreview?: boolean;
|
|
2577
2651
|
quickFilter?: boolean;
|
|
2578
2652
|
assistant?: {
|
|
2579
2653
|
usePrefixName?: boolean;
|
|
@@ -2599,7 +2673,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2599
2673
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2600
2674
|
allowLabels: () => boolean;
|
|
2601
2675
|
getColumnAlias: (column: string) => string;
|
|
2602
|
-
getColumn: (
|
|
2676
|
+
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2603
2677
|
isDateColumn: (column: string) => boolean;
|
|
2604
2678
|
isTabSearch: (queryName: string) => boolean;
|
|
2605
2679
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2616,7 +2690,9 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2616
2690
|
versionId: string;
|
|
2617
2691
|
queries: Record<string, CCQuery>;
|
|
2618
2692
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2619
|
-
indexes:
|
|
2693
|
+
indexes: {
|
|
2694
|
+
_: _sinequa_atomic.CCIndex;
|
|
2695
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2620
2696
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2621
2697
|
webServices: Record<string, CCWebService>;
|
|
2622
2698
|
queryNames: string;
|
|
@@ -2644,6 +2720,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2644
2720
|
advancedSearch?: boolean;
|
|
2645
2721
|
allowChatDrawer?: boolean;
|
|
2646
2722
|
filterLinkChildren?: boolean;
|
|
2723
|
+
expandPreview?: boolean;
|
|
2647
2724
|
quickFilter?: boolean;
|
|
2648
2725
|
assistant?: {
|
|
2649
2726
|
usePrefixName?: boolean;
|
|
@@ -2674,6 +2751,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2674
2751
|
advancedSearch?: boolean;
|
|
2675
2752
|
allowChatDrawer?: boolean;
|
|
2676
2753
|
filterLinkChildren?: boolean;
|
|
2754
|
+
expandPreview?: boolean;
|
|
2677
2755
|
quickFilter?: boolean;
|
|
2678
2756
|
assistant?: {
|
|
2679
2757
|
usePrefixName?: boolean;
|
|
@@ -2696,6 +2774,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2696
2774
|
revision?: number | undefined;
|
|
2697
2775
|
runnableModels?: string | undefined;
|
|
2698
2776
|
authorizationLevel?: string | undefined;
|
|
2777
|
+
columnMap?: Record<string, CCColumn> | undefined;
|
|
2699
2778
|
}>>;
|
|
2700
2779
|
/**
|
|
2701
2780
|
* Basic app management features
|
|
@@ -2707,7 +2786,9 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2707
2786
|
versionId: string;
|
|
2708
2787
|
queries: Record<string, CCQuery>;
|
|
2709
2788
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2710
|
-
indexes:
|
|
2789
|
+
indexes: {
|
|
2790
|
+
_: _sinequa_atomic.CCIndex;
|
|
2791
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2711
2792
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2712
2793
|
webServices: Record<string, CCWebService>;
|
|
2713
2794
|
queryNames: string;
|
|
@@ -2735,6 +2816,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2735
2816
|
advancedSearch?: boolean;
|
|
2736
2817
|
allowChatDrawer?: boolean;
|
|
2737
2818
|
filterLinkChildren?: boolean;
|
|
2819
|
+
expandPreview?: boolean;
|
|
2738
2820
|
quickFilter?: boolean;
|
|
2739
2821
|
assistant?: {
|
|
2740
2822
|
usePrefixName?: boolean;
|
|
@@ -2765,6 +2847,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2765
2847
|
advancedSearch?: boolean;
|
|
2766
2848
|
allowChatDrawer?: boolean;
|
|
2767
2849
|
filterLinkChildren?: boolean;
|
|
2850
|
+
expandPreview?: boolean;
|
|
2768
2851
|
quickFilter?: boolean;
|
|
2769
2852
|
assistant?: {
|
|
2770
2853
|
usePrefixName?: boolean;
|
|
@@ -2787,6 +2870,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2787
2870
|
revision?: number | undefined;
|
|
2788
2871
|
runnableModels?: string | undefined;
|
|
2789
2872
|
authorizationLevel?: string | undefined;
|
|
2873
|
+
columnMap?: Record<string, CCColumn> | undefined;
|
|
2790
2874
|
};
|
|
2791
2875
|
props: {};
|
|
2792
2876
|
methods: {
|
|
@@ -2805,7 +2889,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2805
2889
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2806
2890
|
allowLabels: () => boolean;
|
|
2807
2891
|
getColumnAlias: (column: string) => string;
|
|
2808
|
-
getColumn: (
|
|
2892
|
+
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2809
2893
|
isDateColumn: (column: string) => boolean;
|
|
2810
2894
|
isTabSearch: (queryName: string) => boolean;
|
|
2811
2895
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2846,6 +2930,7 @@ declare function withAppCustomizationFeatures(): _ngrx_signals.SignalStoreFeatur
|
|
|
2846
2930
|
advancedSearch?: boolean;
|
|
2847
2931
|
allowChatDrawer?: boolean;
|
|
2848
2932
|
filterLinkChildren?: boolean;
|
|
2933
|
+
expandPreview?: boolean;
|
|
2849
2934
|
quickFilter?: boolean;
|
|
2850
2935
|
assistant?: {
|
|
2851
2936
|
usePrefixName?: boolean;
|
|
@@ -2994,10 +3079,8 @@ type QueryParams = {
|
|
|
2994
3079
|
b?: string;
|
|
2995
3080
|
};
|
|
2996
3081
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
2997
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2998
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
2999
3082
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3000
|
-
|
|
3083
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3001
3084
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3002
3085
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
3003
3086
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -3005,6 +3088,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3005
3088
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
3006
3089
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
3007
3090
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
3091
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3008
3092
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
3009
3093
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3010
3094
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3018,6 +3102,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3018
3102
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3019
3103
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3020
3104
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
3105
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3021
3106
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3022
3107
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3023
3108
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3041,10 +3126,8 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3041
3126
|
}> | null;
|
|
3042
3127
|
getQuery: () => _sinequa_atomic.Query;
|
|
3043
3128
|
} & _ngrx_signals.StateSource<{
|
|
3044
|
-
text?: string | undefined;
|
|
3045
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3046
3129
|
name?: string | undefined;
|
|
3047
|
-
|
|
3130
|
+
text?: string | undefined;
|
|
3048
3131
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3049
3132
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
3050
3133
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -3052,6 +3135,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3052
3135
|
pageSize?: number | undefined;
|
|
3053
3136
|
tab?: string | undefined;
|
|
3054
3137
|
scope?: string | undefined;
|
|
3138
|
+
sort?: string | undefined;
|
|
3055
3139
|
basket?: string | undefined;
|
|
3056
3140
|
isFirstPage?: boolean | undefined;
|
|
3057
3141
|
strictRefine?: boolean | undefined;
|
|
@@ -3065,6 +3149,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3065
3149
|
relevanceTransforms?: string | undefined;
|
|
3066
3150
|
removeDuplicates?: boolean | undefined;
|
|
3067
3151
|
queryId?: string | undefined;
|
|
3152
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3068
3153
|
orderBy?: string | undefined;
|
|
3069
3154
|
groupBy?: string | undefined;
|
|
3070
3155
|
neuralSearch?: boolean | undefined;
|
|
@@ -3074,10 +3159,8 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3074
3159
|
}>>;
|
|
3075
3160
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
3076
3161
|
state: {
|
|
3077
|
-
text?: string | undefined;
|
|
3078
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3079
3162
|
name?: string | undefined;
|
|
3080
|
-
|
|
3163
|
+
text?: string | undefined;
|
|
3081
3164
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3082
3165
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
3083
3166
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -3085,6 +3168,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3085
3168
|
pageSize?: number | undefined;
|
|
3086
3169
|
tab?: string | undefined;
|
|
3087
3170
|
scope?: string | undefined;
|
|
3171
|
+
sort?: string | undefined;
|
|
3088
3172
|
basket?: string | undefined;
|
|
3089
3173
|
isFirstPage?: boolean | undefined;
|
|
3090
3174
|
strictRefine?: boolean | undefined;
|
|
@@ -3098,6 +3182,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3098
3182
|
relevanceTransforms?: string | undefined;
|
|
3099
3183
|
removeDuplicates?: boolean | undefined;
|
|
3100
3184
|
queryId?: string | undefined;
|
|
3185
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3101
3186
|
orderBy?: string | undefined;
|
|
3102
3187
|
groupBy?: string | undefined;
|
|
3103
3188
|
neuralSearch?: boolean | undefined;
|
|
@@ -3645,10 +3730,8 @@ declare class PreviewService {
|
|
|
3645
3730
|
multiSelection: Article$1[];
|
|
3646
3731
|
}>;
|
|
3647
3732
|
protected readonly queryParamsStore: {
|
|
3648
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3649
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3650
3733
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3651
|
-
|
|
3734
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3652
3735
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3653
3736
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
3654
3737
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -3656,6 +3739,7 @@ declare class PreviewService {
|
|
|
3656
3739
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
3657
3740
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
3658
3741
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
3742
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3659
3743
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
3660
3744
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3661
3745
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3669,6 +3753,7 @@ declare class PreviewService {
|
|
|
3669
3753
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3670
3754
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3671
3755
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
3756
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3672
3757
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3673
3758
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3674
3759
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3699,10 +3784,8 @@ declare class PreviewService {
|
|
|
3699
3784
|
}> | null;
|
|
3700
3785
|
getQuery: () => Query;
|
|
3701
3786
|
} & _ngrx_signals.StateSource<{
|
|
3702
|
-
text?: string | undefined;
|
|
3703
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3704
3787
|
name?: string | undefined;
|
|
3705
|
-
|
|
3788
|
+
text?: string | undefined;
|
|
3706
3789
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3707
3790
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
3708
3791
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -3710,6 +3793,7 @@ declare class PreviewService {
|
|
|
3710
3793
|
pageSize?: number | undefined;
|
|
3711
3794
|
tab?: string | undefined;
|
|
3712
3795
|
scope?: string | undefined;
|
|
3796
|
+
sort?: string | undefined;
|
|
3713
3797
|
basket?: string | undefined;
|
|
3714
3798
|
isFirstPage?: boolean | undefined;
|
|
3715
3799
|
strictRefine?: boolean | undefined;
|
|
@@ -3723,6 +3807,7 @@ declare class PreviewService {
|
|
|
3723
3807
|
relevanceTransforms?: string | undefined;
|
|
3724
3808
|
removeDuplicates?: boolean | undefined;
|
|
3725
3809
|
queryId?: string | undefined;
|
|
3810
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3726
3811
|
orderBy?: string | undefined;
|
|
3727
3812
|
groupBy?: string | undefined;
|
|
3728
3813
|
neuralSearch?: boolean | undefined;
|
|
@@ -3736,7 +3821,9 @@ declare class PreviewService {
|
|
|
3736
3821
|
versionId: _angular_core.Signal<string>;
|
|
3737
3822
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
3738
3823
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
3739
|
-
indexes: _angular_core.Signal<
|
|
3824
|
+
indexes: _angular_core.Signal<{
|
|
3825
|
+
_: _sinequa_atomic.CCIndex;
|
|
3826
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
3740
3827
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
3741
3828
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
3742
3829
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -3764,6 +3851,7 @@ declare class PreviewService {
|
|
|
3764
3851
|
advancedSearch?: boolean;
|
|
3765
3852
|
allowChatDrawer?: boolean;
|
|
3766
3853
|
filterLinkChildren?: boolean;
|
|
3854
|
+
expandPreview?: boolean;
|
|
3767
3855
|
quickFilter?: boolean;
|
|
3768
3856
|
assistant?: {
|
|
3769
3857
|
usePrefixName?: boolean;
|
|
@@ -3794,6 +3882,7 @@ declare class PreviewService {
|
|
|
3794
3882
|
advancedSearch?: boolean;
|
|
3795
3883
|
allowChatDrawer?: boolean;
|
|
3796
3884
|
filterLinkChildren?: boolean;
|
|
3885
|
+
expandPreview?: boolean;
|
|
3797
3886
|
quickFilter?: boolean;
|
|
3798
3887
|
assistant?: {
|
|
3799
3888
|
usePrefixName?: boolean;
|
|
@@ -3816,6 +3905,7 @@ declare class PreviewService {
|
|
|
3816
3905
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
3817
3906
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
3818
3907
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
3908
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
3819
3909
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
3820
3910
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
3821
3911
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -3840,6 +3930,7 @@ declare class PreviewService {
|
|
|
3840
3930
|
advancedSearch?: boolean;
|
|
3841
3931
|
allowChatDrawer?: boolean;
|
|
3842
3932
|
filterLinkChildren?: boolean;
|
|
3933
|
+
expandPreview?: boolean;
|
|
3843
3934
|
quickFilter?: boolean;
|
|
3844
3935
|
assistant?: {
|
|
3845
3936
|
usePrefixName?: boolean;
|
|
@@ -3867,7 +3958,7 @@ declare class PreviewService {
|
|
|
3867
3958
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
3868
3959
|
allowLabels: () => boolean;
|
|
3869
3960
|
getColumnAlias: (column: string) => string;
|
|
3870
|
-
getColumn: (
|
|
3961
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
3871
3962
|
isDateColumn: (column: string) => boolean;
|
|
3872
3963
|
isTabSearch: (queryName: string) => boolean;
|
|
3873
3964
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -3884,7 +3975,9 @@ declare class PreviewService {
|
|
|
3884
3975
|
versionId: string;
|
|
3885
3976
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
3886
3977
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
3887
|
-
indexes:
|
|
3978
|
+
indexes: {
|
|
3979
|
+
_: _sinequa_atomic.CCIndex;
|
|
3980
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
3888
3981
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
3889
3982
|
webServices: Record<string, CCWebService>;
|
|
3890
3983
|
queryNames: string;
|
|
@@ -3912,6 +4005,7 @@ declare class PreviewService {
|
|
|
3912
4005
|
advancedSearch?: boolean;
|
|
3913
4006
|
allowChatDrawer?: boolean;
|
|
3914
4007
|
filterLinkChildren?: boolean;
|
|
4008
|
+
expandPreview?: boolean;
|
|
3915
4009
|
quickFilter?: boolean;
|
|
3916
4010
|
assistant?: {
|
|
3917
4011
|
usePrefixName?: boolean;
|
|
@@ -3942,6 +4036,7 @@ declare class PreviewService {
|
|
|
3942
4036
|
advancedSearch?: boolean;
|
|
3943
4037
|
allowChatDrawer?: boolean;
|
|
3944
4038
|
filterLinkChildren?: boolean;
|
|
4039
|
+
expandPreview?: boolean;
|
|
3945
4040
|
quickFilter?: boolean;
|
|
3946
4041
|
assistant?: {
|
|
3947
4042
|
usePrefixName?: boolean;
|
|
@@ -3964,6 +4059,7 @@ declare class PreviewService {
|
|
|
3964
4059
|
revision?: number | undefined;
|
|
3965
4060
|
runnableModels?: string | undefined;
|
|
3966
4061
|
authorizationLevel?: string | undefined;
|
|
4062
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
3967
4063
|
}>;
|
|
3968
4064
|
protected readonly sanitizer: DomSanitizer;
|
|
3969
4065
|
protected readonly queryService: QueryService;
|
|
@@ -4189,10 +4285,8 @@ declare class SavedSearchesService {
|
|
|
4189
4285
|
userTheme: "dark" | "light" | "system";
|
|
4190
4286
|
}>;
|
|
4191
4287
|
protected readonly queryParamsStore: {
|
|
4192
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4193
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4194
4288
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4195
|
-
|
|
4289
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4196
4290
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4197
4291
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4198
4292
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4200,6 +4294,7 @@ declare class SavedSearchesService {
|
|
|
4200
4294
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4201
4295
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4202
4296
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4297
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4203
4298
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4204
4299
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4205
4300
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4213,6 +4308,7 @@ declare class SavedSearchesService {
|
|
|
4213
4308
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4214
4309
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4215
4310
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4311
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4216
4312
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4217
4313
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4218
4314
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4243,10 +4339,8 @@ declare class SavedSearchesService {
|
|
|
4243
4339
|
}> | null;
|
|
4244
4340
|
getQuery: () => _sinequa_atomic.Query;
|
|
4245
4341
|
} & _ngrx_signals.StateSource<{
|
|
4246
|
-
text?: string | undefined;
|
|
4247
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4248
4342
|
name?: string | undefined;
|
|
4249
|
-
|
|
4343
|
+
text?: string | undefined;
|
|
4250
4344
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4251
4345
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4252
4346
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4254,6 +4348,7 @@ declare class SavedSearchesService {
|
|
|
4254
4348
|
pageSize?: number | undefined;
|
|
4255
4349
|
tab?: string | undefined;
|
|
4256
4350
|
scope?: string | undefined;
|
|
4351
|
+
sort?: string | undefined;
|
|
4257
4352
|
basket?: string | undefined;
|
|
4258
4353
|
isFirstPage?: boolean | undefined;
|
|
4259
4354
|
strictRefine?: boolean | undefined;
|
|
@@ -4267,6 +4362,7 @@ declare class SavedSearchesService {
|
|
|
4267
4362
|
relevanceTransforms?: string | undefined;
|
|
4268
4363
|
removeDuplicates?: boolean | undefined;
|
|
4269
4364
|
queryId?: string | undefined;
|
|
4365
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4270
4366
|
orderBy?: string | undefined;
|
|
4271
4367
|
groupBy?: string | undefined;
|
|
4272
4368
|
neuralSearch?: boolean | undefined;
|
|
@@ -4329,10 +4425,8 @@ declare class SearchService {
|
|
|
4329
4425
|
result: Result;
|
|
4330
4426
|
audit?: AuditEvents;
|
|
4331
4427
|
protected readonly queryParamsStore: {
|
|
4332
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4333
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4334
4428
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4335
|
-
|
|
4429
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4336
4430
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4337
4431
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4338
4432
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4340,6 +4434,7 @@ declare class SearchService {
|
|
|
4340
4434
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4341
4435
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4342
4436
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4437
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4343
4438
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4344
4439
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4345
4440
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4353,6 +4448,7 @@ declare class SearchService {
|
|
|
4353
4448
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4354
4449
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4355
4450
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4451
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4356
4452
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4357
4453
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4358
4454
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4383,10 +4479,8 @@ declare class SearchService {
|
|
|
4383
4479
|
}> | null;
|
|
4384
4480
|
getQuery: () => Query;
|
|
4385
4481
|
} & _ngrx_signals.StateSource<{
|
|
4386
|
-
text?: string | undefined;
|
|
4387
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4388
4482
|
name?: string | undefined;
|
|
4389
|
-
|
|
4483
|
+
text?: string | undefined;
|
|
4390
4484
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4391
4485
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4392
4486
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4394,6 +4488,7 @@ declare class SearchService {
|
|
|
4394
4488
|
pageSize?: number | undefined;
|
|
4395
4489
|
tab?: string | undefined;
|
|
4396
4490
|
scope?: string | undefined;
|
|
4491
|
+
sort?: string | undefined;
|
|
4397
4492
|
basket?: string | undefined;
|
|
4398
4493
|
isFirstPage?: boolean | undefined;
|
|
4399
4494
|
strictRefine?: boolean | undefined;
|
|
@@ -4407,6 +4502,7 @@ declare class SearchService {
|
|
|
4407
4502
|
relevanceTransforms?: string | undefined;
|
|
4408
4503
|
removeDuplicates?: boolean | undefined;
|
|
4409
4504
|
queryId?: string | undefined;
|
|
4505
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4410
4506
|
orderBy?: string | undefined;
|
|
4411
4507
|
groupBy?: string | undefined;
|
|
4412
4508
|
neuralSearch?: boolean | undefined;
|
|
@@ -4563,10 +4659,8 @@ declare class SelectionService {
|
|
|
4563
4659
|
private readonly location;
|
|
4564
4660
|
private readonly selectionStore;
|
|
4565
4661
|
queryParamsStore: {
|
|
4566
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4567
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4568
4662
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4569
|
-
|
|
4663
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4570
4664
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4571
4665
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4572
4666
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4574,6 +4668,7 @@ declare class SelectionService {
|
|
|
4574
4668
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4575
4669
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4576
4670
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4671
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4577
4672
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4578
4673
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4579
4674
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4587,6 +4682,7 @@ declare class SelectionService {
|
|
|
4587
4682
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4588
4683
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4589
4684
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4685
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4590
4686
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4591
4687
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4592
4688
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4617,10 +4713,8 @@ declare class SelectionService {
|
|
|
4617
4713
|
}> | null;
|
|
4618
4714
|
getQuery: () => _sinequa_atomic.Query;
|
|
4619
4715
|
} & _ngrx_signals.StateSource<{
|
|
4620
|
-
text?: string | undefined;
|
|
4621
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4622
4716
|
name?: string | undefined;
|
|
4623
|
-
|
|
4717
|
+
text?: string | undefined;
|
|
4624
4718
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4625
4719
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4626
4720
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4628,6 +4722,7 @@ declare class SelectionService {
|
|
|
4628
4722
|
pageSize?: number | undefined;
|
|
4629
4723
|
tab?: string | undefined;
|
|
4630
4724
|
scope?: string | undefined;
|
|
4725
|
+
sort?: string | undefined;
|
|
4631
4726
|
basket?: string | undefined;
|
|
4632
4727
|
isFirstPage?: boolean | undefined;
|
|
4633
4728
|
strictRefine?: boolean | undefined;
|
|
@@ -4641,6 +4736,7 @@ declare class SelectionService {
|
|
|
4641
4736
|
relevanceTransforms?: string | undefined;
|
|
4642
4737
|
removeDuplicates?: boolean | undefined;
|
|
4643
4738
|
queryId?: string | undefined;
|
|
4739
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4644
4740
|
orderBy?: string | undefined;
|
|
4645
4741
|
groupBy?: string | undefined;
|
|
4646
4742
|
neuralSearch?: boolean | undefined;
|
|
@@ -4725,10 +4821,8 @@ declare class NavbarTabsComponent {
|
|
|
4725
4821
|
readonly drawerStack: DrawerStackService;
|
|
4726
4822
|
readonly drawerOpened: _angular_core.Signal<boolean>;
|
|
4727
4823
|
readonly queryParamsStore: {
|
|
4728
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4729
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4730
4824
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4731
|
-
|
|
4825
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4732
4826
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4733
4827
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4734
4828
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -4736,6 +4830,7 @@ declare class NavbarTabsComponent {
|
|
|
4736
4830
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4737
4831
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4738
4832
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4833
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4739
4834
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4740
4835
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4741
4836
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4749,6 +4844,7 @@ declare class NavbarTabsComponent {
|
|
|
4749
4844
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4750
4845
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4751
4846
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4847
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4752
4848
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4753
4849
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4754
4850
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4779,10 +4875,8 @@ declare class NavbarTabsComponent {
|
|
|
4779
4875
|
}> | null;
|
|
4780
4876
|
getQuery: () => _sinequa_atomic.Query;
|
|
4781
4877
|
} & _ngrx_signals.StateSource<{
|
|
4782
|
-
text?: string | undefined;
|
|
4783
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4784
4878
|
name?: string | undefined;
|
|
4785
|
-
|
|
4879
|
+
text?: string | undefined;
|
|
4786
4880
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4787
4881
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4788
4882
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -4790,6 +4884,7 @@ declare class NavbarTabsComponent {
|
|
|
4790
4884
|
pageSize?: number | undefined;
|
|
4791
4885
|
tab?: string | undefined;
|
|
4792
4886
|
scope?: string | undefined;
|
|
4887
|
+
sort?: string | undefined;
|
|
4793
4888
|
basket?: string | undefined;
|
|
4794
4889
|
isFirstPage?: boolean | undefined;
|
|
4795
4890
|
strictRefine?: boolean | undefined;
|
|
@@ -4803,6 +4898,7 @@ declare class NavbarTabsComponent {
|
|
|
4803
4898
|
relevanceTransforms?: string | undefined;
|
|
4804
4899
|
removeDuplicates?: boolean | undefined;
|
|
4805
4900
|
queryId?: string | undefined;
|
|
4901
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4806
4902
|
orderBy?: string | undefined;
|
|
4807
4903
|
groupBy?: string | undefined;
|
|
4808
4904
|
neuralSearch?: boolean | undefined;
|
|
@@ -5326,7 +5422,9 @@ declare class SortSelectorComponent {
|
|
|
5326
5422
|
versionId: _angular_core.Signal<string>;
|
|
5327
5423
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5328
5424
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5329
|
-
indexes: _angular_core.Signal<
|
|
5425
|
+
indexes: _angular_core.Signal<{
|
|
5426
|
+
_: _sinequa_atomic.CCIndex;
|
|
5427
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5330
5428
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5331
5429
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5332
5430
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -5354,6 +5452,7 @@ declare class SortSelectorComponent {
|
|
|
5354
5452
|
advancedSearch?: boolean;
|
|
5355
5453
|
allowChatDrawer?: boolean;
|
|
5356
5454
|
filterLinkChildren?: boolean;
|
|
5455
|
+
expandPreview?: boolean;
|
|
5357
5456
|
quickFilter?: boolean;
|
|
5358
5457
|
assistant?: {
|
|
5359
5458
|
usePrefixName?: boolean;
|
|
@@ -5384,6 +5483,7 @@ declare class SortSelectorComponent {
|
|
|
5384
5483
|
advancedSearch?: boolean;
|
|
5385
5484
|
allowChatDrawer?: boolean;
|
|
5386
5485
|
filterLinkChildren?: boolean;
|
|
5486
|
+
expandPreview?: boolean;
|
|
5387
5487
|
quickFilter?: boolean;
|
|
5388
5488
|
assistant?: {
|
|
5389
5489
|
usePrefixName?: boolean;
|
|
@@ -5406,6 +5506,7 @@ declare class SortSelectorComponent {
|
|
|
5406
5506
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5407
5507
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5408
5508
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5509
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5409
5510
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5410
5511
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5411
5512
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -5430,6 +5531,7 @@ declare class SortSelectorComponent {
|
|
|
5430
5531
|
advancedSearch?: boolean;
|
|
5431
5532
|
allowChatDrawer?: boolean;
|
|
5432
5533
|
filterLinkChildren?: boolean;
|
|
5534
|
+
expandPreview?: boolean;
|
|
5433
5535
|
quickFilter?: boolean;
|
|
5434
5536
|
assistant?: {
|
|
5435
5537
|
usePrefixName?: boolean;
|
|
@@ -5457,7 +5559,7 @@ declare class SortSelectorComponent {
|
|
|
5457
5559
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
5458
5560
|
allowLabels: () => boolean;
|
|
5459
5561
|
getColumnAlias: (column: string) => string;
|
|
5460
|
-
getColumn: (
|
|
5562
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5461
5563
|
isDateColumn: (column: string) => boolean;
|
|
5462
5564
|
isTabSearch: (queryName: string) => boolean;
|
|
5463
5565
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -5474,7 +5576,9 @@ declare class SortSelectorComponent {
|
|
|
5474
5576
|
versionId: string;
|
|
5475
5577
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5476
5578
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5477
|
-
indexes:
|
|
5579
|
+
indexes: {
|
|
5580
|
+
_: _sinequa_atomic.CCIndex;
|
|
5581
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5478
5582
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5479
5583
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5480
5584
|
queryNames: string;
|
|
@@ -5502,6 +5606,7 @@ declare class SortSelectorComponent {
|
|
|
5502
5606
|
advancedSearch?: boolean;
|
|
5503
5607
|
allowChatDrawer?: boolean;
|
|
5504
5608
|
filterLinkChildren?: boolean;
|
|
5609
|
+
expandPreview?: boolean;
|
|
5505
5610
|
quickFilter?: boolean;
|
|
5506
5611
|
assistant?: {
|
|
5507
5612
|
usePrefixName?: boolean;
|
|
@@ -5532,6 +5637,7 @@ declare class SortSelectorComponent {
|
|
|
5532
5637
|
advancedSearch?: boolean;
|
|
5533
5638
|
allowChatDrawer?: boolean;
|
|
5534
5639
|
filterLinkChildren?: boolean;
|
|
5640
|
+
expandPreview?: boolean;
|
|
5535
5641
|
quickFilter?: boolean;
|
|
5536
5642
|
assistant?: {
|
|
5537
5643
|
usePrefixName?: boolean;
|
|
@@ -5554,6 +5660,7 @@ declare class SortSelectorComponent {
|
|
|
5554
5660
|
revision?: number | undefined;
|
|
5555
5661
|
runnableModels?: string | undefined;
|
|
5556
5662
|
authorizationLevel?: string | undefined;
|
|
5663
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5557
5664
|
}>;
|
|
5558
5665
|
readonly queryName: _angular_core.Signal<string>;
|
|
5559
5666
|
readonly sortOptions: _angular_core.Signal<SortingChoice[]>;
|
|
@@ -5588,7 +5695,9 @@ declare class SponsoredResultsComponent {
|
|
|
5588
5695
|
versionId: _angular_core.Signal<string>;
|
|
5589
5696
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5590
5697
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5591
|
-
indexes: _angular_core.Signal<
|
|
5698
|
+
indexes: _angular_core.Signal<{
|
|
5699
|
+
_: _sinequa_atomic.CCIndex;
|
|
5700
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5592
5701
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5593
5702
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5594
5703
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -5616,6 +5725,7 @@ declare class SponsoredResultsComponent {
|
|
|
5616
5725
|
advancedSearch?: boolean;
|
|
5617
5726
|
allowChatDrawer?: boolean;
|
|
5618
5727
|
filterLinkChildren?: boolean;
|
|
5728
|
+
expandPreview?: boolean;
|
|
5619
5729
|
quickFilter?: boolean;
|
|
5620
5730
|
assistant?: {
|
|
5621
5731
|
usePrefixName?: boolean;
|
|
@@ -5646,6 +5756,7 @@ declare class SponsoredResultsComponent {
|
|
|
5646
5756
|
advancedSearch?: boolean;
|
|
5647
5757
|
allowChatDrawer?: boolean;
|
|
5648
5758
|
filterLinkChildren?: boolean;
|
|
5759
|
+
expandPreview?: boolean;
|
|
5649
5760
|
quickFilter?: boolean;
|
|
5650
5761
|
assistant?: {
|
|
5651
5762
|
usePrefixName?: boolean;
|
|
@@ -5668,6 +5779,7 @@ declare class SponsoredResultsComponent {
|
|
|
5668
5779
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5669
5780
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5670
5781
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5782
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5671
5783
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5672
5784
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5673
5785
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -5692,6 +5804,7 @@ declare class SponsoredResultsComponent {
|
|
|
5692
5804
|
advancedSearch?: boolean;
|
|
5693
5805
|
allowChatDrawer?: boolean;
|
|
5694
5806
|
filterLinkChildren?: boolean;
|
|
5807
|
+
expandPreview?: boolean;
|
|
5695
5808
|
quickFilter?: boolean;
|
|
5696
5809
|
assistant?: {
|
|
5697
5810
|
usePrefixName?: boolean;
|
|
@@ -5719,7 +5832,7 @@ declare class SponsoredResultsComponent {
|
|
|
5719
5832
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
5720
5833
|
allowLabels: () => boolean;
|
|
5721
5834
|
getColumnAlias: (column: string) => string;
|
|
5722
|
-
getColumn: (
|
|
5835
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5723
5836
|
isDateColumn: (column: string) => boolean;
|
|
5724
5837
|
isTabSearch: (queryName: string) => boolean;
|
|
5725
5838
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -5736,7 +5849,9 @@ declare class SponsoredResultsComponent {
|
|
|
5736
5849
|
versionId: string;
|
|
5737
5850
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5738
5851
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5739
|
-
indexes:
|
|
5852
|
+
indexes: {
|
|
5853
|
+
_: _sinequa_atomic.CCIndex;
|
|
5854
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5740
5855
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5741
5856
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5742
5857
|
queryNames: string;
|
|
@@ -5764,6 +5879,7 @@ declare class SponsoredResultsComponent {
|
|
|
5764
5879
|
advancedSearch?: boolean;
|
|
5765
5880
|
allowChatDrawer?: boolean;
|
|
5766
5881
|
filterLinkChildren?: boolean;
|
|
5882
|
+
expandPreview?: boolean;
|
|
5767
5883
|
quickFilter?: boolean;
|
|
5768
5884
|
assistant?: {
|
|
5769
5885
|
usePrefixName?: boolean;
|
|
@@ -5794,6 +5910,7 @@ declare class SponsoredResultsComponent {
|
|
|
5794
5910
|
advancedSearch?: boolean;
|
|
5795
5911
|
allowChatDrawer?: boolean;
|
|
5796
5912
|
filterLinkChildren?: boolean;
|
|
5913
|
+
expandPreview?: boolean;
|
|
5797
5914
|
quickFilter?: boolean;
|
|
5798
5915
|
assistant?: {
|
|
5799
5916
|
usePrefixName?: boolean;
|
|
@@ -5816,12 +5933,11 @@ declare class SponsoredResultsComponent {
|
|
|
5816
5933
|
revision?: number | undefined;
|
|
5817
5934
|
runnableModels?: string | undefined;
|
|
5818
5935
|
authorizationLevel?: string | undefined;
|
|
5936
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5819
5937
|
}>;
|
|
5820
5938
|
queryParamStore: {
|
|
5821
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5822
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5823
5939
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5824
|
-
|
|
5940
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5825
5941
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5826
5942
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5827
5943
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -5829,6 +5945,7 @@ declare class SponsoredResultsComponent {
|
|
|
5829
5945
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
5830
5946
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
5831
5947
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5948
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
5832
5949
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
5833
5950
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5834
5951
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5842,6 +5959,7 @@ declare class SponsoredResultsComponent {
|
|
|
5842
5959
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5843
5960
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5844
5961
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5962
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5845
5963
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5846
5964
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5847
5965
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5872,10 +5990,8 @@ declare class SponsoredResultsComponent {
|
|
|
5872
5990
|
}> | null;
|
|
5873
5991
|
getQuery: () => _sinequa_atomic.Query;
|
|
5874
5992
|
} & _ngrx_signals.StateSource<{
|
|
5875
|
-
text?: string | undefined;
|
|
5876
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5877
5993
|
name?: string | undefined;
|
|
5878
|
-
|
|
5994
|
+
text?: string | undefined;
|
|
5879
5995
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5880
5996
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5881
5997
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -5883,6 +5999,7 @@ declare class SponsoredResultsComponent {
|
|
|
5883
5999
|
pageSize?: number | undefined;
|
|
5884
6000
|
tab?: string | undefined;
|
|
5885
6001
|
scope?: string | undefined;
|
|
6002
|
+
sort?: string | undefined;
|
|
5886
6003
|
basket?: string | undefined;
|
|
5887
6004
|
isFirstPage?: boolean | undefined;
|
|
5888
6005
|
strictRefine?: boolean | undefined;
|
|
@@ -5896,6 +6013,7 @@ declare class SponsoredResultsComponent {
|
|
|
5896
6013
|
relevanceTransforms?: string | undefined;
|
|
5897
6014
|
removeDuplicates?: boolean | undefined;
|
|
5898
6015
|
queryId?: string | undefined;
|
|
6016
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5899
6017
|
orderBy?: string | undefined;
|
|
5900
6018
|
groupBy?: string | undefined;
|
|
5901
6019
|
neuralSearch?: boolean | undefined;
|
|
@@ -6057,11 +6175,12 @@ declare const authInterceptorFn: HttpInterceptorFn;
|
|
|
6057
6175
|
declare const bodyInterceptorFn: (request: HttpRequest<unknown>, next: HttpHandlerFn) => rxjs.Observable<_angular_common_http.HttpEvent<unknown>>;
|
|
6058
6176
|
|
|
6059
6177
|
/**
|
|
6060
|
-
* Interceptor function that handles HTTP errors by
|
|
6178
|
+
* Interceptor function that handles HTTP 401 errors by refreshing authentication
|
|
6179
|
+
* and retrying the original request. For 403 errors, logs out the user.
|
|
6061
6180
|
*
|
|
6062
6181
|
* @param request - The HTTP request object.
|
|
6063
6182
|
* @param next - The HTTP handler function.
|
|
6064
|
-
* @returns The
|
|
6183
|
+
* @returns The response observable or error observable.
|
|
6065
6184
|
*/
|
|
6066
6185
|
declare const errorInterceptorFn: HttpInterceptorFn;
|
|
6067
6186
|
|
|
@@ -6117,7 +6236,9 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6117
6236
|
versionId: _angular_core.Signal<string>;
|
|
6118
6237
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
6119
6238
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
6120
|
-
indexes: _angular_core.Signal<
|
|
6239
|
+
indexes: _angular_core.Signal<{
|
|
6240
|
+
_: _sinequa_atomic.CCIndex;
|
|
6241
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
6121
6242
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
6122
6243
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
6123
6244
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -6145,6 +6266,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6145
6266
|
advancedSearch?: boolean;
|
|
6146
6267
|
allowChatDrawer?: boolean;
|
|
6147
6268
|
filterLinkChildren?: boolean;
|
|
6269
|
+
expandPreview?: boolean;
|
|
6148
6270
|
quickFilter?: boolean;
|
|
6149
6271
|
assistant?: {
|
|
6150
6272
|
usePrefixName?: boolean;
|
|
@@ -6175,6 +6297,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6175
6297
|
advancedSearch?: boolean;
|
|
6176
6298
|
allowChatDrawer?: boolean;
|
|
6177
6299
|
filterLinkChildren?: boolean;
|
|
6300
|
+
expandPreview?: boolean;
|
|
6178
6301
|
quickFilter?: boolean;
|
|
6179
6302
|
assistant?: {
|
|
6180
6303
|
usePrefixName?: boolean;
|
|
@@ -6197,6 +6320,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6197
6320
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
6198
6321
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
6199
6322
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
6323
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
6200
6324
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
6201
6325
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
6202
6326
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -6221,6 +6345,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6221
6345
|
advancedSearch?: boolean;
|
|
6222
6346
|
allowChatDrawer?: boolean;
|
|
6223
6347
|
filterLinkChildren?: boolean;
|
|
6348
|
+
expandPreview?: boolean;
|
|
6224
6349
|
quickFilter?: boolean;
|
|
6225
6350
|
assistant?: {
|
|
6226
6351
|
usePrefixName?: boolean;
|
|
@@ -6248,7 +6373,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6248
6373
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
6249
6374
|
allowLabels: () => boolean;
|
|
6250
6375
|
getColumnAlias: (column: string) => string;
|
|
6251
|
-
getColumn: (
|
|
6376
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
6252
6377
|
isDateColumn: (column: string) => boolean;
|
|
6253
6378
|
isTabSearch: (queryName: string) => boolean;
|
|
6254
6379
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -6265,7 +6390,9 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6265
6390
|
versionId: string;
|
|
6266
6391
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
6267
6392
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
6268
|
-
indexes:
|
|
6393
|
+
indexes: {
|
|
6394
|
+
_: _sinequa_atomic.CCIndex;
|
|
6395
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
6269
6396
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
6270
6397
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
6271
6398
|
queryNames: string;
|
|
@@ -6293,6 +6420,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6293
6420
|
advancedSearch?: boolean;
|
|
6294
6421
|
allowChatDrawer?: boolean;
|
|
6295
6422
|
filterLinkChildren?: boolean;
|
|
6423
|
+
expandPreview?: boolean;
|
|
6296
6424
|
quickFilter?: boolean;
|
|
6297
6425
|
assistant?: {
|
|
6298
6426
|
usePrefixName?: boolean;
|
|
@@ -6323,6 +6451,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6323
6451
|
advancedSearch?: boolean;
|
|
6324
6452
|
allowChatDrawer?: boolean;
|
|
6325
6453
|
filterLinkChildren?: boolean;
|
|
6454
|
+
expandPreview?: boolean;
|
|
6326
6455
|
quickFilter?: boolean;
|
|
6327
6456
|
assistant?: {
|
|
6328
6457
|
usePrefixName?: boolean;
|
|
@@ -6345,6 +6474,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6345
6474
|
revision?: number | undefined;
|
|
6346
6475
|
runnableModels?: string | undefined;
|
|
6347
6476
|
authorizationLevel?: string | undefined;
|
|
6477
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6348
6478
|
}>;
|
|
6349
6479
|
transform(collection: string[]): string;
|
|
6350
6480
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SourceIconPipe, never>;
|
|
@@ -6612,10 +6742,8 @@ declare class SavedSearchesComponent {
|
|
|
6612
6742
|
declare class SavedSearchDialog implements DialogInterface {
|
|
6613
6743
|
private readonly savedSearchesService;
|
|
6614
6744
|
protected readonly queryParamsStore: {
|
|
6615
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6616
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6617
6745
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6618
|
-
|
|
6746
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6619
6747
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6620
6748
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6621
6749
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -6623,6 +6751,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6623
6751
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6624
6752
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6625
6753
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6754
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6626
6755
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6627
6756
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6628
6757
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6636,6 +6765,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6636
6765
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6637
6766
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6638
6767
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6768
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6639
6769
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6640
6770
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6641
6771
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6666,10 +6796,8 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6666
6796
|
}> | null;
|
|
6667
6797
|
getQuery: () => _sinequa_atomic.Query;
|
|
6668
6798
|
} & _ngrx_signals.StateSource<{
|
|
6669
|
-
text?: string | undefined;
|
|
6670
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6671
6799
|
name?: string | undefined;
|
|
6672
|
-
|
|
6800
|
+
text?: string | undefined;
|
|
6673
6801
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6674
6802
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6675
6803
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -6677,6 +6805,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6677
6805
|
pageSize?: number | undefined;
|
|
6678
6806
|
tab?: string | undefined;
|
|
6679
6807
|
scope?: string | undefined;
|
|
6808
|
+
sort?: string | undefined;
|
|
6680
6809
|
basket?: string | undefined;
|
|
6681
6810
|
isFirstPage?: boolean | undefined;
|
|
6682
6811
|
strictRefine?: boolean | undefined;
|
|
@@ -6690,6 +6819,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6690
6819
|
relevanceTransforms?: string | undefined;
|
|
6691
6820
|
removeDuplicates?: boolean | undefined;
|
|
6692
6821
|
queryId?: string | undefined;
|
|
6822
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6693
6823
|
orderBy?: string | undefined;
|
|
6694
6824
|
groupBy?: string | undefined;
|
|
6695
6825
|
neuralSearch?: boolean | undefined;
|
|
@@ -6832,7 +6962,7 @@ declare class AlertDialog implements DialogInterface {
|
|
|
6832
6962
|
alertTimes: _angular_core.WritableSignal<string>;
|
|
6833
6963
|
alertActive: _angular_core.WritableSignal<boolean>;
|
|
6834
6964
|
canUpdateQuery: _angular_core.WritableSignal<boolean>;
|
|
6835
|
-
updateStatus: _angular_core.WritableSignal<"
|
|
6965
|
+
updateStatus: _angular_core.WritableSignal<"updating" | "updated" | "idle">;
|
|
6836
6966
|
invalidForm: _angular_core.Signal<boolean>;
|
|
6837
6967
|
closed: _angular_core.OutputEmitterRef<DialogEvent>;
|
|
6838
6968
|
open(index: number): void;
|
|
@@ -6970,10 +7100,8 @@ declare class ExportDialog implements DialogInterface {
|
|
|
6970
7100
|
private appStore;
|
|
6971
7101
|
readonly exportService: ExportService;
|
|
6972
7102
|
readonly queryParamsStore: {
|
|
6973
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6974
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6975
7103
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6976
|
-
|
|
7104
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6977
7105
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6978
7106
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6979
7107
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -6981,6 +7109,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
6981
7109
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6982
7110
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6983
7111
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7112
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6984
7113
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6985
7114
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6986
7115
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6994,6 +7123,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
6994
7123
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6995
7124
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6996
7125
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7126
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6997
7127
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6998
7128
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6999
7129
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7024,10 +7154,8 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7024
7154
|
}> | null;
|
|
7025
7155
|
getQuery: () => _sinequa_atomic.Query;
|
|
7026
7156
|
} & _ngrx_signals.StateSource<{
|
|
7027
|
-
text?: string | undefined;
|
|
7028
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7029
7157
|
name?: string | undefined;
|
|
7030
|
-
|
|
7158
|
+
text?: string | undefined;
|
|
7031
7159
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7032
7160
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7033
7161
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7035,6 +7163,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7035
7163
|
pageSize?: number | undefined;
|
|
7036
7164
|
tab?: string | undefined;
|
|
7037
7165
|
scope?: string | undefined;
|
|
7166
|
+
sort?: string | undefined;
|
|
7038
7167
|
basket?: string | undefined;
|
|
7039
7168
|
isFirstPage?: boolean | undefined;
|
|
7040
7169
|
strictRefine?: boolean | undefined;
|
|
@@ -7048,6 +7177,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7048
7177
|
relevanceTransforms?: string | undefined;
|
|
7049
7178
|
removeDuplicates?: boolean | undefined;
|
|
7050
7179
|
queryId?: string | undefined;
|
|
7180
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7051
7181
|
orderBy?: string | undefined;
|
|
7052
7182
|
groupBy?: string | undefined;
|
|
7053
7183
|
neuralSearch?: boolean | undefined;
|
|
@@ -7087,7 +7217,9 @@ declare class LabelService {
|
|
|
7087
7217
|
versionId: _angular_core.Signal<string>;
|
|
7088
7218
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
7089
7219
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
7090
|
-
indexes: _angular_core.Signal<
|
|
7220
|
+
indexes: _angular_core.Signal<{
|
|
7221
|
+
_: _sinequa_atomic.CCIndex;
|
|
7222
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
7091
7223
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
7092
7224
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
7093
7225
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -7115,6 +7247,7 @@ declare class LabelService {
|
|
|
7115
7247
|
advancedSearch?: boolean;
|
|
7116
7248
|
allowChatDrawer?: boolean;
|
|
7117
7249
|
filterLinkChildren?: boolean;
|
|
7250
|
+
expandPreview?: boolean;
|
|
7118
7251
|
quickFilter?: boolean;
|
|
7119
7252
|
assistant?: {
|
|
7120
7253
|
usePrefixName?: boolean;
|
|
@@ -7145,6 +7278,7 @@ declare class LabelService {
|
|
|
7145
7278
|
advancedSearch?: boolean;
|
|
7146
7279
|
allowChatDrawer?: boolean;
|
|
7147
7280
|
filterLinkChildren?: boolean;
|
|
7281
|
+
expandPreview?: boolean;
|
|
7148
7282
|
quickFilter?: boolean;
|
|
7149
7283
|
assistant?: {
|
|
7150
7284
|
usePrefixName?: boolean;
|
|
@@ -7167,6 +7301,7 @@ declare class LabelService {
|
|
|
7167
7301
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
7168
7302
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
7169
7303
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
7304
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
7170
7305
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
7171
7306
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
7172
7307
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -7191,6 +7326,7 @@ declare class LabelService {
|
|
|
7191
7326
|
advancedSearch?: boolean;
|
|
7192
7327
|
allowChatDrawer?: boolean;
|
|
7193
7328
|
filterLinkChildren?: boolean;
|
|
7329
|
+
expandPreview?: boolean;
|
|
7194
7330
|
quickFilter?: boolean;
|
|
7195
7331
|
assistant?: {
|
|
7196
7332
|
usePrefixName?: boolean;
|
|
@@ -7218,7 +7354,7 @@ declare class LabelService {
|
|
|
7218
7354
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
7219
7355
|
allowLabels: () => boolean;
|
|
7220
7356
|
getColumnAlias: (column: string) => string;
|
|
7221
|
-
getColumn: (
|
|
7357
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
7222
7358
|
isDateColumn: (column: string) => boolean;
|
|
7223
7359
|
isTabSearch: (queryName: string) => boolean;
|
|
7224
7360
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -7235,7 +7371,9 @@ declare class LabelService {
|
|
|
7235
7371
|
versionId: string;
|
|
7236
7372
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
7237
7373
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
7238
|
-
indexes:
|
|
7374
|
+
indexes: {
|
|
7375
|
+
_: _sinequa_atomic.CCIndex;
|
|
7376
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
7239
7377
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
7240
7378
|
webServices: Record<string, CCWebService>;
|
|
7241
7379
|
queryNames: string;
|
|
@@ -7263,6 +7401,7 @@ declare class LabelService {
|
|
|
7263
7401
|
advancedSearch?: boolean;
|
|
7264
7402
|
allowChatDrawer?: boolean;
|
|
7265
7403
|
filterLinkChildren?: boolean;
|
|
7404
|
+
expandPreview?: boolean;
|
|
7266
7405
|
quickFilter?: boolean;
|
|
7267
7406
|
assistant?: {
|
|
7268
7407
|
usePrefixName?: boolean;
|
|
@@ -7293,6 +7432,7 @@ declare class LabelService {
|
|
|
7293
7432
|
advancedSearch?: boolean;
|
|
7294
7433
|
allowChatDrawer?: boolean;
|
|
7295
7434
|
filterLinkChildren?: boolean;
|
|
7435
|
+
expandPreview?: boolean;
|
|
7296
7436
|
quickFilter?: boolean;
|
|
7297
7437
|
assistant?: {
|
|
7298
7438
|
usePrefixName?: boolean;
|
|
@@ -7315,6 +7455,7 @@ declare class LabelService {
|
|
|
7315
7455
|
revision?: number | undefined;
|
|
7316
7456
|
runnableModels?: string | undefined;
|
|
7317
7457
|
authorizationLevel?: string | undefined;
|
|
7458
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7318
7459
|
}>;
|
|
7319
7460
|
hasAccess: _angular_core.WritableSignal<boolean | undefined>;
|
|
7320
7461
|
/**
|
|
@@ -7474,7 +7615,9 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7474
7615
|
versionId: _angular_core.Signal<string>;
|
|
7475
7616
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
7476
7617
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
7477
|
-
indexes: _angular_core.Signal<
|
|
7618
|
+
indexes: _angular_core.Signal<{
|
|
7619
|
+
_: _sinequa_atomic.CCIndex;
|
|
7620
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
7478
7621
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
7479
7622
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
7480
7623
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -7502,6 +7645,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7502
7645
|
advancedSearch?: boolean;
|
|
7503
7646
|
allowChatDrawer?: boolean;
|
|
7504
7647
|
filterLinkChildren?: boolean;
|
|
7648
|
+
expandPreview?: boolean;
|
|
7505
7649
|
quickFilter?: boolean;
|
|
7506
7650
|
assistant?: {
|
|
7507
7651
|
usePrefixName?: boolean;
|
|
@@ -7532,6 +7676,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7532
7676
|
advancedSearch?: boolean;
|
|
7533
7677
|
allowChatDrawer?: boolean;
|
|
7534
7678
|
filterLinkChildren?: boolean;
|
|
7679
|
+
expandPreview?: boolean;
|
|
7535
7680
|
quickFilter?: boolean;
|
|
7536
7681
|
assistant?: {
|
|
7537
7682
|
usePrefixName?: boolean;
|
|
@@ -7554,6 +7699,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7554
7699
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
7555
7700
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
7556
7701
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
7702
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
7557
7703
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
7558
7704
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
7559
7705
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -7578,6 +7724,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7578
7724
|
advancedSearch?: boolean;
|
|
7579
7725
|
allowChatDrawer?: boolean;
|
|
7580
7726
|
filterLinkChildren?: boolean;
|
|
7727
|
+
expandPreview?: boolean;
|
|
7581
7728
|
quickFilter?: boolean;
|
|
7582
7729
|
assistant?: {
|
|
7583
7730
|
usePrefixName?: boolean;
|
|
@@ -7605,7 +7752,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7605
7752
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
7606
7753
|
allowLabels: () => boolean;
|
|
7607
7754
|
getColumnAlias: (column: string) => string;
|
|
7608
|
-
getColumn: (
|
|
7755
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
7609
7756
|
isDateColumn: (column: string) => boolean;
|
|
7610
7757
|
isTabSearch: (queryName: string) => boolean;
|
|
7611
7758
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -7622,7 +7769,9 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7622
7769
|
versionId: string;
|
|
7623
7770
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
7624
7771
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
7625
|
-
indexes:
|
|
7772
|
+
indexes: {
|
|
7773
|
+
_: _sinequa_atomic.CCIndex;
|
|
7774
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
7626
7775
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
7627
7776
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
7628
7777
|
queryNames: string;
|
|
@@ -7650,6 +7799,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7650
7799
|
advancedSearch?: boolean;
|
|
7651
7800
|
allowChatDrawer?: boolean;
|
|
7652
7801
|
filterLinkChildren?: boolean;
|
|
7802
|
+
expandPreview?: boolean;
|
|
7653
7803
|
quickFilter?: boolean;
|
|
7654
7804
|
assistant?: {
|
|
7655
7805
|
usePrefixName?: boolean;
|
|
@@ -7680,6 +7830,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7680
7830
|
advancedSearch?: boolean;
|
|
7681
7831
|
allowChatDrawer?: boolean;
|
|
7682
7832
|
filterLinkChildren?: boolean;
|
|
7833
|
+
expandPreview?: boolean;
|
|
7683
7834
|
quickFilter?: boolean;
|
|
7684
7835
|
assistant?: {
|
|
7685
7836
|
usePrefixName?: boolean;
|
|
@@ -7702,6 +7853,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7702
7853
|
revision?: number | undefined;
|
|
7703
7854
|
runnableModels?: string | undefined;
|
|
7704
7855
|
authorizationLevel?: string | undefined;
|
|
7856
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7705
7857
|
}>;
|
|
7706
7858
|
private readonly transloco;
|
|
7707
7859
|
comment: _angular_core.ModelSignal<string>;
|
|
@@ -7722,10 +7874,8 @@ declare class SearchFeedbackComponent {
|
|
|
7722
7874
|
pages: _angular_core.InputSignal<any>;
|
|
7723
7875
|
readonly auditService: AuditService;
|
|
7724
7876
|
protected readonly queryParamsStore: {
|
|
7725
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7726
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7727
7877
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7728
|
-
|
|
7878
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7729
7879
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7730
7880
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7731
7881
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7733,6 +7883,7 @@ declare class SearchFeedbackComponent {
|
|
|
7733
7883
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7734
7884
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7735
7885
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7886
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7736
7887
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7737
7888
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7738
7889
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7746,6 +7897,7 @@ declare class SearchFeedbackComponent {
|
|
|
7746
7897
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7747
7898
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7748
7899
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7900
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7749
7901
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7750
7902
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7751
7903
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7776,10 +7928,8 @@ declare class SearchFeedbackComponent {
|
|
|
7776
7928
|
}> | null;
|
|
7777
7929
|
getQuery: () => _sinequa_atomic.Query;
|
|
7778
7930
|
} & _ngrx_signals.StateSource<{
|
|
7779
|
-
text?: string | undefined;
|
|
7780
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7781
7931
|
name?: string | undefined;
|
|
7782
|
-
|
|
7932
|
+
text?: string | undefined;
|
|
7783
7933
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7784
7934
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7785
7935
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7787,6 +7937,7 @@ declare class SearchFeedbackComponent {
|
|
|
7787
7937
|
pageSize?: number | undefined;
|
|
7788
7938
|
tab?: string | undefined;
|
|
7789
7939
|
scope?: string | undefined;
|
|
7940
|
+
sort?: string | undefined;
|
|
7790
7941
|
basket?: string | undefined;
|
|
7791
7942
|
isFirstPage?: boolean | undefined;
|
|
7792
7943
|
strictRefine?: boolean | undefined;
|
|
@@ -7800,6 +7951,7 @@ declare class SearchFeedbackComponent {
|
|
|
7800
7951
|
relevanceTransforms?: string | undefined;
|
|
7801
7952
|
removeDuplicates?: boolean | undefined;
|
|
7802
7953
|
queryId?: string | undefined;
|
|
7954
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7803
7955
|
orderBy?: string | undefined;
|
|
7804
7956
|
groupBy?: string | undefined;
|
|
7805
7957
|
neuralSearch?: boolean | undefined;
|
|
@@ -7834,7 +7986,7 @@ declare class FilterButtonComponent {
|
|
|
7834
7986
|
column: _angular_core.InputSignal<string>;
|
|
7835
7987
|
position: _angular_core.InputSignal<Placement>;
|
|
7836
7988
|
offset: _angular_core.InputSignal<number>;
|
|
7837
|
-
protected variant: _angular_core.WritableSignal<"default" | "icon" | "
|
|
7989
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "primary" | "secondary" | "destructive" | "ai" | "ghost" | "none" | null | undefined>;
|
|
7838
7990
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
7839
7991
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
7840
7992
|
protected nativeElement: any;
|
|
@@ -7848,10 +8000,8 @@ declare class FilterButtonComponent {
|
|
|
7848
8000
|
aggregations: _sinequa_atomic.Aggregation[];
|
|
7849
8001
|
}>;
|
|
7850
8002
|
protected queryParamsStore: {
|
|
7851
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7852
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7853
8003
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7854
|
-
|
|
8004
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7855
8005
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7856
8006
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7857
8007
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -7859,6 +8009,7 @@ declare class FilterButtonComponent {
|
|
|
7859
8009
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7860
8010
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7861
8011
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8012
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7862
8013
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7863
8014
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7864
8015
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7872,6 +8023,7 @@ declare class FilterButtonComponent {
|
|
|
7872
8023
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7873
8024
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7874
8025
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8026
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7875
8027
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7876
8028
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7877
8029
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7902,10 +8054,8 @@ declare class FilterButtonComponent {
|
|
|
7902
8054
|
}> | null;
|
|
7903
8055
|
getQuery: () => _sinequa_atomic.Query;
|
|
7904
8056
|
} & _ngrx_signals.StateSource<{
|
|
7905
|
-
text?: string | undefined;
|
|
7906
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7907
8057
|
name?: string | undefined;
|
|
7908
|
-
|
|
8058
|
+
text?: string | undefined;
|
|
7909
8059
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7910
8060
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7911
8061
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -7913,6 +8063,7 @@ declare class FilterButtonComponent {
|
|
|
7913
8063
|
pageSize?: number | undefined;
|
|
7914
8064
|
tab?: string | undefined;
|
|
7915
8065
|
scope?: string | undefined;
|
|
8066
|
+
sort?: string | undefined;
|
|
7916
8067
|
basket?: string | undefined;
|
|
7917
8068
|
isFirstPage?: boolean | undefined;
|
|
7918
8069
|
strictRefine?: boolean | undefined;
|
|
@@ -7926,6 +8077,7 @@ declare class FilterButtonComponent {
|
|
|
7926
8077
|
relevanceTransforms?: string | undefined;
|
|
7927
8078
|
removeDuplicates?: boolean | undefined;
|
|
7928
8079
|
queryId?: string | undefined;
|
|
8080
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7929
8081
|
orderBy?: string | undefined;
|
|
7930
8082
|
groupBy?: string | undefined;
|
|
7931
8083
|
neuralSearch?: boolean | undefined;
|
|
@@ -7939,7 +8091,9 @@ declare class FilterButtonComponent {
|
|
|
7939
8091
|
versionId: _angular_core.Signal<string>;
|
|
7940
8092
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
7941
8093
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
7942
|
-
indexes: _angular_core.Signal<
|
|
8094
|
+
indexes: _angular_core.Signal<{
|
|
8095
|
+
_: _sinequa_atomic.CCIndex;
|
|
8096
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
7943
8097
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
7944
8098
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
7945
8099
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -7967,6 +8121,7 @@ declare class FilterButtonComponent {
|
|
|
7967
8121
|
advancedSearch?: boolean;
|
|
7968
8122
|
allowChatDrawer?: boolean;
|
|
7969
8123
|
filterLinkChildren?: boolean;
|
|
8124
|
+
expandPreview?: boolean;
|
|
7970
8125
|
quickFilter?: boolean;
|
|
7971
8126
|
assistant?: {
|
|
7972
8127
|
usePrefixName?: boolean;
|
|
@@ -7997,6 +8152,7 @@ declare class FilterButtonComponent {
|
|
|
7997
8152
|
advancedSearch?: boolean;
|
|
7998
8153
|
allowChatDrawer?: boolean;
|
|
7999
8154
|
filterLinkChildren?: boolean;
|
|
8155
|
+
expandPreview?: boolean;
|
|
8000
8156
|
quickFilter?: boolean;
|
|
8001
8157
|
assistant?: {
|
|
8002
8158
|
usePrefixName?: boolean;
|
|
@@ -8019,6 +8175,7 @@ declare class FilterButtonComponent {
|
|
|
8019
8175
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8020
8176
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8021
8177
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8178
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8022
8179
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8023
8180
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8024
8181
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8043,6 +8200,7 @@ declare class FilterButtonComponent {
|
|
|
8043
8200
|
advancedSearch?: boolean;
|
|
8044
8201
|
allowChatDrawer?: boolean;
|
|
8045
8202
|
filterLinkChildren?: boolean;
|
|
8203
|
+
expandPreview?: boolean;
|
|
8046
8204
|
quickFilter?: boolean;
|
|
8047
8205
|
assistant?: {
|
|
8048
8206
|
usePrefixName?: boolean;
|
|
@@ -8070,7 +8228,7 @@ declare class FilterButtonComponent {
|
|
|
8070
8228
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8071
8229
|
allowLabels: () => boolean;
|
|
8072
8230
|
getColumnAlias: (column: string) => string;
|
|
8073
|
-
getColumn: (
|
|
8231
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8074
8232
|
isDateColumn: (column: string) => boolean;
|
|
8075
8233
|
isTabSearch: (queryName: string) => boolean;
|
|
8076
8234
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8087,7 +8245,9 @@ declare class FilterButtonComponent {
|
|
|
8087
8245
|
versionId: string;
|
|
8088
8246
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8089
8247
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8090
|
-
indexes:
|
|
8248
|
+
indexes: {
|
|
8249
|
+
_: _sinequa_atomic.CCIndex;
|
|
8250
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8091
8251
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8092
8252
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8093
8253
|
queryNames: string;
|
|
@@ -8115,6 +8275,7 @@ declare class FilterButtonComponent {
|
|
|
8115
8275
|
advancedSearch?: boolean;
|
|
8116
8276
|
allowChatDrawer?: boolean;
|
|
8117
8277
|
filterLinkChildren?: boolean;
|
|
8278
|
+
expandPreview?: boolean;
|
|
8118
8279
|
quickFilter?: boolean;
|
|
8119
8280
|
assistant?: {
|
|
8120
8281
|
usePrefixName?: boolean;
|
|
@@ -8145,6 +8306,7 @@ declare class FilterButtonComponent {
|
|
|
8145
8306
|
advancedSearch?: boolean;
|
|
8146
8307
|
allowChatDrawer?: boolean;
|
|
8147
8308
|
filterLinkChildren?: boolean;
|
|
8309
|
+
expandPreview?: boolean;
|
|
8148
8310
|
quickFilter?: boolean;
|
|
8149
8311
|
assistant?: {
|
|
8150
8312
|
usePrefixName?: boolean;
|
|
@@ -8167,6 +8329,7 @@ declare class FilterButtonComponent {
|
|
|
8167
8329
|
revision?: number | undefined;
|
|
8168
8330
|
runnableModels?: string | undefined;
|
|
8169
8331
|
authorizationLevel?: string | undefined;
|
|
8332
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8170
8333
|
}>;
|
|
8171
8334
|
constructor();
|
|
8172
8335
|
/**
|
|
@@ -8187,7 +8350,9 @@ declare class MoreButtonComponent {
|
|
|
8187
8350
|
versionId: _angular_core.Signal<string>;
|
|
8188
8351
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
8189
8352
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
8190
|
-
indexes: _angular_core.Signal<
|
|
8353
|
+
indexes: _angular_core.Signal<{
|
|
8354
|
+
_: _sinequa_atomic.CCIndex;
|
|
8355
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
8191
8356
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
8192
8357
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
8193
8358
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -8215,6 +8380,7 @@ declare class MoreButtonComponent {
|
|
|
8215
8380
|
advancedSearch?: boolean;
|
|
8216
8381
|
allowChatDrawer?: boolean;
|
|
8217
8382
|
filterLinkChildren?: boolean;
|
|
8383
|
+
expandPreview?: boolean;
|
|
8218
8384
|
quickFilter?: boolean;
|
|
8219
8385
|
assistant?: {
|
|
8220
8386
|
usePrefixName?: boolean;
|
|
@@ -8245,6 +8411,7 @@ declare class MoreButtonComponent {
|
|
|
8245
8411
|
advancedSearch?: boolean;
|
|
8246
8412
|
allowChatDrawer?: boolean;
|
|
8247
8413
|
filterLinkChildren?: boolean;
|
|
8414
|
+
expandPreview?: boolean;
|
|
8248
8415
|
quickFilter?: boolean;
|
|
8249
8416
|
assistant?: {
|
|
8250
8417
|
usePrefixName?: boolean;
|
|
@@ -8267,6 +8434,7 @@ declare class MoreButtonComponent {
|
|
|
8267
8434
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8268
8435
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8269
8436
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8437
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8270
8438
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8271
8439
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8272
8440
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8291,6 +8459,7 @@ declare class MoreButtonComponent {
|
|
|
8291
8459
|
advancedSearch?: boolean;
|
|
8292
8460
|
allowChatDrawer?: boolean;
|
|
8293
8461
|
filterLinkChildren?: boolean;
|
|
8462
|
+
expandPreview?: boolean;
|
|
8294
8463
|
quickFilter?: boolean;
|
|
8295
8464
|
assistant?: {
|
|
8296
8465
|
usePrefixName?: boolean;
|
|
@@ -8318,7 +8487,7 @@ declare class MoreButtonComponent {
|
|
|
8318
8487
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8319
8488
|
allowLabels: () => boolean;
|
|
8320
8489
|
getColumnAlias: (column: string) => string;
|
|
8321
|
-
getColumn: (
|
|
8490
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8322
8491
|
isDateColumn: (column: string) => boolean;
|
|
8323
8492
|
isTabSearch: (queryName: string) => boolean;
|
|
8324
8493
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8335,7 +8504,9 @@ declare class MoreButtonComponent {
|
|
|
8335
8504
|
versionId: string;
|
|
8336
8505
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8337
8506
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8338
|
-
indexes:
|
|
8507
|
+
indexes: {
|
|
8508
|
+
_: _sinequa_atomic.CCIndex;
|
|
8509
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8339
8510
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8340
8511
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8341
8512
|
queryNames: string;
|
|
@@ -8363,6 +8534,7 @@ declare class MoreButtonComponent {
|
|
|
8363
8534
|
advancedSearch?: boolean;
|
|
8364
8535
|
allowChatDrawer?: boolean;
|
|
8365
8536
|
filterLinkChildren?: boolean;
|
|
8537
|
+
expandPreview?: boolean;
|
|
8366
8538
|
quickFilter?: boolean;
|
|
8367
8539
|
assistant?: {
|
|
8368
8540
|
usePrefixName?: boolean;
|
|
@@ -8393,6 +8565,7 @@ declare class MoreButtonComponent {
|
|
|
8393
8565
|
advancedSearch?: boolean;
|
|
8394
8566
|
allowChatDrawer?: boolean;
|
|
8395
8567
|
filterLinkChildren?: boolean;
|
|
8568
|
+
expandPreview?: boolean;
|
|
8396
8569
|
quickFilter?: boolean;
|
|
8397
8570
|
assistant?: {
|
|
8398
8571
|
usePrefixName?: boolean;
|
|
@@ -8415,12 +8588,11 @@ declare class MoreButtonComponent {
|
|
|
8415
8588
|
revision?: number | undefined;
|
|
8416
8589
|
runnableModels?: string | undefined;
|
|
8417
8590
|
authorizationLevel?: string | undefined;
|
|
8591
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8418
8592
|
}>;
|
|
8419
8593
|
queryParamsStore: {
|
|
8420
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8421
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8422
8594
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8423
|
-
|
|
8595
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8424
8596
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8425
8597
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8426
8598
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8428,6 +8600,7 @@ declare class MoreButtonComponent {
|
|
|
8428
8600
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8429
8601
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8430
8602
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8603
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8431
8604
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8432
8605
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8433
8606
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8441,6 +8614,7 @@ declare class MoreButtonComponent {
|
|
|
8441
8614
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8442
8615
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8443
8616
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8617
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8444
8618
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8445
8619
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8446
8620
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8471,10 +8645,8 @@ declare class MoreButtonComponent {
|
|
|
8471
8645
|
}> | null;
|
|
8472
8646
|
getQuery: () => _sinequa_atomic.Query;
|
|
8473
8647
|
} & _ngrx_signals.StateSource<{
|
|
8474
|
-
text?: string | undefined;
|
|
8475
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8476
8648
|
name?: string | undefined;
|
|
8477
|
-
|
|
8649
|
+
text?: string | undefined;
|
|
8478
8650
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8479
8651
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8480
8652
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8482,6 +8654,7 @@ declare class MoreButtonComponent {
|
|
|
8482
8654
|
pageSize?: number | undefined;
|
|
8483
8655
|
tab?: string | undefined;
|
|
8484
8656
|
scope?: string | undefined;
|
|
8657
|
+
sort?: string | undefined;
|
|
8485
8658
|
basket?: string | undefined;
|
|
8486
8659
|
isFirstPage?: boolean | undefined;
|
|
8487
8660
|
strictRefine?: boolean | undefined;
|
|
@@ -8495,6 +8668,7 @@ declare class MoreButtonComponent {
|
|
|
8495
8668
|
relevanceTransforms?: string | undefined;
|
|
8496
8669
|
removeDuplicates?: boolean | undefined;
|
|
8497
8670
|
queryId?: string | undefined;
|
|
8671
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8498
8672
|
orderBy?: string | undefined;
|
|
8499
8673
|
groupBy?: string | undefined;
|
|
8500
8674
|
neuralSearch?: boolean | undefined;
|
|
@@ -8577,7 +8751,9 @@ declare class FiltersBarComponent {
|
|
|
8577
8751
|
versionId: _angular_core.Signal<string>;
|
|
8578
8752
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
8579
8753
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
8580
|
-
indexes: _angular_core.Signal<
|
|
8754
|
+
indexes: _angular_core.Signal<{
|
|
8755
|
+
_: _sinequa_atomic.CCIndex;
|
|
8756
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
8581
8757
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
8582
8758
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
8583
8759
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -8605,6 +8781,7 @@ declare class FiltersBarComponent {
|
|
|
8605
8781
|
advancedSearch?: boolean;
|
|
8606
8782
|
allowChatDrawer?: boolean;
|
|
8607
8783
|
filterLinkChildren?: boolean;
|
|
8784
|
+
expandPreview?: boolean;
|
|
8608
8785
|
quickFilter?: boolean;
|
|
8609
8786
|
assistant?: {
|
|
8610
8787
|
usePrefixName?: boolean;
|
|
@@ -8635,6 +8812,7 @@ declare class FiltersBarComponent {
|
|
|
8635
8812
|
advancedSearch?: boolean;
|
|
8636
8813
|
allowChatDrawer?: boolean;
|
|
8637
8814
|
filterLinkChildren?: boolean;
|
|
8815
|
+
expandPreview?: boolean;
|
|
8638
8816
|
quickFilter?: boolean;
|
|
8639
8817
|
assistant?: {
|
|
8640
8818
|
usePrefixName?: boolean;
|
|
@@ -8657,6 +8835,7 @@ declare class FiltersBarComponent {
|
|
|
8657
8835
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8658
8836
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8659
8837
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8838
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8660
8839
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8661
8840
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8662
8841
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8681,6 +8860,7 @@ declare class FiltersBarComponent {
|
|
|
8681
8860
|
advancedSearch?: boolean;
|
|
8682
8861
|
allowChatDrawer?: boolean;
|
|
8683
8862
|
filterLinkChildren?: boolean;
|
|
8863
|
+
expandPreview?: boolean;
|
|
8684
8864
|
quickFilter?: boolean;
|
|
8685
8865
|
assistant?: {
|
|
8686
8866
|
usePrefixName?: boolean;
|
|
@@ -8708,7 +8888,7 @@ declare class FiltersBarComponent {
|
|
|
8708
8888
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8709
8889
|
allowLabels: () => boolean;
|
|
8710
8890
|
getColumnAlias: (column: string) => string;
|
|
8711
|
-
getColumn: (
|
|
8891
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8712
8892
|
isDateColumn: (column: string) => boolean;
|
|
8713
8893
|
isTabSearch: (queryName: string) => boolean;
|
|
8714
8894
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8725,7 +8905,9 @@ declare class FiltersBarComponent {
|
|
|
8725
8905
|
versionId: string;
|
|
8726
8906
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8727
8907
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8728
|
-
indexes:
|
|
8908
|
+
indexes: {
|
|
8909
|
+
_: _sinequa_atomic.CCIndex;
|
|
8910
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8729
8911
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8730
8912
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8731
8913
|
queryNames: string;
|
|
@@ -8753,6 +8935,7 @@ declare class FiltersBarComponent {
|
|
|
8753
8935
|
advancedSearch?: boolean;
|
|
8754
8936
|
allowChatDrawer?: boolean;
|
|
8755
8937
|
filterLinkChildren?: boolean;
|
|
8938
|
+
expandPreview?: boolean;
|
|
8756
8939
|
quickFilter?: boolean;
|
|
8757
8940
|
assistant?: {
|
|
8758
8941
|
usePrefixName?: boolean;
|
|
@@ -8783,6 +8966,7 @@ declare class FiltersBarComponent {
|
|
|
8783
8966
|
advancedSearch?: boolean;
|
|
8784
8967
|
allowChatDrawer?: boolean;
|
|
8785
8968
|
filterLinkChildren?: boolean;
|
|
8969
|
+
expandPreview?: boolean;
|
|
8786
8970
|
quickFilter?: boolean;
|
|
8787
8971
|
assistant?: {
|
|
8788
8972
|
usePrefixName?: boolean;
|
|
@@ -8805,6 +8989,7 @@ declare class FiltersBarComponent {
|
|
|
8805
8989
|
revision?: number | undefined;
|
|
8806
8990
|
runnableModels?: string | undefined;
|
|
8807
8991
|
authorizationLevel?: string | undefined;
|
|
8992
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8808
8993
|
}>;
|
|
8809
8994
|
protected aggregationsStore: {
|
|
8810
8995
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -8816,10 +9001,8 @@ declare class FiltersBarComponent {
|
|
|
8816
9001
|
aggregations: Aggregation[];
|
|
8817
9002
|
}>;
|
|
8818
9003
|
protected queryParamsStore: {
|
|
8819
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8820
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8821
9004
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8822
|
-
|
|
9005
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8823
9006
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8824
9007
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8825
9008
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -8827,6 +9010,7 @@ declare class FiltersBarComponent {
|
|
|
8827
9010
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8828
9011
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8829
9012
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9013
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8830
9014
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8831
9015
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8832
9016
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8840,6 +9024,7 @@ declare class FiltersBarComponent {
|
|
|
8840
9024
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8841
9025
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8842
9026
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9027
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8843
9028
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8844
9029
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8845
9030
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8870,10 +9055,8 @@ declare class FiltersBarComponent {
|
|
|
8870
9055
|
}> | null;
|
|
8871
9056
|
getQuery: () => _sinequa_atomic.Query;
|
|
8872
9057
|
} & _ngrx_signals.StateSource<{
|
|
8873
|
-
text?: string | undefined;
|
|
8874
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8875
9058
|
name?: string | undefined;
|
|
8876
|
-
|
|
9059
|
+
text?: string | undefined;
|
|
8877
9060
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8878
9061
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8879
9062
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -8881,6 +9064,7 @@ declare class FiltersBarComponent {
|
|
|
8881
9064
|
pageSize?: number | undefined;
|
|
8882
9065
|
tab?: string | undefined;
|
|
8883
9066
|
scope?: string | undefined;
|
|
9067
|
+
sort?: string | undefined;
|
|
8884
9068
|
basket?: string | undefined;
|
|
8885
9069
|
isFirstPage?: boolean | undefined;
|
|
8886
9070
|
strictRefine?: boolean | undefined;
|
|
@@ -8894,6 +9078,7 @@ declare class FiltersBarComponent {
|
|
|
8894
9078
|
relevanceTransforms?: string | undefined;
|
|
8895
9079
|
removeDuplicates?: boolean | undefined;
|
|
8896
9080
|
queryId?: string | undefined;
|
|
9081
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8897
9082
|
orderBy?: string | undefined;
|
|
8898
9083
|
groupBy?: string | undefined;
|
|
8899
9084
|
neuralSearch?: boolean | undefined;
|
|
@@ -8990,7 +9175,7 @@ declare class FiltersBarComponent {
|
|
|
8990
9175
|
declare class AsideFiltersComponent {
|
|
8991
9176
|
cn: typeof cn;
|
|
8992
9177
|
class: _angular_core.InputSignal<string | undefined>;
|
|
8993
|
-
position: _angular_core.InputSignal<"
|
|
9178
|
+
position: _angular_core.InputSignal<"both" | "left" | undefined>;
|
|
8994
9179
|
private readonly appStore;
|
|
8995
9180
|
asideFilters: _angular_core.Signal<Aggregation[]>;
|
|
8996
9181
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AsideFiltersComponent, never>;
|
|
@@ -9013,10 +9198,8 @@ declare class AggregationComponent {
|
|
|
9013
9198
|
aggregations: Aggregation[];
|
|
9014
9199
|
}>;
|
|
9015
9200
|
queryParamsStore: {
|
|
9016
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9017
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9018
9201
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9019
|
-
|
|
9202
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9020
9203
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9021
9204
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9022
9205
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9024,6 +9207,7 @@ declare class AggregationComponent {
|
|
|
9024
9207
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9025
9208
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9026
9209
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9210
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9027
9211
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9028
9212
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9029
9213
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9037,6 +9221,7 @@ declare class AggregationComponent {
|
|
|
9037
9221
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9038
9222
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9039
9223
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9224
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9040
9225
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9041
9226
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9042
9227
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9067,10 +9252,8 @@ declare class AggregationComponent {
|
|
|
9067
9252
|
}> | null;
|
|
9068
9253
|
getQuery: () => Query;
|
|
9069
9254
|
} & _ngrx_signals.StateSource<{
|
|
9070
|
-
text?: string | undefined;
|
|
9071
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9072
9255
|
name?: string | undefined;
|
|
9073
|
-
|
|
9256
|
+
text?: string | undefined;
|
|
9074
9257
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9075
9258
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9076
9259
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9078,6 +9261,7 @@ declare class AggregationComponent {
|
|
|
9078
9261
|
pageSize?: number | undefined;
|
|
9079
9262
|
tab?: string | undefined;
|
|
9080
9263
|
scope?: string | undefined;
|
|
9264
|
+
sort?: string | undefined;
|
|
9081
9265
|
basket?: string | undefined;
|
|
9082
9266
|
isFirstPage?: boolean | undefined;
|
|
9083
9267
|
strictRefine?: boolean | undefined;
|
|
@@ -9091,6 +9275,7 @@ declare class AggregationComponent {
|
|
|
9091
9275
|
relevanceTransforms?: string | undefined;
|
|
9092
9276
|
removeDuplicates?: boolean | undefined;
|
|
9093
9277
|
queryId?: string | undefined;
|
|
9278
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9094
9279
|
orderBy?: string | undefined;
|
|
9095
9280
|
groupBy?: string | undefined;
|
|
9096
9281
|
neuralSearch?: boolean | undefined;
|
|
@@ -9104,7 +9289,9 @@ declare class AggregationComponent {
|
|
|
9104
9289
|
versionId: _angular_core.Signal<string>;
|
|
9105
9290
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
9106
9291
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
9107
|
-
indexes: _angular_core.Signal<
|
|
9292
|
+
indexes: _angular_core.Signal<{
|
|
9293
|
+
_: _sinequa_atomic.CCIndex;
|
|
9294
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
9108
9295
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
9109
9296
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
9110
9297
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -9132,6 +9319,7 @@ declare class AggregationComponent {
|
|
|
9132
9319
|
advancedSearch?: boolean;
|
|
9133
9320
|
allowChatDrawer?: boolean;
|
|
9134
9321
|
filterLinkChildren?: boolean;
|
|
9322
|
+
expandPreview?: boolean;
|
|
9135
9323
|
quickFilter?: boolean;
|
|
9136
9324
|
assistant?: {
|
|
9137
9325
|
usePrefixName?: boolean;
|
|
@@ -9154,13 +9342,7 @@ declare class AggregationComponent {
|
|
|
9154
9342
|
large?: string;
|
|
9155
9343
|
};
|
|
9156
9344
|
};
|
|
9157
|
-
features
|
|
9158
|
-
* Computed property that returns an empty string when the component is not collapsed,
|
|
9159
|
-
* or null when the component is collapsed. This is typically used to control
|
|
9160
|
-
* expansion state in UI components with conditional rendering or styling.
|
|
9161
|
-
*
|
|
9162
|
-
* @returns Empty string if not collapsed, null if collapsed
|
|
9163
|
-
*/: {
|
|
9345
|
+
features?: {
|
|
9164
9346
|
[key: string]: boolean | {
|
|
9165
9347
|
[key: string]: boolean | undefined;
|
|
9166
9348
|
} | undefined;
|
|
@@ -9168,6 +9350,7 @@ declare class AggregationComponent {
|
|
|
9168
9350
|
advancedSearch?: boolean;
|
|
9169
9351
|
allowChatDrawer?: boolean;
|
|
9170
9352
|
filterLinkChildren?: boolean;
|
|
9353
|
+
expandPreview?: boolean;
|
|
9171
9354
|
quickFilter?: boolean;
|
|
9172
9355
|
assistant?: {
|
|
9173
9356
|
usePrefixName?: boolean;
|
|
@@ -9190,6 +9373,7 @@ declare class AggregationComponent {
|
|
|
9190
9373
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
9191
9374
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
9192
9375
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
9376
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
9193
9377
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
9194
9378
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
9195
9379
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -9214,6 +9398,7 @@ declare class AggregationComponent {
|
|
|
9214
9398
|
advancedSearch?: boolean;
|
|
9215
9399
|
allowChatDrawer?: boolean;
|
|
9216
9400
|
filterLinkChildren?: boolean;
|
|
9401
|
+
expandPreview?: boolean;
|
|
9217
9402
|
quickFilter?: boolean;
|
|
9218
9403
|
assistant?: {
|
|
9219
9404
|
usePrefixName?: boolean;
|
|
@@ -9241,7 +9426,7 @@ declare class AggregationComponent {
|
|
|
9241
9426
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
9242
9427
|
allowLabels: () => boolean;
|
|
9243
9428
|
getColumnAlias: (column: string) => string;
|
|
9244
|
-
getColumn: (
|
|
9429
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
9245
9430
|
isDateColumn: (column: string) => boolean;
|
|
9246
9431
|
isTabSearch: (queryName: string) => boolean;
|
|
9247
9432
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -9258,7 +9443,9 @@ declare class AggregationComponent {
|
|
|
9258
9443
|
versionId: string;
|
|
9259
9444
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
9260
9445
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
9261
|
-
indexes:
|
|
9446
|
+
indexes: {
|
|
9447
|
+
_: _sinequa_atomic.CCIndex;
|
|
9448
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
9262
9449
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
9263
9450
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
9264
9451
|
queryNames: string;
|
|
@@ -9286,6 +9473,7 @@ declare class AggregationComponent {
|
|
|
9286
9473
|
advancedSearch?: boolean;
|
|
9287
9474
|
allowChatDrawer?: boolean;
|
|
9288
9475
|
filterLinkChildren?: boolean;
|
|
9476
|
+
expandPreview?: boolean;
|
|
9289
9477
|
quickFilter?: boolean;
|
|
9290
9478
|
assistant?: {
|
|
9291
9479
|
usePrefixName?: boolean;
|
|
@@ -9308,13 +9496,7 @@ declare class AggregationComponent {
|
|
|
9308
9496
|
large?: string;
|
|
9309
9497
|
};
|
|
9310
9498
|
};
|
|
9311
|
-
features
|
|
9312
|
-
* Computed property that returns an empty string when the component is not collapsed,
|
|
9313
|
-
* or null when the component is collapsed. This is typically used to control
|
|
9314
|
-
* expansion state in UI components with conditional rendering or styling.
|
|
9315
|
-
*
|
|
9316
|
-
* @returns Empty string if not collapsed, null if collapsed
|
|
9317
|
-
*/: {
|
|
9499
|
+
features?: {
|
|
9318
9500
|
[key: string]: boolean | {
|
|
9319
9501
|
[key: string]: boolean | undefined;
|
|
9320
9502
|
} | undefined;
|
|
@@ -9322,6 +9504,7 @@ declare class AggregationComponent {
|
|
|
9322
9504
|
advancedSearch?: boolean;
|
|
9323
9505
|
allowChatDrawer?: boolean;
|
|
9324
9506
|
filterLinkChildren?: boolean;
|
|
9507
|
+
expandPreview?: boolean;
|
|
9325
9508
|
quickFilter?: boolean;
|
|
9326
9509
|
assistant?: {
|
|
9327
9510
|
usePrefixName?: boolean;
|
|
@@ -9344,6 +9527,7 @@ declare class AggregationComponent {
|
|
|
9344
9527
|
revision?: number | undefined;
|
|
9345
9528
|
runnableModels?: string | undefined;
|
|
9346
9529
|
authorizationLevel?: string | undefined;
|
|
9530
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
9347
9531
|
}>;
|
|
9348
9532
|
aggregationsService: AggregationsService;
|
|
9349
9533
|
el: ElementRef<any>;
|
|
@@ -9606,7 +9790,9 @@ declare class MoreComponent {
|
|
|
9606
9790
|
versionId: _angular_core.Signal<string>;
|
|
9607
9791
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
9608
9792
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
9609
|
-
indexes: _angular_core.Signal<
|
|
9793
|
+
indexes: _angular_core.Signal<{
|
|
9794
|
+
_: _sinequa_atomic.CCIndex;
|
|
9795
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
9610
9796
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
9611
9797
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
9612
9798
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -9634,6 +9820,7 @@ declare class MoreComponent {
|
|
|
9634
9820
|
advancedSearch?: boolean;
|
|
9635
9821
|
allowChatDrawer?: boolean;
|
|
9636
9822
|
filterLinkChildren?: boolean;
|
|
9823
|
+
expandPreview?: boolean;
|
|
9637
9824
|
quickFilter?: boolean;
|
|
9638
9825
|
assistant?: {
|
|
9639
9826
|
usePrefixName?: boolean;
|
|
@@ -9664,6 +9851,7 @@ declare class MoreComponent {
|
|
|
9664
9851
|
advancedSearch?: boolean;
|
|
9665
9852
|
allowChatDrawer?: boolean;
|
|
9666
9853
|
filterLinkChildren?: boolean;
|
|
9854
|
+
expandPreview?: boolean;
|
|
9667
9855
|
quickFilter?: boolean;
|
|
9668
9856
|
assistant?: {
|
|
9669
9857
|
usePrefixName?: boolean;
|
|
@@ -9686,6 +9874,7 @@ declare class MoreComponent {
|
|
|
9686
9874
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
9687
9875
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
9688
9876
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
9877
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
9689
9878
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
9690
9879
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
9691
9880
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -9710,6 +9899,7 @@ declare class MoreComponent {
|
|
|
9710
9899
|
advancedSearch?: boolean;
|
|
9711
9900
|
allowChatDrawer?: boolean;
|
|
9712
9901
|
filterLinkChildren?: boolean;
|
|
9902
|
+
expandPreview?: boolean;
|
|
9713
9903
|
quickFilter?: boolean;
|
|
9714
9904
|
assistant?: {
|
|
9715
9905
|
usePrefixName?: boolean;
|
|
@@ -9737,7 +9927,7 @@ declare class MoreComponent {
|
|
|
9737
9927
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
9738
9928
|
allowLabels: () => boolean;
|
|
9739
9929
|
getColumnAlias: (column: string) => string;
|
|
9740
|
-
getColumn: (
|
|
9930
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
9741
9931
|
isDateColumn: (column: string) => boolean;
|
|
9742
9932
|
isTabSearch: (queryName: string) => boolean;
|
|
9743
9933
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -9754,7 +9944,9 @@ declare class MoreComponent {
|
|
|
9754
9944
|
versionId: string;
|
|
9755
9945
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
9756
9946
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
9757
|
-
indexes:
|
|
9947
|
+
indexes: {
|
|
9948
|
+
_: _sinequa_atomic.CCIndex;
|
|
9949
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
9758
9950
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
9759
9951
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
9760
9952
|
queryNames: string;
|
|
@@ -9782,6 +9974,7 @@ declare class MoreComponent {
|
|
|
9782
9974
|
advancedSearch?: boolean;
|
|
9783
9975
|
allowChatDrawer?: boolean;
|
|
9784
9976
|
filterLinkChildren?: boolean;
|
|
9977
|
+
expandPreview?: boolean;
|
|
9785
9978
|
quickFilter?: boolean;
|
|
9786
9979
|
assistant?: {
|
|
9787
9980
|
usePrefixName?: boolean;
|
|
@@ -9812,6 +10005,7 @@ declare class MoreComponent {
|
|
|
9812
10005
|
advancedSearch?: boolean;
|
|
9813
10006
|
allowChatDrawer?: boolean;
|
|
9814
10007
|
filterLinkChildren?: boolean;
|
|
10008
|
+
expandPreview?: boolean;
|
|
9815
10009
|
quickFilter?: boolean;
|
|
9816
10010
|
assistant?: {
|
|
9817
10011
|
usePrefixName?: boolean;
|
|
@@ -9834,6 +10028,7 @@ declare class MoreComponent {
|
|
|
9834
10028
|
revision?: number | undefined;
|
|
9835
10029
|
runnableModels?: string | undefined;
|
|
9836
10030
|
authorizationLevel?: string | undefined;
|
|
10031
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
9837
10032
|
}>;
|
|
9838
10033
|
aggregationsStore: {
|
|
9839
10034
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -9845,10 +10040,8 @@ declare class MoreComponent {
|
|
|
9845
10040
|
aggregations: Aggregation[];
|
|
9846
10041
|
}>;
|
|
9847
10042
|
queryParamsStore: {
|
|
9848
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9849
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9850
10043
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9851
|
-
|
|
10044
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9852
10045
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9853
10046
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9854
10047
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -9856,6 +10049,7 @@ declare class MoreComponent {
|
|
|
9856
10049
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9857
10050
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9858
10051
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10052
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9859
10053
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9860
10054
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9861
10055
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9869,6 +10063,7 @@ declare class MoreComponent {
|
|
|
9869
10063
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9870
10064
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9871
10065
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10066
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9872
10067
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9873
10068
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9874
10069
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9899,10 +10094,8 @@ declare class MoreComponent {
|
|
|
9899
10094
|
}> | null;
|
|
9900
10095
|
getQuery: () => _sinequa_atomic.Query;
|
|
9901
10096
|
} & _ngrx_signals.StateSource<{
|
|
9902
|
-
text?: string | undefined;
|
|
9903
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9904
10097
|
name?: string | undefined;
|
|
9905
|
-
|
|
10098
|
+
text?: string | undefined;
|
|
9906
10099
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9907
10100
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9908
10101
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -9910,6 +10103,7 @@ declare class MoreComponent {
|
|
|
9910
10103
|
pageSize?: number | undefined;
|
|
9911
10104
|
tab?: string | undefined;
|
|
9912
10105
|
scope?: string | undefined;
|
|
10106
|
+
sort?: string | undefined;
|
|
9913
10107
|
basket?: string | undefined;
|
|
9914
10108
|
isFirstPage?: boolean | undefined;
|
|
9915
10109
|
strictRefine?: boolean | undefined;
|
|
@@ -9923,6 +10117,7 @@ declare class MoreComponent {
|
|
|
9923
10117
|
relevanceTransforms?: string | undefined;
|
|
9924
10118
|
removeDuplicates?: boolean | undefined;
|
|
9925
10119
|
queryId?: string | undefined;
|
|
10120
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9926
10121
|
orderBy?: string | undefined;
|
|
9927
10122
|
groupBy?: string | undefined;
|
|
9928
10123
|
neuralSearch?: boolean | undefined;
|
|
@@ -10138,10 +10333,8 @@ declare class AdvancedSearchComponent {
|
|
|
10138
10333
|
multiSelection: Article$1[];
|
|
10139
10334
|
}>;
|
|
10140
10335
|
protected readonly queryParamsStore: {
|
|
10141
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10142
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10143
10336
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10144
|
-
|
|
10337
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10145
10338
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10146
10339
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10147
10340
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -10149,6 +10342,7 @@ declare class AdvancedSearchComponent {
|
|
|
10149
10342
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10150
10343
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10151
10344
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10345
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10152
10346
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10153
10347
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10154
10348
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10162,6 +10356,7 @@ declare class AdvancedSearchComponent {
|
|
|
10162
10356
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10163
10357
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10164
10358
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10359
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10165
10360
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10166
10361
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10167
10362
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10192,10 +10387,8 @@ declare class AdvancedSearchComponent {
|
|
|
10192
10387
|
}> | null;
|
|
10193
10388
|
getQuery: () => _sinequa_atomic.Query;
|
|
10194
10389
|
} & _ngrx_signals.StateSource<{
|
|
10195
|
-
text?: string | undefined;
|
|
10196
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10197
10390
|
name?: string | undefined;
|
|
10198
|
-
|
|
10391
|
+
text?: string | undefined;
|
|
10199
10392
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10200
10393
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10201
10394
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -10203,6 +10396,7 @@ declare class AdvancedSearchComponent {
|
|
|
10203
10396
|
pageSize?: number | undefined;
|
|
10204
10397
|
tab?: string | undefined;
|
|
10205
10398
|
scope?: string | undefined;
|
|
10399
|
+
sort?: string | undefined;
|
|
10206
10400
|
basket?: string | undefined;
|
|
10207
10401
|
isFirstPage?: boolean | undefined;
|
|
10208
10402
|
strictRefine?: boolean | undefined;
|
|
@@ -10216,6 +10410,7 @@ declare class AdvancedSearchComponent {
|
|
|
10216
10410
|
relevanceTransforms?: string | undefined;
|
|
10217
10411
|
removeDuplicates?: boolean | undefined;
|
|
10218
10412
|
queryId?: string | undefined;
|
|
10413
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10219
10414
|
orderBy?: string | undefined;
|
|
10220
10415
|
groupBy?: string | undefined;
|
|
10221
10416
|
neuralSearch?: boolean | undefined;
|
|
@@ -10255,7 +10450,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10255
10450
|
versionId: _angular_core.Signal<string>;
|
|
10256
10451
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
10257
10452
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
10258
|
-
indexes: _angular_core.Signal<
|
|
10453
|
+
indexes: _angular_core.Signal<{
|
|
10454
|
+
_: _sinequa_atomic.CCIndex;
|
|
10455
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
10259
10456
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
10260
10457
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
10261
10458
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -10283,6 +10480,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10283
10480
|
advancedSearch?: boolean;
|
|
10284
10481
|
allowChatDrawer?: boolean;
|
|
10285
10482
|
filterLinkChildren?: boolean;
|
|
10483
|
+
expandPreview?: boolean;
|
|
10286
10484
|
quickFilter?: boolean;
|
|
10287
10485
|
assistant?: {
|
|
10288
10486
|
usePrefixName?: boolean;
|
|
@@ -10313,6 +10511,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10313
10511
|
advancedSearch?: boolean;
|
|
10314
10512
|
allowChatDrawer?: boolean;
|
|
10315
10513
|
filterLinkChildren?: boolean;
|
|
10514
|
+
expandPreview?: boolean;
|
|
10316
10515
|
quickFilter?: boolean;
|
|
10317
10516
|
assistant?: {
|
|
10318
10517
|
usePrefixName?: boolean;
|
|
@@ -10335,6 +10534,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10335
10534
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
10336
10535
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
10337
10536
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
10537
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
10338
10538
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
10339
10539
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
10340
10540
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -10359,6 +10559,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10359
10559
|
advancedSearch?: boolean;
|
|
10360
10560
|
allowChatDrawer?: boolean;
|
|
10361
10561
|
filterLinkChildren?: boolean;
|
|
10562
|
+
expandPreview?: boolean;
|
|
10362
10563
|
quickFilter?: boolean;
|
|
10363
10564
|
assistant?: {
|
|
10364
10565
|
usePrefixName?: boolean;
|
|
@@ -10386,7 +10587,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10386
10587
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
10387
10588
|
allowLabels: () => boolean;
|
|
10388
10589
|
getColumnAlias: (column: string) => string;
|
|
10389
|
-
getColumn: (
|
|
10590
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
10390
10591
|
isDateColumn: (column: string) => boolean;
|
|
10391
10592
|
isTabSearch: (queryName: string) => boolean;
|
|
10392
10593
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -10403,7 +10604,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10403
10604
|
versionId: string;
|
|
10404
10605
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
10405
10606
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
10406
|
-
indexes:
|
|
10607
|
+
indexes: {
|
|
10608
|
+
_: _sinequa_atomic.CCIndex;
|
|
10609
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
10407
10610
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
10408
10611
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
10409
10612
|
queryNames: string;
|
|
@@ -10431,6 +10634,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10431
10634
|
advancedSearch?: boolean;
|
|
10432
10635
|
allowChatDrawer?: boolean;
|
|
10433
10636
|
filterLinkChildren?: boolean;
|
|
10637
|
+
expandPreview?: boolean;
|
|
10434
10638
|
quickFilter?: boolean;
|
|
10435
10639
|
assistant?: {
|
|
10436
10640
|
usePrefixName?: boolean;
|
|
@@ -10461,6 +10665,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10461
10665
|
advancedSearch?: boolean;
|
|
10462
10666
|
allowChatDrawer?: boolean;
|
|
10463
10667
|
filterLinkChildren?: boolean;
|
|
10668
|
+
expandPreview?: boolean;
|
|
10464
10669
|
quickFilter?: boolean;
|
|
10465
10670
|
assistant?: {
|
|
10466
10671
|
usePrefixName?: boolean;
|
|
@@ -10483,6 +10688,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10483
10688
|
revision?: number | undefined;
|
|
10484
10689
|
runnableModels?: string | undefined;
|
|
10485
10690
|
authorizationLevel?: string | undefined;
|
|
10691
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
10486
10692
|
}>;
|
|
10487
10693
|
selectionStore: {
|
|
10488
10694
|
article?: _angular_core.Signal<_sinequa_atomic.Article | undefined> | undefined;
|
|
@@ -10506,10 +10712,8 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10506
10712
|
multiSelection: _sinequa_atomic.Article[];
|
|
10507
10713
|
}>;
|
|
10508
10714
|
queryParamsStore: {
|
|
10509
|
-
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10510
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10511
10715
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10512
|
-
|
|
10716
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10513
10717
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10514
10718
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10515
10719
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
@@ -10517,6 +10721,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10517
10721
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10518
10722
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10519
10723
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10724
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10520
10725
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10521
10726
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10522
10727
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10530,6 +10735,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10530
10735
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10531
10736
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10532
10737
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10738
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10533
10739
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10534
10740
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10535
10741
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10560,10 +10766,8 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10560
10766
|
}> | null;
|
|
10561
10767
|
getQuery: () => _sinequa_atomic.Query;
|
|
10562
10768
|
} & _ngrx_signals.StateSource<{
|
|
10563
|
-
text?: string | undefined;
|
|
10564
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10565
10769
|
name?: string | undefined;
|
|
10566
|
-
|
|
10770
|
+
text?: string | undefined;
|
|
10567
10771
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10568
10772
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10569
10773
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
@@ -10571,6 +10775,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10571
10775
|
pageSize?: number | undefined;
|
|
10572
10776
|
tab?: string | undefined;
|
|
10573
10777
|
scope?: string | undefined;
|
|
10778
|
+
sort?: string | undefined;
|
|
10574
10779
|
basket?: string | undefined;
|
|
10575
10780
|
isFirstPage?: boolean | undefined;
|
|
10576
10781
|
strictRefine?: boolean | undefined;
|
|
@@ -10584,6 +10789,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10584
10789
|
relevanceTransforms?: string | undefined;
|
|
10585
10790
|
removeDuplicates?: boolean | undefined;
|
|
10586
10791
|
queryId?: string | undefined;
|
|
10792
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10587
10793
|
orderBy?: string | undefined;
|
|
10588
10794
|
groupBy?: string | undefined;
|
|
10589
10795
|
neuralSearch?: boolean | undefined;
|
|
@@ -10640,6 +10846,7 @@ declare class SignInComponent {
|
|
|
10640
10846
|
private readonly principalService;
|
|
10641
10847
|
private readonly applicationService;
|
|
10642
10848
|
private readonly appStore;
|
|
10849
|
+
private readonly navigationService;
|
|
10643
10850
|
isValid: _angular_core.Signal<boolean>;
|
|
10644
10851
|
constructor(destroyRef: DestroyRef);
|
|
10645
10852
|
allowChangePassword: _angular_core.Signal<boolean>;
|