@droz-js/sdk 0.12.3 → 0.12.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@droz-js/sdk",
3
3
  "description": "Droz SDK",
4
- "version": "0.12.3",
4
+ "version": "0.12.5",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -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
  };