@xpert-ai/chatkit-types 0.3.5 → 0.3.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +12 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1750,6 +1750,9 @@ export declare type TMessageContentComplex = (TMessageContentText | TMessageCont
1750
1750
  id?: string;
1751
1751
  xpertName?: string;
1752
1752
  agentKey?: string;
1753
+ executionId?: string;
1754
+ parentExecutionId?: string;
1755
+ runId?: string;
1753
1756
  created_date?: Date | string;
1754
1757
  };
1755
1758
 
@@ -1762,6 +1765,9 @@ export declare type TMessageContentComponent<T extends object = object> = {
1762
1765
  data: TMessageComponent<T>;
1763
1766
  xpertName?: string;
1764
1767
  agentKey?: string;
1768
+ executionId?: string;
1769
+ parentExecutionId?: string;
1770
+ runId?: string;
1765
1771
  };
1766
1772
 
1767
1773
  export declare type TMessageContentMemory = {
@@ -1775,6 +1781,9 @@ export declare type TMessageContentReasoning = {
1775
1781
  id?: string;
1776
1782
  xpertName?: string;
1777
1783
  agentKey?: string;
1784
+ executionId?: string;
1785
+ parentExecutionId?: string;
1786
+ runId?: string;
1778
1787
  type: 'reasoning';
1779
1788
  text: string;
1780
1789
  };
@@ -1783,6 +1792,9 @@ export declare type TMessageContentText = {
1783
1792
  id?: string;
1784
1793
  xpertName?: string;
1785
1794
  agentKey?: string;
1795
+ executionId?: string;
1796
+ parentExecutionId?: string;
1797
+ runId?: string;
1786
1798
  type: 'text';
1787
1799
  text: string;
1788
1800
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpert-ai/chatkit-types",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Type definitions for the ChatKit.",
5
5
  "sideEffects": false,
6
6
  "type": "module",