@remotion/studio-shared 4.0.439 → 4.0.440
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { StaticFile } from 'remotion';
|
|
2
2
|
import type { CanUpdateDefaultPropsResponse, CanUpdateSequencePropsResponse, SequenceNodePath } from './api-requests';
|
|
3
|
+
import type { HotMiddlewareMessage } from './hot-middleware';
|
|
3
4
|
import type { CompletedClientRender, RenderJob } from './render-job';
|
|
4
5
|
export type EventSourceEvent = {
|
|
5
6
|
type: 'new-input-props';
|
|
@@ -54,4 +55,7 @@ export type EventSourceEvent = {
|
|
|
54
55
|
value: unknown;
|
|
55
56
|
isUndefined: boolean;
|
|
56
57
|
}>;
|
|
58
|
+
} | {
|
|
59
|
+
type: 'hmr';
|
|
60
|
+
hmrEvent: HotMiddlewareMessage;
|
|
57
61
|
};
|
package/dist/hot-middleware.d.ts
CHANGED
|
@@ -13,11 +13,9 @@ export type HotMiddlewareMessage = {
|
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
15
|
export declare const hotMiddlewareOptions: {
|
|
16
|
-
path: string;
|
|
17
16
|
timeout: number;
|
|
18
17
|
reload: boolean;
|
|
19
18
|
warn: boolean;
|
|
20
|
-
heartbeat: number;
|
|
21
19
|
};
|
|
22
20
|
export type HotMiddlewareOptions = typeof hotMiddlewareOptions;
|
|
23
21
|
export type ModuleMap = {
|
package/dist/hot-middleware.js
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-shared"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio-shared",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.440",
|
|
7
7
|
"description": "Internal package for shared objects between the Studio backend and frontend",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"remotion": "4.0.
|
|
23
|
+
"remotion": "4.0.440"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@remotion/renderer": "4.0.
|
|
27
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
26
|
+
"@remotion/renderer": "4.0.440",
|
|
27
|
+
"@remotion/eslint-config-internal": "4.0.440",
|
|
28
28
|
"eslint": "9.19.0",
|
|
29
29
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
30
30
|
},
|