@breign/client 1.0.95 → 1.0.96
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.
|
@@ -33,12 +33,6 @@ export interface AppVoiceValidateRequestUio {
|
|
|
33
33
|
* @memberof AppVoiceValidateRequestUio
|
|
34
34
|
*/
|
|
35
35
|
voiceId: string;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof AppVoiceValidateRequestUio
|
|
40
|
-
*/
|
|
41
|
-
text?: string;
|
|
42
36
|
}
|
|
43
37
|
/**
|
|
44
38
|
* Check if a given object implements the AppVoiceValidateRequestUio interface.
|
|
@@ -41,7 +41,6 @@ function AppVoiceValidateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'voiceProvider': json['voiceProvider'],
|
|
42
42
|
'voiceModelId': json['voiceModelId'],
|
|
43
43
|
'voiceId': json['voiceId'],
|
|
44
|
-
'text': json['text'] == null ? undefined : json['text'],
|
|
45
44
|
};
|
|
46
45
|
}
|
|
47
46
|
function AppVoiceValidateRequestUioToJSON(json) {
|
|
@@ -55,6 +54,5 @@ function AppVoiceValidateRequestUioToJSONTyped(value, ignoreDiscriminator = fals
|
|
|
55
54
|
'voiceProvider': value['voiceProvider'],
|
|
56
55
|
'voiceModelId': value['voiceModelId'],
|
|
57
56
|
'voiceId': value['voiceId'],
|
|
58
|
-
'text': value['text'],
|
|
59
57
|
};
|
|
60
58
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -10924,9 +10924,6 @@
|
|
|
10924
10924
|
},
|
|
10925
10925
|
"voiceId" : {
|
|
10926
10926
|
"type" : "string"
|
|
10927
|
-
},
|
|
10928
|
-
"text" : {
|
|
10929
|
-
"type" : "string"
|
|
10930
10927
|
}
|
|
10931
10928
|
},
|
|
10932
10929
|
"required" : [ "voiceId", "voiceModelId", "voiceProvider" ],
|