@editframe/cli 0.12.0-beta.12 → 0.12.0-beta.16

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/dist/VERSION.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.12.0-beta.12";
1
+ export declare const VERSION = "0.12.0-beta.16";
package/dist/VERSION.js CHANGED
@@ -1,4 +1,4 @@
1
- const VERSION = "0.12.0-beta.12";
1
+ const VERSION = "0.12.0-beta.16";
2
2
  export {
3
3
  VERSION
4
4
  };
@@ -1,6 +1,6 @@
1
1
  import { program } from "commander";
2
2
  import { withSpinner } from "../utils/withSpinner.js";
3
- import { uploadUnprocessedFile, getIsobmffProcessProgress, getIsobmffProcessInfo, createUnprocessedFileFromPath, processIsobmffFile } from "@editframe/api";
3
+ import { uploadUnprocessedFile, getIsobmffProcessProgress, getIsobmffProcessInfo, createUnprocessedFileFromPath, processIsobmffFile } from "@editframe/api/node";
4
4
  import ora from "ora";
5
5
  import { getClient } from "../utils/index.js";
6
6
  program.command("process-file <file>").description("Upload a audio/video to Editframe for processing.").action(async (path) => {
@@ -18,8 +18,8 @@ export declare const RenderInfo: z.ZodObject<{
18
18
  efImage: string[];
19
19
  }>;
20
20
  }, "strip", z.ZodTypeAny, {
21
- width: number;
22
21
  height: number;
22
+ width: number;
23
23
  fps: number;
24
24
  assets: {
25
25
  efMedia: Record<string, any>;
@@ -28,8 +28,8 @@ export declare const RenderInfo: z.ZodObject<{
28
28
  };
29
29
  durationMs: number;
30
30
  }, {
31
- width: number;
32
31
  height: number;
32
+ width: number;
33
33
  fps: number;
34
34
  assets: {
35
35
  efMedia: Record<string, any>;
@@ -39,6 +39,8 @@ export declare class SyncTrack implements SubAssetSync<CreateISOBMFFTrackResult>
39
39
  disposition: Record<string, unknown>;
40
40
  initial_padding?: number | undefined;
41
41
  } | {
42
+ height: number;
43
+ width: number;
42
44
  index: number;
43
45
  codec_name: string;
44
46
  codec_long_name: string;
@@ -49,8 +51,6 @@ export declare class SyncTrack implements SubAssetSync<CreateISOBMFFTrackResult>
49
51
  avg_frame_rate: string;
50
52
  time_base: string;
51
53
  disposition: Record<string, unknown>;
52
- width: number;
53
- height: number;
54
54
  coded_width: number;
55
55
  coded_height: number;
56
56
  start_pts?: number | undefined;
@@ -3,7 +3,7 @@ type VideoPayload = {
3
3
  height: number;
4
4
  };
5
5
  export declare const validateVideoResolution: (rawPayload: VideoPayload) => Promise<{
6
- width: number;
7
6
  height: number;
7
+ width: number;
8
8
  }>;
9
9
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/cli",
3
- "version": "0.12.0-beta.12",
3
+ "version": "0.12.0-beta.16",
4
4
  "description": "Command line interface for EditFrame",
5
5
  "bin": {
6
6
  "editframe": "./dist/index.js"
@@ -23,10 +23,10 @@
23
23
  "vite-tsconfig-paths": "^4.3.2"
24
24
  },
25
25
  "dependencies": {
26
- "@editframe/api": "0.12.0-beta.12",
27
- "@editframe/assets": "0.12.0-beta.12",
28
- "@editframe/elements": "0.12.0-beta.12",
29
- "@editframe/vite-plugin": "0.12.0-beta.12",
26
+ "@editframe/api": "0.12.0-beta.16",
27
+ "@editframe/assets": "0.12.0-beta.16",
28
+ "@editframe/elements": "0.12.0-beta.16",
29
+ "@editframe/vite-plugin": "0.12.0-beta.16",
30
30
  "@inquirer/prompts": "^5.3.8",
31
31
  "axios": "^1.6.8",
32
32
  "chalk": "^5.3.0",
@@ -8,7 +8,7 @@ import {
8
8
  getIsobmffProcessProgress,
9
9
  processIsobmffFile,
10
10
  uploadUnprocessedFile,
11
- } from "@editframe/api";
11
+ } from "@editframe/api/node";
12
12
  import ora from "ora";
13
13
  import { getClient } from "../utils/index.ts";
14
14