@droz-js/sdk 0.12.3 → 0.12.4
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 +1 -1
- package/src/sdks/drozbot.d.ts +3 -0
package/package.json
CHANGED
package/src/sdks/drozbot.d.ts
CHANGED
|
@@ -447,10 +447,13 @@ export type RunAiActionHumanizedAnswerInput = {
|
|
|
447
447
|
aiResponsePrompt: Scalars['String']['input'];
|
|
448
448
|
aiResponseVariables: Array<AiActionVariableInput>;
|
|
449
449
|
connectorResponse: Scalars['JSON']['input'];
|
|
450
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
|
450
451
|
userMessage: Scalars['String']['input'];
|
|
451
452
|
};
|
|
452
453
|
export type RunAiActionInput = {
|
|
453
454
|
actionPrompt: Scalars['String']['input'];
|
|
455
|
+
isGreeting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
456
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
|
454
457
|
missingVariables: Array<AiActionVariableInput>;
|
|
455
458
|
userMessage: Scalars['String']['input'];
|
|
456
459
|
};
|