@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 {Array<string>}
32
+ * @type {string}
33
33
  * @memberof KnowledgeBaseFilesInnerUio
34
34
  */
35
- knowledgeBaseId: Array<string>;
35
+ knowledgeBaseId: string;
36
36
  }
37
37
  /**
38
38
  * Check if a given object implements the KnowledgeBaseFilesInnerUio interface.
@@ -26,7 +26,7 @@ export interface MetricForAgentAgentUio {
26
26
  * @type {string}
27
27
  * @memberof MetricForAgentAgentUio
28
28
  */
29
- name: string;
29
+ name?: string;
30
30
  }
31
31
  /**
32
32
  * Check if a given object implements the MetricForAgentAgentUio 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
- "items" : {
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", "name" ],
10418
+ "required" : [ "id" ],
10422
10419
  "type" : "object"
10423
10420
  },
10424
10421
  "KnowledgeFileSummary_knowledgeBaseId" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.65",
3
+ "version": "1.0.67",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",