@chatbotkit/sdk 1.30.1 → 1.31.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.
- package/dist/cjs/types/ability.d.ts +522 -36
- package/dist/cjs/types/api/v1.d.ts +4 -4
- package/dist/esm/types/ability.d.ts +522 -36
- package/dist/esm/types/api/v1.d.ts +4 -4
- package/package.json +1 -1
|
@@ -8246,8 +8246,8 @@ export interface operations {
|
|
|
8246
8246
|
requestBody: {
|
|
8247
8247
|
content: {
|
|
8248
8248
|
"application/json": {
|
|
8249
|
-
/** @description The text of the message to send */
|
|
8250
|
-
text
|
|
8249
|
+
/** @description The text of the message to send. Omit to continue receiving from the existing conversation state without sending a new user message. */
|
|
8250
|
+
text?: string;
|
|
8251
8251
|
/** @description Known entities */
|
|
8252
8252
|
entities?: {
|
|
8253
8253
|
/** @description The entity type */
|
|
@@ -8636,8 +8636,8 @@ export interface operations {
|
|
|
8636
8636
|
requestBody: {
|
|
8637
8637
|
content: {
|
|
8638
8638
|
"application/json": {
|
|
8639
|
-
/** @description The text of the message to send */
|
|
8640
|
-
text
|
|
8639
|
+
/** @description The text of the message to send. Omit to continue receiving from the existing conversation state without sending a new user message. */
|
|
8640
|
+
text?: string;
|
|
8641
8641
|
/** @description Known entities */
|
|
8642
8642
|
entities?: {
|
|
8643
8643
|
/** @description The entity type */
|