@remotion/studio-shared 4.0.431 → 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 +6 -14
- package/dist/event-source-event.d.ts +2 -3
- package/dist/index.d.ts +1 -1
- package/dist/package-info.js +2 -2
- package/package.json +4 -4
package/dist/api-requests.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, PixelFormat, StillImageFormat, VideoImageFormat, X264Preset } from '@remotion/renderer';
|
|
2
2
|
import type { HardwareAccelerationOption } from '@remotion/renderer/client';
|
|
3
3
|
import type { _InternalTypes } from 'remotion';
|
|
4
|
+
import type { CanUpdateSequencePropStatus } from 'remotion';
|
|
4
5
|
import type { RecastCodemod, VisualControlChange } from './codemods';
|
|
5
6
|
import type { PackageManager } from './package-manager';
|
|
6
7
|
import type { ProjectInfo } from './project-info';
|
|
7
8
|
import type { RequiredChromiumOptions } from './render-job';
|
|
8
9
|
import type { EnumPath } from './stringify-default-props';
|
|
10
|
+
export type SequenceNodePath = Array<string | number>;
|
|
9
11
|
export type OpenInFileExplorerRequest = {
|
|
10
12
|
directory: string;
|
|
11
13
|
};
|
|
@@ -152,8 +154,7 @@ export type CanUpdateDefaultPropsResponse = {
|
|
|
152
154
|
};
|
|
153
155
|
export type CanUpdateSequencePropsRequest = {
|
|
154
156
|
fileName: string;
|
|
155
|
-
|
|
156
|
-
column: number;
|
|
157
|
+
nodePath: SequenceNodePath;
|
|
157
158
|
keys: string[];
|
|
158
159
|
};
|
|
159
160
|
export type SubscribeToSequencePropsRequest = {
|
|
@@ -166,31 +167,22 @@ export type SubscribeToSequencePropsRequest = {
|
|
|
166
167
|
export type SubscribeToSequencePropsResponse = CanUpdateSequencePropsResponse;
|
|
167
168
|
export type UnsubscribeFromSequencePropsRequest = {
|
|
168
169
|
fileName: string;
|
|
169
|
-
|
|
170
|
-
column: number;
|
|
170
|
+
nodePath: SequenceNodePath;
|
|
171
171
|
clientId: string;
|
|
172
172
|
};
|
|
173
|
-
export type CanUpdateSequencePropStatus = {
|
|
174
|
-
canUpdate: true;
|
|
175
|
-
codeValue: unknown;
|
|
176
|
-
} | {
|
|
177
|
-
canUpdate: false;
|
|
178
|
-
reason: 'computed';
|
|
179
|
-
};
|
|
180
173
|
export type CanUpdateSequencePropsResponse = {
|
|
181
174
|
canUpdate: true;
|
|
182
175
|
props: Record<string, CanUpdateSequencePropStatus>;
|
|
176
|
+
nodePath: SequenceNodePath;
|
|
183
177
|
} | {
|
|
184
178
|
canUpdate: false;
|
|
185
179
|
reason: string;
|
|
186
180
|
};
|
|
187
181
|
export type SaveSequencePropsRequest = {
|
|
188
182
|
fileName: string;
|
|
189
|
-
|
|
190
|
-
column: number;
|
|
183
|
+
nodePath: SequenceNodePath;
|
|
191
184
|
key: string;
|
|
192
185
|
value: string;
|
|
193
|
-
enumPaths: EnumPath[];
|
|
194
186
|
defaultValue: string | null;
|
|
195
187
|
};
|
|
196
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,
|
|
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,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.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
29
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
30
30
|
},
|