@resolveio/client-lib-core 21.4.18 → 21.4.20
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/package.json
CHANGED
|
@@ -1266,7 +1266,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1266
1266
|
private saveSupportTicketMap;
|
|
1267
1267
|
private applyStoredSupportTicketOverrides;
|
|
1268
1268
|
private processSupportTicketDirectives;
|
|
1269
|
+
private hasSupportTicketConsent;
|
|
1269
1270
|
private extractSupportTicketDirective;
|
|
1271
|
+
private parseSupportTicketDirectivePayload;
|
|
1272
|
+
private normalizeSupportTicketDirectiveText;
|
|
1270
1273
|
private appendSupportTicketLink;
|
|
1271
1274
|
private createSupportTicketFromDirective;
|
|
1272
1275
|
private applyStoredMongoReadOverrides;
|
|
@@ -1286,6 +1289,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1286
1289
|
private formatMongoDocumentSummary;
|
|
1287
1290
|
private resolveSupportTicketIssue;
|
|
1288
1291
|
private buildSupportTicketPayload;
|
|
1292
|
+
private buildSupportTicketAiRecommendations;
|
|
1289
1293
|
private truncateText;
|
|
1290
1294
|
private shouldLinkRoute;
|
|
1291
1295
|
private unsubscribeAll;
|
|
@@ -1890,7 +1894,7 @@ declare class AiTerminalModule {
|
|
|
1890
1894
|
}
|
|
1891
1895
|
|
|
1892
1896
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
1893
|
-
resolveFirstDayOfWeek: () => "
|
|
1897
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
1894
1898
|
resolveTimezone: () => any;
|
|
1895
1899
|
};
|
|
1896
1900
|
declare class CoreServicesModule {
|
|
@@ -2462,7 +2466,7 @@ interface CanComponentDeactivate {
|
|
|
2462
2466
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2463
2467
|
}
|
|
2464
2468
|
declare class CanDeactivateGuard {
|
|
2465
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2469
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
2466
2470
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2467
2471
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2468
2472
|
}
|