@remotion/studio-shared 4.0.432 → 4.0.433
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/api-requests.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { PackageManager } from './package-manager';
|
|
|
7
7
|
import type { ProjectInfo } from './project-info';
|
|
8
8
|
import type { RequiredChromiumOptions } from './render-job';
|
|
9
9
|
import type { EnumPath } from './stringify-default-props';
|
|
10
|
+
export type SequenceNodePath = Array<string | number>;
|
|
10
11
|
export type OpenInFileExplorerRequest = {
|
|
11
12
|
directory: string;
|
|
12
13
|
};
|
|
@@ -153,8 +154,7 @@ export type CanUpdateDefaultPropsResponse = {
|
|
|
153
154
|
};
|
|
154
155
|
export type CanUpdateSequencePropsRequest = {
|
|
155
156
|
fileName: string;
|
|
156
|
-
|
|
157
|
-
column: number;
|
|
157
|
+
nodePath: SequenceNodePath;
|
|
158
158
|
keys: string[];
|
|
159
159
|
};
|
|
160
160
|
export type SubscribeToSequencePropsRequest = {
|
|
@@ -167,24 +167,22 @@ export type SubscribeToSequencePropsRequest = {
|
|
|
167
167
|
export type SubscribeToSequencePropsResponse = CanUpdateSequencePropsResponse;
|
|
168
168
|
export type UnsubscribeFromSequencePropsRequest = {
|
|
169
169
|
fileName: string;
|
|
170
|
-
|
|
171
|
-
column: number;
|
|
170
|
+
nodePath: SequenceNodePath;
|
|
172
171
|
clientId: string;
|
|
173
172
|
};
|
|
174
173
|
export type CanUpdateSequencePropsResponse = {
|
|
175
174
|
canUpdate: true;
|
|
176
175
|
props: Record<string, CanUpdateSequencePropStatus>;
|
|
176
|
+
nodePath: SequenceNodePath;
|
|
177
177
|
} | {
|
|
178
178
|
canUpdate: false;
|
|
179
179
|
reason: string;
|
|
180
180
|
};
|
|
181
181
|
export type SaveSequencePropsRequest = {
|
|
182
182
|
fileName: string;
|
|
183
|
-
|
|
184
|
-
column: number;
|
|
183
|
+
nodePath: SequenceNodePath;
|
|
185
184
|
key: string;
|
|
186
185
|
value: string;
|
|
187
|
-
enumPaths: EnumPath[];
|
|
188
186
|
defaultValue: string | null;
|
|
189
187
|
};
|
|
190
188
|
export type SaveSequencePropsResponse = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { StaticFile } from 'remotion';
|
|
2
|
-
import type { CanUpdateSequencePropsResponse } from './api-requests';
|
|
2
|
+
import type { CanUpdateSequencePropsResponse, SequenceNodePath } from './api-requests';
|
|
3
3
|
import type { CompletedClientRender, RenderJob } from './render-job';
|
|
4
4
|
export type EventSourceEvent = {
|
|
5
5
|
type: 'new-input-props';
|
|
@@ -35,7 +35,6 @@ export type EventSourceEvent = {
|
|
|
35
35
|
} | {
|
|
36
36
|
type: 'sequence-props-updated';
|
|
37
37
|
fileName: string;
|
|
38
|
-
|
|
39
|
-
column: number;
|
|
38
|
+
nodePath: SequenceNodePath;
|
|
40
39
|
result: CanUpdateSequencePropsResponse;
|
|
41
40
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { splitAnsi, stripAnsi } from './ansi';
|
|
2
|
-
export { AddRenderRequest, ApiRoutes, ApplyCodemodRequest, ApplyCodemodResponse, ApplyVisualControlRequest, ApplyVisualControlResponse, CanUpdateDefaultPropsRequest, CanUpdateDefaultPropsResponse, CanUpdateSequencePropsRequest, CanUpdateSequencePropsResponse, CancelRenderRequest, SubscribeToSequencePropsRequest, SubscribeToSequencePropsResponse, UnsubscribeFromSequencePropsRequest, CancelRenderResponse, CopyStillToClipboardRequest, DeleteStaticFileRequest, DeleteStaticFileResponse, InstallPackageRequest, InstallPackageResponse, OpenInFileExplorerRequest, ProjectInfoRequest, ProjectInfoResponse, RemoveRenderRequest, RestartStudioRequest, RestartStudioResponse, SaveSequencePropsRequest, SaveSequencePropsResponse, SimpleDiff, SubscribeToFileExistenceRequest, SubscribeToFileExistenceResponse, UnsubscribeFromFileExistenceRequest, UpdateAvailableRequest, UpdateAvailableResponse, UpdateDefaultPropsRequest, UpdateDefaultPropsResponse, } from './api-requests';
|
|
2
|
+
export { AddRenderRequest, ApiRoutes, ApplyCodemodRequest, ApplyCodemodResponse, ApplyVisualControlRequest, ApplyVisualControlResponse, CanUpdateDefaultPropsRequest, CanUpdateDefaultPropsResponse, CanUpdateSequencePropsRequest, CanUpdateSequencePropsResponse, CancelRenderRequest, SubscribeToSequencePropsRequest, SubscribeToSequencePropsResponse, UnsubscribeFromSequencePropsRequest, CancelRenderResponse, CopyStillToClipboardRequest, DeleteStaticFileRequest, DeleteStaticFileResponse, InstallPackageRequest, InstallPackageResponse, OpenInFileExplorerRequest, ProjectInfoRequest, ProjectInfoResponse, RemoveRenderRequest, RestartStudioRequest, RestartStudioResponse, SaveSequencePropsRequest, SaveSequencePropsResponse, SequenceNodePath, SimpleDiff, SubscribeToFileExistenceRequest, SubscribeToFileExistenceResponse, UnsubscribeFromFileExistenceRequest, UpdateAvailableRequest, UpdateAvailableResponse, UpdateDefaultPropsRequest, UpdateDefaultPropsResponse, } from './api-requests';
|
|
3
3
|
export type { ApplyVisualControlCodemod, RecastCodemod } from './codemods';
|
|
4
4
|
export { DEFAULT_BUFFER_STATE_DELAY_IN_MILLISECONDS } from './default-buffer-state-delay-in-milliseconds';
|
|
5
5
|
export { EventSourceEvent } from './event-source-event';
|
package/dist/package-info.js
CHANGED
|
@@ -92,13 +92,13 @@ exports.packages = [
|
|
|
92
92
|
exports.extraPackages = [
|
|
93
93
|
{
|
|
94
94
|
name: 'mediabunny',
|
|
95
|
-
version: '1.
|
|
95
|
+
version: '1.37.0',
|
|
96
96
|
description: 'Multimedia library used by Remotion',
|
|
97
97
|
docsUrl: 'https://www.remotion.dev/docs/mediabunny/version',
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
name: '@mediabunny/ac3',
|
|
101
|
-
version: '1.
|
|
101
|
+
version: '1.37.0',
|
|
102
102
|
description: 'AC-3 and E-AC-3 audio codec support for Mediabunny',
|
|
103
103
|
docsUrl: 'https://www.remotion.dev/docs/mediabunny/formats#ac-3-and-e-ac-3',
|
|
104
104
|
},
|
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.433",
|
|
7
7
|
"description": "Internal package for shared objects between the Studio backend and frontend",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"remotion": "4.0.
|
|
23
|
+
"remotion": "4.0.433"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@remotion/renderer": "4.0.
|
|
27
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
26
|
+
"@remotion/renderer": "4.0.433",
|
|
27
|
+
"@remotion/eslint-config-internal": "4.0.433",
|
|
28
28
|
"eslint": "9.19.0",
|
|
29
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
29
|
+
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|