fal-endpoint-types 1.3.27 → 1.3.28
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/types/fal/endpoints/components.d.ts +0 -57
- package/types/fal/endpoints/schema.d.ts +2643 -3969
package/package.json
CHANGED
|
@@ -138,63 +138,6 @@ export interface VideoFormat {
|
|
|
138
138
|
video_codec: string;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
-
export interface VideoFile_1 {
|
|
142
|
-
/**
|
|
143
|
-
* Content Type
|
|
144
|
-
* @description The mime type of the file.
|
|
145
|
-
* @example image/png
|
|
146
|
-
*/
|
|
147
|
-
content_type?: string;
|
|
148
|
-
/**
|
|
149
|
-
* Duration
|
|
150
|
-
* @description The duration of the video
|
|
151
|
-
*/
|
|
152
|
-
duration?: number;
|
|
153
|
-
/**
|
|
154
|
-
* File Data
|
|
155
|
-
* Format: binary
|
|
156
|
-
* @description File data
|
|
157
|
-
*/
|
|
158
|
-
file_data?: string;
|
|
159
|
-
/**
|
|
160
|
-
* File Name
|
|
161
|
-
* @description The name of the file. It will be auto-generated if not provided.
|
|
162
|
-
* @example z9RV14K95DvU.png
|
|
163
|
-
*/
|
|
164
|
-
file_name?: string;
|
|
165
|
-
/**
|
|
166
|
-
* File Size
|
|
167
|
-
* @description The size of the file in bytes.
|
|
168
|
-
* @example 4404019
|
|
169
|
-
*/
|
|
170
|
-
file_size?: number;
|
|
171
|
-
/**
|
|
172
|
-
* Fps
|
|
173
|
-
* @description The FPS of the video
|
|
174
|
-
*/
|
|
175
|
-
fps?: number;
|
|
176
|
-
/**
|
|
177
|
-
* Height
|
|
178
|
-
* @description The height of the video
|
|
179
|
-
*/
|
|
180
|
-
height?: number;
|
|
181
|
-
/**
|
|
182
|
-
* Num Frames
|
|
183
|
-
* @description The number of frames in the video
|
|
184
|
-
*/
|
|
185
|
-
num_frames?: number;
|
|
186
|
-
/**
|
|
187
|
-
* Url
|
|
188
|
-
* @description The URL where the file can be downloaded from.
|
|
189
|
-
*/
|
|
190
|
-
url: string;
|
|
191
|
-
/**
|
|
192
|
-
* Width
|
|
193
|
-
* @description The width of the video
|
|
194
|
-
*/
|
|
195
|
-
width?: number;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
141
|
export interface VideoFile {
|
|
199
142
|
/**
|
|
200
143
|
* Content Type
|