@breign/client 1.0.66 → 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.
|
@@ -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
|
@@ -10415,7 +10415,7 @@
|
|
|
10415
10415
|
"type" : "string"
|
|
10416
10416
|
}
|
|
10417
10417
|
},
|
|
10418
|
-
"required" : [ "id"
|
|
10418
|
+
"required" : [ "id" ],
|
|
10419
10419
|
"type" : "object"
|
|
10420
10420
|
},
|
|
10421
10421
|
"KnowledgeFileSummary_knowledgeBaseId" : {
|