@purpleschool/ai-proxy 0.1.10 → 0.1.11
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/package.json +1 -1
- package/proto/ai-proxy.proto +6 -0
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -120,6 +120,9 @@ message VideoParams {
|
|
|
120
120
|
|
|
121
121
|
message VideoGenerationResponse {
|
|
122
122
|
string jobId = 1;
|
|
123
|
+
optional string externalId = 2;
|
|
124
|
+
optional string videoUrl = 3;
|
|
125
|
+
optional string error = 4;
|
|
123
126
|
}
|
|
124
127
|
|
|
125
128
|
// Video Editor
|
|
@@ -133,6 +136,9 @@ message VideoEditorRequest {
|
|
|
133
136
|
|
|
134
137
|
message VideoEditorResponse {
|
|
135
138
|
string jobId = 1;
|
|
139
|
+
optional string externalId = 2;
|
|
140
|
+
optional string videoUrl = 3;
|
|
141
|
+
optional string error = 4;
|
|
136
142
|
}
|
|
137
143
|
|
|
138
144
|
// Speech To Text
|