@sinequa/atomic-angular 0.3.15 → 0.3.22
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/features/auth/i18n/de.json +2 -0
- package/features/auth/i18n/en.json +2 -0
- package/features/auth/i18n/fr.json +2 -0
- package/features/user-profile/i18n/de.json +13 -0
- package/features/user-profile/i18n/en.json +13 -0
- package/features/user-profile/i18n/fr.json +13 -0
- package/fesm2022/sinequa-atomic-angular.mjs +800 -415
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +322 -165
- package/package.json +5 -1
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as rxjs from 'rxjs';
|
|
|
4
4
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
5
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
6
|
import * as _sinequa_atomic from '@sinequa/atomic';
|
|
7
|
-
import { Article as Article$1, LegacyFilter, KeyOf, CCApp, Query, QueryParams as QueryParams$1, AggregationItem, TreeAggregationNode, Aggregation, TreeAggregation, Result, AuditEvents, CCQuery, AuditEventType, AuditEventTypeValues, CCWebService, Suggestion, CCColumn, Principal, SpellingCorrectionMode, CustomHighlights, PreviewData, TextLocation, TextChunk, CCSortingChoice, LinkResult, ExportQueryModel, ExportOutputFormat, FilterOperator } from '@sinequa/atomic';
|
|
7
|
+
import { Article as Article$1, LegacyFilter, KeyOf, CCApp, Query, QueryParams as QueryParams$1, AggregationItem, TreeAggregationNode, Aggregation, TreeAggregation, Result, AuditEvents, CCQuery, AuditEventType, AuditEventTypeValues, CCWebService, Suggestion, CCColumn, Principal, SpellingCorrectionMode, CustomHighlights, PreviewData, TextLocation, TextChunk, UserProfile, CCSortingChoice, LinkResult, ExportQueryModel, ExportOutputFormat, FilterOperator } from '@sinequa/atomic';
|
|
8
8
|
import { Router, NavigationEnd, ActivatedRoute, CanActivateFn, ResolveFn } from '@angular/router';
|
|
9
9
|
import * as _sinequa_atomic_angular from '@sinequa/atomic-angular';
|
|
10
10
|
import * as _sinequa_ui from '@sinequa/ui';
|
|
@@ -120,9 +120,9 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
120
120
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
121
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
122
122
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
123
|
-
filters
|
|
123
|
+
filters: _angular_core.Signal<LegacyFilter[]>;
|
|
124
124
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
125
|
-
setFromUrl: (
|
|
125
|
+
setFromUrl: (href: string) => void;
|
|
126
126
|
getQueryParams: () => {
|
|
127
127
|
f?: string;
|
|
128
128
|
p?: number;
|
|
@@ -130,6 +130,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
130
130
|
t?: string;
|
|
131
131
|
q?: string;
|
|
132
132
|
b?: string;
|
|
133
|
+
n?: string;
|
|
133
134
|
};
|
|
134
135
|
addFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
135
136
|
updateFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -174,7 +175,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
174
175
|
groupBy?: string | undefined;
|
|
175
176
|
neuralSearch?: boolean | undefined;
|
|
176
177
|
path?: string | undefined;
|
|
177
|
-
filters
|
|
178
|
+
filters: LegacyFilter[];
|
|
178
179
|
id?: string | undefined;
|
|
179
180
|
}>;
|
|
180
181
|
readonly aggregationStore: {
|
|
@@ -268,9 +269,9 @@ declare class MissingTermsComponent {
|
|
|
268
269
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
270
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
270
271
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
271
|
-
filters
|
|
272
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
272
273
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
273
|
-
setFromUrl: (
|
|
274
|
+
setFromUrl: (href: string) => void;
|
|
274
275
|
getQueryParams: () => {
|
|
275
276
|
f?: string;
|
|
276
277
|
p?: number;
|
|
@@ -278,6 +279,7 @@ declare class MissingTermsComponent {
|
|
|
278
279
|
t?: string;
|
|
279
280
|
q?: string;
|
|
280
281
|
b?: string;
|
|
282
|
+
n?: string;
|
|
281
283
|
};
|
|
282
284
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
283
285
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -322,7 +324,7 @@ declare class MissingTermsComponent {
|
|
|
322
324
|
groupBy?: string | undefined;
|
|
323
325
|
neuralSearch?: boolean | undefined;
|
|
324
326
|
path?: string | undefined;
|
|
325
|
-
filters
|
|
327
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
326
328
|
id?: string | undefined;
|
|
327
329
|
}>;
|
|
328
330
|
router: Router;
|
|
@@ -497,7 +499,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
497
499
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
498
500
|
getAggregationIcon: (column: string) => string | undefined;
|
|
499
501
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
500
|
-
getAggregationCustomization: (
|
|
502
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
501
503
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
502
504
|
} & _ngrx_signals.StateSource<{
|
|
503
505
|
name: string;
|
|
@@ -1157,7 +1159,7 @@ declare class AggregationsService {
|
|
|
1157
1159
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
1158
1160
|
getAggregationIcon: (column: string) => string | undefined;
|
|
1159
1161
|
getAggregationItemsCustomization: (column: string) => CFilterItem[] | undefined;
|
|
1160
|
-
getAggregationCustomization: (
|
|
1162
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => CFilter | undefined;
|
|
1161
1163
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
1162
1164
|
} & _ngrx_signals.StateSource<{
|
|
1163
1165
|
name: string;
|
|
@@ -1291,9 +1293,9 @@ declare class AggregationsService {
|
|
|
1291
1293
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1292
1294
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1293
1295
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
1294
|
-
filters
|
|
1296
|
+
filters: _angular_core.Signal<LegacyFilter[]>;
|
|
1295
1297
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
1296
|
-
setFromUrl: (
|
|
1298
|
+
setFromUrl: (href: string) => void;
|
|
1297
1299
|
getQueryParams: () => {
|
|
1298
1300
|
f?: string;
|
|
1299
1301
|
p?: number;
|
|
@@ -1301,6 +1303,7 @@ declare class AggregationsService {
|
|
|
1301
1303
|
t?: string;
|
|
1302
1304
|
q?: string;
|
|
1303
1305
|
b?: string;
|
|
1306
|
+
n?: string;
|
|
1304
1307
|
};
|
|
1305
1308
|
addFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
1306
1309
|
updateFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -1345,7 +1348,7 @@ declare class AggregationsService {
|
|
|
1345
1348
|
groupBy?: string | undefined;
|
|
1346
1349
|
neuralSearch?: boolean | undefined;
|
|
1347
1350
|
path?: string | undefined;
|
|
1348
|
-
filters
|
|
1351
|
+
filters: LegacyFilter[];
|
|
1349
1352
|
id?: string | undefined;
|
|
1350
1353
|
}>;
|
|
1351
1354
|
nonSearchableColumns: string[];
|
|
@@ -1661,7 +1664,7 @@ declare class ApplicationService {
|
|
|
1661
1664
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
1662
1665
|
getAggregationIcon: (column: string) => string | undefined;
|
|
1663
1666
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
1664
|
-
getAggregationCustomization: (
|
|
1667
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
1665
1668
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
1666
1669
|
} & _ngrx_signals.StateSource<{
|
|
1667
1670
|
name: string;
|
|
@@ -1981,7 +1984,7 @@ declare class AuditService {
|
|
|
1981
1984
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
1982
1985
|
getAggregationIcon: (column: string) => string | undefined;
|
|
1983
1986
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
1984
|
-
getAggregationCustomization: (
|
|
1987
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
1985
1988
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
1986
1989
|
} & _ngrx_signals.StateSource<{
|
|
1987
1990
|
name: string;
|
|
@@ -2321,7 +2324,7 @@ declare class AutocompleteService {
|
|
|
2321
2324
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
2322
2325
|
getAggregationIcon: (column: string) => string | undefined;
|
|
2323
2326
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
2324
|
-
getAggregationCustomization: (
|
|
2327
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
2325
2328
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
2326
2329
|
} & _ngrx_signals.StateSource<{
|
|
2327
2330
|
name: string;
|
|
@@ -2731,7 +2734,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2731
2734
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
2732
2735
|
getAggregationIcon: (column: string) => string | undefined;
|
|
2733
2736
|
getAggregationItemsCustomization: (column: string) => CFilterItem[] | undefined;
|
|
2734
|
-
getAggregationCustomization: (
|
|
2737
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => CFilter | undefined;
|
|
2735
2738
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
2736
2739
|
} & _ngrx_signals.StateSource<{
|
|
2737
2740
|
name: string;
|
|
@@ -2925,39 +2928,6 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2925
2928
|
authorizationLevel?: string | undefined;
|
|
2926
2929
|
columnMap?: Record<string, CCColumn> | undefined;
|
|
2927
2930
|
};
|
|
2928
|
-
props: {};
|
|
2929
|
-
methods: {
|
|
2930
|
-
initialize: () => Promise<void>;
|
|
2931
|
-
initializeWithAppName: (appName: string) => Promise<void>;
|
|
2932
|
-
update: (app: CCApp) => void;
|
|
2933
|
-
getWebServiceByType: (type: CCWebService["webServiceType"]) => CCWebService | undefined;
|
|
2934
|
-
getLabels: () => {
|
|
2935
|
-
private: string;
|
|
2936
|
-
public: string;
|
|
2937
|
-
};
|
|
2938
|
-
getQueryByName: (name: string) => CCQuery | undefined;
|
|
2939
|
-
getQueryByIndex: (index: number) => CCQuery | undefined;
|
|
2940
|
-
getDefaultQuery: () => CCQuery | undefined;
|
|
2941
|
-
allowEmptySearch: (queryName: string) => boolean;
|
|
2942
|
-
enableFieldedSearch: (queryName: string) => boolean;
|
|
2943
|
-
allowLabels: () => boolean;
|
|
2944
|
-
getColumnAlias: (column: string) => string;
|
|
2945
|
-
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2946
|
-
isDateColumn: (column: string) => boolean;
|
|
2947
|
-
isTabSearch: (queryName: string) => boolean;
|
|
2948
|
-
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
2949
|
-
getAuthorizedFilters: () => Aggregation[];
|
|
2950
|
-
getAuthorized: (filters: Pick<CFilter, "column" | "name">[]) => Aggregation[];
|
|
2951
|
-
};
|
|
2952
|
-
}>;
|
|
2953
|
-
/**
|
|
2954
|
-
* Management of customization JSONs features for the app
|
|
2955
|
-
*/
|
|
2956
|
-
declare function withAppCustomizationFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
2957
|
-
state: {
|
|
2958
|
-
customJSONs: SideCJson[];
|
|
2959
|
-
data: {};
|
|
2960
|
-
};
|
|
2961
2931
|
props: {
|
|
2962
2932
|
customizationJson: _angular_core.Signal<CJsonMint>;
|
|
2963
2933
|
sources: _angular_core.Signal<CSources>;
|
|
@@ -2997,10 +2967,31 @@ declare function withAppCustomizationFeatures(): _ngrx_signals.SignalStoreFeatur
|
|
|
2997
2967
|
assistants: _angular_core.Signal<AssistantConfiguration>;
|
|
2998
2968
|
};
|
|
2999
2969
|
methods: {
|
|
2970
|
+
initialize: () => Promise<void>;
|
|
2971
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
2972
|
+
update: (app: CCApp) => void;
|
|
2973
|
+
getWebServiceByType: (type: CCWebService["webServiceType"]) => CCWebService | undefined;
|
|
2974
|
+
getLabels: () => {
|
|
2975
|
+
private: string;
|
|
2976
|
+
public: string;
|
|
2977
|
+
};
|
|
2978
|
+
getQueryByName: (name: string) => CCQuery | undefined;
|
|
2979
|
+
getQueryByIndex: (index: number) => CCQuery | undefined;
|
|
2980
|
+
getDefaultQuery: () => CCQuery | undefined;
|
|
2981
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
2982
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
2983
|
+
allowLabels: () => boolean;
|
|
2984
|
+
getColumnAlias: (column: string) => string;
|
|
2985
|
+
getColumn: (columnOrAlias: string) => CCColumn | undefined;
|
|
2986
|
+
isDateColumn: (column: string) => boolean;
|
|
2987
|
+
isTabSearch: (queryName: string) => boolean;
|
|
2988
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
2989
|
+
getAuthorizedFilters: () => Aggregation[];
|
|
2990
|
+
getAuthorized: (filters: Pick<CFilter, "column" | "name">[]) => Aggregation[];
|
|
3000
2991
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
3001
2992
|
getAggregationIcon: (column: string) => string | undefined;
|
|
3002
2993
|
getAggregationItemsCustomization: (column: string) => CFilterItem[] | undefined;
|
|
3003
|
-
getAggregationCustomization: (
|
|
2994
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => CFilter | undefined;
|
|
3004
2995
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
3005
2996
|
};
|
|
3006
2997
|
}>;
|
|
@@ -3131,6 +3122,7 @@ type QueryParams = {
|
|
|
3131
3122
|
t?: string;
|
|
3132
3123
|
q?: string;
|
|
3133
3124
|
b?: string;
|
|
3125
|
+
n?: string;
|
|
3134
3126
|
};
|
|
3135
3127
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
3136
3128
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
@@ -3161,9 +3153,9 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3161
3153
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3162
3154
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3163
3155
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
3164
|
-
filters
|
|
3156
|
+
filters: _angular_core.Signal<LegacyFilter[]>;
|
|
3165
3157
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
3166
|
-
setFromUrl: (
|
|
3158
|
+
setFromUrl: (href: string) => void;
|
|
3167
3159
|
getQueryParams: () => QueryParams;
|
|
3168
3160
|
addFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
3169
3161
|
updateFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -3208,7 +3200,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3208
3200
|
groupBy?: string | undefined;
|
|
3209
3201
|
neuralSearch?: boolean | undefined;
|
|
3210
3202
|
path?: string | undefined;
|
|
3211
|
-
filters
|
|
3203
|
+
filters: LegacyFilter[];
|
|
3212
3204
|
id?: string | undefined;
|
|
3213
3205
|
}>>;
|
|
3214
3206
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
@@ -3241,12 +3233,12 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3241
3233
|
groupBy?: string | undefined;
|
|
3242
3234
|
neuralSearch?: boolean | undefined;
|
|
3243
3235
|
path?: string | undefined;
|
|
3244
|
-
filters
|
|
3236
|
+
filters: LegacyFilter[];
|
|
3245
3237
|
id?: string | undefined;
|
|
3246
3238
|
};
|
|
3247
3239
|
props: {};
|
|
3248
3240
|
methods: {
|
|
3249
|
-
setFromUrl: (
|
|
3241
|
+
setFromUrl: (href: string) => void;
|
|
3250
3242
|
_updateUrlQueryParams: (state: QueryParams$1, audit?: AuditEvents) => void;
|
|
3251
3243
|
getQueryParams: () => QueryParams;
|
|
3252
3244
|
addFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -3812,9 +3804,9 @@ declare class PreviewService {
|
|
|
3812
3804
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3813
3805
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3814
3806
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
3815
|
-
filters
|
|
3807
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
3816
3808
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
3817
|
-
setFromUrl: (
|
|
3809
|
+
setFromUrl: (href: string) => void;
|
|
3818
3810
|
getQueryParams: () => {
|
|
3819
3811
|
f?: string;
|
|
3820
3812
|
p?: number;
|
|
@@ -3822,6 +3814,7 @@ declare class PreviewService {
|
|
|
3822
3814
|
t?: string;
|
|
3823
3815
|
q?: string;
|
|
3824
3816
|
b?: string;
|
|
3817
|
+
n?: string;
|
|
3825
3818
|
};
|
|
3826
3819
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: AuditEvents) => void;
|
|
3827
3820
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -3866,7 +3859,7 @@ declare class PreviewService {
|
|
|
3866
3859
|
groupBy?: string | undefined;
|
|
3867
3860
|
neuralSearch?: boolean | undefined;
|
|
3868
3861
|
path?: string | undefined;
|
|
3869
|
-
filters
|
|
3862
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
3870
3863
|
id?: string | undefined;
|
|
3871
3864
|
}>;
|
|
3872
3865
|
protected readonly appStore: {
|
|
@@ -4024,7 +4017,7 @@ declare class PreviewService {
|
|
|
4024
4017
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
4025
4018
|
getAggregationIcon: (column: string) => string | undefined;
|
|
4026
4019
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
4027
|
-
getAggregationCustomization: (
|
|
4020
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
4028
4021
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
4029
4022
|
} & _ngrx_signals.StateSource<{
|
|
4030
4023
|
name: string;
|
|
@@ -4372,9 +4365,9 @@ declare class SavedSearchesService {
|
|
|
4372
4365
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
4366
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4374
4367
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
|
-
filters
|
|
4368
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
4376
4369
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4377
|
-
setFromUrl: (
|
|
4370
|
+
setFromUrl: (href: string) => void;
|
|
4378
4371
|
getQueryParams: () => {
|
|
4379
4372
|
f?: string;
|
|
4380
4373
|
p?: number;
|
|
@@ -4382,6 +4375,7 @@ declare class SavedSearchesService {
|
|
|
4382
4375
|
t?: string;
|
|
4383
4376
|
q?: string;
|
|
4384
4377
|
b?: string;
|
|
4378
|
+
n?: string;
|
|
4385
4379
|
};
|
|
4386
4380
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
4387
4381
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -4426,7 +4420,7 @@ declare class SavedSearchesService {
|
|
|
4426
4420
|
groupBy?: string | undefined;
|
|
4427
4421
|
neuralSearch?: boolean | undefined;
|
|
4428
4422
|
path?: string | undefined;
|
|
4429
|
-
filters
|
|
4423
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
4430
4424
|
id?: string | undefined;
|
|
4431
4425
|
}>;
|
|
4432
4426
|
/**
|
|
@@ -4512,9 +4506,9 @@ declare class SearchService {
|
|
|
4512
4506
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4513
4507
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4514
4508
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4515
|
-
filters
|
|
4509
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
4516
4510
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4517
|
-
setFromUrl: (
|
|
4511
|
+
setFromUrl: (href: string) => void;
|
|
4518
4512
|
getQueryParams: () => {
|
|
4519
4513
|
f?: string;
|
|
4520
4514
|
p?: number;
|
|
@@ -4522,6 +4516,7 @@ declare class SearchService {
|
|
|
4522
4516
|
t?: string;
|
|
4523
4517
|
q?: string;
|
|
4524
4518
|
b?: string;
|
|
4519
|
+
n?: string;
|
|
4525
4520
|
};
|
|
4526
4521
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: AuditEvents) => void;
|
|
4527
4522
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -4566,7 +4561,7 @@ declare class SearchService {
|
|
|
4566
4561
|
groupBy?: string | undefined;
|
|
4567
4562
|
neuralSearch?: boolean | undefined;
|
|
4568
4563
|
path?: string | undefined;
|
|
4569
|
-
filters
|
|
4564
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
4570
4565
|
id?: string | undefined;
|
|
4571
4566
|
}>;
|
|
4572
4567
|
protected readonly userSettingsStore: {
|
|
@@ -4664,54 +4659,6 @@ declare class SearchService {
|
|
|
4664
4659
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SearchService>;
|
|
4665
4660
|
}
|
|
4666
4661
|
|
|
4667
|
-
type SelectionHistoryEvent = 'back' | 'new';
|
|
4668
|
-
declare class SelectionHistoryService {
|
|
4669
|
-
readonly selectionHistoryEvent: EventEmitter<SelectionHistoryEvent>;
|
|
4670
|
-
private readonly selectionService;
|
|
4671
|
-
private readonly selectionStore;
|
|
4672
|
-
private readonly history;
|
|
4673
|
-
constructor();
|
|
4674
|
-
/**
|
|
4675
|
-
* Retrieves the index of the current selection.
|
|
4676
|
-
*
|
|
4677
|
-
* @returns {number} The index of the current selection, which is the last element in the history array.
|
|
4678
|
-
*/
|
|
4679
|
-
getCurrentSelectionIndex(): number;
|
|
4680
|
-
/**
|
|
4681
|
-
* Retrieves an article from the selection history at the specified index.
|
|
4682
|
-
*
|
|
4683
|
-
* @param index - The index of the article to retrieve.
|
|
4684
|
-
* @returns The article at the specified index, or `undefined` if the index is out of bounds.
|
|
4685
|
-
*/
|
|
4686
|
-
getSelection(index: number): Article$1 | undefined;
|
|
4687
|
-
/**
|
|
4688
|
-
* Retrieves the length of the history array.
|
|
4689
|
-
*
|
|
4690
|
-
* @returns {number} The number of entries in the history.
|
|
4691
|
-
*/
|
|
4692
|
-
getHistoryLength(): number;
|
|
4693
|
-
/**
|
|
4694
|
-
* Clears the selection history and resets the current article selection.
|
|
4695
|
-
*
|
|
4696
|
-
* This method performs the following actions:
|
|
4697
|
-
* - Empties the history array.
|
|
4698
|
-
* - Calls the `clearCurrentArticle` method on the `selectionService` to reset the current article selection.
|
|
4699
|
-
*/
|
|
4700
|
-
clearHistory(): void;
|
|
4701
|
-
/**
|
|
4702
|
-
* Navigates back in the selection history.
|
|
4703
|
-
*
|
|
4704
|
-
* Removes the most recent entry from the history. If the history is empty after this operation,
|
|
4705
|
-
* it returns `undefined`. Otherwise, it sets the current article to the last entry in the history,
|
|
4706
|
-
* triggers a 'back' event, and returns the last entry.
|
|
4707
|
-
*
|
|
4708
|
-
* @returns {Article | undefined} The last article in the history, or `undefined` if the history is empty.
|
|
4709
|
-
*/
|
|
4710
|
-
back(): Article$1 | undefined;
|
|
4711
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectionHistoryService, never>;
|
|
4712
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SelectionHistoryService>;
|
|
4713
|
-
}
|
|
4714
|
-
|
|
4715
4662
|
declare class SelectionService {
|
|
4716
4663
|
private readonly route;
|
|
4717
4664
|
private readonly router;
|
|
@@ -4746,9 +4693,9 @@ declare class SelectionService {
|
|
|
4746
4693
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4747
4694
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4748
4695
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4749
|
-
filters
|
|
4696
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
4750
4697
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4751
|
-
setFromUrl: (
|
|
4698
|
+
setFromUrl: (href: string) => void;
|
|
4752
4699
|
getQueryParams: () => {
|
|
4753
4700
|
f?: string;
|
|
4754
4701
|
p?: number;
|
|
@@ -4756,6 +4703,7 @@ declare class SelectionService {
|
|
|
4756
4703
|
t?: string;
|
|
4757
4704
|
q?: string;
|
|
4758
4705
|
b?: string;
|
|
4706
|
+
n?: string;
|
|
4759
4707
|
};
|
|
4760
4708
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
4761
4709
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -4800,7 +4748,7 @@ declare class SelectionService {
|
|
|
4800
4748
|
groupBy?: string | undefined;
|
|
4801
4749
|
neuralSearch?: boolean | undefined;
|
|
4802
4750
|
path?: string | undefined;
|
|
4803
|
-
filters
|
|
4751
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
4804
4752
|
id?: string | undefined;
|
|
4805
4753
|
}>;
|
|
4806
4754
|
/**
|
|
@@ -4846,6 +4794,54 @@ declare class SelectionService {
|
|
|
4846
4794
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SelectionService>;
|
|
4847
4795
|
}
|
|
4848
4796
|
|
|
4797
|
+
type SelectionHistoryEvent = 'back' | 'new';
|
|
4798
|
+
declare class SelectionHistoryService {
|
|
4799
|
+
readonly selectionHistoryEvent: EventEmitter<SelectionHistoryEvent>;
|
|
4800
|
+
private readonly selectionService;
|
|
4801
|
+
private readonly selectionStore;
|
|
4802
|
+
private readonly history;
|
|
4803
|
+
constructor();
|
|
4804
|
+
/**
|
|
4805
|
+
* Retrieves the index of the current selection.
|
|
4806
|
+
*
|
|
4807
|
+
* @returns {number} The index of the current selection, which is the last element in the history array.
|
|
4808
|
+
*/
|
|
4809
|
+
getCurrentSelectionIndex(): number;
|
|
4810
|
+
/**
|
|
4811
|
+
* Retrieves an article from the selection history at the specified index.
|
|
4812
|
+
*
|
|
4813
|
+
* @param index - The index of the article to retrieve.
|
|
4814
|
+
* @returns The article at the specified index, or `undefined` if the index is out of bounds.
|
|
4815
|
+
*/
|
|
4816
|
+
getSelection(index: number): Article$1 | undefined;
|
|
4817
|
+
/**
|
|
4818
|
+
* Retrieves the length of the history array.
|
|
4819
|
+
*
|
|
4820
|
+
* @returns {number} The number of entries in the history.
|
|
4821
|
+
*/
|
|
4822
|
+
getHistoryLength(): number;
|
|
4823
|
+
/**
|
|
4824
|
+
* Clears the selection history and resets the current article selection.
|
|
4825
|
+
*
|
|
4826
|
+
* This method performs the following actions:
|
|
4827
|
+
* - Empties the history array.
|
|
4828
|
+
* - Calls the `clearCurrentArticle` method on the `selectionService` to reset the current article selection.
|
|
4829
|
+
*/
|
|
4830
|
+
clearHistory(): void;
|
|
4831
|
+
/**
|
|
4832
|
+
* Navigates back in the selection history.
|
|
4833
|
+
*
|
|
4834
|
+
* Removes the most recent entry from the history. If the history is empty after this operation,
|
|
4835
|
+
* it returns `undefined`. Otherwise, it sets the current article to the last entry in the history,
|
|
4836
|
+
* triggers a 'back' event, and returns the last entry.
|
|
4837
|
+
*
|
|
4838
|
+
* @returns {Article | undefined} The last article in the history, or `undefined` if the history is empty.
|
|
4839
|
+
*/
|
|
4840
|
+
back(): Article$1 | undefined;
|
|
4841
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectionHistoryService, never>;
|
|
4842
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SelectionHistoryService>;
|
|
4843
|
+
}
|
|
4844
|
+
|
|
4849
4845
|
declare class TextChunkService {
|
|
4850
4846
|
protected readonly http: HttpClient;
|
|
4851
4847
|
protected readonly API_URL: string;
|
|
@@ -4865,6 +4861,19 @@ declare class TextChunkService {
|
|
|
4865
4861
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TextChunkService>;
|
|
4866
4862
|
}
|
|
4867
4863
|
|
|
4864
|
+
declare class UserProfileService {
|
|
4865
|
+
protected readonly API_URL: string;
|
|
4866
|
+
/**
|
|
4867
|
+
* Retrieves the user profile by user ID.
|
|
4868
|
+
*
|
|
4869
|
+
* @param id - The ID of the user.
|
|
4870
|
+
* @returns An Observable that emits an the UserProfile object.
|
|
4871
|
+
*/
|
|
4872
|
+
getUserProfile(principal: Signal<Principal | undefined>): _angular_common_http.HttpResourceRef<UserProfile | undefined>;
|
|
4873
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileService, never>;
|
|
4874
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<UserProfileService>;
|
|
4875
|
+
}
|
|
4876
|
+
|
|
4868
4877
|
type NavbarTab = {
|
|
4869
4878
|
display: string;
|
|
4870
4879
|
wsQueryTab: string;
|
|
@@ -4908,9 +4917,9 @@ declare class NavbarTabsComponent {
|
|
|
4908
4917
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4909
4918
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4910
4919
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4911
|
-
filters
|
|
4920
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
4912
4921
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4913
|
-
setFromUrl: (
|
|
4922
|
+
setFromUrl: (href: string) => void;
|
|
4914
4923
|
getQueryParams: () => {
|
|
4915
4924
|
f?: string;
|
|
4916
4925
|
p?: number;
|
|
@@ -4918,6 +4927,7 @@ declare class NavbarTabsComponent {
|
|
|
4918
4927
|
t?: string;
|
|
4919
4928
|
q?: string;
|
|
4920
4929
|
b?: string;
|
|
4930
|
+
n?: string;
|
|
4921
4931
|
};
|
|
4922
4932
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
4923
4933
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -4962,7 +4972,7 @@ declare class NavbarTabsComponent {
|
|
|
4962
4972
|
groupBy?: string | undefined;
|
|
4963
4973
|
neuralSearch?: boolean | undefined;
|
|
4964
4974
|
path?: string | undefined;
|
|
4965
|
-
filters
|
|
4975
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
4966
4976
|
id?: string | undefined;
|
|
4967
4977
|
}>;
|
|
4968
4978
|
readonly queryService: QueryService;
|
|
@@ -5189,7 +5199,7 @@ declare class SortSelectorComponent {
|
|
|
5189
5199
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
5190
5200
|
getAggregationIcon: (column: string) => string | undefined;
|
|
5191
5201
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
5192
|
-
getAggregationCustomization: (
|
|
5202
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
5193
5203
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
5194
5204
|
} & _ngrx_signals.StateSource<{
|
|
5195
5205
|
name: string;
|
|
@@ -5865,7 +5875,7 @@ declare class SponsoredResultsComponent {
|
|
|
5865
5875
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
5866
5876
|
getAggregationIcon: (column: string) => string | undefined;
|
|
5867
5877
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
5868
|
-
getAggregationCustomization: (
|
|
5878
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
5869
5879
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
5870
5880
|
} & _ngrx_signals.StateSource<{
|
|
5871
5881
|
name: string;
|
|
@@ -5990,9 +6000,9 @@ declare class SponsoredResultsComponent {
|
|
|
5990
6000
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5991
6001
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5992
6002
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
5993
|
-
filters
|
|
6003
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
5994
6004
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
5995
|
-
setFromUrl: (
|
|
6005
|
+
setFromUrl: (href: string) => void;
|
|
5996
6006
|
getQueryParams: () => {
|
|
5997
6007
|
f?: string;
|
|
5998
6008
|
p?: number;
|
|
@@ -6000,6 +6010,7 @@ declare class SponsoredResultsComponent {
|
|
|
6000
6010
|
t?: string;
|
|
6001
6011
|
q?: string;
|
|
6002
6012
|
b?: string;
|
|
6013
|
+
n?: string;
|
|
6003
6014
|
};
|
|
6004
6015
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6005
6016
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -6044,7 +6055,7 @@ declare class SponsoredResultsComponent {
|
|
|
6044
6055
|
groupBy?: string | undefined;
|
|
6045
6056
|
neuralSearch?: boolean | undefined;
|
|
6046
6057
|
path?: string | undefined;
|
|
6047
|
-
filters
|
|
6058
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
6048
6059
|
id?: string | undefined;
|
|
6049
6060
|
}>;
|
|
6050
6061
|
injector: Injector;
|
|
@@ -6203,6 +6214,7 @@ declare class AuthPageComponent {
|
|
|
6203
6214
|
mode: _angular_core.InputSignal<AuthView | undefined>;
|
|
6204
6215
|
view: _angular_core.WritableSignal<AuthView>;
|
|
6205
6216
|
readonly username: _angular_core.WritableSignal<string>;
|
|
6217
|
+
readonly alert: _angular_core.WritableSignal<string | undefined>;
|
|
6206
6218
|
private readonly route;
|
|
6207
6219
|
constructor();
|
|
6208
6220
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AuthPageComponent, never>;
|
|
@@ -6213,6 +6225,8 @@ declare class ChangePasswordComponent {
|
|
|
6213
6225
|
readonly success: _angular_core.OutputEmitterRef<void>;
|
|
6214
6226
|
readonly cancel: _angular_core.OutputEmitterRef<void>;
|
|
6215
6227
|
username: _angular_core.InputSignal<string | null>;
|
|
6228
|
+
alert: _angular_core.InputSignal<string | undefined>;
|
|
6229
|
+
redirectAfterSuccess: _angular_core.InputSignal<boolean>;
|
|
6216
6230
|
private readonly transloco;
|
|
6217
6231
|
private readonly router;
|
|
6218
6232
|
private readonly principalStore;
|
|
@@ -6223,13 +6237,17 @@ declare class ChangePasswordComponent {
|
|
|
6223
6237
|
confirmPassword: _angular_core.ModelSignal<string>;
|
|
6224
6238
|
pending: _angular_core.WritableSignal<boolean>;
|
|
6225
6239
|
errorMsg: _angular_core.WritableSignal<string | null>;
|
|
6240
|
+
currentPasswordType: string;
|
|
6241
|
+
newPasswordType: string;
|
|
6242
|
+
confirmPasswordType: string;
|
|
6226
6243
|
valid: _angular_core.Signal<boolean>;
|
|
6244
|
+
confirmInvalid: _angular_core.Signal<boolean>;
|
|
6227
6245
|
readonly effectiveUsername: _angular_core.Signal<string | null>;
|
|
6228
6246
|
private clearLocalAuthState;
|
|
6229
6247
|
changePassword(): Promise<void>;
|
|
6230
6248
|
onCancel(): void;
|
|
6231
6249
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChangePasswordComponent, never>;
|
|
6232
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChangePasswordComponent, "change-password, ChangePassword, changepassword", never, { "username": { "alias": "username"; "required": false; "isSignal": true; }; "currentPassword": { "alias": "currentPassword"; "required": false; "isSignal": true; }; "newPassword": { "alias": "newPassword"; "required": false; "isSignal": true; }; "confirmPassword": { "alias": "confirmPassword"; "required": false; "isSignal": true; }; }, { "success": "success"; "cancel": "cancel"; "currentPassword": "currentPasswordChange"; "newPassword": "newPasswordChange"; "confirmPassword": "confirmPasswordChange"; }, never, never, true, never>;
|
|
6250
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChangePasswordComponent, "change-password, ChangePassword, changepassword", never, { "username": { "alias": "username"; "required": false; "isSignal": true; }; "alert": { "alias": "alert"; "required": false; "isSignal": true; }; "redirectAfterSuccess": { "alias": "redirectAfterSuccess"; "required": false; "isSignal": true; }; "currentPassword": { "alias": "currentPassword"; "required": false; "isSignal": true; }; "newPassword": { "alias": "newPassword"; "required": false; "isSignal": true; }; "confirmPassword": { "alias": "confirmPassword"; "required": false; "isSignal": true; }; }, { "success": "success"; "cancel": "cancel"; "currentPassword": "currentPasswordChange"; "newPassword": "newPasswordChange"; "confirmPassword": "confirmPasswordChange"; }, never, never, true, never>;
|
|
6233
6251
|
}
|
|
6234
6252
|
|
|
6235
6253
|
/**
|
|
@@ -6600,9 +6618,9 @@ declare class AdvancedSearchComponent {
|
|
|
6600
6618
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6601
6619
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6602
6620
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
6603
|
-
filters
|
|
6621
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
6604
6622
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6605
|
-
setFromUrl: (
|
|
6623
|
+
setFromUrl: (href: string) => void;
|
|
6606
6624
|
getQueryParams: () => {
|
|
6607
6625
|
f?: string;
|
|
6608
6626
|
p?: number;
|
|
@@ -6610,6 +6628,7 @@ declare class AdvancedSearchComponent {
|
|
|
6610
6628
|
t?: string;
|
|
6611
6629
|
q?: string;
|
|
6612
6630
|
b?: string;
|
|
6631
|
+
n?: string;
|
|
6613
6632
|
};
|
|
6614
6633
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6615
6634
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -6654,7 +6673,7 @@ declare class AdvancedSearchComponent {
|
|
|
6654
6673
|
groupBy?: string | undefined;
|
|
6655
6674
|
neuralSearch?: boolean | undefined;
|
|
6656
6675
|
path?: string | undefined;
|
|
6657
|
-
filters
|
|
6676
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
6658
6677
|
id?: string | undefined;
|
|
6659
6678
|
}>;
|
|
6660
6679
|
protected readonly queryText: _angular_core.WritableSignal<string>;
|
|
@@ -6838,7 +6857,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6838
6857
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
6839
6858
|
getAggregationIcon: (column: string) => string | undefined;
|
|
6840
6859
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
6841
|
-
getAggregationCustomization: (
|
|
6860
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
6842
6861
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
6843
6862
|
} & _ngrx_signals.StateSource<{
|
|
6844
6863
|
name: string;
|
|
@@ -6984,9 +7003,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6984
7003
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6985
7004
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6986
7005
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
6987
|
-
filters
|
|
7006
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
6988
7007
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6989
|
-
setFromUrl: (
|
|
7008
|
+
setFromUrl: (href: string) => void;
|
|
6990
7009
|
getQueryParams: () => {
|
|
6991
7010
|
f?: string;
|
|
6992
7011
|
p?: number;
|
|
@@ -6994,6 +7013,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6994
7013
|
t?: string;
|
|
6995
7014
|
q?: string;
|
|
6996
7015
|
b?: string;
|
|
7016
|
+
n?: string;
|
|
6997
7017
|
};
|
|
6998
7018
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6999
7019
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -7038,7 +7058,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7038
7058
|
groupBy?: string | undefined;
|
|
7039
7059
|
neuralSearch?: boolean | undefined;
|
|
7040
7060
|
path?: string | undefined;
|
|
7041
|
-
filters
|
|
7061
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
7042
7062
|
id?: string | undefined;
|
|
7043
7063
|
}>;
|
|
7044
7064
|
previewService: PreviewService;
|
|
@@ -7172,9 +7192,9 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7172
7192
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7173
7193
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7174
7194
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7175
|
-
filters
|
|
7195
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
7176
7196
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7177
|
-
setFromUrl: (
|
|
7197
|
+
setFromUrl: (href: string) => void;
|
|
7178
7198
|
getQueryParams: () => {
|
|
7179
7199
|
f?: string;
|
|
7180
7200
|
p?: number;
|
|
@@ -7182,6 +7202,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7182
7202
|
t?: string;
|
|
7183
7203
|
q?: string;
|
|
7184
7204
|
b?: string;
|
|
7205
|
+
n?: string;
|
|
7185
7206
|
};
|
|
7186
7207
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7187
7208
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -7226,7 +7247,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7226
7247
|
groupBy?: string | undefined;
|
|
7227
7248
|
neuralSearch?: boolean | undefined;
|
|
7228
7249
|
path?: string | undefined;
|
|
7229
|
-
filters
|
|
7250
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
7230
7251
|
id?: string | undefined;
|
|
7231
7252
|
}>;
|
|
7232
7253
|
readonly dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
@@ -7404,7 +7425,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7404
7425
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
7405
7426
|
getAggregationIcon: (column: string) => string | undefined;
|
|
7406
7427
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
7407
|
-
getAggregationCustomization: (
|
|
7428
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
7408
7429
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
7409
7430
|
} & _ngrx_signals.StateSource<{
|
|
7410
7431
|
name: string;
|
|
@@ -7547,9 +7568,9 @@ declare class SearchFeedbackComponent {
|
|
|
7547
7568
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7548
7569
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7549
7570
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7550
|
-
filters
|
|
7571
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
7551
7572
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7552
|
-
setFromUrl: (
|
|
7573
|
+
setFromUrl: (href: string) => void;
|
|
7553
7574
|
getQueryParams: () => {
|
|
7554
7575
|
f?: string;
|
|
7555
7576
|
p?: number;
|
|
@@ -7557,6 +7578,7 @@ declare class SearchFeedbackComponent {
|
|
|
7557
7578
|
t?: string;
|
|
7558
7579
|
q?: string;
|
|
7559
7580
|
b?: string;
|
|
7581
|
+
n?: string;
|
|
7560
7582
|
};
|
|
7561
7583
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7562
7584
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -7601,7 +7623,7 @@ declare class SearchFeedbackComponent {
|
|
|
7601
7623
|
groupBy?: string | undefined;
|
|
7602
7624
|
neuralSearch?: boolean | undefined;
|
|
7603
7625
|
path?: string | undefined;
|
|
7604
|
-
filters
|
|
7626
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
7605
7627
|
id?: string | undefined;
|
|
7606
7628
|
}>;
|
|
7607
7629
|
private readonly transloco;
|
|
@@ -7661,9 +7683,9 @@ declare class AggregationComponent {
|
|
|
7661
7683
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7662
7684
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7663
7685
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7664
|
-
filters
|
|
7686
|
+
filters: _angular_core.Signal<LegacyFilter[]>;
|
|
7665
7687
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7666
|
-
setFromUrl: (
|
|
7688
|
+
setFromUrl: (href: string) => void;
|
|
7667
7689
|
getQueryParams: () => {
|
|
7668
7690
|
f?: string;
|
|
7669
7691
|
p?: number;
|
|
@@ -7671,6 +7693,7 @@ declare class AggregationComponent {
|
|
|
7671
7693
|
t?: string;
|
|
7672
7694
|
q?: string;
|
|
7673
7695
|
b?: string;
|
|
7696
|
+
n?: string;
|
|
7674
7697
|
};
|
|
7675
7698
|
addFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7676
7699
|
updateFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -7715,7 +7738,7 @@ declare class AggregationComponent {
|
|
|
7715
7738
|
groupBy?: string | undefined;
|
|
7716
7739
|
neuralSearch?: boolean | undefined;
|
|
7717
7740
|
path?: string | undefined;
|
|
7718
|
-
filters
|
|
7741
|
+
filters: LegacyFilter[];
|
|
7719
7742
|
id?: string | undefined;
|
|
7720
7743
|
}>;
|
|
7721
7744
|
appStore: {
|
|
@@ -7873,7 +7896,7 @@ declare class AggregationComponent {
|
|
|
7873
7896
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
7874
7897
|
getAggregationIcon: (column: string) => string | undefined;
|
|
7875
7898
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
7876
|
-
getAggregationCustomization: (
|
|
7899
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
7877
7900
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
7878
7901
|
} & _ngrx_signals.StateSource<{
|
|
7879
7902
|
name: string;
|
|
@@ -8287,9 +8310,9 @@ declare class FilterButtonComponent {
|
|
|
8287
8310
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8288
8311
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8289
8312
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
8290
|
-
filters
|
|
8313
|
+
filters: _angular_core.Signal<LegacyFilter[]>;
|
|
8291
8314
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
8292
|
-
setFromUrl: (
|
|
8315
|
+
setFromUrl: (href: string) => void;
|
|
8293
8316
|
getQueryParams: () => {
|
|
8294
8317
|
f?: string;
|
|
8295
8318
|
p?: number;
|
|
@@ -8297,6 +8320,7 @@ declare class FilterButtonComponent {
|
|
|
8297
8320
|
t?: string;
|
|
8298
8321
|
q?: string;
|
|
8299
8322
|
b?: string;
|
|
8323
|
+
n?: string;
|
|
8300
8324
|
};
|
|
8301
8325
|
addFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
8302
8326
|
updateFilter: (filter: LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -8341,7 +8365,7 @@ declare class FilterButtonComponent {
|
|
|
8341
8365
|
groupBy?: string | undefined;
|
|
8342
8366
|
neuralSearch?: boolean | undefined;
|
|
8343
8367
|
path?: string | undefined;
|
|
8344
|
-
filters
|
|
8368
|
+
filters: LegacyFilter[];
|
|
8345
8369
|
id?: string | undefined;
|
|
8346
8370
|
}>;
|
|
8347
8371
|
protected appStore: {
|
|
@@ -8499,7 +8523,7 @@ declare class FilterButtonComponent {
|
|
|
8499
8523
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
8500
8524
|
getAggregationIcon: (column: string) => string | undefined;
|
|
8501
8525
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
8502
|
-
getAggregationCustomization: (
|
|
8526
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
8503
8527
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
8504
8528
|
} & _ngrx_signals.StateSource<{
|
|
8505
8529
|
name: string;
|
|
@@ -8763,7 +8787,7 @@ declare class MoreButtonComponent {
|
|
|
8763
8787
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
8764
8788
|
getAggregationIcon: (column: string) => string | undefined;
|
|
8765
8789
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
8766
|
-
getAggregationCustomization: (
|
|
8790
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
8767
8791
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
8768
8792
|
} & _ngrx_signals.StateSource<{
|
|
8769
8793
|
name: string;
|
|
@@ -8888,9 +8912,9 @@ declare class MoreButtonComponent {
|
|
|
8888
8912
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8889
8913
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8890
8914
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
8891
|
-
filters
|
|
8915
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
8892
8916
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
8893
|
-
setFromUrl: (
|
|
8917
|
+
setFromUrl: (href: string) => void;
|
|
8894
8918
|
getQueryParams: () => {
|
|
8895
8919
|
f?: string;
|
|
8896
8920
|
p?: number;
|
|
@@ -8898,6 +8922,7 @@ declare class MoreButtonComponent {
|
|
|
8898
8922
|
t?: string;
|
|
8899
8923
|
q?: string;
|
|
8900
8924
|
b?: string;
|
|
8925
|
+
n?: string;
|
|
8901
8926
|
};
|
|
8902
8927
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
8903
8928
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -8942,7 +8967,7 @@ declare class MoreButtonComponent {
|
|
|
8942
8967
|
groupBy?: string | undefined;
|
|
8943
8968
|
neuralSearch?: boolean | undefined;
|
|
8944
8969
|
path?: string | undefined;
|
|
8945
|
-
filters
|
|
8970
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
8946
8971
|
id?: string | undefined;
|
|
8947
8972
|
}>;
|
|
8948
8973
|
nativeElement: any;
|
|
@@ -9170,7 +9195,7 @@ declare class FiltersBarComponent {
|
|
|
9170
9195
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
9171
9196
|
getAggregationIcon: (column: string) => string | undefined;
|
|
9172
9197
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
9173
|
-
getAggregationCustomization: (
|
|
9198
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
9174
9199
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
9175
9200
|
} & _ngrx_signals.StateSource<{
|
|
9176
9201
|
name: string;
|
|
@@ -9304,9 +9329,9 @@ declare class FiltersBarComponent {
|
|
|
9304
9329
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9305
9330
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9306
9331
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
9307
|
-
filters
|
|
9332
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
9308
9333
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
9309
|
-
setFromUrl: (
|
|
9334
|
+
setFromUrl: (href: string) => void;
|
|
9310
9335
|
getQueryParams: () => {
|
|
9311
9336
|
f?: string;
|
|
9312
9337
|
p?: number;
|
|
@@ -9314,6 +9339,7 @@ declare class FiltersBarComponent {
|
|
|
9314
9339
|
t?: string;
|
|
9315
9340
|
q?: string;
|
|
9316
9341
|
b?: string;
|
|
9342
|
+
n?: string;
|
|
9317
9343
|
};
|
|
9318
9344
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
9319
9345
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -9358,7 +9384,7 @@ declare class FiltersBarComponent {
|
|
|
9358
9384
|
groupBy?: string | undefined;
|
|
9359
9385
|
neuralSearch?: boolean | undefined;
|
|
9360
9386
|
path?: string | undefined;
|
|
9361
|
-
filters
|
|
9387
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
9362
9388
|
id?: string | undefined;
|
|
9363
9389
|
}>;
|
|
9364
9390
|
protected el: ElementRef<any>;
|
|
@@ -9594,7 +9620,7 @@ declare class MoreComponent {
|
|
|
9594
9620
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
9595
9621
|
getAggregationIcon: (column: string) => string | undefined;
|
|
9596
9622
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
9597
|
-
getAggregationCustomization: (
|
|
9623
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => CFilter | undefined;
|
|
9598
9624
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
9599
9625
|
} & _ngrx_signals.StateSource<{
|
|
9600
9626
|
name: string;
|
|
@@ -9728,9 +9754,9 @@ declare class MoreComponent {
|
|
|
9728
9754
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9729
9755
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9730
9756
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
9731
|
-
filters
|
|
9757
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
9732
9758
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
9733
|
-
setFromUrl: (
|
|
9759
|
+
setFromUrl: (href: string) => void;
|
|
9734
9760
|
getQueryParams: () => {
|
|
9735
9761
|
f?: string;
|
|
9736
9762
|
p?: number;
|
|
@@ -9738,6 +9764,7 @@ declare class MoreComponent {
|
|
|
9738
9764
|
t?: string;
|
|
9739
9765
|
q?: string;
|
|
9740
9766
|
b?: string;
|
|
9767
|
+
n?: string;
|
|
9741
9768
|
};
|
|
9742
9769
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
9743
9770
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -9782,7 +9809,7 @@ declare class MoreComponent {
|
|
|
9782
9809
|
groupBy?: string | undefined;
|
|
9783
9810
|
neuralSearch?: boolean | undefined;
|
|
9784
9811
|
path?: string | undefined;
|
|
9785
|
-
filters
|
|
9812
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
9786
9813
|
id?: string | undefined;
|
|
9787
9814
|
}>;
|
|
9788
9815
|
aggregationsService: AggregationsService;
|
|
@@ -9989,7 +10016,7 @@ declare class LabelService {
|
|
|
9989
10016
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
9990
10017
|
getAggregationIcon: (column: string) => string | undefined;
|
|
9991
10018
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
9992
|
-
getAggregationCustomization: (
|
|
10019
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
9993
10020
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
9994
10021
|
} & _ngrx_signals.StateSource<{
|
|
9995
10022
|
name: string;
|
|
@@ -10344,9 +10371,9 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10344
10371
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10345
10372
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10346
10373
|
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
10347
|
-
filters
|
|
10374
|
+
filters: _angular_core.Signal<_sinequa_atomic.LegacyFilter[]>;
|
|
10348
10375
|
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
10349
|
-
setFromUrl: (
|
|
10376
|
+
setFromUrl: (href: string) => void;
|
|
10350
10377
|
getQueryParams: () => {
|
|
10351
10378
|
f?: string;
|
|
10352
10379
|
p?: number;
|
|
@@ -10354,6 +10381,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10354
10381
|
t?: string;
|
|
10355
10382
|
q?: string;
|
|
10356
10383
|
b?: string;
|
|
10384
|
+
n?: string;
|
|
10357
10385
|
};
|
|
10358
10386
|
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
10359
10387
|
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
@@ -10398,7 +10426,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10398
10426
|
groupBy?: string | undefined;
|
|
10399
10427
|
neuralSearch?: boolean | undefined;
|
|
10400
10428
|
path?: string | undefined;
|
|
10401
|
-
filters
|
|
10429
|
+
filters: _sinequa_atomic.LegacyFilter[];
|
|
10402
10430
|
id?: string | undefined;
|
|
10403
10431
|
}>;
|
|
10404
10432
|
private readonly transloco;
|
|
@@ -10478,6 +10506,135 @@ declare class SavedSearchesComponent {
|
|
|
10478
10506
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SavedSearchesComponent, "saved-searches, SavedSearches", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10479
10507
|
}
|
|
10480
10508
|
|
|
10509
|
+
declare class UserProfileDialog implements DialogInterface {
|
|
10510
|
+
dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
10511
|
+
open(): void;
|
|
10512
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileDialog, never>;
|
|
10513
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileDialog, "user-profile-dialog, userprofiledialog, UserProfileDialog", never, {}, {}, never, never, true, never>;
|
|
10514
|
+
}
|
|
10515
|
+
|
|
10516
|
+
declare const SUPPORTED_LANGUAGES: readonly ["en", "fr"];
|
|
10517
|
+
type SupportedLanguage = (typeof SUPPORTED_LANGUAGES)[number];
|
|
10518
|
+
declare class UserProfileFormComponent {
|
|
10519
|
+
protected principalStore: {
|
|
10520
|
+
principal: _ngrx_signals.DeepSignal<_sinequa_atomic.Principal>;
|
|
10521
|
+
userOverrideActive: _angular_core.Signal<boolean>;
|
|
10522
|
+
allowUserOverride: _angular_core.Signal<boolean>;
|
|
10523
|
+
isOverridingUser: _angular_core.Signal<boolean>;
|
|
10524
|
+
initialize: () => Promise<void>;
|
|
10525
|
+
} & _ngrx_signals.StateSource<{
|
|
10526
|
+
principal: _sinequa_atomic.Principal;
|
|
10527
|
+
userOverrideActive: boolean;
|
|
10528
|
+
}>;
|
|
10529
|
+
protected userSettingsStore: {
|
|
10530
|
+
bookmarks: _angular_core.Signal<_sinequa_atomic_angular.Bookmark[]>;
|
|
10531
|
+
recentSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
10532
|
+
savedSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
10533
|
+
baskets: _angular_core.Signal<_sinequa_atomic_angular.Basket[]>;
|
|
10534
|
+
assistants: _angular_core.Signal<Record<string, unknown>>;
|
|
10535
|
+
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
10536
|
+
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10537
|
+
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
10538
|
+
userTheme: _angular_core.Signal<"dark" | "light" | "system" | undefined>;
|
|
10539
|
+
isDarkMode: _angular_core.Signal<boolean>;
|
|
10540
|
+
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10541
|
+
bookmark: (article: _sinequa_atomic.Article, queryName?: string) => Promise<void>;
|
|
10542
|
+
unbookmark: (id: string) => Promise<void>;
|
|
10543
|
+
isBookmarked: (article: Partial<_sinequa_atomic.Article>) => boolean;
|
|
10544
|
+
toggleBookmark: (article: _sinequa_atomic.Article) => Promise<void>;
|
|
10545
|
+
deleteRecentSearch: (index: number) => Promise<void>;
|
|
10546
|
+
updateRecentSearches: (recentSearches: _sinequa_atomic_angular.UserSettingsState["recentSearches"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10547
|
+
addCurrentSearch: (queryParams: _sinequa_atomic.QueryParams) => Promise<void>;
|
|
10548
|
+
deleteSavedSearch: (index: number) => Promise<void>;
|
|
10549
|
+
updateSavedSearches: (savedSearches: _sinequa_atomic_angular.UserSettingsState["savedSearches"]) => Promise<void>;
|
|
10550
|
+
getSavedSearch: (search: string) => _sinequa_atomic_angular.SearchItem | undefined;
|
|
10551
|
+
deleteBasket: (index: number) => Promise<void>;
|
|
10552
|
+
createBasket: (basket: _sinequa_atomic_angular.Basket) => Promise<void>;
|
|
10553
|
+
updateBaskets: (baskets: _sinequa_atomic_angular.UserSettingsState["baskets"]) => Promise<void>;
|
|
10554
|
+
updateBasket: (basket: _sinequa_atomic_angular.Basket, index: number) => Promise<void>;
|
|
10555
|
+
addToBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
10556
|
+
removeFromBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
10557
|
+
updateAssistantSettings: (assistantSettings: _sinequa_atomic_angular.UserSettingsState["assistants"]) => Promise<void>;
|
|
10558
|
+
updateLanguage: (language: _sinequa_atomic_angular.UserSettingsState["language"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10559
|
+
updateAssistantCollapsed: (collapseAssistant: _sinequa_atomic_angular.UserSettingsState["collapseAssistant"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10560
|
+
initialize: () => Promise<void>;
|
|
10561
|
+
reset: () => Promise<void>;
|
|
10562
|
+
deleteAlert: (index: number) => Promise<void>;
|
|
10563
|
+
createAlert: (alert: _sinequa_atomic_angular.Alert) => Promise<void>;
|
|
10564
|
+
updateAlert: (alert: _sinequa_atomic_angular.Alert, index: number) => Promise<void>;
|
|
10565
|
+
updateAlerts: (alerts: _sinequa_atomic_angular.Alert[]) => Promise<void>;
|
|
10566
|
+
setUserTheme: (userTheme: "dark" | "light" | "system") => Promise<void>;
|
|
10567
|
+
toggleDarkMode: () => Promise<void>;
|
|
10568
|
+
} & _ngrx_signals.StateSource<{
|
|
10569
|
+
bookmarks: _sinequa_atomic_angular.Bookmark[];
|
|
10570
|
+
recentSearches: _sinequa_atomic_angular.SearchItem[];
|
|
10571
|
+
savedSearches: _sinequa_atomic_angular.SearchItem[];
|
|
10572
|
+
baskets: _sinequa_atomic_angular.Basket[];
|
|
10573
|
+
assistants: Record<string, unknown>;
|
|
10574
|
+
alerts: _sinequa_atomic_angular.Alert[];
|
|
10575
|
+
collapseAssistant?: boolean | undefined;
|
|
10576
|
+
language?: string | undefined;
|
|
10577
|
+
userTheme: "dark" | "light" | "system";
|
|
10578
|
+
}>;
|
|
10579
|
+
protected userProfileService: UserProfileService;
|
|
10580
|
+
private readonly transloco;
|
|
10581
|
+
readonly createInputElement: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
10582
|
+
dataKeys: string[];
|
|
10583
|
+
readonly initials: _angular_core.Signal<string | undefined>;
|
|
10584
|
+
propertyToEdit: _angular_core.WritableSignal<string | undefined>;
|
|
10585
|
+
value: _angular_core.ModelSignal<string | number | boolean | undefined>;
|
|
10586
|
+
currentLanguage: _angular_core.ModelSignal<string | undefined>;
|
|
10587
|
+
AllLanguages: {
|
|
10588
|
+
code: SupportedLanguage;
|
|
10589
|
+
label: string;
|
|
10590
|
+
icon: Type<unknown>;
|
|
10591
|
+
}[];
|
|
10592
|
+
changingPassword: _angular_core.WritableSignal<boolean>;
|
|
10593
|
+
principal: _angular_core.Signal<_sinequa_atomic.Principal>;
|
|
10594
|
+
constructor();
|
|
10595
|
+
protected userProfileResource: _angular_common_http.HttpResourceRef<_sinequa_atomic.UserProfile | undefined>;
|
|
10596
|
+
readonly userProfile: _angular_core.WritableSignal<_sinequa_atomic.UserProfile | undefined>;
|
|
10597
|
+
createUserProfile(): Promise<void>;
|
|
10598
|
+
/**
|
|
10599
|
+
* On editing a value, we save its former value to set it back in case of error
|
|
10600
|
+
*
|
|
10601
|
+
* @param category data or customData
|
|
10602
|
+
* @param propertyName property name
|
|
10603
|
+
*/
|
|
10604
|
+
onEdit(propertyName: string): void;
|
|
10605
|
+
/**
|
|
10606
|
+
* On data property deletion, for now we make the property an empty string
|
|
10607
|
+
*
|
|
10608
|
+
* @param propertyName property name
|
|
10609
|
+
*/
|
|
10610
|
+
onDeleteData(propertyName: string): void;
|
|
10611
|
+
/**
|
|
10612
|
+
* Saving a data property
|
|
10613
|
+
*
|
|
10614
|
+
* @param propertyName property name
|
|
10615
|
+
*/
|
|
10616
|
+
onSaveData(propertyName: string): Promise<void>;
|
|
10617
|
+
/**
|
|
10618
|
+
* Get the value of a data key
|
|
10619
|
+
*
|
|
10620
|
+
* @param key property key
|
|
10621
|
+
* @returns the value
|
|
10622
|
+
*/
|
|
10623
|
+
getDataValue(key: string): any;
|
|
10624
|
+
/**
|
|
10625
|
+
* TODO: how do we save the picture?
|
|
10626
|
+
*
|
|
10627
|
+
* @param event
|
|
10628
|
+
*/
|
|
10629
|
+
uploadAvatar(event: Event): void;
|
|
10630
|
+
/**
|
|
10631
|
+
* Change the app language
|
|
10632
|
+
*/
|
|
10633
|
+
changeLanguage(): void;
|
|
10634
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileFormComponent, never>;
|
|
10635
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileFormComponent, "user-profile-form, UserProfileForm, userprofileform", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "currentLanguage": { "alias": "currentLanguage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "currentLanguage": "currentLanguageChange"; }, never, never, true, never>;
|
|
10636
|
+
}
|
|
10637
|
+
|
|
10481
10638
|
/**
|
|
10482
10639
|
* Returns a guard function that checks if the user is authenticated.
|
|
10483
10640
|
* If the user is not authenticated, it navigates to the login page.
|
|
@@ -10740,7 +10897,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10740
10897
|
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
10741
10898
|
getAggregationIcon: (column: string) => string | undefined;
|
|
10742
10899
|
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
10743
|
-
getAggregationCustomization: (
|
|
10900
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
10744
10901
|
isAssistantAllowed: (assistantName: string) => boolean;
|
|
10745
10902
|
} & _ngrx_signals.StateSource<{
|
|
10746
10903
|
name: string;
|
|
@@ -10952,5 +11109,5 @@ type AppFeatures = {
|
|
|
10952
11109
|
*/
|
|
10953
11110
|
declare const APP_FEATURES: InjectionToken<AppFeatures>;
|
|
10954
11111
|
|
|
10955
|
-
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedSearchComponent, AggregationComponent, AggregationsService, AggregationsStore, Alert, AlertDialog, AlertsComponent, AppService, AppStore, ApplicationService, ApplicationStore, AsideFiltersComponent, AuditFeedbackType, AuditService, AuthGuard, AuthPageComponent, AutocompleteService, BOOKMARKS_CONFIG, BOOKMARKS_OPTIONS, BackdropComponent, BackdropService, BookmarkButtonComponent, BookmarksComponent, COLLECTIONS_CONFIG, COLLECTIONS_OPTIONS, COMPONENTS_FOR_DOCUMENT_TYPE, ChangePasswordComponent, ChildMarkerDirective, CollectionsComponent, CollectionsDialog, DRAWER_COMPONENT, DRAWER_STACK_MAX_COUNT, DateComponent, DeleteCollectionDialog, DidYouMeanComponent, DocumentLocatorComponent, DrawerAdvancedFiltersComponent, DrawerComponent, DrawerNavbarComponent, DrawerPreviewComponent, DrawerService, DrawerStackComponent, DrawerStackService, DropdownInputComponent, DropdownListComponent, ErrorComponent, ExportDialog, ExportService, FILTERS_BREAKPOINT, FILTER_DATE_ALLOW_CUSTOM_RANGE, FeedbackDialogComponent, FileSizePipe, FilterButtonComponent, FiltersBarComponent, HIGHLIGHTS, HighlightWordPipe, InfinityScrollDirective, InlineWorker, JsonMethodPluginService, KeyboardNavigatorDirective, LabelService, LabelsEditDialog, LoadingComponent, MetadataComponent, MissingTermsComponent, MoreButtonComponent, MoreComponent, MultiSelectLabelsComponent, MultiSelectionToolbarComponent, NON_SEARCHABLE_COLUMNS, NON_SEARCHABLE_DEFAULTS, NavbarTabsComponent, NavigationService, NoResultComponent, OpenArticleOnCtrlEnterDirective, OperatorPipe, OverflowItemDirective, OverflowManagerDirective, OverflowStopDirective, OverrideUserDialogComponent, PREVIEW_CONFIG, PagerComponent, PasswordExpiryGuard, PreviewNavigator, PreviewService, PrincipalService, PrincipalStore, QueryParamsStore, QueryService, RECENT_SEARCHES_CONFIG, RECENT_SEARCHES_OPTIONS, ROUTE_COMPONENTS, RecentSearchesComponent, ResetUserSettingsDialogComponent, SAVED_SEARCHES_CONFIG, SAVED_SEARCHES_OPTIONS, SavedSearchDialog, SavedSearchesComponent, SavedSearchesService, SearchFeedbackComponent, SearchInputFooter, SearchService, SelectArticleOnClickDirective, SelectionHistoryService, SelectionService, SelectionStore, ShowBookmarkDirective, SignInComponent, SortSelectorComponent, SourceComponent, SourceIconPipe, SponsoredResultsComponent, SyslangPipe, THEMES, TextChunkService, ThemeProviderDirective, ThemeSelectorComponent, ThemeStore, ThemeToggleComponent, TranslocoDateImpurePipe, UserSettingsStore, applyThemeToNativeElement, auditInterceptorFn, authInterceptorFn, bodyInterceptorFn, buildQuery, debouncedSignal, errorInterceptorFn, getCurrentPath, getCurrentQueryName, getQueryNameFromRoute, processCssVars, queryNameResolver, signIn, themeColorNameToCssVariable, themeColorsToCssVariables, toastInterceptorFn, withAggregationsFeatures, withAlertsFeatures,
|
|
11112
|
+
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedSearchComponent, AggregationComponent, AggregationsService, AggregationsStore, Alert, AlertDialog, AlertsComponent, AppService, AppStore, ApplicationService, ApplicationStore, AsideFiltersComponent, AuditFeedbackType, AuditService, AuthGuard, AuthPageComponent, AutocompleteService, BOOKMARKS_CONFIG, BOOKMARKS_OPTIONS, BackdropComponent, BackdropService, BookmarkButtonComponent, BookmarksComponent, COLLECTIONS_CONFIG, COLLECTIONS_OPTIONS, COMPONENTS_FOR_DOCUMENT_TYPE, ChangePasswordComponent, ChildMarkerDirective, CollectionsComponent, CollectionsDialog, DRAWER_COMPONENT, DRAWER_STACK_MAX_COUNT, DateComponent, DeleteCollectionDialog, DidYouMeanComponent, DocumentLocatorComponent, DrawerAdvancedFiltersComponent, DrawerComponent, DrawerNavbarComponent, DrawerPreviewComponent, DrawerService, DrawerStackComponent, DrawerStackService, DropdownInputComponent, DropdownListComponent, ErrorComponent, ExportDialog, ExportService, FILTERS_BREAKPOINT, FILTER_DATE_ALLOW_CUSTOM_RANGE, FeedbackDialogComponent, FileSizePipe, FilterButtonComponent, FiltersBarComponent, HIGHLIGHTS, HighlightWordPipe, InfinityScrollDirective, InlineWorker, JsonMethodPluginService, KeyboardNavigatorDirective, LabelService, LabelsEditDialog, LoadingComponent, MetadataComponent, MissingTermsComponent, MoreButtonComponent, MoreComponent, MultiSelectLabelsComponent, MultiSelectionToolbarComponent, NON_SEARCHABLE_COLUMNS, NON_SEARCHABLE_DEFAULTS, NavbarTabsComponent, NavigationService, NoResultComponent, OpenArticleOnCtrlEnterDirective, OperatorPipe, OverflowItemDirective, OverflowManagerDirective, OverflowStopDirective, OverrideUserDialogComponent, PREVIEW_CONFIG, PagerComponent, PasswordExpiryGuard, PreviewNavigator, PreviewService, PrincipalService, PrincipalStore, QueryParamsStore, QueryService, RECENT_SEARCHES_CONFIG, RECENT_SEARCHES_OPTIONS, ROUTE_COMPONENTS, RecentSearchesComponent, ResetUserSettingsDialogComponent, SAVED_SEARCHES_CONFIG, SAVED_SEARCHES_OPTIONS, SavedSearchDialog, SavedSearchesComponent, SavedSearchesService, SearchFeedbackComponent, SearchInputFooter, SearchService, SelectArticleOnClickDirective, SelectionHistoryService, SelectionService, SelectionStore, ShowBookmarkDirective, SignInComponent, SortSelectorComponent, SourceComponent, SourceIconPipe, SponsoredResultsComponent, SyslangPipe, THEMES, TextChunkService, ThemeProviderDirective, ThemeSelectorComponent, ThemeStore, ThemeToggleComponent, TranslocoDateImpurePipe, UserProfileDialog, UserProfileFormComponent, UserProfileService, UserSettingsStore, applyThemeToNativeElement, auditInterceptorFn, authInterceptorFn, bodyInterceptorFn, buildQuery, debouncedSignal, errorInterceptorFn, getCurrentPath, getCurrentQueryName, getQueryNameFromRoute, processCssVars, queryNameResolver, signIn, themeColorNameToCssVariable, themeColorsToCssVariables, toastInterceptorFn, withAggregationsFeatures, withAlertsFeatures, withAppFeatures, withApplicationFeatures, withAssistantFeatures, withBasketsFeatures, withBookmarkFeatures, withBootstrapApp, withExtractsFeatures, withFetch, withMultiSelectionFeatures, withPrincipalFeatures, withQueryParamsFeatures, withRecentSearchesFeatures, withSavedSearchesFeatures, withSelectionFeatures, withThemeBodyHook, withThemes, withThemesFeatures, withUserSettingsFeatures };
|
|
10956
11113
|
export type { AggEx, AggregationEx, AggregationListEx, AggregationListItem, AggregationTitle, AggregationTreeEx, AggregationsState, AppCJson, AppFeatures, ApplicationState, ArticleMetadata, AssistantDetails, Autocomplete, Basket, Bookmark, BookmarksConfig, CAggregation, CAggregationItem, CCAppState, CCWebServiceLabels, CFilter, CFilterEx, CFilterItem, CJ, CJson, CJsonMint, CSources, CollectionsConfig, ComponentMapping, CssVars, DocumentTypeMap, DropdownItem, ExportQueryOptions, Extract, FilterDropdown, KeyboardNavigationOnSelectionHandlers, KeyboardNavigatorOptions, LabelsConfig, MultiSelectionState, MultiSelectionToolbarVariants, PageConfiguration, PreviewEvents, PreviewHighlight, PreviewHighlightName, PreviewHighlights, PrincipalState, SearchItem, SearchOptions, SearchesConfig, SelectionHistoryEvent, SelectionState, SelectionStrategy, SideCJson, SortingChoice, Theme, ThemeBodyHookParameters, ThemeScope, ThemeStoreState, UserSettingsState };
|