@breign/client 1.0.11 → 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.
|
@@ -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