@breign/client 1.0.15 → 1.0.17

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.
@@ -172,6 +172,12 @@ export interface AppUio {
172
172
  favoriteOutfit?: {
173
173
  [key: string]: string;
174
174
  };
175
+ /**
176
+ *
177
+ * @type {object}
178
+ * @memberof AppUio
179
+ */
180
+ fillers?: object;
175
181
  }
176
182
  /**
177
183
  * Check if a given object implements the AppUio interface.
@@ -79,6 +79,7 @@ function AppUioFromJSONTyped(json, ignoreDiscriminator) {
79
79
  'promptInit': json['promptInit'] == null ? undefined : json['promptInit'],
80
80
  'persona': json['persona'] == null ? undefined : (0, PersonaUio_1.PersonaUioFromJSON)(json['persona']),
81
81
  'favoriteOutfit': json['favoriteOutfit'] == null ? undefined : json['favoriteOutfit'],
82
+ 'fillers': json['fillers'] == null ? undefined : json['fillers'],
82
83
  };
83
84
  }
84
85
  function AppUioToJSON(json) {
@@ -113,5 +114,6 @@ function AppUioToJSONTyped(value, ignoreDiscriminator = false) {
113
114
  'promptInit': value['promptInit'],
114
115
  'persona': (0, PersonaUio_1.PersonaUioToJSON)(value['persona']),
115
116
  'favoriteOutfit': value['favoriteOutfit'],
117
+ 'fillers': value['fillers'],
116
118
  };
117
119
  }
@@ -21,7 +21,13 @@ export interface AuthCodeConfirmResponseUio {
21
21
  * @type {ApiKeyUio}
22
22
  * @memberof AuthCodeConfirmResponseUio
23
23
  */
24
- apiKey: ApiKeyUio;
24
+ apiKey?: ApiKeyUio;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof AuthCodeConfirmResponseUio
29
+ */
30
+ token?: string;
25
31
  /**
26
32
  *
27
33
  * @type {string}
@@ -23,8 +23,6 @@ const ApiKeyUio_1 = require("./ApiKeyUio");
23
23
  * Check if a given object implements the AuthCodeConfirmResponseUio interface.
24
24
  */
25
25
  function instanceOfAuthCodeConfirmResponseUio(value) {
26
- if (!('apiKey' in value) || value['apiKey'] === undefined)
27
- return false;
28
26
  if (!('message' in value) || value['message'] === undefined)
29
27
  return false;
30
28
  return true;
@@ -37,7 +35,8 @@ function AuthCodeConfirmResponseUioFromJSONTyped(json, ignoreDiscriminator) {
37
35
  return json;
38
36
  }
39
37
  return {
40
- 'apiKey': (0, ApiKeyUio_1.ApiKeyUioFromJSON)(json['apiKey']),
38
+ 'apiKey': json['apiKey'] == null ? undefined : (0, ApiKeyUio_1.ApiKeyUioFromJSON)(json['apiKey']),
39
+ 'token': json['token'] == null ? undefined : json['token'],
41
40
  'message': json['message'],
42
41
  };
43
42
  }
@@ -50,6 +49,7 @@ function AuthCodeConfirmResponseUioToJSONTyped(value, ignoreDiscriminator = fals
50
49
  }
51
50
  return {
52
51
  'apiKey': (0, ApiKeyUio_1.ApiKeyUioToJSON)(value['apiKey']),
52
+ 'token': value['token'],
53
53
  'message': value['message'],
54
54
  };
55
55
  }
package/dist/openapi.json CHANGED
@@ -6484,6 +6484,11 @@
6484
6484
  },
6485
6485
  "maxProperties" : 100,
6486
6486
  "type" : "object"
6487
+ },
6488
+ "fillers" : {
6489
+ "additionalProperties" : false,
6490
+ "maxProperties" : 100,
6491
+ "type" : "object"
6487
6492
  }
6488
6493
  },
6489
6494
  "required" : [ "agentId", "authSecret", "id", "name", "status", "streamingEnabled", "voiceId", "voiceModelId" ],
@@ -6793,11 +6798,14 @@
6793
6798
  "apiKey" : {
6794
6799
  "$ref" : "#/components/schemas/ApiKey"
6795
6800
  },
6801
+ "token" : {
6802
+ "type" : "string"
6803
+ },
6796
6804
  "message" : {
6797
6805
  "type" : "string"
6798
6806
  }
6799
6807
  },
6800
- "required" : [ "apiKey", "message" ],
6808
+ "required" : [ "message" ],
6801
6809
  "type" : "object"
6802
6810
  },
6803
6811
  "ApiKey" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",