@purpleschool/ai-proxy 0.1.9 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/ai-proxy",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -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
@@ -140,7 +146,6 @@ message SpeechToTextRequest {
140
146
  string model = 1;
141
147
  string fileKey = 2;
142
148
  string fileUrl = 3;
143
- int32 durationInSeconds = 4;
144
149
  }
145
150
 
146
151
  message SpeechToTextResponse {