@resolveio/client-lib-core 21.6.13 → 21.6.14
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
|
@@ -307,8 +307,8 @@ declare class OfflineManagerService {
|
|
|
307
307
|
find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
|
|
308
308
|
findOne(collectionName: string, query: Object): any;
|
|
309
309
|
insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
|
|
310
|
-
updateDocument(collectionName: string, data: Object):
|
|
311
|
-
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number):
|
|
310
|
+
updateDocument(collectionName: string, data: Object): 1 | 0;
|
|
311
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 1 | 0;
|
|
312
312
|
removeDocument(collectionName: string, id: string): void;
|
|
313
313
|
dropCollection(collectionName: any): void;
|
|
314
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
@@ -362,6 +362,7 @@ declare class SocketManagerService {
|
|
|
362
362
|
private _chunkAssemblies;
|
|
363
363
|
private readonly _chunkProgressThresholdBytes;
|
|
364
364
|
private readonly _chunkTextDecoder;
|
|
365
|
+
private readonly _queueUntilOpenMethods;
|
|
365
366
|
private _connectionDelayTimeout;
|
|
366
367
|
onerror: () => void;
|
|
367
368
|
constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router, _token: TokenManagerService);
|
|
@@ -402,6 +403,9 @@ declare class SocketManagerService {
|
|
|
402
403
|
subscribeBypassRoute(subscription: string, ...parameters: any[]): rxjs.Observable<any>;
|
|
403
404
|
unsubscribe(messageId: any, subscription: string, ...parameters: any[]): void;
|
|
404
405
|
private send;
|
|
406
|
+
private shouldQueueMethodUntilOnline;
|
|
407
|
+
private queuePendingMessage;
|
|
408
|
+
private flushPendingMessages;
|
|
405
409
|
private handleOfflineMethod;
|
|
406
410
|
getStatus(): rxjs.BehaviorSubject<number>;
|
|
407
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<SocketManagerService, never>;
|
|
@@ -2245,7 +2249,7 @@ declare class AiTerminalModule {
|
|
|
2245
2249
|
}
|
|
2246
2250
|
|
|
2247
2251
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2248
|
-
resolveFirstDayOfWeek: () => "
|
|
2252
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
2249
2253
|
resolveTimezone: () => any;
|
|
2250
2254
|
};
|
|
2251
2255
|
declare class CoreServicesModule {
|