@nlxai/touchpoint-ui 1.1.8-alpha.4 → 1.2.0

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.
@@ -393,6 +393,9 @@ export interface BidirectionalCustomCommand {
393
393
  action: string;
394
394
  /**
395
395
  * A short description of the command, used to help the LLM understand its purpose.
396
+ *
397
+ * If omitted, then the command will not be sent to the application and must be triggered
398
+ * from the application side.
396
399
  */
397
400
  description?: string;
398
401
  /**
@@ -404,7 +407,7 @@ export interface BidirectionalCustomCommand {
404
407
  *
405
408
  * Should follow the JSONSchema specification.
406
409
  */
407
- schema: any;
410
+ schema?: any;
408
411
  /**
409
412
  * A handler that will be called with an argument matching the schema when the command is invoked.
410
413
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nlxai/touchpoint-ui",
3
- "version": "1.1.8-alpha.4",
3
+ "version": "1.2.0",
4
4
  "description": "Web UI for Touchpoint",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "03fe45bd11db28b08c3e4ae431b091df482ccd99"
64
+ "gitHead": "15a993eac42b79df23aaa3a09761ccd768960cb8"
65
65
  }