@resolveio/client-lib-core 21.6.30 → 21.6.32
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
|
@@ -1070,6 +1070,13 @@ interface AiTerminalConfig$1 {
|
|
|
1070
1070
|
fastMode?: boolean;
|
|
1071
1071
|
runBudgetMs?: number;
|
|
1072
1072
|
mongoMaxTimeMs?: number;
|
|
1073
|
+
qaRepairEnabled?: boolean;
|
|
1074
|
+
qaEvidenceRequired?: boolean;
|
|
1075
|
+
qaDistinctScreenshotRequired?: boolean;
|
|
1076
|
+
qaFailFastCompile?: boolean;
|
|
1077
|
+
qaLiveDataRequired?: boolean;
|
|
1078
|
+
qaSelfRepairMaxWaves?: number;
|
|
1079
|
+
qaPolicyInstructions?: string[];
|
|
1073
1080
|
profileId?: string;
|
|
1074
1081
|
methodNames?: AiTerminalMethodNames;
|
|
1075
1082
|
mongo?: AiTerminalMongoConfig;
|
|
@@ -2280,7 +2287,7 @@ declare class AiTerminalModule {
|
|
|
2280
2287
|
}
|
|
2281
2288
|
|
|
2282
2289
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2283
|
-
resolveFirstDayOfWeek: () => "
|
|
2290
|
+
resolveFirstDayOfWeek: () => "S" | "M";
|
|
2284
2291
|
resolveTimezone: () => any;
|
|
2285
2292
|
};
|
|
2286
2293
|
declare class CoreServicesModule {
|
|
@@ -2623,7 +2630,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2623
2630
|
private runLogsQuery;
|
|
2624
2631
|
private runLocalLogsQuery;
|
|
2625
2632
|
selectType(type: string): void;
|
|
2626
|
-
icon(type: any): "danger" | "
|
|
2633
|
+
icon(type: any): "danger" | "success" | "info" | "primary" | "secondary";
|
|
2627
2634
|
removeAllLogs(): void;
|
|
2628
2635
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2629
2636
|
createPickerValue(date: Date, secondOverride?: any): {
|
|
@@ -3232,7 +3239,7 @@ interface CanComponentDeactivate {
|
|
|
3232
3239
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3233
3240
|
}
|
|
3234
3241
|
declare class CanDeactivateGuard {
|
|
3235
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3242
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
3236
3243
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3237
3244
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3238
3245
|
}
|