@breign/client 1.0.63 → 1.0.64

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.
@@ -23,6 +23,12 @@ export interface ChatUio {
23
23
  * @memberof ChatUio
24
24
  */
25
25
  id: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof ChatUio
30
+ */
31
+ title?: string | null;
26
32
  /**
27
33
  *
28
34
  * @type {string}
@@ -49,6 +49,7 @@ function ChatUioFromJSONTyped(json, ignoreDiscriminator) {
49
49
  }
50
50
  return {
51
51
  'id': json['id'],
52
+ 'title': json['title'] == null ? undefined : json['title'],
52
53
  'appId': json['appId'] == null ? undefined : json['appId'],
53
54
  'lang': json['lang'],
54
55
  'agentId': json['agentId'],
@@ -72,6 +73,7 @@ function ChatUioToJSONTyped(value, ignoreDiscriminator = false) {
72
73
  }
73
74
  return {
74
75
  'id': value['id'],
76
+ 'title': value['title'],
75
77
  'appId': value['appId'],
76
78
  'lang': value['lang'],
77
79
  'agentId': value['agentId'],
package/dist/openapi.json CHANGED
@@ -7700,6 +7700,10 @@
7700
7700
  "id" : {
7701
7701
  "type" : "string"
7702
7702
  },
7703
+ "title" : {
7704
+ "nullable" : true,
7705
+ "type" : "string"
7706
+ },
7703
7707
  "appId" : {
7704
7708
  "type" : "string"
7705
7709
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.63",
3
+ "version": "1.0.64",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",