@droz-js/sdk 0.9.74 → 0.9.75

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.9.74",
4
+ "version": "0.9.75",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -151,6 +151,7 @@ export type CreateDrozBotSessionAttributesInput = {
151
151
  };
152
152
  export type CreateDrozBotTicketCommentInput = {
153
153
  comment: Scalars['String']['input'];
154
+ isAttachment?: InputMaybe<Scalars['Boolean']['input']>;
154
155
  isHistory?: InputMaybe<Scalars['Boolean']['input']>;
155
156
  sender?: InputMaybe<DrozBotTicketMessageSender>;
156
157
  ticketId: Scalars['ID']['input'];
@@ -175,6 +176,7 @@ export type CreateDrozBotTicketProfileInput = {
175
176
  };
176
177
  export type CreateManyDrozBotTicketCommentsInput = {
177
178
  comment: Scalars['String']['input'];
179
+ isAttachment?: InputMaybe<Scalars['Boolean']['input']>;
178
180
  isHistory?: InputMaybe<Scalars['Boolean']['input']>;
179
181
  sender: DrozBotTicketMessageSender;
180
182
  };