@editframe/api 0.8.0-beta.9 → 0.9.0-beta.1
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.
|
@@ -26,6 +26,7 @@ export declare const CreateImageFilePayload: z.ZodObject<{
|
|
|
26
26
|
export interface CreateImageFileResult {
|
|
27
27
|
complete: boolean | null;
|
|
28
28
|
id: string;
|
|
29
|
+
assetId: string;
|
|
29
30
|
}
|
|
30
31
|
export declare const createImageFile: (client: Client, payload: z.infer<typeof CreateImageFilePayload>) => Promise<CreateImageFileResult>;
|
|
31
32
|
export declare const uploadImageFile: (client: Client, fileId: string, fileStream: Readable, fileSize: number) => Promise<void>;
|
|
@@ -14,6 +14,7 @@ export declare const CreateISOBMFFFilePayload: z.ZodObject<{
|
|
|
14
14
|
export interface CreateISOBMFFFileResult {
|
|
15
15
|
fragment_index_complete: boolean;
|
|
16
16
|
id: string;
|
|
17
|
+
assetId: string;
|
|
17
18
|
}
|
|
18
19
|
export declare const createISOBMFFFile: (client: Client, payload: z.infer<typeof CreateISOBMFFFilePayload>) => Promise<CreateISOBMFFFileResult>;
|
|
19
20
|
export declare const uploadFragmentIndex: (client: Client, fileId: string, fileStream: Readable, fileSize: number) => Promise<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-beta.1",
|
|
4
4
|
"description": "API functions for EditFrame",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"vite-tsconfig-paths": "^4.3.2"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@editframe/assets": "0.
|
|
31
|
+
"@editframe/assets": "0.9.0-beta.1",
|
|
32
32
|
"debug": "^4.3.5",
|
|
33
33
|
"jsonwebtoken": "^9.0.2",
|
|
34
34
|
"node-fetch": "^3.3.2",
|