@xpert-ai/chatkit-types 0.3.9 → 0.3.10

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 +6 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1596,10 +1596,15 @@ export declare type TChatRequest = {
1596
1596
  };
1597
1597
 
1598
1598
  /**
1599
- * Human input message, include parameters and attachments
1599
+ * Human input message, including uploaded file handles and references.
1600
1600
  */
1601
1601
  export declare type TChatRequestHuman = {
1602
1602
  input?: string;
1603
+ /**
1604
+ * Uploaded file handles submitted with the message. ChatKit UI now sends
1605
+ * AgentFile/FileAsset-shaped objects here; raw browser File objects should be
1606
+ * uploaded before submission.
1607
+ */
1603
1608
  files?: Partial<File>[];
1604
1609
  references?: ChatKitReference[];
1605
1610
  referenceComposition?: ChatKitReferenceCompositionMode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpert-ai/chatkit-types",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "Type definitions for the ChatKit.",
5
5
  "sideEffects": false,
6
6
  "type": "module",