@breign/client 1.0.16 → 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
  }
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" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",