@editframe/api 0.15.0-beta.11 → 0.15.0-beta.13

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.
@@ -57,13 +57,13 @@ export interface CreateImageFileResult {
57
57
  /**
58
58
  * The md5 hash of the image file.
59
59
  */
60
- md5: string;
60
+ md5: string | null;
61
61
  }
62
62
  export interface LookupImageFileByMd5Result {
63
63
  complete: boolean | null;
64
64
  byte_size: number;
65
65
  id: string;
66
- md5: string;
66
+ md5: string | null;
67
67
  }
68
68
  export declare const createImageFile: (client: Client, payload: CreateImageFilePayload) => Promise<CreateImageFileResult>;
69
69
  export declare const uploadImageFile: (client: Client, uploadDetails: {
@@ -6,7 +6,7 @@ export interface IsobmffProcessInfoResult {
6
6
  completed_at: string | null;
7
7
  failed_at: string | null;
8
8
  isobmff_file_id: string | null;
9
- unprocessed_file_id: string;
9
+ unprocessed_file_id: string | null;
10
10
  }
11
11
  export declare const getIsobmffProcessProgress: (client: Client, id: string) => Promise<ProgressIterator>;
12
12
  export declare const getIsobmffProcessInfo: (client: Client, id: string) => Promise<IsobmffProcessInfoResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/api",
3
- "version": "0.15.0-beta.11",
3
+ "version": "0.15.0-beta.13",
4
4
  "description": "API functions for EditFrame",
5
5
  "exports": {
6
6
  ".": {
@@ -44,7 +44,7 @@
44
44
  "vite-plugin-dts": "^4.0.3"
45
45
  },
46
46
  "dependencies": {
47
- "@editframe/assets": "0.15.0-beta.11",
47
+ "@editframe/assets": "0.15.0-beta.13",
48
48
  "@vitejs/plugin-react": "^4.3.4",
49
49
  "vite-tsconfig-paths": "^4.3.2",
50
50
  "vite": "^5.4.11",
@@ -53,14 +53,14 @@ export interface CreateImageFileResult {
53
53
  /**
54
54
  * The md5 hash of the image file.
55
55
  */
56
- md5: string;
56
+ md5: string | null;
57
57
  }
58
58
 
59
59
  export interface LookupImageFileByMd5Result {
60
60
  complete: boolean | null;
61
61
  byte_size: number;
62
62
  id: string;
63
- md5: string;
63
+ md5: string | null;
64
64
  }
65
65
 
66
66
  export const createImageFile = async (
@@ -7,7 +7,7 @@ export interface IsobmffProcessInfoResult {
7
7
  completed_at: string | null;
8
8
  failed_at: string | null;
9
9
  isobmff_file_id: string | null;
10
- unprocessed_file_id: string;
10
+ unprocessed_file_id: string | null;
11
11
  }
12
12
 
13
13
  export const getIsobmffProcessProgress = async (client: Client, id: string) => {