@sinequa/atomic-angular 0.2.5 → 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 +420 -333
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +238 -173
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -83,7 +83,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
83
83
|
readonly router: Router;
|
|
84
84
|
readonly queryParamStore: {
|
|
85
85
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
86
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
87
86
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
88
87
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
89
88
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | 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;
|
|
@@ -137,7 +137,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
137
137
|
getQuery: () => _sinequa_atomic.Query;
|
|
138
138
|
} & _ngrx_signals.StateSource<{
|
|
139
139
|
name?: string | undefined;
|
|
140
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
141
140
|
text?: string | undefined;
|
|
142
141
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
143
142
|
select?: _sinequa_atomic.Select[] | 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;
|
|
@@ -233,7 +233,6 @@ declare class MissingTermsComponent {
|
|
|
233
233
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
234
234
|
queryParamsStore: {
|
|
235
235
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
236
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
237
236
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
238
237
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
239
238
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | 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;
|
|
@@ -287,7 +287,6 @@ declare class MissingTermsComponent {
|
|
|
287
287
|
getQuery: () => _sinequa_atomic.Query;
|
|
288
288
|
} & _ngrx_signals.StateSource<{
|
|
289
289
|
name?: string | undefined;
|
|
290
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
291
290
|
text?: string | undefined;
|
|
292
291
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
293
292
|
select?: _sinequa_atomic.Select[] | 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;
|
|
@@ -329,7 +329,7 @@ declare class MissingTermsComponent {
|
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
declare const multiSelectionToolbarVariants: (props?: ({
|
|
332
|
-
variant?: "
|
|
332
|
+
variant?: "dark" | "light" | "glassy" | null | undefined;
|
|
333
333
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
334
334
|
type MultiSelectionToolbarVariants = VariantProps<typeof multiSelectionToolbarVariants>;
|
|
335
335
|
declare class MultiSelectionToolbarComponent {
|
|
@@ -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>;
|
|
@@ -422,6 +424,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
422
424
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
423
425
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
424
426
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
427
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
425
428
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
426
429
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
427
430
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -474,7 +477,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
474
477
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
475
478
|
allowLabels: () => boolean;
|
|
476
479
|
getColumnAlias: (column: string) => string;
|
|
477
|
-
getColumn: (
|
|
480
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
478
481
|
isDateColumn: (column: string) => boolean;
|
|
479
482
|
isTabSearch: (queryName: string) => boolean;
|
|
480
483
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -491,7 +494,9 @@ declare class MultiSelectionToolbarComponent {
|
|
|
491
494
|
versionId: string;
|
|
492
495
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
493
496
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
494
|
-
indexes:
|
|
497
|
+
indexes: {
|
|
498
|
+
_: _sinequa_atomic.CCIndex;
|
|
499
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
495
500
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
496
501
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
497
502
|
queryNames: string;
|
|
@@ -573,6 +578,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
573
578
|
revision?: number | undefined;
|
|
574
579
|
runnableModels?: string | undefined;
|
|
575
580
|
authorizationLevel?: string | undefined;
|
|
581
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
576
582
|
}>;
|
|
577
583
|
readonly selection: {
|
|
578
584
|
article?: _angular_core.Signal<_sinequa_atomic.Article | undefined> | undefined;
|
|
@@ -628,7 +634,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
628
634
|
};
|
|
629
635
|
} | undefined;
|
|
630
636
|
readonly class: _angular_core.InputSignal<string>;
|
|
631
|
-
readonly variant: _angular_core.InputSignal<"
|
|
637
|
+
readonly variant: _angular_core.InputSignal<"dark" | "light" | "glassy" | null | undefined>;
|
|
632
638
|
readonly updatedCollections: _angular_core.OutputEmitterRef<void>;
|
|
633
639
|
readonly count: _angular_core.Signal<number>;
|
|
634
640
|
readonly variants: _angular_core.Signal<string>;
|
|
@@ -987,7 +993,9 @@ declare class AggregationsService {
|
|
|
987
993
|
versionId: _angular_core.Signal<string>;
|
|
988
994
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
989
995
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
990
|
-
indexes: _angular_core.Signal<
|
|
996
|
+
indexes: _angular_core.Signal<{
|
|
997
|
+
_: _sinequa_atomic.CCIndex;
|
|
998
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
991
999
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
992
1000
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
993
1001
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1069,6 +1077,7 @@ declare class AggregationsService {
|
|
|
1069
1077
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1070
1078
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1071
1079
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1080
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1072
1081
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1073
1082
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1074
1083
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -1121,7 +1130,7 @@ declare class AggregationsService {
|
|
|
1121
1130
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1122
1131
|
allowLabels: () => boolean;
|
|
1123
1132
|
getColumnAlias: (column: string) => string;
|
|
1124
|
-
getColumn: (
|
|
1133
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1125
1134
|
isDateColumn: (column: string) => boolean;
|
|
1126
1135
|
isTabSearch: (queryName: string) => boolean;
|
|
1127
1136
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1138,7 +1147,9 @@ declare class AggregationsService {
|
|
|
1138
1147
|
versionId: string;
|
|
1139
1148
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
1140
1149
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1141
|
-
indexes:
|
|
1150
|
+
indexes: {
|
|
1151
|
+
_: _sinequa_atomic.CCIndex;
|
|
1152
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1142
1153
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1143
1154
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1144
1155
|
queryNames: string;
|
|
@@ -1220,6 +1231,7 @@ declare class AggregationsService {
|
|
|
1220
1231
|
revision?: number | undefined;
|
|
1221
1232
|
runnableModels?: string | undefined;
|
|
1222
1233
|
authorizationLevel?: string | undefined;
|
|
1234
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1223
1235
|
}>;
|
|
1224
1236
|
aggregationsStore: {
|
|
1225
1237
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -1232,7 +1244,6 @@ declare class AggregationsService {
|
|
|
1232
1244
|
}>;
|
|
1233
1245
|
queryParamsStore: {
|
|
1234
1246
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1235
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1236
1247
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1237
1248
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1238
1249
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -1255,6 +1266,7 @@ declare class AggregationsService {
|
|
|
1255
1266
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1256
1267
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1257
1268
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1269
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1258
1270
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1259
1271
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1260
1272
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1286,7 +1298,6 @@ declare class AggregationsService {
|
|
|
1286
1298
|
getQuery: () => Query;
|
|
1287
1299
|
} & _ngrx_signals.StateSource<{
|
|
1288
1300
|
name?: string | undefined;
|
|
1289
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1290
1301
|
text?: string | undefined;
|
|
1291
1302
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1292
1303
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -1309,6 +1320,7 @@ declare class AggregationsService {
|
|
|
1309
1320
|
relevanceTransforms?: string | undefined;
|
|
1310
1321
|
removeDuplicates?: boolean | undefined;
|
|
1311
1322
|
queryId?: string | undefined;
|
|
1323
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1312
1324
|
orderBy?: string | undefined;
|
|
1313
1325
|
groupBy?: string | undefined;
|
|
1314
1326
|
neuralSearch?: boolean | undefined;
|
|
@@ -1407,7 +1419,7 @@ declare class ApplicationService {
|
|
|
1407
1419
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
1408
1420
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1409
1421
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
1410
|
-
userTheme: _angular_core.Signal<"
|
|
1422
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
1411
1423
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
1412
1424
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
1413
1425
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -1464,7 +1476,9 @@ declare class ApplicationService {
|
|
|
1464
1476
|
versionId: _angular_core.Signal<string>;
|
|
1465
1477
|
queries: _angular_core.Signal<Record<string, CCQuery>>;
|
|
1466
1478
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
1467
|
-
indexes: _angular_core.Signal<
|
|
1479
|
+
indexes: _angular_core.Signal<{
|
|
1480
|
+
_: _sinequa_atomic.CCIndex;
|
|
1481
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
1468
1482
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
1469
1483
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
1470
1484
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1551,6 +1565,7 @@ declare class ApplicationService {
|
|
|
1551
1565
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1552
1566
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1553
1567
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1568
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1554
1569
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1555
1570
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1556
1571
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -1603,7 +1618,7 @@ declare class ApplicationService {
|
|
|
1603
1618
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1604
1619
|
allowLabels: () => boolean;
|
|
1605
1620
|
getColumnAlias: (column: string) => string;
|
|
1606
|
-
getColumn: (
|
|
1621
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1607
1622
|
isDateColumn: (column: string) => boolean;
|
|
1608
1623
|
isTabSearch: (queryName: string) => boolean;
|
|
1609
1624
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1620,7 +1635,9 @@ declare class ApplicationService {
|
|
|
1620
1635
|
versionId: string;
|
|
1621
1636
|
queries: Record<string, CCQuery>;
|
|
1622
1637
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1623
|
-
indexes:
|
|
1638
|
+
indexes: {
|
|
1639
|
+
_: _sinequa_atomic.CCIndex;
|
|
1640
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1624
1641
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1625
1642
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1626
1643
|
queryNames: string;
|
|
@@ -1707,6 +1724,7 @@ declare class ApplicationService {
|
|
|
1707
1724
|
revision?: number | undefined;
|
|
1708
1725
|
runnableModels?: string | undefined;
|
|
1709
1726
|
authorizationLevel?: string | undefined;
|
|
1727
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1710
1728
|
}>;
|
|
1711
1729
|
router: Router;
|
|
1712
1730
|
titleService: Title;
|
|
@@ -1778,7 +1796,9 @@ declare class AuditService {
|
|
|
1778
1796
|
versionId: _angular_core.Signal<string>;
|
|
1779
1797
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
1780
1798
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
1781
|
-
indexes: _angular_core.Signal<
|
|
1799
|
+
indexes: _angular_core.Signal<{
|
|
1800
|
+
_: _sinequa_atomic.CCIndex;
|
|
1801
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
1782
1802
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
1783
1803
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
1784
1804
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -1860,6 +1880,7 @@ declare class AuditService {
|
|
|
1860
1880
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
1861
1881
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
1862
1882
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
1883
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
1863
1884
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
1864
1885
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
1865
1886
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -1912,7 +1933,7 @@ declare class AuditService {
|
|
|
1912
1933
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
1913
1934
|
allowLabels: () => boolean;
|
|
1914
1935
|
getColumnAlias: (column: string) => string;
|
|
1915
|
-
getColumn: (
|
|
1936
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
1916
1937
|
isDateColumn: (column: string) => boolean;
|
|
1917
1938
|
isTabSearch: (queryName: string) => boolean;
|
|
1918
1939
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -1929,7 +1950,9 @@ declare class AuditService {
|
|
|
1929
1950
|
versionId: string;
|
|
1930
1951
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
1931
1952
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1932
|
-
indexes:
|
|
1953
|
+
indexes: {
|
|
1954
|
+
_: _sinequa_atomic.CCIndex;
|
|
1955
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1933
1956
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1934
1957
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1935
1958
|
queryNames: string;
|
|
@@ -2011,6 +2034,7 @@ declare class AuditService {
|
|
|
2011
2034
|
revision?: number | undefined;
|
|
2012
2035
|
runnableModels?: string | undefined;
|
|
2013
2036
|
authorizationLevel?: string | undefined;
|
|
2037
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
2014
2038
|
}>;
|
|
2015
2039
|
app: _angular_core.Signal<CCApp>;
|
|
2016
2040
|
protected readonly http: HttpClient;
|
|
@@ -2060,7 +2084,7 @@ declare class AutocompleteService {
|
|
|
2060
2084
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
2061
2085
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
2062
2086
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
2063
|
-
userTheme: _angular_core.Signal<"
|
|
2087
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
2064
2088
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
2065
2089
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
2066
2090
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -2107,7 +2131,9 @@ declare class AutocompleteService {
|
|
|
2107
2131
|
versionId: _angular_core.Signal<string>;
|
|
2108
2132
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
2109
2133
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
2110
|
-
indexes: _angular_core.Signal<
|
|
2134
|
+
indexes: _angular_core.Signal<{
|
|
2135
|
+
_: _sinequa_atomic.CCIndex;
|
|
2136
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
2111
2137
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
2112
2138
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
2113
2139
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -2189,6 +2215,7 @@ declare class AutocompleteService {
|
|
|
2189
2215
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
2190
2216
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
2191
2217
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
2218
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
2192
2219
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
2193
2220
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
2194
2221
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -2241,7 +2268,7 @@ declare class AutocompleteService {
|
|
|
2241
2268
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2242
2269
|
allowLabels: () => boolean;
|
|
2243
2270
|
getColumnAlias: (column: string) => string;
|
|
2244
|
-
getColumn: (
|
|
2271
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
2245
2272
|
isDateColumn: (column: string) => boolean;
|
|
2246
2273
|
isTabSearch: (queryName: string) => boolean;
|
|
2247
2274
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2258,7 +2285,9 @@ declare class AutocompleteService {
|
|
|
2258
2285
|
versionId: string;
|
|
2259
2286
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
2260
2287
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2261
|
-
indexes:
|
|
2288
|
+
indexes: {
|
|
2289
|
+
_: _sinequa_atomic.CCIndex;
|
|
2290
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2262
2291
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2263
2292
|
webServices: Record<string, CCWebService>;
|
|
2264
2293
|
queryNames: string;
|
|
@@ -2340,6 +2369,7 @@ declare class AutocompleteService {
|
|
|
2340
2369
|
revision?: number | undefined;
|
|
2341
2370
|
runnableModels?: string | undefined;
|
|
2342
2371
|
authorizationLevel?: string | undefined;
|
|
2372
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
2343
2373
|
}>;
|
|
2344
2374
|
/**
|
|
2345
2375
|
* Retrieves autocomplete items for the given text, max count for each
|
|
@@ -2486,6 +2516,7 @@ type CCAppState = CCApp & {
|
|
|
2486
2516
|
revision?: number;
|
|
2487
2517
|
runnableModels?: string;
|
|
2488
2518
|
authorizationLevel?: string;
|
|
2519
|
+
columnMap?: Record<string, CCColumn>;
|
|
2489
2520
|
};
|
|
2490
2521
|
type AssistantConfiguration = Record<string, AssistantDetails>;
|
|
2491
2522
|
interface AssistantDetails {
|
|
@@ -2507,7 +2538,9 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2507
2538
|
versionId: _angular_core.Signal<string>;
|
|
2508
2539
|
queries: _angular_core.Signal<Record<string, CCQuery>>;
|
|
2509
2540
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
2510
|
-
indexes: _angular_core.Signal<
|
|
2541
|
+
indexes: _angular_core.Signal<{
|
|
2542
|
+
_: _sinequa_atomic.CCIndex;
|
|
2543
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
2511
2544
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
2512
2545
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
2513
2546
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -2538,13 +2571,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2538
2571
|
expandPreview?: boolean;
|
|
2539
2572
|
quickFilter?: boolean;
|
|
2540
2573
|
assistant?: {
|
|
2541
|
-
usePrefixName
|
|
2542
|
-
/**
|
|
2543
|
-
* Basic app management features
|
|
2544
|
-
*/
|
|
2545
|
-
? /**
|
|
2546
|
-
* Basic app management features
|
|
2547
|
-
*/: boolean;
|
|
2574
|
+
usePrefixName?: boolean;
|
|
2548
2575
|
};
|
|
2549
2576
|
filters?: {
|
|
2550
2577
|
homepage?: boolean;
|
|
@@ -2575,13 +2602,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2575
2602
|
expandPreview?: boolean;
|
|
2576
2603
|
quickFilter?: boolean;
|
|
2577
2604
|
assistant?: {
|
|
2578
|
-
usePrefixName
|
|
2579
|
-
/**
|
|
2580
|
-
* Basic app management features
|
|
2581
|
-
*/
|
|
2582
|
-
? /**
|
|
2583
|
-
* Basic app management features
|
|
2584
|
-
*/: boolean;
|
|
2605
|
+
usePrefixName?: boolean;
|
|
2585
2606
|
};
|
|
2586
2607
|
filters?: {
|
|
2587
2608
|
homepage?: boolean;
|
|
@@ -2601,6 +2622,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2601
2622
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
2602
2623
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
2603
2624
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
2625
|
+
columnMap?: _angular_core.Signal<Record<string, CCColumn> | undefined> | undefined;
|
|
2604
2626
|
customizationJson: _angular_core.Signal<CJsonMint>;
|
|
2605
2627
|
sources: _angular_core.Signal<CSources>;
|
|
2606
2628
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -2628,13 +2650,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2628
2650
|
expandPreview?: boolean;
|
|
2629
2651
|
quickFilter?: boolean;
|
|
2630
2652
|
assistant?: {
|
|
2631
|
-
usePrefixName
|
|
2632
|
-
/**
|
|
2633
|
-
* Basic app management features
|
|
2634
|
-
*/
|
|
2635
|
-
? /**
|
|
2636
|
-
* Basic app management features
|
|
2637
|
-
*/: boolean;
|
|
2653
|
+
usePrefixName?: boolean;
|
|
2638
2654
|
};
|
|
2639
2655
|
filters?: {
|
|
2640
2656
|
homepage?: boolean;
|
|
@@ -2657,7 +2673,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2657
2673
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2658
2674
|
allowLabels: () => boolean;
|
|
2659
2675
|
getColumnAlias: (column: string) => string;
|
|
2660
|
-
getColumn: (
|
|
2676
|
+
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2661
2677
|
isDateColumn: (column: string) => boolean;
|
|
2662
2678
|
isTabSearch: (queryName: string) => boolean;
|
|
2663
2679
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2674,7 +2690,9 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2674
2690
|
versionId: string;
|
|
2675
2691
|
queries: Record<string, CCQuery>;
|
|
2676
2692
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2677
|
-
indexes:
|
|
2693
|
+
indexes: {
|
|
2694
|
+
_: _sinequa_atomic.CCIndex;
|
|
2695
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2678
2696
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2679
2697
|
webServices: Record<string, CCWebService>;
|
|
2680
2698
|
queryNames: string;
|
|
@@ -2705,13 +2723,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2705
2723
|
expandPreview?: boolean;
|
|
2706
2724
|
quickFilter?: boolean;
|
|
2707
2725
|
assistant?: {
|
|
2708
|
-
usePrefixName
|
|
2709
|
-
/**
|
|
2710
|
-
* Basic app management features
|
|
2711
|
-
*/
|
|
2712
|
-
? /**
|
|
2713
|
-
* Basic app management features
|
|
2714
|
-
*/: boolean;
|
|
2726
|
+
usePrefixName?: boolean;
|
|
2715
2727
|
};
|
|
2716
2728
|
filters?: {
|
|
2717
2729
|
homepage?: boolean;
|
|
@@ -2742,13 +2754,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2742
2754
|
expandPreview?: boolean;
|
|
2743
2755
|
quickFilter?: boolean;
|
|
2744
2756
|
assistant?: {
|
|
2745
|
-
usePrefixName
|
|
2746
|
-
/**
|
|
2747
|
-
* Basic app management features
|
|
2748
|
-
*/
|
|
2749
|
-
? /**
|
|
2750
|
-
* Basic app management features
|
|
2751
|
-
*/: boolean;
|
|
2757
|
+
usePrefixName?: boolean;
|
|
2752
2758
|
};
|
|
2753
2759
|
filters?: {
|
|
2754
2760
|
homepage?: boolean;
|
|
@@ -2768,6 +2774,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2768
2774
|
revision?: number | undefined;
|
|
2769
2775
|
runnableModels?: string | undefined;
|
|
2770
2776
|
authorizationLevel?: string | undefined;
|
|
2777
|
+
columnMap?: Record<string, CCColumn> | undefined;
|
|
2771
2778
|
}>>;
|
|
2772
2779
|
/**
|
|
2773
2780
|
* Basic app management features
|
|
@@ -2779,7 +2786,9 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2779
2786
|
versionId: string;
|
|
2780
2787
|
queries: Record<string, CCQuery>;
|
|
2781
2788
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
2782
|
-
indexes:
|
|
2789
|
+
indexes: {
|
|
2790
|
+
_: _sinequa_atomic.CCIndex;
|
|
2791
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
2783
2792
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
2784
2793
|
webServices: Record<string, CCWebService>;
|
|
2785
2794
|
queryNames: string;
|
|
@@ -2810,13 +2819,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2810
2819
|
expandPreview?: boolean;
|
|
2811
2820
|
quickFilter?: boolean;
|
|
2812
2821
|
assistant?: {
|
|
2813
|
-
usePrefixName
|
|
2814
|
-
/**
|
|
2815
|
-
* Basic app management features
|
|
2816
|
-
*/
|
|
2817
|
-
? /**
|
|
2818
|
-
* Basic app management features
|
|
2819
|
-
*/: boolean;
|
|
2822
|
+
usePrefixName?: boolean;
|
|
2820
2823
|
};
|
|
2821
2824
|
filters?: {
|
|
2822
2825
|
homepage?: boolean;
|
|
@@ -2847,13 +2850,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2847
2850
|
expandPreview?: boolean;
|
|
2848
2851
|
quickFilter?: boolean;
|
|
2849
2852
|
assistant?: {
|
|
2850
|
-
usePrefixName
|
|
2851
|
-
/**
|
|
2852
|
-
* Basic app management features
|
|
2853
|
-
*/
|
|
2854
|
-
? /**
|
|
2855
|
-
* Basic app management features
|
|
2856
|
-
*/: boolean;
|
|
2853
|
+
usePrefixName?: boolean;
|
|
2857
2854
|
};
|
|
2858
2855
|
filters?: {
|
|
2859
2856
|
homepage?: boolean;
|
|
@@ -2873,6 +2870,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2873
2870
|
revision?: number | undefined;
|
|
2874
2871
|
runnableModels?: string | undefined;
|
|
2875
2872
|
authorizationLevel?: string | undefined;
|
|
2873
|
+
columnMap?: Record<string, CCColumn> | undefined;
|
|
2876
2874
|
};
|
|
2877
2875
|
props: {};
|
|
2878
2876
|
methods: {
|
|
@@ -2891,7 +2889,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2891
2889
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
2892
2890
|
allowLabels: () => boolean;
|
|
2893
2891
|
getColumnAlias: (column: string) => string;
|
|
2894
|
-
getColumn: (
|
|
2892
|
+
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2895
2893
|
isDateColumn: (column: string) => boolean;
|
|
2896
2894
|
isTabSearch: (queryName: string) => boolean;
|
|
2897
2895
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -2935,13 +2933,7 @@ declare function withAppCustomizationFeatures(): _ngrx_signals.SignalStoreFeatur
|
|
|
2935
2933
|
expandPreview?: boolean;
|
|
2936
2934
|
quickFilter?: boolean;
|
|
2937
2935
|
assistant?: {
|
|
2938
|
-
usePrefixName
|
|
2939
|
-
/**
|
|
2940
|
-
* Basic app management features
|
|
2941
|
-
*/
|
|
2942
|
-
? /**
|
|
2943
|
-
* Basic app management features
|
|
2944
|
-
*/: boolean;
|
|
2936
|
+
usePrefixName?: boolean;
|
|
2945
2937
|
};
|
|
2946
2938
|
filters?: {
|
|
2947
2939
|
homepage?: boolean;
|
|
@@ -3088,7 +3080,6 @@ type QueryParams = {
|
|
|
3088
3080
|
};
|
|
3089
3081
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
3090
3082
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3091
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3092
3083
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3093
3084
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3094
3085
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -3111,6 +3102,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3111
3102
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3112
3103
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3113
3104
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
3105
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3114
3106
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3115
3107
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3116
3108
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3135,7 +3127,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3135
3127
|
getQuery: () => _sinequa_atomic.Query;
|
|
3136
3128
|
} & _ngrx_signals.StateSource<{
|
|
3137
3129
|
name?: string | undefined;
|
|
3138
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3139
3130
|
text?: string | undefined;
|
|
3140
3131
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3141
3132
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3158,6 +3149,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3158
3149
|
relevanceTransforms?: string | undefined;
|
|
3159
3150
|
removeDuplicates?: boolean | undefined;
|
|
3160
3151
|
queryId?: string | undefined;
|
|
3152
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3161
3153
|
orderBy?: string | undefined;
|
|
3162
3154
|
groupBy?: string | undefined;
|
|
3163
3155
|
neuralSearch?: boolean | undefined;
|
|
@@ -3168,7 +3160,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3168
3160
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
3169
3161
|
state: {
|
|
3170
3162
|
name?: string | undefined;
|
|
3171
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3172
3163
|
text?: string | undefined;
|
|
3173
3164
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3174
3165
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3191,6 +3182,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3191
3182
|
relevanceTransforms?: string | undefined;
|
|
3192
3183
|
removeDuplicates?: boolean | undefined;
|
|
3193
3184
|
queryId?: string | undefined;
|
|
3185
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3194
3186
|
orderBy?: string | undefined;
|
|
3195
3187
|
groupBy?: string | undefined;
|
|
3196
3188
|
neuralSearch?: boolean | undefined;
|
|
@@ -3379,7 +3371,7 @@ declare const UserSettingsStore: _angular_core.Type<{
|
|
|
3379
3371
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
3380
3372
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3381
3373
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
3382
|
-
userTheme: _angular_core.Signal<"
|
|
3374
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
3383
3375
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
3384
3376
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
3385
3377
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -3739,7 +3731,6 @@ declare class PreviewService {
|
|
|
3739
3731
|
}>;
|
|
3740
3732
|
protected readonly queryParamsStore: {
|
|
3741
3733
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3742
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3743
3734
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3744
3735
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3745
3736
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -3762,6 +3753,7 @@ declare class PreviewService {
|
|
|
3762
3753
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3763
3754
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3764
3755
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
3756
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3765
3757
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3766
3758
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3767
3759
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3793,7 +3785,6 @@ declare class PreviewService {
|
|
|
3793
3785
|
getQuery: () => Query;
|
|
3794
3786
|
} & _ngrx_signals.StateSource<{
|
|
3795
3787
|
name?: string | undefined;
|
|
3796
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3797
3788
|
text?: string | undefined;
|
|
3798
3789
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3799
3790
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3816,6 +3807,7 @@ declare class PreviewService {
|
|
|
3816
3807
|
relevanceTransforms?: string | undefined;
|
|
3817
3808
|
removeDuplicates?: boolean | undefined;
|
|
3818
3809
|
queryId?: string | undefined;
|
|
3810
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3819
3811
|
orderBy?: string | undefined;
|
|
3820
3812
|
groupBy?: string | undefined;
|
|
3821
3813
|
neuralSearch?: boolean | undefined;
|
|
@@ -3829,7 +3821,9 @@ declare class PreviewService {
|
|
|
3829
3821
|
versionId: _angular_core.Signal<string>;
|
|
3830
3822
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
3831
3823
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
3832
|
-
indexes: _angular_core.Signal<
|
|
3824
|
+
indexes: _angular_core.Signal<{
|
|
3825
|
+
_: _sinequa_atomic.CCIndex;
|
|
3826
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
3833
3827
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
3834
3828
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
3835
3829
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -3911,6 +3905,7 @@ declare class PreviewService {
|
|
|
3911
3905
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
3912
3906
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
3913
3907
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
3908
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
3914
3909
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
3915
3910
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
3916
3911
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -3963,7 +3958,7 @@ declare class PreviewService {
|
|
|
3963
3958
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
3964
3959
|
allowLabels: () => boolean;
|
|
3965
3960
|
getColumnAlias: (column: string) => string;
|
|
3966
|
-
getColumn: (
|
|
3961
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
3967
3962
|
isDateColumn: (column: string) => boolean;
|
|
3968
3963
|
isTabSearch: (queryName: string) => boolean;
|
|
3969
3964
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -3980,7 +3975,9 @@ declare class PreviewService {
|
|
|
3980
3975
|
versionId: string;
|
|
3981
3976
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
3982
3977
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
3983
|
-
indexes:
|
|
3978
|
+
indexes: {
|
|
3979
|
+
_: _sinequa_atomic.CCIndex;
|
|
3980
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
3984
3981
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
3985
3982
|
webServices: Record<string, CCWebService>;
|
|
3986
3983
|
queryNames: string;
|
|
@@ -4062,6 +4059,7 @@ declare class PreviewService {
|
|
|
4062
4059
|
revision?: number | undefined;
|
|
4063
4060
|
runnableModels?: string | undefined;
|
|
4064
4061
|
authorizationLevel?: string | undefined;
|
|
4062
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
4065
4063
|
}>;
|
|
4066
4064
|
protected readonly sanitizer: DomSanitizer;
|
|
4067
4065
|
protected readonly queryService: QueryService;
|
|
@@ -4245,7 +4243,7 @@ declare class SavedSearchesService {
|
|
|
4245
4243
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4246
4244
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4247
4245
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4248
|
-
userTheme: _angular_core.Signal<"
|
|
4246
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4249
4247
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
4250
4248
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
4251
4249
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -4288,7 +4286,6 @@ declare class SavedSearchesService {
|
|
|
4288
4286
|
}>;
|
|
4289
4287
|
protected readonly queryParamsStore: {
|
|
4290
4288
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4291
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4292
4289
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4293
4290
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4294
4291
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4311,6 +4308,7 @@ declare class SavedSearchesService {
|
|
|
4311
4308
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4312
4309
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4313
4310
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4311
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4314
4312
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4315
4313
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4316
4314
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4342,7 +4340,6 @@ declare class SavedSearchesService {
|
|
|
4342
4340
|
getQuery: () => _sinequa_atomic.Query;
|
|
4343
4341
|
} & _ngrx_signals.StateSource<{
|
|
4344
4342
|
name?: string | undefined;
|
|
4345
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4346
4343
|
text?: string | undefined;
|
|
4347
4344
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4348
4345
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4365,6 +4362,7 @@ declare class SavedSearchesService {
|
|
|
4365
4362
|
relevanceTransforms?: string | undefined;
|
|
4366
4363
|
removeDuplicates?: boolean | undefined;
|
|
4367
4364
|
queryId?: string | undefined;
|
|
4365
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4368
4366
|
orderBy?: string | undefined;
|
|
4369
4367
|
groupBy?: string | undefined;
|
|
4370
4368
|
neuralSearch?: boolean | undefined;
|
|
@@ -4428,7 +4426,6 @@ declare class SearchService {
|
|
|
4428
4426
|
audit?: AuditEvents;
|
|
4429
4427
|
protected readonly queryParamsStore: {
|
|
4430
4428
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4431
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4432
4429
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4433
4430
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4434
4431
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4451,6 +4448,7 @@ declare class SearchService {
|
|
|
4451
4448
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4452
4449
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4453
4450
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4451
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4454
4452
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4455
4453
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4456
4454
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4482,7 +4480,6 @@ declare class SearchService {
|
|
|
4482
4480
|
getQuery: () => Query;
|
|
4483
4481
|
} & _ngrx_signals.StateSource<{
|
|
4484
4482
|
name?: string | undefined;
|
|
4485
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4486
4483
|
text?: string | undefined;
|
|
4487
4484
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4488
4485
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4505,6 +4502,7 @@ declare class SearchService {
|
|
|
4505
4502
|
relevanceTransforms?: string | undefined;
|
|
4506
4503
|
removeDuplicates?: boolean | undefined;
|
|
4507
4504
|
queryId?: string | undefined;
|
|
4505
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4508
4506
|
orderBy?: string | undefined;
|
|
4509
4507
|
groupBy?: string | undefined;
|
|
4510
4508
|
neuralSearch?: boolean | undefined;
|
|
@@ -4521,7 +4519,7 @@ declare class SearchService {
|
|
|
4521
4519
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
4522
4520
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4523
4521
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
4524
|
-
userTheme: _angular_core.Signal<"
|
|
4522
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
4525
4523
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
4526
4524
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: AuditEvents) => Promise<void>;
|
|
4527
4525
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -4662,7 +4660,6 @@ declare class SelectionService {
|
|
|
4662
4660
|
private readonly selectionStore;
|
|
4663
4661
|
queryParamsStore: {
|
|
4664
4662
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4665
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4666
4663
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4667
4664
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4668
4665
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4685,6 +4682,7 @@ declare class SelectionService {
|
|
|
4685
4682
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4686
4683
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4687
4684
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4685
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4688
4686
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4689
4687
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4690
4688
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4716,7 +4714,6 @@ declare class SelectionService {
|
|
|
4716
4714
|
getQuery: () => _sinequa_atomic.Query;
|
|
4717
4715
|
} & _ngrx_signals.StateSource<{
|
|
4718
4716
|
name?: string | undefined;
|
|
4719
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4720
4717
|
text?: string | undefined;
|
|
4721
4718
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4722
4719
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4739,6 +4736,7 @@ declare class SelectionService {
|
|
|
4739
4736
|
relevanceTransforms?: string | undefined;
|
|
4740
4737
|
removeDuplicates?: boolean | undefined;
|
|
4741
4738
|
queryId?: string | undefined;
|
|
4739
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4742
4740
|
orderBy?: string | undefined;
|
|
4743
4741
|
groupBy?: string | undefined;
|
|
4744
4742
|
neuralSearch?: boolean | undefined;
|
|
@@ -4824,7 +4822,6 @@ declare class NavbarTabsComponent {
|
|
|
4824
4822
|
readonly drawerOpened: _angular_core.Signal<boolean>;
|
|
4825
4823
|
readonly queryParamsStore: {
|
|
4826
4824
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4827
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4828
4825
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4829
4826
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4830
4827
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4847,6 +4844,7 @@ declare class NavbarTabsComponent {
|
|
|
4847
4844
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4848
4845
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4849
4846
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4847
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4850
4848
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4851
4849
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4852
4850
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4878,7 +4876,6 @@ declare class NavbarTabsComponent {
|
|
|
4878
4876
|
getQuery: () => _sinequa_atomic.Query;
|
|
4879
4877
|
} & _ngrx_signals.StateSource<{
|
|
4880
4878
|
name?: string | undefined;
|
|
4881
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4882
4879
|
text?: string | undefined;
|
|
4883
4880
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4884
4881
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4901,6 +4898,7 @@ declare class NavbarTabsComponent {
|
|
|
4901
4898
|
relevanceTransforms?: string | undefined;
|
|
4902
4899
|
removeDuplicates?: boolean | undefined;
|
|
4903
4900
|
queryId?: string | undefined;
|
|
4901
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4904
4902
|
orderBy?: string | undefined;
|
|
4905
4903
|
groupBy?: string | undefined;
|
|
4906
4904
|
neuralSearch?: boolean | undefined;
|
|
@@ -5259,7 +5257,7 @@ declare class ShowBookmarkDirective {
|
|
|
5259
5257
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5260
5258
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5261
5259
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5262
|
-
userTheme: _angular_core.Signal<"
|
|
5260
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
5263
5261
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
5264
5262
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5265
5263
|
bookmark: (article: Article$1, queryName?: string) => Promise<void>;
|
|
@@ -5351,7 +5349,7 @@ declare class ChildMarkerDirective {
|
|
|
5351
5349
|
* @deprecated use searchVariants from @sinequa/ui instead
|
|
5352
5350
|
*/
|
|
5353
5351
|
declare const searchVariants: (props?: ({
|
|
5354
|
-
variant?: "default" | "
|
|
5352
|
+
variant?: "default" | "primary" | "secondary" | "destructive" | "ai" | null | undefined;
|
|
5355
5353
|
decoration?: "none" | "outline" | null | undefined;
|
|
5356
5354
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5357
5355
|
/**
|
|
@@ -5392,7 +5390,7 @@ declare class SearchInputComponent {
|
|
|
5392
5390
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5393
5391
|
hotkey: _angular_core.InputSignal<string>;
|
|
5394
5392
|
class: _angular_core.InputSignal<string | undefined>;
|
|
5395
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
5393
|
+
variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | null | undefined>;
|
|
5396
5394
|
decoration: _angular_core.InputSignal<"none" | "outline" | null | undefined>;
|
|
5397
5395
|
variants: _angular_core.Signal<string>;
|
|
5398
5396
|
onInput(event: Event): void;
|
|
@@ -5424,7 +5422,9 @@ declare class SortSelectorComponent {
|
|
|
5424
5422
|
versionId: _angular_core.Signal<string>;
|
|
5425
5423
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5426
5424
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5427
|
-
indexes: _angular_core.Signal<
|
|
5425
|
+
indexes: _angular_core.Signal<{
|
|
5426
|
+
_: _sinequa_atomic.CCIndex;
|
|
5427
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5428
5428
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5429
5429
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5430
5430
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -5506,6 +5506,7 @@ declare class SortSelectorComponent {
|
|
|
5506
5506
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5507
5507
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5508
5508
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5509
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5509
5510
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5510
5511
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5511
5512
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -5558,7 +5559,7 @@ declare class SortSelectorComponent {
|
|
|
5558
5559
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
5559
5560
|
allowLabels: () => boolean;
|
|
5560
5561
|
getColumnAlias: (column: string) => string;
|
|
5561
|
-
getColumn: (
|
|
5562
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5562
5563
|
isDateColumn: (column: string) => boolean;
|
|
5563
5564
|
isTabSearch: (queryName: string) => boolean;
|
|
5564
5565
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -5575,7 +5576,9 @@ declare class SortSelectorComponent {
|
|
|
5575
5576
|
versionId: string;
|
|
5576
5577
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5577
5578
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5578
|
-
indexes:
|
|
5579
|
+
indexes: {
|
|
5580
|
+
_: _sinequa_atomic.CCIndex;
|
|
5581
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5579
5582
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5580
5583
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5581
5584
|
queryNames: string;
|
|
@@ -5657,6 +5660,7 @@ declare class SortSelectorComponent {
|
|
|
5657
5660
|
revision?: number | undefined;
|
|
5658
5661
|
runnableModels?: string | undefined;
|
|
5659
5662
|
authorizationLevel?: string | undefined;
|
|
5663
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5660
5664
|
}>;
|
|
5661
5665
|
readonly queryName: _angular_core.Signal<string>;
|
|
5662
5666
|
readonly sortOptions: _angular_core.Signal<SortingChoice[]>;
|
|
@@ -5691,7 +5695,9 @@ declare class SponsoredResultsComponent {
|
|
|
5691
5695
|
versionId: _angular_core.Signal<string>;
|
|
5692
5696
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5693
5697
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5694
|
-
indexes: _angular_core.Signal<
|
|
5698
|
+
indexes: _angular_core.Signal<{
|
|
5699
|
+
_: _sinequa_atomic.CCIndex;
|
|
5700
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5695
5701
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5696
5702
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5697
5703
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -5773,6 +5779,7 @@ declare class SponsoredResultsComponent {
|
|
|
5773
5779
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5774
5780
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5775
5781
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5782
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5776
5783
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5777
5784
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5778
5785
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -5825,7 +5832,7 @@ declare class SponsoredResultsComponent {
|
|
|
5825
5832
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
5826
5833
|
allowLabels: () => boolean;
|
|
5827
5834
|
getColumnAlias: (column: string) => string;
|
|
5828
|
-
getColumn: (
|
|
5835
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5829
5836
|
isDateColumn: (column: string) => boolean;
|
|
5830
5837
|
isTabSearch: (queryName: string) => boolean;
|
|
5831
5838
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -5842,7 +5849,9 @@ declare class SponsoredResultsComponent {
|
|
|
5842
5849
|
versionId: string;
|
|
5843
5850
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5844
5851
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5845
|
-
indexes:
|
|
5852
|
+
indexes: {
|
|
5853
|
+
_: _sinequa_atomic.CCIndex;
|
|
5854
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5846
5855
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5847
5856
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5848
5857
|
queryNames: string;
|
|
@@ -5924,10 +5933,10 @@ declare class SponsoredResultsComponent {
|
|
|
5924
5933
|
revision?: number | undefined;
|
|
5925
5934
|
runnableModels?: string | undefined;
|
|
5926
5935
|
authorizationLevel?: string | undefined;
|
|
5936
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5927
5937
|
}>;
|
|
5928
5938
|
queryParamStore: {
|
|
5929
5939
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5930
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5931
5940
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5932
5941
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5933
5942
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -5950,6 +5959,7 @@ declare class SponsoredResultsComponent {
|
|
|
5950
5959
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
5951
5960
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5952
5961
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5962
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
5953
5963
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5954
5964
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5955
5965
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -5981,7 +5991,6 @@ declare class SponsoredResultsComponent {
|
|
|
5981
5991
|
getQuery: () => _sinequa_atomic.Query;
|
|
5982
5992
|
} & _ngrx_signals.StateSource<{
|
|
5983
5993
|
name?: string | undefined;
|
|
5984
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5985
5994
|
text?: string | undefined;
|
|
5986
5995
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5987
5996
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -6004,6 +6013,7 @@ declare class SponsoredResultsComponent {
|
|
|
6004
6013
|
relevanceTransforms?: string | undefined;
|
|
6005
6014
|
removeDuplicates?: boolean | undefined;
|
|
6006
6015
|
queryId?: string | undefined;
|
|
6016
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6007
6017
|
orderBy?: string | undefined;
|
|
6008
6018
|
groupBy?: string | undefined;
|
|
6009
6019
|
neuralSearch?: boolean | undefined;
|
|
@@ -6165,11 +6175,12 @@ declare const authInterceptorFn: HttpInterceptorFn;
|
|
|
6165
6175
|
declare const bodyInterceptorFn: (request: HttpRequest<unknown>, next: HttpHandlerFn) => rxjs.Observable<_angular_common_http.HttpEvent<unknown>>;
|
|
6166
6176
|
|
|
6167
6177
|
/**
|
|
6168
|
-
* 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.
|
|
6169
6180
|
*
|
|
6170
6181
|
* @param request - The HTTP request object.
|
|
6171
6182
|
* @param next - The HTTP handler function.
|
|
6172
|
-
* @returns The
|
|
6183
|
+
* @returns The response observable or error observable.
|
|
6173
6184
|
*/
|
|
6174
6185
|
declare const errorInterceptorFn: HttpInterceptorFn;
|
|
6175
6186
|
|
|
@@ -6225,7 +6236,9 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6225
6236
|
versionId: _angular_core.Signal<string>;
|
|
6226
6237
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
6227
6238
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
6228
|
-
indexes: _angular_core.Signal<
|
|
6239
|
+
indexes: _angular_core.Signal<{
|
|
6240
|
+
_: _sinequa_atomic.CCIndex;
|
|
6241
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
6229
6242
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
6230
6243
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
6231
6244
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -6307,6 +6320,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6307
6320
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
6308
6321
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
6309
6322
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
6323
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
6310
6324
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
6311
6325
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
6312
6326
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -6359,7 +6373,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6359
6373
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
6360
6374
|
allowLabels: () => boolean;
|
|
6361
6375
|
getColumnAlias: (column: string) => string;
|
|
6362
|
-
getColumn: (
|
|
6376
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
6363
6377
|
isDateColumn: (column: string) => boolean;
|
|
6364
6378
|
isTabSearch: (queryName: string) => boolean;
|
|
6365
6379
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -6376,7 +6390,9 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6376
6390
|
versionId: string;
|
|
6377
6391
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
6378
6392
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
6379
|
-
indexes:
|
|
6393
|
+
indexes: {
|
|
6394
|
+
_: _sinequa_atomic.CCIndex;
|
|
6395
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
6380
6396
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
6381
6397
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
6382
6398
|
queryNames: string;
|
|
@@ -6458,6 +6474,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
6458
6474
|
revision?: number | undefined;
|
|
6459
6475
|
runnableModels?: string | undefined;
|
|
6460
6476
|
authorizationLevel?: string | undefined;
|
|
6477
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
6461
6478
|
}>;
|
|
6462
6479
|
transform(collection: string[]): string;
|
|
6463
6480
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SourceIconPipe, never>;
|
|
@@ -6597,7 +6614,7 @@ declare class RecentSearchesComponent {
|
|
|
6597
6614
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6598
6615
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6599
6616
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6600
|
-
userTheme: _angular_core.Signal<"
|
|
6617
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6601
6618
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
6602
6619
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
6603
6620
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -6669,7 +6686,7 @@ declare class SavedSearchesComponent {
|
|
|
6669
6686
|
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
6670
6687
|
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6671
6688
|
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
6672
|
-
userTheme: _angular_core.Signal<"
|
|
6689
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
6673
6690
|
isDarkMode: _angular_core.Signal<boolean>;
|
|
6674
6691
|
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
6675
6692
|
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
@@ -6726,7 +6743,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6726
6743
|
private readonly savedSearchesService;
|
|
6727
6744
|
protected readonly queryParamsStore: {
|
|
6728
6745
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6729
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6730
6746
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6731
6747
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6732
6748
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -6749,6 +6765,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6749
6765
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6750
6766
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6751
6767
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6768
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6752
6769
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6753
6770
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6754
6771
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6780,7 +6797,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6780
6797
|
getQuery: () => _sinequa_atomic.Query;
|
|
6781
6798
|
} & _ngrx_signals.StateSource<{
|
|
6782
6799
|
name?: string | undefined;
|
|
6783
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6784
6800
|
text?: string | undefined;
|
|
6785
6801
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6786
6802
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -6803,6 +6819,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
6803
6819
|
relevanceTransforms?: string | undefined;
|
|
6804
6820
|
removeDuplicates?: boolean | undefined;
|
|
6805
6821
|
queryId?: string | undefined;
|
|
6822
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6806
6823
|
orderBy?: string | undefined;
|
|
6807
6824
|
groupBy?: string | undefined;
|
|
6808
6825
|
neuralSearch?: boolean | undefined;
|
|
@@ -6914,7 +6931,7 @@ declare class CollectionsDialog implements DialogInterface {
|
|
|
6914
6931
|
readonly removedFromCollection: _angular_core.WritableSignal<boolean>;
|
|
6915
6932
|
readonly addedToCollection: _angular_core.WritableSignal<boolean>;
|
|
6916
6933
|
readonly collections: _angular_core.Signal<Basket[]>;
|
|
6917
|
-
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "some" | "
|
|
6934
|
+
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "some" | "none" | "all">>;
|
|
6918
6935
|
open(article: Article$1 | Article$1[]): void;
|
|
6919
6936
|
containsArticleByName(collectionName: string): boolean;
|
|
6920
6937
|
containsArticle(collection: Basket): "all" | "some" | "none";
|
|
@@ -6945,7 +6962,7 @@ declare class AlertDialog implements DialogInterface {
|
|
|
6945
6962
|
alertTimes: _angular_core.WritableSignal<string>;
|
|
6946
6963
|
alertActive: _angular_core.WritableSignal<boolean>;
|
|
6947
6964
|
canUpdateQuery: _angular_core.WritableSignal<boolean>;
|
|
6948
|
-
updateStatus: _angular_core.WritableSignal<"
|
|
6965
|
+
updateStatus: _angular_core.WritableSignal<"updating" | "updated" | "idle">;
|
|
6949
6966
|
invalidForm: _angular_core.Signal<boolean>;
|
|
6950
6967
|
closed: _angular_core.OutputEmitterRef<DialogEvent>;
|
|
6951
6968
|
open(index: number): void;
|
|
@@ -7084,7 +7101,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7084
7101
|
readonly exportService: ExportService;
|
|
7085
7102
|
readonly queryParamsStore: {
|
|
7086
7103
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7087
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7088
7104
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7089
7105
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7090
7106
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7107,6 +7123,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7107
7123
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7108
7124
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7109
7125
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7126
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7110
7127
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7111
7128
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7112
7129
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7138,7 +7155,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7138
7155
|
getQuery: () => _sinequa_atomic.Query;
|
|
7139
7156
|
} & _ngrx_signals.StateSource<{
|
|
7140
7157
|
name?: string | undefined;
|
|
7141
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7142
7158
|
text?: string | undefined;
|
|
7143
7159
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7144
7160
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7161,6 +7177,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7161
7177
|
relevanceTransforms?: string | undefined;
|
|
7162
7178
|
removeDuplicates?: boolean | undefined;
|
|
7163
7179
|
queryId?: string | undefined;
|
|
7180
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7164
7181
|
orderBy?: string | undefined;
|
|
7165
7182
|
groupBy?: string | undefined;
|
|
7166
7183
|
neuralSearch?: boolean | undefined;
|
|
@@ -7200,7 +7217,9 @@ declare class LabelService {
|
|
|
7200
7217
|
versionId: _angular_core.Signal<string>;
|
|
7201
7218
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
7202
7219
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
7203
|
-
indexes: _angular_core.Signal<
|
|
7220
|
+
indexes: _angular_core.Signal<{
|
|
7221
|
+
_: _sinequa_atomic.CCIndex;
|
|
7222
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
7204
7223
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
7205
7224
|
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
7206
7225
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -7282,6 +7301,7 @@ declare class LabelService {
|
|
|
7282
7301
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
7283
7302
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
7284
7303
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
7304
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
7285
7305
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
7286
7306
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
7287
7307
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -7334,7 +7354,7 @@ declare class LabelService {
|
|
|
7334
7354
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
7335
7355
|
allowLabels: () => boolean;
|
|
7336
7356
|
getColumnAlias: (column: string) => string;
|
|
7337
|
-
getColumn: (
|
|
7357
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
7338
7358
|
isDateColumn: (column: string) => boolean;
|
|
7339
7359
|
isTabSearch: (queryName: string) => boolean;
|
|
7340
7360
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -7351,7 +7371,9 @@ declare class LabelService {
|
|
|
7351
7371
|
versionId: string;
|
|
7352
7372
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
7353
7373
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
7354
|
-
indexes:
|
|
7374
|
+
indexes: {
|
|
7375
|
+
_: _sinequa_atomic.CCIndex;
|
|
7376
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
7355
7377
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
7356
7378
|
webServices: Record<string, CCWebService>;
|
|
7357
7379
|
queryNames: string;
|
|
@@ -7433,6 +7455,7 @@ declare class LabelService {
|
|
|
7433
7455
|
revision?: number | undefined;
|
|
7434
7456
|
runnableModels?: string | undefined;
|
|
7435
7457
|
authorizationLevel?: string | undefined;
|
|
7458
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7436
7459
|
}>;
|
|
7437
7460
|
hasAccess: _angular_core.WritableSignal<boolean | undefined>;
|
|
7438
7461
|
/**
|
|
@@ -7592,7 +7615,9 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7592
7615
|
versionId: _angular_core.Signal<string>;
|
|
7593
7616
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
7594
7617
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
7595
|
-
indexes: _angular_core.Signal<
|
|
7618
|
+
indexes: _angular_core.Signal<{
|
|
7619
|
+
_: _sinequa_atomic.CCIndex;
|
|
7620
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
7596
7621
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
7597
7622
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
7598
7623
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -7674,6 +7699,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7674
7699
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
7675
7700
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
7676
7701
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
7702
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
7677
7703
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
7678
7704
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
7679
7705
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -7726,7 +7752,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7726
7752
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
7727
7753
|
allowLabels: () => boolean;
|
|
7728
7754
|
getColumnAlias: (column: string) => string;
|
|
7729
|
-
getColumn: (
|
|
7755
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
7730
7756
|
isDateColumn: (column: string) => boolean;
|
|
7731
7757
|
isTabSearch: (queryName: string) => boolean;
|
|
7732
7758
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -7743,7 +7769,9 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7743
7769
|
versionId: string;
|
|
7744
7770
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
7745
7771
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
7746
|
-
indexes:
|
|
7772
|
+
indexes: {
|
|
7773
|
+
_: _sinequa_atomic.CCIndex;
|
|
7774
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
7747
7775
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
7748
7776
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
7749
7777
|
queryNames: string;
|
|
@@ -7825,6 +7853,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7825
7853
|
revision?: number | undefined;
|
|
7826
7854
|
runnableModels?: string | undefined;
|
|
7827
7855
|
authorizationLevel?: string | undefined;
|
|
7856
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7828
7857
|
}>;
|
|
7829
7858
|
private readonly transloco;
|
|
7830
7859
|
comment: _angular_core.ModelSignal<string>;
|
|
@@ -7846,7 +7875,6 @@ declare class SearchFeedbackComponent {
|
|
|
7846
7875
|
readonly auditService: AuditService;
|
|
7847
7876
|
protected readonly queryParamsStore: {
|
|
7848
7877
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7849
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7850
7878
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7851
7879
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7852
7880
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7869,6 +7897,7 @@ declare class SearchFeedbackComponent {
|
|
|
7869
7897
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7870
7898
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7871
7899
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7900
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7872
7901
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7873
7902
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7874
7903
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7900,7 +7929,6 @@ declare class SearchFeedbackComponent {
|
|
|
7900
7929
|
getQuery: () => _sinequa_atomic.Query;
|
|
7901
7930
|
} & _ngrx_signals.StateSource<{
|
|
7902
7931
|
name?: string | undefined;
|
|
7903
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7904
7932
|
text?: string | undefined;
|
|
7905
7933
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7906
7934
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7923,6 +7951,7 @@ declare class SearchFeedbackComponent {
|
|
|
7923
7951
|
relevanceTransforms?: string | undefined;
|
|
7924
7952
|
removeDuplicates?: boolean | undefined;
|
|
7925
7953
|
queryId?: string | undefined;
|
|
7954
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7926
7955
|
orderBy?: string | undefined;
|
|
7927
7956
|
groupBy?: string | undefined;
|
|
7928
7957
|
neuralSearch?: boolean | undefined;
|
|
@@ -7957,7 +7986,7 @@ declare class FilterButtonComponent {
|
|
|
7957
7986
|
column: _angular_core.InputSignal<string>;
|
|
7958
7987
|
position: _angular_core.InputSignal<Placement>;
|
|
7959
7988
|
offset: _angular_core.InputSignal<number>;
|
|
7960
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
7989
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "primary" | "secondary" | "destructive" | "ai" | "ghost" | "none" | null | undefined>;
|
|
7961
7990
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
7962
7991
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
7963
7992
|
protected nativeElement: any;
|
|
@@ -7972,7 +8001,6 @@ declare class FilterButtonComponent {
|
|
|
7972
8001
|
}>;
|
|
7973
8002
|
protected queryParamsStore: {
|
|
7974
8003
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7975
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7976
8004
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7977
8005
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7978
8006
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7995,6 +8023,7 @@ declare class FilterButtonComponent {
|
|
|
7995
8023
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7996
8024
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7997
8025
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8026
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7998
8027
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7999
8028
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8000
8029
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8026,7 +8055,6 @@ declare class FilterButtonComponent {
|
|
|
8026
8055
|
getQuery: () => _sinequa_atomic.Query;
|
|
8027
8056
|
} & _ngrx_signals.StateSource<{
|
|
8028
8057
|
name?: string | undefined;
|
|
8029
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8030
8058
|
text?: string | undefined;
|
|
8031
8059
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8032
8060
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -8049,6 +8077,7 @@ declare class FilterButtonComponent {
|
|
|
8049
8077
|
relevanceTransforms?: string | undefined;
|
|
8050
8078
|
removeDuplicates?: boolean | undefined;
|
|
8051
8079
|
queryId?: string | undefined;
|
|
8080
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8052
8081
|
orderBy?: string | undefined;
|
|
8053
8082
|
groupBy?: string | undefined;
|
|
8054
8083
|
neuralSearch?: boolean | undefined;
|
|
@@ -8062,7 +8091,9 @@ declare class FilterButtonComponent {
|
|
|
8062
8091
|
versionId: _angular_core.Signal<string>;
|
|
8063
8092
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
8064
8093
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
8065
|
-
indexes: _angular_core.Signal<
|
|
8094
|
+
indexes: _angular_core.Signal<{
|
|
8095
|
+
_: _sinequa_atomic.CCIndex;
|
|
8096
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
8066
8097
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
8067
8098
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
8068
8099
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -8144,6 +8175,7 @@ declare class FilterButtonComponent {
|
|
|
8144
8175
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8145
8176
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8146
8177
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8178
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8147
8179
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8148
8180
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8149
8181
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8196,7 +8228,7 @@ declare class FilterButtonComponent {
|
|
|
8196
8228
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8197
8229
|
allowLabels: () => boolean;
|
|
8198
8230
|
getColumnAlias: (column: string) => string;
|
|
8199
|
-
getColumn: (
|
|
8231
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8200
8232
|
isDateColumn: (column: string) => boolean;
|
|
8201
8233
|
isTabSearch: (queryName: string) => boolean;
|
|
8202
8234
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8213,7 +8245,9 @@ declare class FilterButtonComponent {
|
|
|
8213
8245
|
versionId: string;
|
|
8214
8246
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8215
8247
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8216
|
-
indexes:
|
|
8248
|
+
indexes: {
|
|
8249
|
+
_: _sinequa_atomic.CCIndex;
|
|
8250
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8217
8251
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8218
8252
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8219
8253
|
queryNames: string;
|
|
@@ -8295,6 +8329,7 @@ declare class FilterButtonComponent {
|
|
|
8295
8329
|
revision?: number | undefined;
|
|
8296
8330
|
runnableModels?: string | undefined;
|
|
8297
8331
|
authorizationLevel?: string | undefined;
|
|
8332
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8298
8333
|
}>;
|
|
8299
8334
|
constructor();
|
|
8300
8335
|
/**
|
|
@@ -8315,7 +8350,9 @@ declare class MoreButtonComponent {
|
|
|
8315
8350
|
versionId: _angular_core.Signal<string>;
|
|
8316
8351
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
8317
8352
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
8318
|
-
indexes: _angular_core.Signal<
|
|
8353
|
+
indexes: _angular_core.Signal<{
|
|
8354
|
+
_: _sinequa_atomic.CCIndex;
|
|
8355
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
8319
8356
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
8320
8357
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
8321
8358
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -8397,6 +8434,7 @@ declare class MoreButtonComponent {
|
|
|
8397
8434
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8398
8435
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8399
8436
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8437
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8400
8438
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8401
8439
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8402
8440
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8449,7 +8487,7 @@ declare class MoreButtonComponent {
|
|
|
8449
8487
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8450
8488
|
allowLabels: () => boolean;
|
|
8451
8489
|
getColumnAlias: (column: string) => string;
|
|
8452
|
-
getColumn: (
|
|
8490
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8453
8491
|
isDateColumn: (column: string) => boolean;
|
|
8454
8492
|
isTabSearch: (queryName: string) => boolean;
|
|
8455
8493
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8466,7 +8504,9 @@ declare class MoreButtonComponent {
|
|
|
8466
8504
|
versionId: string;
|
|
8467
8505
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8468
8506
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8469
|
-
indexes:
|
|
8507
|
+
indexes: {
|
|
8508
|
+
_: _sinequa_atomic.CCIndex;
|
|
8509
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8470
8510
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8471
8511
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8472
8512
|
queryNames: string;
|
|
@@ -8548,10 +8588,10 @@ declare class MoreButtonComponent {
|
|
|
8548
8588
|
revision?: number | undefined;
|
|
8549
8589
|
runnableModels?: string | undefined;
|
|
8550
8590
|
authorizationLevel?: string | undefined;
|
|
8591
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8551
8592
|
}>;
|
|
8552
8593
|
queryParamsStore: {
|
|
8553
8594
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8554
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8555
8595
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8556
8596
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8557
8597
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -8574,6 +8614,7 @@ declare class MoreButtonComponent {
|
|
|
8574
8614
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8575
8615
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8576
8616
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8617
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8577
8618
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8578
8619
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8579
8620
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8605,7 +8646,6 @@ declare class MoreButtonComponent {
|
|
|
8605
8646
|
getQuery: () => _sinequa_atomic.Query;
|
|
8606
8647
|
} & _ngrx_signals.StateSource<{
|
|
8607
8648
|
name?: string | undefined;
|
|
8608
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8609
8649
|
text?: string | undefined;
|
|
8610
8650
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8611
8651
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -8628,6 +8668,7 @@ declare class MoreButtonComponent {
|
|
|
8628
8668
|
relevanceTransforms?: string | undefined;
|
|
8629
8669
|
removeDuplicates?: boolean | undefined;
|
|
8630
8670
|
queryId?: string | undefined;
|
|
8671
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8631
8672
|
orderBy?: string | undefined;
|
|
8632
8673
|
groupBy?: string | undefined;
|
|
8633
8674
|
neuralSearch?: boolean | undefined;
|
|
@@ -8710,7 +8751,9 @@ declare class FiltersBarComponent {
|
|
|
8710
8751
|
versionId: _angular_core.Signal<string>;
|
|
8711
8752
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
8712
8753
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
8713
|
-
indexes: _angular_core.Signal<
|
|
8754
|
+
indexes: _angular_core.Signal<{
|
|
8755
|
+
_: _sinequa_atomic.CCIndex;
|
|
8756
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
8714
8757
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
8715
8758
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
8716
8759
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -8792,6 +8835,7 @@ declare class FiltersBarComponent {
|
|
|
8792
8835
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
8793
8836
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
8794
8837
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
8838
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
8795
8839
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
8796
8840
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
8797
8841
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -8844,7 +8888,7 @@ declare class FiltersBarComponent {
|
|
|
8844
8888
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
8845
8889
|
allowLabels: () => boolean;
|
|
8846
8890
|
getColumnAlias: (column: string) => string;
|
|
8847
|
-
getColumn: (
|
|
8891
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
8848
8892
|
isDateColumn: (column: string) => boolean;
|
|
8849
8893
|
isTabSearch: (queryName: string) => boolean;
|
|
8850
8894
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -8861,7 +8905,9 @@ declare class FiltersBarComponent {
|
|
|
8861
8905
|
versionId: string;
|
|
8862
8906
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
8863
8907
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
8864
|
-
indexes:
|
|
8908
|
+
indexes: {
|
|
8909
|
+
_: _sinequa_atomic.CCIndex;
|
|
8910
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
8865
8911
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
8866
8912
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
8867
8913
|
queryNames: string;
|
|
@@ -8943,6 +8989,7 @@ declare class FiltersBarComponent {
|
|
|
8943
8989
|
revision?: number | undefined;
|
|
8944
8990
|
runnableModels?: string | undefined;
|
|
8945
8991
|
authorizationLevel?: string | undefined;
|
|
8992
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
8946
8993
|
}>;
|
|
8947
8994
|
protected aggregationsStore: {
|
|
8948
8995
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -8955,7 +9002,6 @@ declare class FiltersBarComponent {
|
|
|
8955
9002
|
}>;
|
|
8956
9003
|
protected queryParamsStore: {
|
|
8957
9004
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8958
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8959
9005
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8960
9006
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8961
9007
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -8978,6 +9024,7 @@ declare class FiltersBarComponent {
|
|
|
8978
9024
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8979
9025
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8980
9026
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9027
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8981
9028
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8982
9029
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8983
9030
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9009,7 +9056,6 @@ declare class FiltersBarComponent {
|
|
|
9009
9056
|
getQuery: () => _sinequa_atomic.Query;
|
|
9010
9057
|
} & _ngrx_signals.StateSource<{
|
|
9011
9058
|
name?: string | undefined;
|
|
9012
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9013
9059
|
text?: string | undefined;
|
|
9014
9060
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9015
9061
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -9032,6 +9078,7 @@ declare class FiltersBarComponent {
|
|
|
9032
9078
|
relevanceTransforms?: string | undefined;
|
|
9033
9079
|
removeDuplicates?: boolean | undefined;
|
|
9034
9080
|
queryId?: string | undefined;
|
|
9081
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9035
9082
|
orderBy?: string | undefined;
|
|
9036
9083
|
groupBy?: string | undefined;
|
|
9037
9084
|
neuralSearch?: boolean | undefined;
|
|
@@ -9128,7 +9175,7 @@ declare class FiltersBarComponent {
|
|
|
9128
9175
|
declare class AsideFiltersComponent {
|
|
9129
9176
|
cn: typeof cn;
|
|
9130
9177
|
class: _angular_core.InputSignal<string | undefined>;
|
|
9131
|
-
position: _angular_core.InputSignal<"
|
|
9178
|
+
position: _angular_core.InputSignal<"both" | "left" | undefined>;
|
|
9132
9179
|
private readonly appStore;
|
|
9133
9180
|
asideFilters: _angular_core.Signal<Aggregation[]>;
|
|
9134
9181
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AsideFiltersComponent, never>;
|
|
@@ -9152,7 +9199,6 @@ declare class AggregationComponent {
|
|
|
9152
9199
|
}>;
|
|
9153
9200
|
queryParamsStore: {
|
|
9154
9201
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9155
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9156
9202
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9157
9203
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9158
9204
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -9175,6 +9221,7 @@ declare class AggregationComponent {
|
|
|
9175
9221
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9176
9222
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9177
9223
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9224
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9178
9225
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9179
9226
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9180
9227
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9206,7 +9253,6 @@ declare class AggregationComponent {
|
|
|
9206
9253
|
getQuery: () => Query;
|
|
9207
9254
|
} & _ngrx_signals.StateSource<{
|
|
9208
9255
|
name?: string | undefined;
|
|
9209
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9210
9256
|
text?: string | undefined;
|
|
9211
9257
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9212
9258
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -9229,6 +9275,7 @@ declare class AggregationComponent {
|
|
|
9229
9275
|
relevanceTransforms?: string | undefined;
|
|
9230
9276
|
removeDuplicates?: boolean | undefined;
|
|
9231
9277
|
queryId?: string | undefined;
|
|
9278
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9232
9279
|
orderBy?: string | undefined;
|
|
9233
9280
|
groupBy?: string | undefined;
|
|
9234
9281
|
neuralSearch?: boolean | undefined;
|
|
@@ -9242,7 +9289,9 @@ declare class AggregationComponent {
|
|
|
9242
9289
|
versionId: _angular_core.Signal<string>;
|
|
9243
9290
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
9244
9291
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
9245
|
-
indexes: _angular_core.Signal<
|
|
9292
|
+
indexes: _angular_core.Signal<{
|
|
9293
|
+
_: _sinequa_atomic.CCIndex;
|
|
9294
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
9246
9295
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
9247
9296
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
9248
9297
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -9324,6 +9373,7 @@ declare class AggregationComponent {
|
|
|
9324
9373
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
9325
9374
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
9326
9375
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
9376
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
9327
9377
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
9328
9378
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
9329
9379
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -9376,7 +9426,7 @@ declare class AggregationComponent {
|
|
|
9376
9426
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
9377
9427
|
allowLabels: () => boolean;
|
|
9378
9428
|
getColumnAlias: (column: string) => string;
|
|
9379
|
-
getColumn: (
|
|
9429
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
9380
9430
|
isDateColumn: (column: string) => boolean;
|
|
9381
9431
|
isTabSearch: (queryName: string) => boolean;
|
|
9382
9432
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -9393,7 +9443,9 @@ declare class AggregationComponent {
|
|
|
9393
9443
|
versionId: string;
|
|
9394
9444
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
9395
9445
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
9396
|
-
indexes:
|
|
9446
|
+
indexes: {
|
|
9447
|
+
_: _sinequa_atomic.CCIndex;
|
|
9448
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
9397
9449
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
9398
9450
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
9399
9451
|
queryNames: string;
|
|
@@ -9475,6 +9527,7 @@ declare class AggregationComponent {
|
|
|
9475
9527
|
revision?: number | undefined;
|
|
9476
9528
|
runnableModels?: string | undefined;
|
|
9477
9529
|
authorizationLevel?: string | undefined;
|
|
9530
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
9478
9531
|
}>;
|
|
9479
9532
|
aggregationsService: AggregationsService;
|
|
9480
9533
|
el: ElementRef<any>;
|
|
@@ -9737,7 +9790,9 @@ declare class MoreComponent {
|
|
|
9737
9790
|
versionId: _angular_core.Signal<string>;
|
|
9738
9791
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
9739
9792
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
9740
|
-
indexes: _angular_core.Signal<
|
|
9793
|
+
indexes: _angular_core.Signal<{
|
|
9794
|
+
_: _sinequa_atomic.CCIndex;
|
|
9795
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
9741
9796
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
9742
9797
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
9743
9798
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -9819,6 +9874,7 @@ declare class MoreComponent {
|
|
|
9819
9874
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
9820
9875
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
9821
9876
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
9877
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
9822
9878
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
9823
9879
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
9824
9880
|
filters: _angular_core.Signal<CFilter[]>;
|
|
@@ -9871,7 +9927,7 @@ declare class MoreComponent {
|
|
|
9871
9927
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
9872
9928
|
allowLabels: () => boolean;
|
|
9873
9929
|
getColumnAlias: (column: string) => string;
|
|
9874
|
-
getColumn: (
|
|
9930
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
9875
9931
|
isDateColumn: (column: string) => boolean;
|
|
9876
9932
|
isTabSearch: (queryName: string) => boolean;
|
|
9877
9933
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -9888,7 +9944,9 @@ declare class MoreComponent {
|
|
|
9888
9944
|
versionId: string;
|
|
9889
9945
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
9890
9946
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
9891
|
-
indexes:
|
|
9947
|
+
indexes: {
|
|
9948
|
+
_: _sinequa_atomic.CCIndex;
|
|
9949
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
9892
9950
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
9893
9951
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
9894
9952
|
queryNames: string;
|
|
@@ -9970,6 +10028,7 @@ declare class MoreComponent {
|
|
|
9970
10028
|
revision?: number | undefined;
|
|
9971
10029
|
runnableModels?: string | undefined;
|
|
9972
10030
|
authorizationLevel?: string | undefined;
|
|
10031
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
9973
10032
|
}>;
|
|
9974
10033
|
aggregationsStore: {
|
|
9975
10034
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
@@ -9982,7 +10041,6 @@ declare class MoreComponent {
|
|
|
9982
10041
|
}>;
|
|
9983
10042
|
queryParamsStore: {
|
|
9984
10043
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9985
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9986
10044
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9987
10045
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9988
10046
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -10005,6 +10063,7 @@ declare class MoreComponent {
|
|
|
10005
10063
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10006
10064
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10007
10065
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10066
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10008
10067
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10009
10068
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10010
10069
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10036,7 +10095,6 @@ declare class MoreComponent {
|
|
|
10036
10095
|
getQuery: () => _sinequa_atomic.Query;
|
|
10037
10096
|
} & _ngrx_signals.StateSource<{
|
|
10038
10097
|
name?: string | undefined;
|
|
10039
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10040
10098
|
text?: string | undefined;
|
|
10041
10099
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10042
10100
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -10059,6 +10117,7 @@ declare class MoreComponent {
|
|
|
10059
10117
|
relevanceTransforms?: string | undefined;
|
|
10060
10118
|
removeDuplicates?: boolean | undefined;
|
|
10061
10119
|
queryId?: string | undefined;
|
|
10120
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10062
10121
|
orderBy?: string | undefined;
|
|
10063
10122
|
groupBy?: string | undefined;
|
|
10064
10123
|
neuralSearch?: boolean | undefined;
|
|
@@ -10275,7 +10334,6 @@ declare class AdvancedSearchComponent {
|
|
|
10275
10334
|
}>;
|
|
10276
10335
|
protected readonly queryParamsStore: {
|
|
10277
10336
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10278
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10279
10337
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10280
10338
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10281
10339
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -10298,6 +10356,7 @@ declare class AdvancedSearchComponent {
|
|
|
10298
10356
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10299
10357
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10300
10358
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10359
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10301
10360
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10302
10361
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10303
10362
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10329,7 +10388,6 @@ declare class AdvancedSearchComponent {
|
|
|
10329
10388
|
getQuery: () => _sinequa_atomic.Query;
|
|
10330
10389
|
} & _ngrx_signals.StateSource<{
|
|
10331
10390
|
name?: string | undefined;
|
|
10332
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10333
10391
|
text?: string | undefined;
|
|
10334
10392
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10335
10393
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -10352,6 +10410,7 @@ declare class AdvancedSearchComponent {
|
|
|
10352
10410
|
relevanceTransforms?: string | undefined;
|
|
10353
10411
|
removeDuplicates?: boolean | undefined;
|
|
10354
10412
|
queryId?: string | undefined;
|
|
10413
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10355
10414
|
orderBy?: string | undefined;
|
|
10356
10415
|
groupBy?: string | undefined;
|
|
10357
10416
|
neuralSearch?: boolean | undefined;
|
|
@@ -10391,7 +10450,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10391
10450
|
versionId: _angular_core.Signal<string>;
|
|
10392
10451
|
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
10393
10452
|
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
10394
|
-
indexes: _angular_core.Signal<
|
|
10453
|
+
indexes: _angular_core.Signal<{
|
|
10454
|
+
_: _sinequa_atomic.CCIndex;
|
|
10455
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
10395
10456
|
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
10396
10457
|
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
10397
10458
|
queryNames: _angular_core.Signal<string>;
|
|
@@ -10473,6 +10534,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10473
10534
|
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
10474
10535
|
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
10475
10536
|
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
10537
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
10476
10538
|
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
10477
10539
|
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
10478
10540
|
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
@@ -10525,7 +10587,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10525
10587
|
enableFieldedSearch: (queryName: string) => boolean;
|
|
10526
10588
|
allowLabels: () => boolean;
|
|
10527
10589
|
getColumnAlias: (column: string) => string;
|
|
10528
|
-
getColumn: (
|
|
10590
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
10529
10591
|
isDateColumn: (column: string) => boolean;
|
|
10530
10592
|
isTabSearch: (queryName: string) => boolean;
|
|
10531
10593
|
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
@@ -10542,7 +10604,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10542
10604
|
versionId: string;
|
|
10543
10605
|
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
10544
10606
|
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
10545
|
-
indexes:
|
|
10607
|
+
indexes: {
|
|
10608
|
+
_: _sinequa_atomic.CCIndex;
|
|
10609
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
10546
10610
|
lists: Record<string, _sinequa_atomic.CCList>;
|
|
10547
10611
|
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
10548
10612
|
queryNames: string;
|
|
@@ -10624,6 +10688,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10624
10688
|
revision?: number | undefined;
|
|
10625
10689
|
runnableModels?: string | undefined;
|
|
10626
10690
|
authorizationLevel?: string | undefined;
|
|
10691
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
10627
10692
|
}>;
|
|
10628
10693
|
selectionStore: {
|
|
10629
10694
|
article?: _angular_core.Signal<_sinequa_atomic.Article | undefined> | undefined;
|
|
@@ -10648,7 +10713,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10648
10713
|
}>;
|
|
10649
10714
|
queryParamsStore: {
|
|
10650
10715
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10651
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10652
10716
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10653
10717
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10654
10718
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -10671,6 +10735,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10671
10735
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10672
10736
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10673
10737
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10738
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10674
10739
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10675
10740
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10676
10741
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10702,7 +10767,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10702
10767
|
getQuery: () => _sinequa_atomic.Query;
|
|
10703
10768
|
} & _ngrx_signals.StateSource<{
|
|
10704
10769
|
name?: string | undefined;
|
|
10705
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10706
10770
|
text?: string | undefined;
|
|
10707
10771
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10708
10772
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -10725,6 +10789,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
10725
10789
|
relevanceTransforms?: string | undefined;
|
|
10726
10790
|
removeDuplicates?: boolean | undefined;
|
|
10727
10791
|
queryId?: string | undefined;
|
|
10792
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10728
10793
|
orderBy?: string | undefined;
|
|
10729
10794
|
groupBy?: string | undefined;
|
|
10730
10795
|
neuralSearch?: boolean | undefined;
|