@editframe/api 0.15.0-beta.10 → 0.15.0-beta.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/dist/resources/renders.d.ts +2 -2
- package/package.json +2 -2
- package/src/resources/renders.ts +2 -2
- package/types.json +1 -1
|
@@ -41,12 +41,12 @@ export interface CreateRenderPayload {
|
|
|
41
41
|
}
|
|
42
42
|
export interface CreateRenderResult {
|
|
43
43
|
id: string;
|
|
44
|
-
md5: string;
|
|
44
|
+
md5: string | null;
|
|
45
45
|
status: "complete" | "created" | "failed" | "pending" | "rendering" | string;
|
|
46
46
|
}
|
|
47
47
|
export interface LookupRenderByMd5Result {
|
|
48
48
|
id: string;
|
|
49
|
-
md5: string;
|
|
49
|
+
md5: string | null;
|
|
50
50
|
status: "complete" | "created" | "failed" | "pending" | "rendering" | string;
|
|
51
51
|
}
|
|
52
52
|
export declare const createRender: (client: Client, payload: CreateRenderPayload) => Promise<CreateRenderResult>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/api",
|
|
3
|
-
"version": "0.15.0-beta.
|
|
3
|
+
"version": "0.15.0-beta.11",
|
|
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.
|
|
47
|
+
"@editframe/assets": "0.15.0-beta.11",
|
|
48
48
|
"@vitejs/plugin-react": "^4.3.4",
|
|
49
49
|
"vite-tsconfig-paths": "^4.3.2",
|
|
50
50
|
"vite": "^5.4.11",
|
package/src/resources/renders.ts
CHANGED
|
@@ -41,13 +41,13 @@ assertTypesMatch<CreateRenderPayload, z.infer<typeof CreateRenderPayload>>(
|
|
|
41
41
|
|
|
42
42
|
export interface CreateRenderResult {
|
|
43
43
|
id: string;
|
|
44
|
-
md5: string;
|
|
44
|
+
md5: string | null;
|
|
45
45
|
status: "complete" | "created" | "failed" | "pending" | "rendering" | string;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
export interface LookupRenderByMd5Result {
|
|
49
49
|
id: string;
|
|
50
|
-
md5: string;
|
|
50
|
+
md5: string | null;
|
|
51
51
|
status: "complete" | "created" | "failed" | "pending" | "rendering" | string;
|
|
52
52
|
}
|
|
53
53
|
|