@breign/client 1.0.61 → 1.0.62

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.
@@ -21,6 +21,12 @@ export interface AppChatSubmitMessageRequestUio {
21
21
  * @memberof AppChatSubmitMessageRequestUio
22
22
  */
23
23
  message: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof AppChatSubmitMessageRequestUio
28
+ */
29
+ lang?: string;
24
30
  }
25
31
  /**
26
32
  * Check if a given object implements the AppChatSubmitMessageRequestUio interface.
@@ -35,6 +35,7 @@ function AppChatSubmitMessageRequestUioFromJSONTyped(json, ignoreDiscriminator)
35
35
  }
36
36
  return {
37
37
  'message': json['message'],
38
+ 'lang': json['lang'] == null ? undefined : json['lang'],
38
39
  };
39
40
  }
40
41
  function AppChatSubmitMessageRequestUioToJSON(json) {
@@ -46,5 +47,6 @@ function AppChatSubmitMessageRequestUioToJSONTyped(value, ignoreDiscriminator =
46
47
  }
47
48
  return {
48
49
  'message': value['message'],
50
+ 'lang': value['lang'],
49
51
  };
50
52
  }
package/dist/openapi.json CHANGED
@@ -8283,6 +8283,9 @@
8283
8283
  "properties" : {
8284
8284
  "message" : {
8285
8285
  "type" : "string"
8286
+ },
8287
+ "lang" : {
8288
+ "type" : "string"
8286
8289
  }
8287
8290
  },
8288
8291
  "required" : [ "message" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",