@breign/client 1.0.77 → 1.0.79

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.
@@ -36,6 +36,12 @@ export interface AppConfigurationUio {
36
36
  * @memberof AppConfigurationUio
37
37
  */
38
38
  image?: string;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof AppConfigurationUio
43
+ */
44
+ imageAgent?: string;
39
45
  /**
40
46
  *
41
47
  * @type {string}
@@ -50,10 +56,10 @@ export interface AppConfigurationUio {
50
56
  language?: Array<AppConfigurationLanguageInnerUio>;
51
57
  /**
52
58
  *
53
- * @type {Date}
59
+ * @type {string}
54
60
  * @memberof AppConfigurationUio
55
61
  */
56
- date?: Date;
62
+ date?: string;
57
63
  /**
58
64
  *
59
65
  * @type {string}
@@ -38,9 +38,10 @@ function AppConfigurationUioFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'colors': json['colors'] == null ? undefined : (0, AppConfigurationColorsUio_1.AppConfigurationColorsUioFromJSON)(json['colors']),
39
39
  'text': json['text'] == null ? undefined : (0, AppConfigurationTextUio_1.AppConfigurationTextUioFromJSON)(json['text']),
40
40
  'image': json['image'] == null ? undefined : json['image'],
41
+ 'imageAgent': json['imageAgent'] == null ? undefined : json['imageAgent'],
41
42
  'agentImage': json['agentImage'] == null ? undefined : json['agentImage'],
42
43
  'language': json['language'] == null ? undefined : (json['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioFromJSON)),
43
- 'date': json['date'] == null ? undefined : (new Date(json['date'])),
44
+ 'date': json['date'] == null ? undefined : json['date'],
44
45
  'defaultLanguage': json['defaultLanguage'] == null ? undefined : json['defaultLanguage'],
45
46
  };
46
47
  }
@@ -55,9 +56,10 @@ function AppConfigurationUioToJSONTyped(value, ignoreDiscriminator = false) {
55
56
  'colors': (0, AppConfigurationColorsUio_1.AppConfigurationColorsUioToJSON)(value['colors']),
56
57
  'text': (0, AppConfigurationTextUio_1.AppConfigurationTextUioToJSON)(value['text']),
57
58
  'image': value['image'],
59
+ 'imageAgent': value['imageAgent'],
58
60
  'agentImage': value['agentImage'],
59
61
  'language': value['language'] == null ? undefined : (value['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioToJSON)),
60
- 'date': value['date'] == null ? undefined : ((value['date']).toISOString()),
62
+ 'date': value['date'],
61
63
  'defaultLanguage': value['defaultLanguage'],
62
64
  };
63
65
  }
@@ -51,6 +51,12 @@ export interface ModelDefinitionUio {
51
51
  * @memberof ModelDefinitionUio
52
52
  */
53
53
  hasReasoning?: boolean;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof ModelDefinitionUio
58
+ */
59
+ hasEmbedding?: boolean;
54
60
  /**
55
61
  *
56
62
  * @type {number}
@@ -42,6 +42,7 @@ function ModelDefinitionUioFromJSONTyped(json, ignoreDiscriminator) {
42
42
  'hasVision': json['hasVision'] == null ? undefined : json['hasVision'],
43
43
  'hasToolUse': json['hasToolUse'] == null ? undefined : json['hasToolUse'],
44
44
  'hasReasoning': json['hasReasoning'] == null ? undefined : json['hasReasoning'],
45
+ 'hasEmbedding': json['hasEmbedding'] == null ? undefined : json['hasEmbedding'],
45
46
  'maxTokens': json['maxTokens'] == null ? undefined : json['maxTokens'],
46
47
  'options': json['options'] == null ? undefined : json['options'],
47
48
  };
@@ -60,6 +61,7 @@ function ModelDefinitionUioToJSONTyped(value, ignoreDiscriminator = false) {
60
61
  'hasVision': value['hasVision'],
61
62
  'hasToolUse': value['hasToolUse'],
62
63
  'hasReasoning': value['hasReasoning'],
64
+ 'hasEmbedding': value['hasEmbedding'],
63
65
  'maxTokens': value['maxTokens'],
64
66
  'options': value['options'],
65
67
  };
package/dist/openapi.json CHANGED
@@ -9332,6 +9332,9 @@
9332
9332
  "image" : {
9333
9333
  "type" : "string"
9334
9334
  },
9335
+ "imageAgent" : {
9336
+ "type" : "string"
9337
+ },
9335
9338
  "agentImage" : {
9336
9339
  "type" : "string"
9337
9340
  },
@@ -9342,7 +9345,6 @@
9342
9345
  "type" : "array"
9343
9346
  },
9344
9347
  "date" : {
9345
- "format" : "date-time",
9346
9348
  "type" : "string"
9347
9349
  },
9348
9350
  "defaultLanguage" : {
@@ -10243,6 +10245,9 @@
10243
10245
  "hasReasoning" : {
10244
10246
  "type" : "boolean"
10245
10247
  },
10248
+ "hasEmbedding" : {
10249
+ "type" : "boolean"
10250
+ },
10246
10251
  "maxTokens" : {
10247
10252
  "minimum" : 1,
10248
10253
  "type" : "integer"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",