@breign/client 1.0.65 → 1.0.67
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.
|
@@ -29,10 +29,10 @@ export interface KnowledgeBaseFilesInnerUio {
|
|
|
29
29
|
name: string;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {string}
|
|
33
33
|
* @memberof KnowledgeBaseFilesInnerUio
|
|
34
34
|
*/
|
|
35
|
-
knowledgeBaseId:
|
|
35
|
+
knowledgeBaseId: string;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* Check if a given object implements the KnowledgeBaseFilesInnerUio interface.
|
|
@@ -24,8 +24,6 @@ exports.MetricForAgentAgentUioToJSONTyped = MetricForAgentAgentUioToJSONTyped;
|
|
|
24
24
|
function instanceOfMetricForAgentAgentUio(value) {
|
|
25
25
|
if (!('id' in value) || value['id'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
-
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
-
return false;
|
|
29
27
|
return true;
|
|
30
28
|
}
|
|
31
29
|
function MetricForAgentAgentUioFromJSON(json) {
|
|
@@ -37,7 +35,7 @@ function MetricForAgentAgentUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
35
|
}
|
|
38
36
|
return {
|
|
39
37
|
'id': json['id'],
|
|
40
|
-
'name': json['name'],
|
|
38
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
41
39
|
};
|
|
42
40
|
}
|
|
43
41
|
function MetricForAgentAgentUioToJSON(json) {
|
package/dist/openapi.json
CHANGED
|
@@ -10095,10 +10095,7 @@
|
|
|
10095
10095
|
"type" : "string"
|
|
10096
10096
|
},
|
|
10097
10097
|
"knowledgeBaseId" : {
|
|
10098
|
-
"
|
|
10099
|
-
"type" : "string"
|
|
10100
|
-
},
|
|
10101
|
-
"type" : "array"
|
|
10098
|
+
"type" : "string"
|
|
10102
10099
|
}
|
|
10103
10100
|
},
|
|
10104
10101
|
"required" : [ "id", "knowledgeBaseId", "name" ],
|
|
@@ -10418,7 +10415,7 @@
|
|
|
10418
10415
|
"type" : "string"
|
|
10419
10416
|
}
|
|
10420
10417
|
},
|
|
10421
|
-
"required" : [ "id"
|
|
10418
|
+
"required" : [ "id" ],
|
|
10422
10419
|
"type" : "object"
|
|
10423
10420
|
},
|
|
10424
10421
|
"KnowledgeFileSummary_knowledgeBaseId" : {
|