@breign/client 1.0.10 → 1.0.12
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
|
}
|
|
@@ -22,8 +22,6 @@ exports.DefaultEngineRequestUioToJSONTyped = DefaultEngineRequestUioToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the DefaultEngineRequestUio interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfDefaultEngineRequestUio(value) {
|
|
25
|
-
if (!('organizationId' in value) || value['organizationId'] === undefined)
|
|
26
|
-
return false;
|
|
27
25
|
if (!('providerId' in value) || value['providerId'] === undefined)
|
|
28
26
|
return false;
|
|
29
27
|
if (!('model' in value) || value['model'] === undefined)
|
|
@@ -38,7 +36,6 @@ function DefaultEngineRequestUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
36
|
return json;
|
|
39
37
|
}
|
|
40
38
|
return {
|
|
41
|
-
'organizationId': json['organizationId'],
|
|
42
39
|
'providerId': json['providerId'],
|
|
43
40
|
'model': json['model'],
|
|
44
41
|
};
|
|
@@ -51,7 +48,6 @@ function DefaultEngineRequestUioToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
51
48
|
return value;
|
|
52
49
|
}
|
|
53
50
|
return {
|
|
54
|
-
'organizationId': value['organizationId'],
|
|
55
51
|
'providerId': value['providerId'],
|
|
56
52
|
'model': value['model'],
|
|
57
53
|
};
|
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" ],
|
|
@@ -7087,9 +7092,6 @@
|
|
|
7087
7092
|
},
|
|
7088
7093
|
"DefaultEngineRequest" : {
|
|
7089
7094
|
"properties" : {
|
|
7090
|
-
"organizationId" : {
|
|
7091
|
-
"type" : "string"
|
|
7092
|
-
},
|
|
7093
7095
|
"providerId" : {
|
|
7094
7096
|
"type" : "string"
|
|
7095
7097
|
},
|