@resolveio/client-lib-core 21.6.36 → 21.6.37

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.6.36",
3
+ "version": "21.6.37",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -979,6 +979,7 @@ declare class CoreComponent extends BaseComponent implements OnInit, AfterViewIn
979
979
  resolveAiAssistantClientId(): string;
980
980
  private resolveAiAssistantAppId;
981
981
  private resolveAiAssistantConfig;
982
+ private resolveEnvTextList;
982
983
  private resolveEnvModelList;
983
984
  private normalizeOptionalEnvString;
984
985
  private configureTour;
@@ -1063,6 +1064,10 @@ interface AiTerminalConfig$1 {
1063
1064
  guardrails?: boolean;
1064
1065
  deleteFilesAfterRun?: boolean;
1065
1066
  systemPrompt?: string;
1067
+ systemPromptGenerated?: boolean;
1068
+ systemPromptAdditions?: string | string[];
1069
+ appInstructions?: string | string[];
1070
+ assistantInstructions?: string | string[];
1066
1071
  userPromptTemplate?: string;
1067
1072
  responseFormat?: string;
1068
1073
  model?: string;
@@ -1440,6 +1445,7 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1440
1445
  private resolveAssistantMode;
1441
1446
  private resolveEngineMode;
1442
1447
  private resolveCodexPayloadConfig;
1448
+ private resolvePromptAdditionPayload;
1443
1449
  private resolveCodexFallbackModels;
1444
1450
  private resolveBranchEnabled;
1445
1451
  private methodNames;
@@ -1465,6 +1471,10 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1465
1471
  private normalizeMessageContent;
1466
1472
  private normalizeUsdCurrencyText;
1467
1473
  private mergeProgressLists;
1474
+ private buildInitialPendingProgress;
1475
+ private buildTimedProgressSteps;
1476
+ private resolveContextProgressLabel;
1477
+ private resolveMessageIntentProgressLabel;
1468
1478
  private appendLocalMessage;
1469
1479
  private removeLocalMessage;
1470
1480
  private updateLocalMessage;
@@ -1621,6 +1631,10 @@ type AiTerminalConfig = {
1621
1631
  showToolMessages?: boolean;
1622
1632
  deleteFilesAfterRun?: boolean;
1623
1633
  systemPrompt?: string;
1634
+ systemPromptGenerated?: boolean;
1635
+ systemPromptAdditions?: string | string[];
1636
+ appInstructions?: string | string[];
1637
+ assistantInstructions?: string | string[];
1624
1638
  [key: string]: unknown;
1625
1639
  };
1626
1640
  declare class AiAssistantComponent implements OnChanges, OnDestroy {
@@ -1682,6 +1696,7 @@ declare class AiAssistantComponent implements OnChanges, OnDestroy {
1682
1696
  private defaultPanelWidth;
1683
1697
  private resolveMaxWidth;
1684
1698
  private buildSystemPrompt;
1699
+ private normalizePromptAdditions;
1685
1700
  private buildCustomerScopeLine;
1686
1701
  private buildSupportTicketSummary;
1687
1702
  private sanitizeSummary;