@breign/client 1.0.13 → 1.0.15
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.
- package/dist/models/FileStatusUio.d.ts +1 -0
- package/dist/models/FileStatusUio.js +1 -0
- package/dist/models/PersonaUio.d.ts +1 -1
- package/dist/models/PersonaUio.js +3 -3
- package/dist/models/PromptInitUio.d.ts +1 -1
- package/dist/models/PromptInitUio.js +3 -3
- package/dist/openapi.json +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ exports.PersonaUioToJSONTyped = PersonaUioToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the PersonaUio interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfPersonaUio(value) {
|
|
25
|
-
if (!('
|
|
25
|
+
if (!('default' in value) || value['default'] === undefined)
|
|
26
26
|
return false;
|
|
27
27
|
return true;
|
|
28
28
|
}
|
|
@@ -35,7 +35,7 @@ function PersonaUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
...json,
|
|
38
|
-
'
|
|
38
|
+
'default': json['default'],
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
function PersonaUioToJSON(json) {
|
|
@@ -47,6 +47,6 @@ function PersonaUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
47
47
|
}
|
|
48
48
|
return {
|
|
49
49
|
...value,
|
|
50
|
-
'default': value['
|
|
50
|
+
'default': value['default'],
|
|
51
51
|
};
|
|
52
52
|
}
|
|
@@ -22,7 +22,7 @@ exports.PromptInitUioToJSONTyped = PromptInitUioToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the PromptInitUio interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfPromptInitUio(value) {
|
|
25
|
-
if (!('
|
|
25
|
+
if (!('default' in value) || value['default'] === undefined)
|
|
26
26
|
return false;
|
|
27
27
|
return true;
|
|
28
28
|
}
|
|
@@ -35,7 +35,7 @@ function PromptInitUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
...json,
|
|
38
|
-
'
|
|
38
|
+
'default': json['default'],
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
function PromptInitUioToJSON(json) {
|
|
@@ -47,6 +47,6 @@ function PromptInitUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
47
47
|
}
|
|
48
48
|
return {
|
|
49
49
|
...value,
|
|
50
|
-
'default': value['
|
|
50
|
+
'default': value['default'],
|
|
51
51
|
};
|
|
52
52
|
}
|
package/dist/openapi.json
CHANGED