@resolveio/client-lib-core 21.6.24 → 21.6.25
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
|
@@ -309,8 +309,8 @@ declare class OfflineManagerService {
|
|
|
309
309
|
find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
|
|
310
310
|
findOne(collectionName: string, query: Object): any;
|
|
311
311
|
insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
|
|
312
|
-
updateDocument(collectionName: string, data: Object):
|
|
313
|
-
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number):
|
|
312
|
+
updateDocument(collectionName: string, data: Object): 0 | 1;
|
|
313
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
|
|
314
314
|
removeDocument(collectionName: string, id: string): void;
|
|
315
315
|
dropCollection(collectionName: any): void;
|
|
316
316
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
@@ -2277,7 +2277,7 @@ declare class AiTerminalModule {
|
|
|
2277
2277
|
}
|
|
2278
2278
|
|
|
2279
2279
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2280
|
-
resolveFirstDayOfWeek: () => "
|
|
2280
|
+
resolveFirstDayOfWeek: () => "S" | "M";
|
|
2281
2281
|
resolveTimezone: () => any;
|
|
2282
2282
|
};
|
|
2283
2283
|
declare class CoreServicesModule {
|
|
@@ -2619,7 +2619,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2619
2619
|
private runLogsQuery;
|
|
2620
2620
|
private runLocalLogsQuery;
|
|
2621
2621
|
selectType(type: string): void;
|
|
2622
|
-
icon(type: any): "danger" | "
|
|
2622
|
+
icon(type: any): "danger" | "success" | "info" | "primary" | "secondary";
|
|
2623
2623
|
removeAllLogs(): void;
|
|
2624
2624
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2625
2625
|
createPickerValue(date: Date, secondOverride?: any): {
|
|
@@ -3227,7 +3227,7 @@ interface CanComponentDeactivate {
|
|
|
3227
3227
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3228
3228
|
}
|
|
3229
3229
|
declare class CanDeactivateGuard {
|
|
3230
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3230
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
3231
3231
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3232
3232
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3233
3233
|
}
|