@remotion/renderer 4.0.504 → 4.0.506

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/client.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export { AvailableOptions, TypeOfOption } from './options';
2
+ export { defaultCodingAgentIds } from './options/default-coding-agent';
3
+ export type { DefaultCodingAgent } from './options/default-coding-agent';
2
4
  export { customEditorColumnNumberPlaceholder, customEditorLineNumberPlaceholder, customEditorTargetPathPlaceholder, defaultEditorIds, } from './options/default-editor';
3
5
  export type { BuiltInEditor, CustomEditor, DefaultEditor, } from './options/default-editor';
4
6
  export { HardwareAccelerationOption } from './options/hardware-acceleration';
@@ -1280,6 +1282,22 @@ export declare const BrowserSafeApis: {
1280
1282
  setConfig: (value: boolean) => void;
1281
1283
  id: "dark-mode";
1282
1284
  };
1285
+ defaultCodingAgentOption: {
1286
+ name: string;
1287
+ cliFlag: "coding-agent";
1288
+ description: () => import("react/jsx-runtime").JSX.Element;
1289
+ ssrName: null;
1290
+ docLink: string;
1291
+ type: "claude-code" | "codex" | "cursor" | "github-copilot" | null;
1292
+ getValue: ({ commandLine }: {
1293
+ commandLine: Record<string, unknown>;
1294
+ }) => {
1295
+ value: "claude-code" | "codex" | "cursor" | "github-copilot" | null;
1296
+ source: string;
1297
+ };
1298
+ setConfig(value: "claude-code" | "codex" | "cursor" | "github-copilot" | null): void;
1299
+ id: "coding-agent";
1300
+ };
1283
1301
  defaultEditorOption: {
1284
1302
  name: string;
1285
1303
  cliFlag: "editor";
package/dist/client.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BrowserSafeApis = exports.defaultEditorIds = exports.customEditorTargetPathPlaceholder = exports.customEditorLineNumberPlaceholder = exports.customEditorColumnNumberPlaceholder = void 0;
3
+ exports.BrowserSafeApis = exports.defaultEditorIds = exports.customEditorTargetPathPlaceholder = exports.customEditorLineNumberPlaceholder = exports.customEditorColumnNumberPlaceholder = exports.defaultCodingAgentIds = void 0;
4
4
  const no_react_1 = require("remotion/no-react");
5
5
  const TimeoutSettings_1 = require("./browser/TimeoutSettings");
6
6
  const codec_1 = require("./codec");
@@ -22,6 +22,8 @@ const video_codec_1 = require("./options/video-codec");
22
22
  const x264_preset_1 = require("./options/x264-preset");
23
23
  const pixel_format_1 = require("./pixel-format");
24
24
  const validate_output_filename_1 = require("./validate-output-filename");
25
+ const default_coding_agent_1 = require("./options/default-coding-agent");
26
+ Object.defineProperty(exports, "defaultCodingAgentIds", { enumerable: true, get: function () { return default_coding_agent_1.defaultCodingAgentIds; } });
25
27
  const default_editor_1 = require("./options/default-editor");
26
28
  Object.defineProperty(exports, "customEditorColumnNumberPlaceholder", { enumerable: true, get: function () { return default_editor_1.customEditorColumnNumberPlaceholder; } });
27
29
  Object.defineProperty(exports, "customEditorLineNumberPlaceholder", { enumerable: true, get: function () { return default_editor_1.customEditorLineNumberPlaceholder; } });