@breign/client 1.0.16 → 1.0.18
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/AppUio.d.ts +6 -0
- package/dist/models/AppUio.js +2 -0
- package/dist/models/FileCreationResponseUio.d.ts +6 -0
- package/dist/models/FileCreationResponseUio.js +2 -0
- package/dist/models/FileUio.d.ts +6 -0
- package/dist/models/FileUio.js +2 -0
- package/dist/models/FileWithDownloadUrlUio.d.ts +6 -0
- package/dist/models/FileWithDownloadUrlUio.js +2 -0
- package/dist/openapi.json +8 -0
- package/package.json +1 -1
package/dist/models/AppUio.d.ts
CHANGED
|
@@ -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.
|
package/dist/models/AppUio.js
CHANGED
|
@@ -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
|
}
|
|
@@ -78,6 +78,12 @@ export interface FileCreationResponseUio {
|
|
|
78
78
|
* @memberof FileCreationResponseUio
|
|
79
79
|
*/
|
|
80
80
|
status?: FileStatusUio;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {boolean}
|
|
84
|
+
* @memberof FileCreationResponseUio
|
|
85
|
+
*/
|
|
86
|
+
isActive?: boolean;
|
|
81
87
|
}
|
|
82
88
|
/**
|
|
83
89
|
* Check if a given object implements the FileCreationResponseUio interface.
|
|
@@ -49,6 +49,7 @@ function FileCreationResponseUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
49
49
|
'formData': json['formData'],
|
|
50
50
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
51
51
|
'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
|
|
52
|
+
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
52
53
|
};
|
|
53
54
|
}
|
|
54
55
|
function FileCreationResponseUioToJSON(json) {
|
|
@@ -69,5 +70,6 @@ function FileCreationResponseUioToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
69
70
|
'formData': value['formData'],
|
|
70
71
|
'createdAt': value['createdAt'],
|
|
71
72
|
'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
|
|
73
|
+
'isActive': value['isActive'],
|
|
72
74
|
};
|
|
73
75
|
}
|
package/dist/models/FileUio.d.ts
CHANGED
package/dist/models/FileUio.js
CHANGED
|
@@ -46,6 +46,7 @@ function FileUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
46
46
|
'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
|
|
47
47
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
48
48
|
'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
|
|
49
|
+
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
function FileUioToJSON(json) {
|
|
@@ -66,5 +67,6 @@ function FileUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
66
67
|
'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
|
|
67
68
|
'createdAt': value['createdAt'],
|
|
68
69
|
'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
|
|
70
|
+
'isActive': value['isActive'],
|
|
69
71
|
};
|
|
70
72
|
}
|
|
@@ -77,6 +77,12 @@ export interface FileWithDownloadUrlUio {
|
|
|
77
77
|
* @memberof FileWithDownloadUrlUio
|
|
78
78
|
*/
|
|
79
79
|
status?: FileStatusUio;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {boolean}
|
|
83
|
+
* @memberof FileWithDownloadUrlUio
|
|
84
|
+
*/
|
|
85
|
+
isActive?: boolean;
|
|
80
86
|
/**
|
|
81
87
|
* Temporary URL to download the file
|
|
82
88
|
* @type {string}
|
|
@@ -48,6 +48,7 @@ function FileWithDownloadUrlUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
48
48
|
'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
|
|
49
49
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
50
50
|
'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
|
|
51
|
+
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
51
52
|
'downloadURL': json['downloadURL'],
|
|
52
53
|
};
|
|
53
54
|
}
|
|
@@ -69,6 +70,7 @@ function FileWithDownloadUrlUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
69
70
|
'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
|
|
70
71
|
'createdAt': value['createdAt'],
|
|
71
72
|
'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
|
|
73
|
+
'isActive': value['isActive'],
|
|
72
74
|
'downloadURL': value['downloadURL'],
|
|
73
75
|
};
|
|
74
76
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -6015,6 +6015,9 @@
|
|
|
6015
6015
|
},
|
|
6016
6016
|
"status" : {
|
|
6017
6017
|
"$ref" : "#/components/schemas/FileStatus"
|
|
6018
|
+
},
|
|
6019
|
+
"isActive" : {
|
|
6020
|
+
"type" : "boolean"
|
|
6018
6021
|
}
|
|
6019
6022
|
},
|
|
6020
6023
|
"required" : [ "id" ],
|
|
@@ -6484,6 +6487,11 @@
|
|
|
6484
6487
|
},
|
|
6485
6488
|
"maxProperties" : 100,
|
|
6486
6489
|
"type" : "object"
|
|
6490
|
+
},
|
|
6491
|
+
"fillers" : {
|
|
6492
|
+
"additionalProperties" : false,
|
|
6493
|
+
"maxProperties" : 100,
|
|
6494
|
+
"type" : "object"
|
|
6487
6495
|
}
|
|
6488
6496
|
},
|
|
6489
6497
|
"required" : [ "agentId", "authSecret", "id", "name", "status", "streamingEnabled", "voiceId", "voiceModelId" ],
|