@breign/client 1.0.48 → 1.0.49
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/dist/models/AgentUio.d.ts +14 -0
- package/dist/models/AgentUio.js +10 -0
- package/dist/openapi.json +4 -0
- package/package.json +1 -1
|
@@ -209,7 +209,21 @@ export interface AgentUio {
|
|
|
209
209
|
* @memberof AgentUio
|
|
210
210
|
*/
|
|
211
211
|
creator?: AgentCreatorUio;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {string}
|
|
215
|
+
* @memberof AgentUio
|
|
216
|
+
*/
|
|
217
|
+
providerSource?: AgentUioProviderSourceEnum;
|
|
212
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* @export
|
|
221
|
+
*/
|
|
222
|
+
export declare const AgentUioProviderSourceEnum: {
|
|
223
|
+
readonly External: "EXTERNAL";
|
|
224
|
+
readonly Internal: "INTERNAL";
|
|
225
|
+
};
|
|
226
|
+
export type AgentUioProviderSourceEnum = typeof AgentUioProviderSourceEnum[keyof typeof AgentUioProviderSourceEnum];
|
|
213
227
|
/**
|
|
214
228
|
* Check if a given object implements the AgentUio interface.
|
|
215
229
|
*/
|
package/dist/models/AgentUio.js
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.AgentUioProviderSourceEnum = void 0;
|
|
16
17
|
exports.instanceOfAgentUio = instanceOfAgentUio;
|
|
17
18
|
exports.AgentUioFromJSON = AgentUioFromJSON;
|
|
18
19
|
exports.AgentUioFromJSONTyped = AgentUioFromJSONTyped;
|
|
@@ -26,6 +27,13 @@ const AgentCreatorUio_1 = require("./AgentCreatorUio");
|
|
|
26
27
|
const EngineUio_1 = require("./EngineUio");
|
|
27
28
|
const PromptInitUio_1 = require("./PromptInitUio");
|
|
28
29
|
const AgentTypeUio_1 = require("./AgentTypeUio");
|
|
30
|
+
/**
|
|
31
|
+
* @export
|
|
32
|
+
*/
|
|
33
|
+
exports.AgentUioProviderSourceEnum = {
|
|
34
|
+
External: 'EXTERNAL',
|
|
35
|
+
Internal: 'INTERNAL'
|
|
36
|
+
};
|
|
29
37
|
/**
|
|
30
38
|
* Check if a given object implements the AgentUio interface.
|
|
31
39
|
*/
|
|
@@ -82,6 +90,7 @@ function AgentUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
82
90
|
'personal': json['personal'] == null ? undefined : json['personal'],
|
|
83
91
|
'createdBy': json['createdBy'] == null ? undefined : json['createdBy'],
|
|
84
92
|
'creator': json['creator'] == null ? undefined : (0, AgentCreatorUio_1.AgentCreatorUioFromJSON)(json['creator']),
|
|
93
|
+
'providerSource': json['providerSource'] == null ? undefined : json['providerSource'],
|
|
85
94
|
};
|
|
86
95
|
}
|
|
87
96
|
function AgentUioToJSON(json) {
|
|
@@ -122,5 +131,6 @@ function AgentUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
122
131
|
'personal': value['personal'],
|
|
123
132
|
'createdBy': value['createdBy'],
|
|
124
133
|
'creator': (0, AgentCreatorUio_1.AgentCreatorUioToJSON)(value['creator']),
|
|
134
|
+
'providerSource': value['providerSource'],
|
|
125
135
|
};
|
|
126
136
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -6563,6 +6563,10 @@
|
|
|
6563
6563
|
},
|
|
6564
6564
|
"creator" : {
|
|
6565
6565
|
"$ref" : "#/components/schemas/Agent_creator"
|
|
6566
|
+
},
|
|
6567
|
+
"providerSource" : {
|
|
6568
|
+
"enum" : [ "EXTERNAL", "INTERNAL" ],
|
|
6569
|
+
"type" : "string"
|
|
6566
6570
|
}
|
|
6567
6571
|
},
|
|
6568
6572
|
"required" : [ "id", "modules", "name", "organisationId", "persona", "promptInit" ],
|