@breign/client 1.0.71 → 1.0.72

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.
@@ -168,6 +168,12 @@ export interface AgentPatchUio {
168
168
  * @memberof AgentPatchUio
169
169
  */
170
170
  personal?: boolean;
171
+ /**
172
+ *
173
+ * @type {boolean}
174
+ * @memberof AgentPatchUio
175
+ */
176
+ hideConversationsInHistory?: boolean;
171
177
  }
172
178
  /**
173
179
  * Check if a given object implements the AgentPatchUio interface.
@@ -61,6 +61,7 @@ function AgentPatchUioFromJSONTyped(json, ignoreDiscriminator) {
61
61
  'deleted': json['deleted'] == null ? undefined : json['deleted'],
62
62
  'agentType': json['agentType'] == null ? undefined : (0, AgentTypeUio_1.AgentTypeUioFromJSON)(json['agentType']),
63
63
  'personal': json['personal'] == null ? undefined : json['personal'],
64
+ 'hideConversationsInHistory': json['hideConversationsInHistory'] == null ? undefined : json['hideConversationsInHistory'],
64
65
  };
65
66
  }
66
67
  function AgentPatchUioToJSON(json) {
@@ -95,5 +96,6 @@ function AgentPatchUioToJSONTyped(value, ignoreDiscriminator = false) {
95
96
  'deleted': value['deleted'],
96
97
  'agentType': (0, AgentTypeUio_1.AgentTypeUioToJSON)(value['agentType']),
97
98
  'personal': value['personal'],
99
+ 'hideConversationsInHistory': value['hideConversationsInHistory'],
98
100
  };
99
101
  }
@@ -203,6 +203,12 @@ export interface AgentUio {
203
203
  * @memberof AgentUio
204
204
  */
205
205
  createdBy?: string;
206
+ /**
207
+ *
208
+ * @type {boolean}
209
+ * @memberof AgentUio
210
+ */
211
+ hideConversationsInHistory?: boolean;
206
212
  /**
207
213
  *
208
214
  * @type {AgentCreatorUio}
@@ -89,6 +89,7 @@ function AgentUioFromJSONTyped(json, ignoreDiscriminator) {
89
89
  'favoriteOutfit': json['favoriteOutfit'] == null ? undefined : json['favoriteOutfit'],
90
90
  'personal': json['personal'] == null ? undefined : json['personal'],
91
91
  'createdBy': json['createdBy'] == null ? undefined : json['createdBy'],
92
+ 'hideConversationsInHistory': json['hideConversationsInHistory'] == null ? undefined : json['hideConversationsInHistory'],
92
93
  'creator': json['creator'] == null ? undefined : (0, AgentCreatorUio_1.AgentCreatorUioFromJSON)(json['creator']),
93
94
  'providerSource': json['providerSource'] == null ? undefined : json['providerSource'],
94
95
  };
@@ -130,6 +131,7 @@ function AgentUioToJSONTyped(value, ignoreDiscriminator = false) {
130
131
  'favoriteOutfit': value['favoriteOutfit'],
131
132
  'personal': value['personal'],
132
133
  'createdBy': value['createdBy'],
134
+ 'hideConversationsInHistory': value['hideConversationsInHistory'],
133
135
  'creator': (0, AgentCreatorUio_1.AgentCreatorUioToJSON)(value['creator']),
134
136
  'providerSource': value['providerSource'],
135
137
  };
package/dist/openapi.json CHANGED
@@ -7007,6 +7007,9 @@
7007
7007
  "createdBy" : {
7008
7008
  "type" : "string"
7009
7009
  },
7010
+ "hideConversationsInHistory" : {
7011
+ "type" : "boolean"
7012
+ },
7010
7013
  "creator" : {
7011
7014
  "$ref" : "#/components/schemas/Agent_creator"
7012
7015
  },
@@ -7268,6 +7271,9 @@
7268
7271
  },
7269
7272
  "personal" : {
7270
7273
  "type" : "boolean"
7274
+ },
7275
+ "hideConversationsInHistory" : {
7276
+ "type" : "boolean"
7271
7277
  }
7272
7278
  },
7273
7279
  "type" : "object"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",