@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.
@@ -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
@@ -10415,7 +10415,7 @@
10415
10415
  "type" : "string"
10416
10416
  }
10417
10417
  },
10418
- "required" : [ "id", "name" ],
10418
+ "required" : [ "id" ],
10419
10419
  "type" : "object"
10420
10420
  },
10421
10421
  "KnowledgeFileSummary_knowledgeBaseId" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",