@breign/client 1.0.71 → 1.0.73

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
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ModelDefinitionUio } from './ModelDefinitionUio';
12
13
  import type { EngineOptionsUio } from './EngineOptionsUio';
13
14
  /**
14
15
  *
@@ -34,6 +35,12 @@ export interface EngineUio {
34
35
  * @memberof EngineUio
35
36
  */
36
37
  options?: EngineOptionsUio;
38
+ /**
39
+ *
40
+ * @type {ModelDefinitionUio}
41
+ * @memberof EngineUio
42
+ */
43
+ resolvedModel?: ModelDefinitionUio;
37
44
  }
38
45
  /**
39
46
  * Check if a given object implements the EngineUio interface.
@@ -18,6 +18,7 @@ exports.EngineUioFromJSON = EngineUioFromJSON;
18
18
  exports.EngineUioFromJSONTyped = EngineUioFromJSONTyped;
19
19
  exports.EngineUioToJSON = EngineUioToJSON;
20
20
  exports.EngineUioToJSONTyped = EngineUioToJSONTyped;
21
+ const ModelDefinitionUio_1 = require("./ModelDefinitionUio");
21
22
  const EngineOptionsUio_1 = require("./EngineOptionsUio");
22
23
  /**
23
24
  * Check if a given object implements the EngineUio interface.
@@ -40,6 +41,7 @@ function EngineUioFromJSONTyped(json, ignoreDiscriminator) {
40
41
  'providerId': json['providerId'],
41
42
  'model': json['model'],
42
43
  'options': json['options'] == null ? undefined : (0, EngineOptionsUio_1.EngineOptionsUioFromJSON)(json['options']),
44
+ 'resolvedModel': json['resolvedModel'] == null ? undefined : (0, ModelDefinitionUio_1.ModelDefinitionUioFromJSON)(json['resolvedModel']),
43
45
  };
44
46
  }
45
47
  function EngineUioToJSON(json) {
@@ -53,5 +55,6 @@ function EngineUioToJSONTyped(value, ignoreDiscriminator = false) {
53
55
  'providerId': value['providerId'],
54
56
  'model': value['model'],
55
57
  'options': (0, EngineOptionsUio_1.EngineOptionsUioToJSON)(value['options']),
58
+ 'resolvedModel': (0, ModelDefinitionUio_1.ModelDefinitionUioToJSON)(value['resolvedModel']),
56
59
  };
57
60
  }
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"
@@ -9842,6 +9848,9 @@
9842
9848
  },
9843
9849
  "options" : {
9844
9850
  "$ref" : "#/components/schemas/Engine_options"
9851
+ },
9852
+ "resolvedModel" : {
9853
+ "$ref" : "#/components/schemas/ModelDefinition"
9845
9854
  }
9846
9855
  },
9847
9856
  "required" : [ "model", "providerId" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",