@resolveio/client-lib-core 21.5.2 → 21.5.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.5.2",
3
+ "version": "21.5.4",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -876,6 +876,7 @@ interface AiTerminalMethodNames {
876
876
  uploadOpenAI?: string;
877
877
  runCodex?: string;
878
878
  uploadCodex?: string;
879
+ reportIssue?: string;
879
880
  deployTest?: string;
880
881
  conversationsPublication?: string;
881
882
  messagesPublication?: string;
@@ -1123,6 +1124,12 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1123
1124
  favoritePromptEditOpen: boolean;
1124
1125
  favoritePromptEditOriginal: string;
1125
1126
  favoritePromptEditValue: string;
1127
+ issueReportOpen: boolean;
1128
+ issueReportMessageId: string;
1129
+ issueReportConversationId: string;
1130
+ issueReportReason: string;
1131
+ issueReportExpected: string;
1132
+ isSubmittingIssueReport: boolean;
1126
1133
  private messagePartsCache;
1127
1134
  private messageMarkdownCache;
1128
1135
  private messageContentOverrides;
@@ -1272,6 +1279,11 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1272
1279
  private resolveDebugPayload;
1273
1280
  showDebugForMessage(message: AiTerminalMessageModel): boolean;
1274
1281
  canCopyMessage(message: AiTerminalMessageModel): boolean;
1282
+ canReportIssue(message: AiTerminalMessageModel): boolean;
1283
+ openIssueReport(message: AiTerminalMessageModel, event?: Event): void;
1284
+ cancelIssueReport(): void;
1285
+ canSubmitIssueReport(): boolean;
1286
+ submitIssueReport(): Promise<void>;
1275
1287
  canCopyConversation(): boolean;
1276
1288
  copyConversation(): Promise<void>;
1277
1289
  copyMessage(message: AiTerminalMessageModel): Promise<void>;
@@ -2705,6 +2717,8 @@ declare class Collection {
2705
2717
  cacheable: boolean;
2706
2718
  db: StorageDB;
2707
2719
  constructor(db: StorageDB, name: any, opts: any);
2720
+ _isQuotaExceeded(error: any): any;
2721
+ _safeSetItem(key: any, value: any): boolean;
2708
2722
  _initCache(): void;
2709
2723
  _filter(filter: any, opts: any): any;
2710
2724
  insert(data: any, expiresDate?: any, opts?: any): any;