@resolveio/client-lib-core 21.6.12 → 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>;
|
|
@@ -1318,6 +1322,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1318
1322
|
private readonly promptFavoritesStorageKey;
|
|
1319
1323
|
private mongoReadCache;
|
|
1320
1324
|
private mongoReadInFlight;
|
|
1325
|
+
private gitToolCache;
|
|
1321
1326
|
private exportingMessageIds;
|
|
1322
1327
|
private loadingAllRowsMessageIds;
|
|
1323
1328
|
private fullDisplayPromises;
|
|
@@ -1524,9 +1529,13 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1524
1529
|
private appendSupportTicketLink;
|
|
1525
1530
|
private createSupportTicketFromDirective;
|
|
1526
1531
|
private applyStoredMongoReadOverrides;
|
|
1532
|
+
private applyStoredGitToolOverrides;
|
|
1527
1533
|
private processMongoDirectives;
|
|
1534
|
+
private processGitToolDirectives;
|
|
1528
1535
|
private findLatestAssistantDirective;
|
|
1529
1536
|
private extractMongoDirective;
|
|
1537
|
+
private extractGitToolDirective;
|
|
1538
|
+
private formatGitToolDirectiveInstructions;
|
|
1530
1539
|
private resolveMongoCountIntent;
|
|
1531
1540
|
private findPreviousUserMessage;
|
|
1532
1541
|
private isMongoCountQuestion;
|
|
@@ -2240,7 +2249,7 @@ declare class AiTerminalModule {
|
|
|
2240
2249
|
}
|
|
2241
2250
|
|
|
2242
2251
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2243
|
-
resolveFirstDayOfWeek: () => "
|
|
2252
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
2244
2253
|
resolveTimezone: () => any;
|
|
2245
2254
|
};
|
|
2246
2255
|
declare class CoreServicesModule {
|
|
@@ -3185,7 +3194,7 @@ interface CanComponentDeactivate {
|
|
|
3185
3194
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3186
3195
|
}
|
|
3187
3196
|
declare class CanDeactivateGuard {
|
|
3188
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3197
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3189
3198
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3190
3199
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3191
3200
|
}
|