@breign/client 1.0.10 → 1.0.11
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.
|
@@ -82,6 +82,12 @@ export interface AppCreateRequestUio {
|
|
|
82
82
|
* @memberof AppCreateRequestUio
|
|
83
83
|
*/
|
|
84
84
|
type?: string;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {object}
|
|
88
|
+
* @memberof AppCreateRequestUio
|
|
89
|
+
*/
|
|
90
|
+
fillers?: object;
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Check if a given object implements the AppCreateRequestUio interface.
|
|
@@ -50,6 +50,7 @@ function AppCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'lipsync': json['lipsync'] == null ? undefined : (0, LipsyncUio_1.LipsyncUioFromJSON)(json['lipsync']),
|
|
51
51
|
'connected': json['connected'] == null ? undefined : json['connected'],
|
|
52
52
|
'type': json['type'] == null ? undefined : json['type'],
|
|
53
|
+
'fillers': json['fillers'] == null ? undefined : json['fillers'],
|
|
53
54
|
};
|
|
54
55
|
}
|
|
55
56
|
function AppCreateRequestUioToJSON(json) {
|
|
@@ -71,5 +72,6 @@ function AppCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
71
72
|
'lipsync': (0, LipsyncUio_1.LipsyncUioToJSON)(value['lipsync']),
|
|
72
73
|
'connected': value['connected'],
|
|
73
74
|
'type': value['type'],
|
|
75
|
+
'fillers': value['fillers'],
|
|
74
76
|
};
|
|
75
77
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -6367,6 +6367,11 @@
|
|
|
6367
6367
|
},
|
|
6368
6368
|
"type" : {
|
|
6369
6369
|
"type" : "string"
|
|
6370
|
+
},
|
|
6371
|
+
"fillers" : {
|
|
6372
|
+
"additionalProperties" : false,
|
|
6373
|
+
"maxProperties" : 100,
|
|
6374
|
+
"type" : "object"
|
|
6370
6375
|
}
|
|
6371
6376
|
},
|
|
6372
6377
|
"required" : [ "agentId", "name", "streamingEnabled" ],
|