@resolveio/client-lib-core 21.6.14 → 21.6.15
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): 0 | 1;
|
|
311
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
|
|
312
312
|
removeDocument(collectionName: string, id: string): void;
|
|
313
313
|
dropCollection(collectionName: any): void;
|
|
314
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
@@ -1375,6 +1375,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1375
1375
|
private buildAnchor;
|
|
1376
1376
|
private isMarkdownTableHeader;
|
|
1377
1377
|
private parseMarkdownTable;
|
|
1378
|
+
private normalizeMarkdownTableCellValue;
|
|
1378
1379
|
private splitMarkdownTableRow;
|
|
1379
1380
|
formatFileSize(bytes?: number): string;
|
|
1380
1381
|
trackByConversation(index: number, convo: AiTerminalConversationModel): string;
|
|
@@ -1912,6 +1913,7 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1912
1913
|
private getStickyScrollContainer;
|
|
1913
1914
|
private getCollapseTableElement;
|
|
1914
1915
|
private shouldAutoEnableHorizontalScroll;
|
|
1916
|
+
private getIntrinsicTableWidth;
|
|
1915
1917
|
private getCollapseTableWrapperElement;
|
|
1916
1918
|
private updateMobileColumnWidthVariable;
|
|
1917
1919
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
|
|
@@ -2586,7 +2588,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2586
2588
|
ngOnDestroy(): void;
|
|
2587
2589
|
getLogData(): void;
|
|
2588
2590
|
selectType(type: string): void;
|
|
2589
|
-
icon(type: any): "
|
|
2591
|
+
icon(type: any): "info" | "success" | "danger" | "primary" | "secondary";
|
|
2590
2592
|
removeAllLogs(): void;
|
|
2591
2593
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2592
2594
|
createPickerValue(date: Date, secondOverride?: any): {
|