@nodaro/shared 3.0.0 → 3.1.0

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/index.d.cts CHANGED
@@ -2804,7 +2804,26 @@ type OutputType = "image" | "video" | "audio" | "text" | "data";
2804
2804
  declare function getInputNodes<T extends GenericNode>(nodes: T[], curatedOnly?: boolean): T[];
2805
2805
  /** Get leaf/media-producing nodes that represent workflow outputs. */
2806
2806
  declare function getOutputNodes<T extends GenericNode>(nodes: T[], edges: GenericEdge[], curatedOnly?: boolean): T[];
2807
- /** Map node type to its output media type. */
2807
+ /**
2808
+ * Map node type to its output media type.
2809
+ *
2810
+ * The four literal sets above are read FIRST and win: they are the presentation
2811
+ * classifier's own opinion, including for dual-mode nodes whose default medium
2812
+ * is not their handle set (voice-changer and dubbing are audio here even though
2813
+ * they can emit video).
2814
+ *
2815
+ * Anything they do not name falls through to the producer vocabularies the
2816
+ * canvas validators and the orchestrator already maintain
2817
+ * (`packages/shared/src/producer-types.ts`). Those sets are what a new media
2818
+ * node MUST join for its outputs to connect at all, so deriving the tail from
2819
+ * them is what stops this map from silently drifting behind the node catalogue
2820
+ * — which it had (3D Render Pro, Generate Video, Generate Video Pro and a dozen
2821
+ * ffmpeg nodes all read as `"data"`, so a published app rendered them as a JSON
2822
+ * blob and `/v1` app schemas declared the wrong output type).
2823
+ *
2824
+ * `DYNAMIC_PRODUCER_TYPES` is deliberately NOT consulted: a node whose medium
2825
+ * is decided at run time has no static answer, and `"data"` is the honest one.
2826
+ */
2808
2827
  declare function getOutputType(nodeType: string | undefined): OutputType;
2809
2828
  /** Extract the result URL or text from a node's data. */
2810
2829
  declare function getNodeResult(nodeData: Record<string, unknown>): {
@@ -14306,6 +14325,885 @@ declare function scene3DSampleForFrame(track: Scene3DCameraTrackV1, frame: numbe
14306
14325
  */
14307
14326
  declare function parseScene3DCameraTrackJson(text: string): Scene3DParseResult<Scene3DCameraTrackV1>;
14308
14327
 
14328
+ /**
14329
+ * The `pro-3d-render` ("3D Render Pro") WIRE CONTRACT.
14330
+ *
14331
+ * ONE durable operation, three ways in. A `source` says WHERE the scene comes
14332
+ * from — a new brief, an existing revision, or a completed desktop export —
14333
+ * and the settled job carries BOTH halves of the result: the exact composition
14334
+ * (`scenePlan`) and the standard video field every downstream consumer already
14335
+ * reads (`videoUrl`).
14336
+ *
14337
+ * The `source` is a strict discriminated union rather than a bag of optional
14338
+ * fields, and that is the load-bearing decision here. "Prompt present" and
14339
+ * "revisionId present" are not two settings on one request: they select
14340
+ * different pipelines with different costs. A flat shape lets a caller send
14341
+ * both, or neither, and pushes the "what did they actually mean" decision into
14342
+ * whichever surface reads it last — which is how an existing scene silently
14343
+ * becomes a paid re-authoring run.
14344
+ *
14345
+ * The same union is what makes RENDER-ONLY expressible: `{kind:'scene'}` with
14346
+ * NO `editPrompt` means "export this revision", and its absence must survive
14347
+ * every hop unchanged. Nothing may helpfully substitute an empty string or
14348
+ * copy the node's brief into it — that converts a free export into an
14349
+ * authoring run the user never asked for.
14350
+ *
14351
+ * What lives here is only what a client needs to CALL the operation, QUOTE it
14352
+ * and READ its result. How the scene is planned, compiled, built, priced or
14353
+ * authorized is not part of this contract and is not described here.
14354
+ *
14355
+ * Deliberately NOT here:
14356
+ * - a model chooser. The planner is fixed and server-owned.
14357
+ * - a credit number. The cost is resolved server-side and returned by the
14358
+ * quote endpoint; a constant in a published package would be a wrong answer
14359
+ * shipped to every consumer (see `PRO3D_RENDER_CREDIT_ID`).
14360
+ */
14361
+
14362
+ /** Canvas/API/MCP node type. */
14363
+ declare const PRO3D_RENDER_NODE_TYPE = "pro-3d-render";
14364
+ /** Display name. One string, so every surface spells it the same way. */
14365
+ declare const PRO3D_RENDER_LABEL = "3D Render Pro";
14366
+ /**
14367
+ * The credit identifier the operation settles under.
14368
+ *
14369
+ * An IDENTIFIER, not a price: the number is operator/deployment configuration
14370
+ * (a `model_pricing` row), and the per-run ceiling comes from a quote. There is
14371
+ * deliberately no fallback constant — a flat default would underprice an
14372
+ * operation that plans, builds and renders, and "cheap by accident" is not a
14373
+ * failure mode you notice from the outside.
14374
+ */
14375
+ declare const PRO3D_RENDER_CREDIT_ID = "pro-3d-render";
14376
+ /**
14377
+ * Where the scene is built. `blender-local` is a paired desktop and is refused
14378
+ * unless the deployment both enables it and has an engine advertising it — an
14379
+ * unknown or unavailable engine is an error, never a downgrade to the cheaper
14380
+ * cloud path.
14381
+ */
14382
+ declare const PRO3D_RENDER_ENGINES: readonly ["blender-cloud", "blender-local"];
14383
+ type Pro3DRenderEngine = (typeof PRO3D_RENDER_ENGINES)[number];
14384
+ declare const PRO3D_RENDER_DEFAULT_ENGINE: Pro3DRenderEngine;
14385
+ /**
14386
+ * Render quality profiles.
14387
+ *
14388
+ * One today. A surface must advertise only what the installed engine reports
14389
+ * (`capabilities().pro.qualityProfiles`) rather than this list — offering a
14390
+ * profile the engine cannot serve is a run that fails after the user chose it.
14391
+ */
14392
+ declare const PRO3D_RENDER_QUALITY_PROFILES: readonly ["standard"];
14393
+ type Pro3DRenderQuality = (typeof PRO3D_RENDER_QUALITY_PROFILES)[number];
14394
+ declare const PRO3D_RENDER_DEFAULT_QUALITY: Pro3DRenderQuality;
14395
+ /** Material/lighting treatment. Clay is the movement-reference default. */
14396
+ declare const PRO3D_RENDER_STYLES: readonly ["clay"];
14397
+ type Pro3DRenderStyle = (typeof PRO3D_RENDER_STYLES)[number];
14398
+ declare const PRO3D_RENDER_DEFAULT_STYLE: Pro3DRenderStyle;
14399
+ /**
14400
+ * The correction budget: how many repair passes the engine may spend after its
14401
+ * first attempt. Displayed to the user because each pass is paid work.
14402
+ */
14403
+ declare const PRO3D_RENDER_MIN_REPAIR_PASSES = 0;
14404
+ declare const PRO3D_RENDER_MAX_REPAIR_PASSES = 2;
14405
+ declare const PRO3D_RENDER_DEFAULT_REPAIR_PASSES = 2;
14406
+ /**
14407
+ * Aspect ratios the node authors at.
14408
+ *
14409
+ * `21:9` is not decoration: the acceptance fixture is a 30-second 21:9 scene,
14410
+ * so a set that omitted it could not express the case the feature is measured
14411
+ * against. Its canonical pixel pair is the contract's explicitly supported
14412
+ * 1680×720 (see `ASPECT_RATIO_DIMENSIONS`).
14413
+ */
14414
+ declare const PRO3D_RENDER_ASPECT_RATIOS: readonly ["16:9", "9:16", "1:1", "4:5", "21:9"];
14415
+ type Pro3DRenderAspectRatio = (typeof PRO3D_RENDER_ASPECT_RATIOS)[number];
14416
+ /** Same prompt ceiling the Basic authoring routes enforce. */
14417
+ declare const PRO3D_RENDER_PROMPT_MAX = 8000;
14418
+ /**
14419
+ * Request bounds shared by every ingress (HTTP route, orchestrator, MCP, SDK).
14420
+ *
14421
+ * Timing/reference limits reuse the Basic authoring limits verbatim rather
14422
+ * than declaring a second set: the two nodes describe the same kind of scene,
14423
+ * and two drifting ceilings is how one surface starts accepting what another
14424
+ * refuses.
14425
+ */
14426
+ declare const PRO3D_RENDER_LIMITS: {
14427
+ readonly promptMax: 8000;
14428
+ readonly editPromptMax: 8000;
14429
+ readonly minDurationSeconds: 1;
14430
+ readonly maxDurationSeconds: 60;
14431
+ readonly minFps: 15;
14432
+ readonly maxFps: 60;
14433
+ readonly maxReferences: 8;
14434
+ /** Opaque ids the caller echoes back (quote, export, connection). */
14435
+ readonly maxIdLength: 200;
14436
+ /** `Idempotency-Key` bounds — the platform's floor, with a ceiling so an
14437
+ * unbounded header can never reach a lookup or a database column. */
14438
+ readonly minIdempotencyKeyLength: 8;
14439
+ readonly maxIdempotencyKeyLength: 255;
14440
+ };
14441
+ declare const PRO3D_RENDER_SOURCE_KINDS: readonly ["prompt", "scene", "local-export"];
14442
+ type Pro3DRenderSourceKind = (typeof PRO3D_RENDER_SOURCE_KINDS)[number];
14443
+ /** A new scene, authored from a brief plus optional image/video references. */
14444
+ interface Pro3DRenderPromptSource {
14445
+ kind: "prompt";
14446
+ prompt: string;
14447
+ references?: readonly Scene3DReference[];
14448
+ }
14449
+ /**
14450
+ * An existing immutable revision.
14451
+ *
14452
+ * `editPrompt` ABSENT is the render-only path — export this revision, spend no
14453
+ * authoring or build credits. Its absence is meaningful and must be preserved
14454
+ * verbatim; an empty string is not the same request.
14455
+ *
14456
+ * Retained revisions are authorized through their current scene permissions.
14457
+ * `sourceJobId` locates Basic scenes stored only in job history; it is required
14458
+ * for that source, but optional for retained scenes (including manual edits).
14459
+ */
14460
+ interface Pro3DRenderSceneSource {
14461
+ kind: "scene";
14462
+ revisionId: string;
14463
+ sourceJobId?: string;
14464
+ editPrompt?: string;
14465
+ }
14466
+ /** A completed export from a paired desktop Blender. */
14467
+ interface Pro3DRenderLocalExportSource {
14468
+ kind: "local-export";
14469
+ exportId: string;
14470
+ connectionId: string;
14471
+ }
14472
+ type Pro3DRenderSource = Pro3DRenderPromptSource | Pro3DRenderSceneSource | Pro3DRenderLocalExportSource;
14473
+ /** True when this source exports an existing revision without re-authoring it. */
14474
+ declare function isPro3DRenderRenderOnly(source: Pro3DRenderSource): boolean;
14475
+ /**
14476
+ * Which scene-schema version a source PRODUCES, or `null` when only the server
14477
+ * can know.
14478
+ *
14479
+ * A `prompt` or `local-export` source always mints a fresh v2 manifest, so a
14480
+ * client that cannot read v2 is refusable for free, before any work. A `scene`
14481
+ * source inherits whatever version the named revision already is — the host
14482
+ * does not resolve revisions, so demanding v2 there would refuse a perfectly
14483
+ * renderable retained v1 scene.
14484
+ */
14485
+ declare function pro3DRenderProducedSchemaVersion(source: Pro3DRenderSource): number | null;
14486
+ /** One priced component of a quote. Display copy, not economics. */
14487
+ interface Pro3DRenderQuoteLine {
14488
+ code: string;
14489
+ label: string;
14490
+ credits: number;
14491
+ }
14492
+ /**
14493
+ * The paired quote's answer.
14494
+ *
14495
+ * `maxCredits` is a CEILING, not a charge: quoting reserves nothing and spends
14496
+ * nothing. `normalizedInputHash` is what run admission re-checks, so a body
14497
+ * edited between quote and run is refused rather than executed at a price it
14498
+ * was never quoted for.
14499
+ */
14500
+ interface Pro3DRenderQuote {
14501
+ quoteId: string;
14502
+ /** ISO-8601. After this the quote is stale and run answers "quote again". */
14503
+ expiresAt: string;
14504
+ maxCredits: number;
14505
+ breakdown: Pro3DRenderQuoteLine[];
14506
+ pricingVersion: string;
14507
+ capabilitiesVersion: string;
14508
+ normalizedInputHash: string;
14509
+ }
14510
+ declare const pro3DRenderQuoteSchema: z.ZodObject<{
14511
+ quoteId: z.ZodString;
14512
+ expiresAt: z.ZodString;
14513
+ maxCredits: z.ZodNumber;
14514
+ breakdown: z.ZodArray<z.ZodObject<{
14515
+ code: z.ZodString;
14516
+ label: z.ZodString;
14517
+ credits: z.ZodNumber;
14518
+ }, z.core.$loose>>;
14519
+ pricingVersion: z.ZodString;
14520
+ capabilitiesVersion: z.ZodString;
14521
+ normalizedInputHash: z.ZodString;
14522
+ }, z.core.$loose>;
14523
+ declare function isPro3DRenderQuote(value: unknown): value is Pro3DRenderQuote;
14524
+ /**
14525
+ * What this deployment can actually serve.
14526
+ *
14527
+ * Every surface that offers a control reads it from here rather than from the
14528
+ * vocabularies above: the constants say what the CONTRACT can express, this
14529
+ * says what the INSTALLED engine will accept.
14530
+ */
14531
+ interface Pro3DRenderCapabilities {
14532
+ available: boolean;
14533
+ engines: Pro3DRenderEngine[];
14534
+ qualityProfiles: Pro3DRenderQuality[];
14535
+ styles: Pro3DRenderStyle[];
14536
+ aspectRatios: Pro3DRenderAspectRatio[];
14537
+ maxRepairPasses: number;
14538
+ }
14539
+ interface Pro3DRenderValidationWarning {
14540
+ code: string;
14541
+ message: string;
14542
+ shotId?: string;
14543
+ }
14544
+ interface Pro3DRenderResultMetadata {
14545
+ width: number;
14546
+ height: number;
14547
+ fps: number;
14548
+ frames: number;
14549
+ duration: number;
14550
+ }
14551
+ /**
14552
+ * The completed job's `output_data`.
14553
+ *
14554
+ * `videoUrl` is the platform's existing resolved-video field (the contract's
14555
+ * `resultUrl` mapped onto the envelope this platform already has), so the node
14556
+ * connects to every existing video consumer without a second video result type
14557
+ * producer validators cannot parse. `scenePlan` + `sceneRevisionId` are the
14558
+ * exact revision that video was rendered from, so a later render-only re-run
14559
+ * costs no authoring.
14560
+ *
14561
+ * Everything else is what the spec requires a caller to be able to act on: the
14562
+ * poster to show before playback, the validation report to read warnings from,
14563
+ * the renderer/metadata to check the export against a downstream model's
14564
+ * limits, and the optional source artifact to offer as a download.
14565
+ */
14566
+ interface Pro3DRenderJobOutput {
14567
+ videoUrl: string;
14568
+ scenePlan: Scene3DPlan;
14569
+ sceneRevisionId: string;
14570
+ posterAssetId: string;
14571
+ /** Present when an editable native source was retained for this revision. */
14572
+ sourceArtifactId?: string;
14573
+ validation: {
14574
+ status: "passed";
14575
+ reportAssetId: string;
14576
+ warnings: Pro3DRenderValidationWarning[];
14577
+ };
14578
+ renderer: string;
14579
+ metadata: Pro3DRenderResultMetadata;
14580
+ /** Short, user-safe note about what this revision contains. Never diagnostics. */
14581
+ changeSummary?: string;
14582
+ }
14583
+ /**
14584
+ * Reader-side schema.
14585
+ *
14586
+ * Passthrough on purpose: a job row may carry additive metadata a client of
14587
+ * this version has never heard of, and refusing the whole result over an
14588
+ * unknown key would turn an additive server change into a client outage.
14589
+ *
14590
+ * The required fields are required because the contract makes them so — this
14591
+ * is what a COMPLETE result looks like. Nothing in the platform fabricates
14592
+ * them to satisfy the schema; a runtime that has not produced them yet simply
14593
+ * does not parse as complete, which is the honest answer.
14594
+ */
14595
+ declare const pro3DRenderJobOutputSchema: z.ZodObject<{
14596
+ videoUrl: z.ZodString;
14597
+ scenePlan: z.ZodDiscriminatedUnion<[z.ZodObject<{
14598
+ planType: z.ZodLiteral<"3d-scene">;
14599
+ schemaVersion: z.ZodLiteral<1>;
14600
+ revisionId: z.ZodUUID;
14601
+ parentRevisionId: z.ZodOptional<z.ZodUUID>;
14602
+ width: z.ZodNumber;
14603
+ height: z.ZodNumber;
14604
+ fps: z.ZodNumber;
14605
+ durationInFrames: z.ZodNumber;
14606
+ backgroundColor: z.ZodString;
14607
+ camera: z.ZodObject<{
14608
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14609
+ target: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14610
+ focalLengthMm: z.ZodNumber;
14611
+ sensorWidthMm: z.ZodDefault<z.ZodNumber>;
14612
+ keyframes: z.ZodOptional<z.ZodArray<z.ZodObject<{
14613
+ frame: z.ZodNumber;
14614
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14615
+ target: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14616
+ focalLengthMm: z.ZodOptional<z.ZodNumber>;
14617
+ easing: z.ZodOptional<z.ZodEnum<{
14618
+ linear: "linear";
14619
+ easeInOut: "easeInOut";
14620
+ }>>;
14621
+ }, z.core.$strict>>>;
14622
+ }, z.core.$strict>;
14623
+ objects: z.ZodArray<z.ZodObject<{
14624
+ id: z.ZodString;
14625
+ name: z.ZodString;
14626
+ primitive: z.ZodEnum<{
14627
+ group: "group";
14628
+ box: "box";
14629
+ sphere: "sphere";
14630
+ cylinder: "cylinder";
14631
+ cone: "cone";
14632
+ plane: "plane";
14633
+ capsule: "capsule";
14634
+ }>;
14635
+ parentId: z.ZodOptional<z.ZodString>;
14636
+ dimensions: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14637
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14638
+ rotation: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14639
+ scale: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14640
+ color: z.ZodString;
14641
+ keyframes: z.ZodOptional<z.ZodArray<z.ZodObject<{
14642
+ frame: z.ZodNumber;
14643
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14644
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14645
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14646
+ easing: z.ZodOptional<z.ZodEnum<{
14647
+ linear: "linear";
14648
+ easeInOut: "easeInOut";
14649
+ }>>;
14650
+ }, z.core.$strict>>>;
14651
+ }, z.core.$strict>>;
14652
+ lighting: z.ZodObject<{
14653
+ ambientIntensity: z.ZodNumber;
14654
+ keyIntensity: z.ZodNumber;
14655
+ keyPosition: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14656
+ }, z.core.$strict>;
14657
+ references: z.ZodOptional<z.ZodArray<z.ZodObject<{
14658
+ id: z.ZodString;
14659
+ url: z.ZodString;
14660
+ kind: z.ZodEnum<{
14661
+ image: "image";
14662
+ video: "video";
14663
+ }>;
14664
+ role: z.ZodEnum<{
14665
+ motion: "motion";
14666
+ layout: "layout";
14667
+ appearance: "appearance";
14668
+ }>;
14669
+ objectId: z.ZodOptional<z.ZodString>;
14670
+ startSeconds: z.ZodOptional<z.ZodNumber>;
14671
+ endSeconds: z.ZodOptional<z.ZodNumber>;
14672
+ }, z.core.$strict>>>;
14673
+ }, z.core.$strict>, z.ZodObject<{
14674
+ planType: z.ZodLiteral<"3d-scene">;
14675
+ schemaVersion: z.ZodLiteral<2>;
14676
+ revisionId: z.ZodUUID;
14677
+ parentRevisionId: z.ZodOptional<z.ZodUUID>;
14678
+ width: z.ZodNumber;
14679
+ height: z.ZodNumber;
14680
+ fps: z.ZodNumber;
14681
+ durationInFrames: z.ZodNumber;
14682
+ units: z.ZodLiteral<"meters">;
14683
+ upAxis: z.ZodLiteral<"Y">;
14684
+ handedness: z.ZodLiteral<"right">;
14685
+ objects: z.ZodArray<z.ZodObject<{
14686
+ id: z.ZodString;
14687
+ name: z.ZodString;
14688
+ parentId: z.ZodOptional<z.ZodString>;
14689
+ role: z.ZodOptional<z.ZodEnum<{
14690
+ other: "other";
14691
+ person: "person";
14692
+ vehicle: "vehicle";
14693
+ prop: "prop";
14694
+ environment: "environment";
14695
+ }>>;
14696
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14697
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14698
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14699
+ identityColor: z.ZodOptional<z.ZodString>;
14700
+ anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
14701
+ name: z.ZodString;
14702
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14703
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14704
+ }, z.core.$strict>>>;
14705
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<{
14706
+ transform: "transform";
14707
+ color: "color";
14708
+ visibility: "visibility";
14709
+ }>>>;
14710
+ locks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
14711
+ transform: "transform";
14712
+ color: "color";
14713
+ visibility: "visibility";
14714
+ }>>>;
14715
+ materialBindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
14716
+ role: z.ZodString;
14717
+ materialName: z.ZodString;
14718
+ color: z.ZodOptional<z.ZodString>;
14719
+ roughness: z.ZodOptional<z.ZodNumber>;
14720
+ }, z.core.$strict>>>;
14721
+ visual: z.ZodDiscriminatedUnion<[z.ZodObject<{
14722
+ kind: z.ZodLiteral<"group">;
14723
+ }, z.core.$strict>, z.ZodObject<{
14724
+ kind: z.ZodLiteral<"primitive">;
14725
+ primitive: z.ZodEnum<{
14726
+ box: "box";
14727
+ sphere: "sphere";
14728
+ cylinder: "cylinder";
14729
+ cone: "cone";
14730
+ plane: "plane";
14731
+ capsule: "capsule";
14732
+ }>;
14733
+ dimensions: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14734
+ color: z.ZodString;
14735
+ }, z.core.$strict>, z.ZodObject<{
14736
+ kind: z.ZodLiteral<"asset">;
14737
+ assetId: z.ZodString;
14738
+ rootNodeId: z.ZodString;
14739
+ animation: z.ZodOptional<z.ZodObject<{
14740
+ clipName: z.ZodString;
14741
+ startFrame: z.ZodNumber;
14742
+ endFrameExclusive: z.ZodNumber;
14743
+ loop: z.ZodOptional<z.ZodBoolean>;
14744
+ }, z.core.$strict>>;
14745
+ }, z.core.$strict>], "kind">;
14746
+ }, z.core.$strict>>;
14747
+ assets: z.ZodArray<z.ZodObject<{
14748
+ assetId: z.ZodString;
14749
+ kind: z.ZodEnum<{
14750
+ glb: "glb";
14751
+ "camera-track-json": "camera-track-json";
14752
+ poster: "poster";
14753
+ "validation-report": "validation-report";
14754
+ "blend-source": "blend-source";
14755
+ }>;
14756
+ role: z.ZodEnum<{
14757
+ source: "source";
14758
+ poster: "poster";
14759
+ "validation-report": "validation-report";
14760
+ "scene-geometry": "scene-geometry";
14761
+ "entity-geometry": "entity-geometry";
14762
+ "camera-track": "camera-track";
14763
+ }>;
14764
+ byteLength: z.ZodNumber;
14765
+ sha256: z.ZodString;
14766
+ originRevisionId: z.ZodOptional<z.ZodUUID>;
14767
+ }, z.core.$strict>>;
14768
+ cameraTrackAssetId: z.ZodString;
14769
+ shots: z.ZodArray<z.ZodObject<{
14770
+ id: z.ZodString;
14771
+ startFrame: z.ZodNumber;
14772
+ endFrameExclusive: z.ZodNumber;
14773
+ label: z.ZodOptional<z.ZodString>;
14774
+ subjectEntityIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
14775
+ foregroundEntityIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
14776
+ }, z.core.$strict>>;
14777
+ lighting: z.ZodObject<{
14778
+ preset: z.ZodEnum<{
14779
+ "clay-studio-v1": "clay-studio-v1";
14780
+ }>;
14781
+ ambientIntensity: z.ZodNumber;
14782
+ keyIntensity: z.ZodNumber;
14783
+ keyPosition: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14784
+ }, z.core.$strict>;
14785
+ backgroundColor: z.ZodString;
14786
+ references: z.ZodOptional<z.ZodArray<z.ZodObject<{
14787
+ id: z.ZodString;
14788
+ url: z.ZodString;
14789
+ kind: z.ZodEnum<{
14790
+ image: "image";
14791
+ video: "video";
14792
+ }>;
14793
+ role: z.ZodEnum<{
14794
+ motion: "motion";
14795
+ layout: "layout";
14796
+ appearance: "appearance";
14797
+ }>;
14798
+ objectId: z.ZodOptional<z.ZodString>;
14799
+ startSeconds: z.ZodOptional<z.ZodNumber>;
14800
+ endSeconds: z.ZodOptional<z.ZodNumber>;
14801
+ }, z.core.$strict>>>;
14802
+ overrides: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
14803
+ kind: z.ZodLiteral<"entity-transform">;
14804
+ entityId: z.ZodString;
14805
+ space: z.ZodEnum<{
14806
+ local: "local";
14807
+ world: "world";
14808
+ }>;
14809
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14810
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14811
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14812
+ id: z.ZodString;
14813
+ sourceRevisionId: z.ZodUUID;
14814
+ sourceContentHash: z.ZodString;
14815
+ operationVersion: z.ZodNumber;
14816
+ }, z.core.$strict>, z.ZodObject<{
14817
+ kind: z.ZodLiteral<"entity-color">;
14818
+ entityId: z.ZodString;
14819
+ materialRole: z.ZodString;
14820
+ color: z.ZodString;
14821
+ id: z.ZodString;
14822
+ sourceRevisionId: z.ZodUUID;
14823
+ sourceContentHash: z.ZodString;
14824
+ operationVersion: z.ZodNumber;
14825
+ }, z.core.$strict>, z.ZodObject<{
14826
+ kind: z.ZodLiteral<"entity-visibility">;
14827
+ entityId: z.ZodString;
14828
+ visible: z.ZodBoolean;
14829
+ id: z.ZodString;
14830
+ sourceRevisionId: z.ZodUUID;
14831
+ sourceContentHash: z.ZodString;
14832
+ operationVersion: z.ZodNumber;
14833
+ }, z.core.$strict>, z.ZodObject<{
14834
+ kind: z.ZodLiteral<"camera-shot-offset">;
14835
+ shotId: z.ZodString;
14836
+ positionOffset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14837
+ targetOffset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14838
+ id: z.ZodString;
14839
+ sourceRevisionId: z.ZodUUID;
14840
+ sourceContentHash: z.ZodString;
14841
+ operationVersion: z.ZodNumber;
14842
+ }, z.core.$strict>], "kind">>>;
14843
+ provenance: z.ZodObject<{
14844
+ engine: z.ZodString;
14845
+ engineVersion: z.ZodString;
14846
+ recipeVersion: z.ZodString;
14847
+ compilerVersion: z.ZodString;
14848
+ exporterVersion: z.ZodString;
14849
+ rendererVersion: z.ZodString;
14850
+ sourceRevisionId: z.ZodOptional<z.ZodUUID>;
14851
+ sourceArtifactId: z.ZodOptional<z.ZodString>;
14852
+ contentHash: z.ZodString;
14853
+ }, z.core.$strict>;
14854
+ }, z.core.$strict>], "schemaVersion">;
14855
+ sceneRevisionId: z.ZodString;
14856
+ posterAssetId: z.ZodString;
14857
+ sourceArtifactId: z.ZodOptional<z.ZodString>;
14858
+ validation: z.ZodObject<{
14859
+ status: z.ZodLiteral<"passed">;
14860
+ reportAssetId: z.ZodString;
14861
+ warnings: z.ZodArray<z.ZodObject<{
14862
+ code: z.ZodString;
14863
+ message: z.ZodString;
14864
+ shotId: z.ZodOptional<z.ZodString>;
14865
+ }, z.core.$loose>>;
14866
+ }, z.core.$loose>;
14867
+ renderer: z.ZodString;
14868
+ metadata: z.ZodObject<{
14869
+ width: z.ZodNumber;
14870
+ height: z.ZodNumber;
14871
+ fps: z.ZodNumber;
14872
+ frames: z.ZodNumber;
14873
+ duration: z.ZodNumber;
14874
+ }, z.core.$loose>;
14875
+ changeSummary: z.ZodOptional<z.ZodString>;
14876
+ }, z.core.$loose>;
14877
+ declare function isPro3DRenderJobOutput(value: unknown): value is Pro3DRenderJobOutput;
14878
+ /**
14879
+ * The two fields every EXECUTION SURFACE must be able to resolve, whatever
14880
+ * else a runtime does or does not attach yet.
14881
+ *
14882
+ * Separate from the full reader above on purpose: canvas wiring, the DAG
14883
+ * extractors and the render-only re-run need "is there a video and a scene
14884
+ * here", and gating those on complete metadata would blank a node over a
14885
+ * missing poster id.
14886
+ */
14887
+ declare const pro3DRenderCoreOutputSchema: z.ZodObject<{
14888
+ videoUrl: z.ZodString;
14889
+ scenePlan: z.ZodDiscriminatedUnion<[z.ZodObject<{
14890
+ planType: z.ZodLiteral<"3d-scene">;
14891
+ schemaVersion: z.ZodLiteral<1>;
14892
+ revisionId: z.ZodUUID;
14893
+ parentRevisionId: z.ZodOptional<z.ZodUUID>;
14894
+ width: z.ZodNumber;
14895
+ height: z.ZodNumber;
14896
+ fps: z.ZodNumber;
14897
+ durationInFrames: z.ZodNumber;
14898
+ backgroundColor: z.ZodString;
14899
+ camera: z.ZodObject<{
14900
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14901
+ target: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14902
+ focalLengthMm: z.ZodNumber;
14903
+ sensorWidthMm: z.ZodDefault<z.ZodNumber>;
14904
+ keyframes: z.ZodOptional<z.ZodArray<z.ZodObject<{
14905
+ frame: z.ZodNumber;
14906
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14907
+ target: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14908
+ focalLengthMm: z.ZodOptional<z.ZodNumber>;
14909
+ easing: z.ZodOptional<z.ZodEnum<{
14910
+ linear: "linear";
14911
+ easeInOut: "easeInOut";
14912
+ }>>;
14913
+ }, z.core.$strict>>>;
14914
+ }, z.core.$strict>;
14915
+ objects: z.ZodArray<z.ZodObject<{
14916
+ id: z.ZodString;
14917
+ name: z.ZodString;
14918
+ primitive: z.ZodEnum<{
14919
+ group: "group";
14920
+ box: "box";
14921
+ sphere: "sphere";
14922
+ cylinder: "cylinder";
14923
+ cone: "cone";
14924
+ plane: "plane";
14925
+ capsule: "capsule";
14926
+ }>;
14927
+ parentId: z.ZodOptional<z.ZodString>;
14928
+ dimensions: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14929
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14930
+ rotation: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14931
+ scale: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14932
+ color: z.ZodString;
14933
+ keyframes: z.ZodOptional<z.ZodArray<z.ZodObject<{
14934
+ frame: z.ZodNumber;
14935
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14936
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14937
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14938
+ easing: z.ZodOptional<z.ZodEnum<{
14939
+ linear: "linear";
14940
+ easeInOut: "easeInOut";
14941
+ }>>;
14942
+ }, z.core.$strict>>>;
14943
+ }, z.core.$strict>>;
14944
+ lighting: z.ZodObject<{
14945
+ ambientIntensity: z.ZodNumber;
14946
+ keyIntensity: z.ZodNumber;
14947
+ keyPosition: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14948
+ }, z.core.$strict>;
14949
+ references: z.ZodOptional<z.ZodArray<z.ZodObject<{
14950
+ id: z.ZodString;
14951
+ url: z.ZodString;
14952
+ kind: z.ZodEnum<{
14953
+ image: "image";
14954
+ video: "video";
14955
+ }>;
14956
+ role: z.ZodEnum<{
14957
+ motion: "motion";
14958
+ layout: "layout";
14959
+ appearance: "appearance";
14960
+ }>;
14961
+ objectId: z.ZodOptional<z.ZodString>;
14962
+ startSeconds: z.ZodOptional<z.ZodNumber>;
14963
+ endSeconds: z.ZodOptional<z.ZodNumber>;
14964
+ }, z.core.$strict>>>;
14965
+ }, z.core.$strict>, z.ZodObject<{
14966
+ planType: z.ZodLiteral<"3d-scene">;
14967
+ schemaVersion: z.ZodLiteral<2>;
14968
+ revisionId: z.ZodUUID;
14969
+ parentRevisionId: z.ZodOptional<z.ZodUUID>;
14970
+ width: z.ZodNumber;
14971
+ height: z.ZodNumber;
14972
+ fps: z.ZodNumber;
14973
+ durationInFrames: z.ZodNumber;
14974
+ units: z.ZodLiteral<"meters">;
14975
+ upAxis: z.ZodLiteral<"Y">;
14976
+ handedness: z.ZodLiteral<"right">;
14977
+ objects: z.ZodArray<z.ZodObject<{
14978
+ id: z.ZodString;
14979
+ name: z.ZodString;
14980
+ parentId: z.ZodOptional<z.ZodString>;
14981
+ role: z.ZodOptional<z.ZodEnum<{
14982
+ other: "other";
14983
+ person: "person";
14984
+ vehicle: "vehicle";
14985
+ prop: "prop";
14986
+ environment: "environment";
14987
+ }>>;
14988
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14989
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14990
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14991
+ identityColor: z.ZodOptional<z.ZodString>;
14992
+ anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
14993
+ name: z.ZodString;
14994
+ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
14995
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
14996
+ }, z.core.$strict>>>;
14997
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<{
14998
+ transform: "transform";
14999
+ color: "color";
15000
+ visibility: "visibility";
15001
+ }>>>;
15002
+ locks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
15003
+ transform: "transform";
15004
+ color: "color";
15005
+ visibility: "visibility";
15006
+ }>>>;
15007
+ materialBindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
15008
+ role: z.ZodString;
15009
+ materialName: z.ZodString;
15010
+ color: z.ZodOptional<z.ZodString>;
15011
+ roughness: z.ZodOptional<z.ZodNumber>;
15012
+ }, z.core.$strict>>>;
15013
+ visual: z.ZodDiscriminatedUnion<[z.ZodObject<{
15014
+ kind: z.ZodLiteral<"group">;
15015
+ }, z.core.$strict>, z.ZodObject<{
15016
+ kind: z.ZodLiteral<"primitive">;
15017
+ primitive: z.ZodEnum<{
15018
+ box: "box";
15019
+ sphere: "sphere";
15020
+ cylinder: "cylinder";
15021
+ cone: "cone";
15022
+ plane: "plane";
15023
+ capsule: "capsule";
15024
+ }>;
15025
+ dimensions: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
15026
+ color: z.ZodString;
15027
+ }, z.core.$strict>, z.ZodObject<{
15028
+ kind: z.ZodLiteral<"asset">;
15029
+ assetId: z.ZodString;
15030
+ rootNodeId: z.ZodString;
15031
+ animation: z.ZodOptional<z.ZodObject<{
15032
+ clipName: z.ZodString;
15033
+ startFrame: z.ZodNumber;
15034
+ endFrameExclusive: z.ZodNumber;
15035
+ loop: z.ZodOptional<z.ZodBoolean>;
15036
+ }, z.core.$strict>>;
15037
+ }, z.core.$strict>], "kind">;
15038
+ }, z.core.$strict>>;
15039
+ assets: z.ZodArray<z.ZodObject<{
15040
+ assetId: z.ZodString;
15041
+ kind: z.ZodEnum<{
15042
+ glb: "glb";
15043
+ "camera-track-json": "camera-track-json";
15044
+ poster: "poster";
15045
+ "validation-report": "validation-report";
15046
+ "blend-source": "blend-source";
15047
+ }>;
15048
+ role: z.ZodEnum<{
15049
+ source: "source";
15050
+ poster: "poster";
15051
+ "validation-report": "validation-report";
15052
+ "scene-geometry": "scene-geometry";
15053
+ "entity-geometry": "entity-geometry";
15054
+ "camera-track": "camera-track";
15055
+ }>;
15056
+ byteLength: z.ZodNumber;
15057
+ sha256: z.ZodString;
15058
+ originRevisionId: z.ZodOptional<z.ZodUUID>;
15059
+ }, z.core.$strict>>;
15060
+ cameraTrackAssetId: z.ZodString;
15061
+ shots: z.ZodArray<z.ZodObject<{
15062
+ id: z.ZodString;
15063
+ startFrame: z.ZodNumber;
15064
+ endFrameExclusive: z.ZodNumber;
15065
+ label: z.ZodOptional<z.ZodString>;
15066
+ subjectEntityIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
15067
+ foregroundEntityIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
15068
+ }, z.core.$strict>>;
15069
+ lighting: z.ZodObject<{
15070
+ preset: z.ZodEnum<{
15071
+ "clay-studio-v1": "clay-studio-v1";
15072
+ }>;
15073
+ ambientIntensity: z.ZodNumber;
15074
+ keyIntensity: z.ZodNumber;
15075
+ keyPosition: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
15076
+ }, z.core.$strict>;
15077
+ backgroundColor: z.ZodString;
15078
+ references: z.ZodOptional<z.ZodArray<z.ZodObject<{
15079
+ id: z.ZodString;
15080
+ url: z.ZodString;
15081
+ kind: z.ZodEnum<{
15082
+ image: "image";
15083
+ video: "video";
15084
+ }>;
15085
+ role: z.ZodEnum<{
15086
+ motion: "motion";
15087
+ layout: "layout";
15088
+ appearance: "appearance";
15089
+ }>;
15090
+ objectId: z.ZodOptional<z.ZodString>;
15091
+ startSeconds: z.ZodOptional<z.ZodNumber>;
15092
+ endSeconds: z.ZodOptional<z.ZodNumber>;
15093
+ }, z.core.$strict>>>;
15094
+ overrides: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
15095
+ kind: z.ZodLiteral<"entity-transform">;
15096
+ entityId: z.ZodString;
15097
+ space: z.ZodEnum<{
15098
+ local: "local";
15099
+ world: "world";
15100
+ }>;
15101
+ position: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
15102
+ rotation: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
15103
+ scale: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
15104
+ id: z.ZodString;
15105
+ sourceRevisionId: z.ZodUUID;
15106
+ sourceContentHash: z.ZodString;
15107
+ operationVersion: z.ZodNumber;
15108
+ }, z.core.$strict>, z.ZodObject<{
15109
+ kind: z.ZodLiteral<"entity-color">;
15110
+ entityId: z.ZodString;
15111
+ materialRole: z.ZodString;
15112
+ color: z.ZodString;
15113
+ id: z.ZodString;
15114
+ sourceRevisionId: z.ZodUUID;
15115
+ sourceContentHash: z.ZodString;
15116
+ operationVersion: z.ZodNumber;
15117
+ }, z.core.$strict>, z.ZodObject<{
15118
+ kind: z.ZodLiteral<"entity-visibility">;
15119
+ entityId: z.ZodString;
15120
+ visible: z.ZodBoolean;
15121
+ id: z.ZodString;
15122
+ sourceRevisionId: z.ZodUUID;
15123
+ sourceContentHash: z.ZodString;
15124
+ operationVersion: z.ZodNumber;
15125
+ }, z.core.$strict>, z.ZodObject<{
15126
+ kind: z.ZodLiteral<"camera-shot-offset">;
15127
+ shotId: z.ZodString;
15128
+ positionOffset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
15129
+ targetOffset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
15130
+ id: z.ZodString;
15131
+ sourceRevisionId: z.ZodUUID;
15132
+ sourceContentHash: z.ZodString;
15133
+ operationVersion: z.ZodNumber;
15134
+ }, z.core.$strict>], "kind">>>;
15135
+ provenance: z.ZodObject<{
15136
+ engine: z.ZodString;
15137
+ engineVersion: z.ZodString;
15138
+ recipeVersion: z.ZodString;
15139
+ compilerVersion: z.ZodString;
15140
+ exporterVersion: z.ZodString;
15141
+ rendererVersion: z.ZodString;
15142
+ sourceRevisionId: z.ZodOptional<z.ZodUUID>;
15143
+ sourceArtifactId: z.ZodOptional<z.ZodString>;
15144
+ contentHash: z.ZodString;
15145
+ }, z.core.$strict>;
15146
+ }, z.core.$strict>], "schemaVersion">;
15147
+ }, z.core.$loose>;
15148
+ /** What a canvas node / DAG builder holds before it can name a source. */
15149
+ interface Pro3DRenderSourceInput {
15150
+ /** `"scene"` selects the existing-revision path; anything else is a brief. */
15151
+ sourceMode?: string;
15152
+ /** The brief, already resolved and affix-applied by the caller. */
15153
+ prompt?: string;
15154
+ references?: readonly Scene3DReference[];
15155
+ /** The revision to export or edit, and the run that produced it. */
15156
+ revisionId?: string;
15157
+ sourceJobId?: string;
15158
+ /** Absent/blank keeps the render-only path. */
15159
+ editPrompt?: string;
15160
+ }
15161
+ type Pro3DRenderSourceResult = {
15162
+ ok: true;
15163
+ source: Pro3DRenderSource;
15164
+ } | {
15165
+ ok: false;
15166
+ message: string;
15167
+ };
15168
+ /**
15169
+ * Turn node/DAG state into the wire `source`.
15170
+ *
15171
+ * Shared by BOTH execution engines because the alternative — one copy in the
15172
+ * browser executor and one in the orchestrator — is the drift that lets a
15173
+ * canvas run and a headless run of the same node mean different things. The
15174
+ * refusals are part of that: a scene source missing its correlation must fail
15175
+ * the same way on both.
15176
+ *
15177
+ * A blank `editPrompt` is treated as ABSENT, never as an empty instruction: a
15178
+ * user who cleared the box asked for a plain export, and forwarding `""` would
15179
+ * buy them an authoring pass.
15180
+ */
15181
+ declare function buildPro3DRenderSource(input: Pro3DRenderSourceInput): Pro3DRenderSourceResult;
15182
+ /**
15183
+ * Which timing fields a request may carry.
15184
+ *
15185
+ * A `scene` source already HAS timing, and the contract forbids silently
15186
+ * overriding it — so the node's own duration/fps/aspect are withheld unless
15187
+ * the user explicitly asked to re-time, in which case they are sent and the
15188
+ * engine decides whether the change is compatible. For a new scene the node's
15189
+ * settings simply are the request.
15190
+ *
15191
+ * Returning an object with the keys omitted (rather than set to `undefined`)
15192
+ * matters: these bodies are JSON-serialized, and an explicit `undefined` and a
15193
+ * missing key are the same on the wire only by luck of the serializer.
15194
+ */
15195
+ declare function pro3DRenderTimingOverrides(input: {
15196
+ source: Pro3DRenderSource;
15197
+ overrideSourceTiming?: boolean;
15198
+ durationSeconds?: number;
15199
+ fps?: number;
15200
+ aspectRatio?: string;
15201
+ }): {
15202
+ durationSeconds?: number;
15203
+ fps?: number;
15204
+ aspectRatio?: string;
15205
+ };
15206
+
14309
15207
  /**
14310
15208
  * The parts of `settings.studio` that must not leave the owner's account.
14311
15209
  *
@@ -14485,4 +15383,91 @@ type Scene3DV2EditResult = {
14485
15383
  */
14486
15384
  declare function applyScene3DV2EditOperations(input: Scene3DPlanV2, operations: readonly Scene3DV2EditOperation[], options: Scene3DV2EditOptions): Promise<Scene3DV2EditResult>;
14487
15385
 
14488
- export { ACCESS_LEVELS, ACTIVE_SCENE_HELPERS, ADVANCED_MODE_UNAVAILABLE_REASON, AGGREGATEABLE_TYPES, AGGREGATE_LANE_SOURCE_TYPES, AI_AVATAR_DURATION_BUCKETS, AI_AVATAR_MAX_AUDIO_SEC, AI_AVATAR_MAX_DURATION_SEC, AI_AVATAR_RESERVE_IDS, AI_WRITER_PROVIDERS, ALA_CARTE_BOARDS, ALL_CAPTION_STYLES, ANIMALS, ANIMAL_SUBCATEGORY_LABELS, ANIMAL_SUBCATEGORY_ORDER, ASPECT_RATIO_DIMENSIONS, AUDIO_ADDON_PROVIDERS, AUDIO_CROSSFADE_CURVES, AUDIO_CROSSFADE_CURVE_IDS, AUDIO_FX_PRESETS, AUDIO_FX_PRESET_LABELS, AUDIO_FX_PRESET_SET, AUDIO_FX_REVERB_PRESETS, AUDIO_PRODUCER_TYPES, type AccessLevel, type AddBRollResult, AddBRollResultSchema, type AggregateableType, type AggregationBuckets, type AiAvatarDurationBucket, type AiAvatarEngine, type AiAvatarResolution, type AiWriterProvider, type AlaCarteBoard, type AnalyzedScene, type AnchorSceneStyleResult, AnchorSceneStyleResultSchema, type Animal, type AnimalSubcategory, type AssetRef, AssetRefSchema, type AudioCrossfadeCurve, type AudioFxPreset, type AudioLayer, type AuditImagesResult, AuditImagesResultSchema, type AuditImagesShotEntry, AuditImagesShotEntrySchema, AuditPromptIssueSchema, type AuditPromptResult, AuditPromptResultSchema, AvatarPayloadError, BOARD_TO_ASSET_TYPE, BOARD_TO_COLUMN, BOARD_VARIANTS, type BoardEntityKind, type BoardPromptContext, type BoardTemplate, BridgeToNextSceneInputSchema, type BridgeToNextSceneResult, BridgeToNextSceneResultSchema, type BrowseCommunityParams, type BrowseCommunityResult, CATEGORY_DURATION_DEFAULTS, CHARACTER_ASPECT_DEFAULTS, CHARACTER_ASPECT_OPTIONS, CHARACTER_ASSET_TYPES, CHARACTER_ASSET_VARIANTS, CHARACTER_ATTACH_COLUMNS, CHARACTER_FACETS, CHARACTER_FACET_IDS, CHARACTER_LORA_TRAINING_JOB_TYPE, CHARACTER_MOTION_PROVIDERS, CHARACTER_PICKER_DISPLAY_ORDER, CHARACTER_REFERENCE_PHOTO_KINDS, CHARACTER_STYLES, CHARACTER_VARIANT_ASSET_BUCKETS, CHAT_ENABLED_STAGES, CHAT_STAGES, CHAT_TURN_CAPS, CHAT_WIRED_STAGES, CINEMATIC_DEFAULT_DURATION_SEC, CINEMATIC_DEFAULT_RESOLUTION, CINEMATIC_MAX_DURATION_SEC, CINEMATIC_MAX_LOOKS, CINEMATIC_MAX_REFERENCE_IMAGES, CINEMATIC_MAX_REFERENCE_VIDEOS, CINEMATIC_MIN_DURATION_SEC, CINEMATIC_MIN_LOOKS, CINEMATIC_PROMPT_MAX, CINEMATIC_RESERVE_IDS, COLLABORATOR_ROLES, COLLECT_IN_HANDLE, COMBINE_TRANSITIONS, COMBINE_TRANSITION_GROUP_LABELS, COMBINE_TRANSITION_GROUP_ORDER, COMBINE_TRANSITION_IDS, COMPOSER_PLAN_FIELDS, COMPOSER_PLAN_MAP, CONTENT_TYPES_BY_PLATFORM, CREATURE_ATTACH_COLUMNS, CREDIT_BASE_USD, CREDIT_ROUNDING_RESOLUTION, type CaptionStyle, type CastCoverageCriticVerdict, CastCoverageCriticVerdictSchema, type CharacterAspectRatio, type CharacterAssetType, type CharacterAssetTypeForAspect, type CharacterAttachColumn, type CharacterDef, type CharacterFacet, type CharacterImageCriticVerdict, CharacterImageCriticVerdictSchema, type CharacterLoraFields, type CharacterMentionTokenInfo, CharacterMetadataSchema, type CharacterMotionProvider, type CharacterReferencePhoto, type CharacterReferencePhotoKind, type CharacterVariantAssetBucket, type CharacterVariantAssetItem, type CharacterVoiceSpec, type ChatEnabledStage, type ChatTurnResponse, ChatTurnResponseSchema, type CinematicResolution, type ClipLook, type CloneListingResult, type CollaboratorRole, type CombineTransition, type CombineTransitionGroup, type CombineVideosEstimatorInput, type CommunityCard, type CommunityEntityType, type CommunityFullDetail, type CommunityReportReason, type CommunitySort, type ComponentHandle, type ComponentMetadata, type ConnectedReference, type CreatureAttachColumn, CriticIssueSchema, type CustomEntry, DEFAULT_AUDIO_CROSSFADE_CURVE_ID, DEFAULT_CARRIED_FRACTION, DEFAULT_CHARACTER_ANGLE_COUNT, DEFAULT_CHARACTER_EXPRESSION_COUNT, DEFAULT_CHARACTER_FACET, DEFAULT_LABEL_BY_SOURCE, DEFAULT_LOCATION_USAGE_MODE, DEFAULT_PANEL_COUNT, DEFAULT_REF_IMAGE_MAX, DEFAULT_SECTIONS, DEFAULT_USAGE_MODE, DEFAULT_VIDEO_ANALYSIS_MODEL, DEFAULT_VIDEO_ANALYSIS_TIER, DEFAULT_VIDEO_CLIP_COST, DEFAULT_VIDEO_DURATION_SEC, DEFAULT_VIDEO_PROVIDER, DEFAULT_VOICE_CHANGER_MODEL, DEFAULT_VOICE_DESIGN_MODEL, DETAIL_VARIANTS, DURATION_PRICED_PROVIDERS, DYNAMIC_PRODUCER_TYPES, type DescribedReference, type DetectionResult, DetectionResultSchema, type DialogueLine, EFFORT_TIER_BUMP, EMOTIONAL_BEAT, ENTITY_ASPECT_DEFAULTS, ENTITY_BUCKET_FIELDS, ENTITY_DB_ID_FIELD, ENTITY_IMAGE_HANDLE_TYPES, ENTITY_KIND_SCALAR_FIELDS, ENTITY_NAME_FIELD, ENTITY_NODE_KINDS, ENTITY_SCALAR_FIELDS, ENTITY_SECTIONS, ENTITY_STATUSES, ENTITY_TABLE, ENTITY_TOOL_RETRY_CAP, ENTITY_TYPES, EXECUTION_DATA_KEYS, EXTEND_VIDEO_PROVIDERS, type EntityKind, type EntityMentionTokenInfo, type EntityMetadata, EntityMetadataSchema, type EntityNodeKind, type EntityReferenceInput, type EntityRejectInput, EntityRejectInputSchema, type EntitySlot, type EntityStaleEvent, EntityStaleEventSchema, type EntityStateChangeEvent, EntityStateChangeEventSchema, type EntityStatus, type EntityStudioKind, type EntityStyle, type EntityType, type EvaluateConditionOptions, type ExportedPreset, type ExposableField, type ExposableOutput, type ExposedSetting, type ExtendVideoProvider, type ExtraRefCharacterContext, type ExtraRefInput, FACE_SWAP_PROVIDERS, FAL_LIP_SYNC_PROVIDERS, FAN_OUT_EACH_TYPES, FEATURED_ENTITIES, FILM_BASE_CREDITS, FLEXIBLE_INPUT_LIP_SYNC_PROVIDERS, FLUX2_RES_MP, FLUX_LORA_CHARACTER_MODEL_ID, FRAME_MODE_ADAPTIVE_ONLY_ASPECT, FRAME_TARGET_HANDLES, FREECUT_EXPORT_COMPLETE, FREECUT_EXPORT_PROGRESS, FREECUT_READY, FREECUT_REQUEST_IMPORT, FURNITURE, FURNITURE_SUBCATEGORY_LABELS, FURNITURE_SUBCATEGORY_ORDER, type FaceSwapProvider, type FavoriteListingResult, type FeaturedEntity, type FilmCreditEstimate, type FilterListCondition, type FilterListOperator, type FilterOperator, type FixContinuityInput, FixContinuityInputSchema, type FixContinuityResult, FixContinuityResultSchema, type Flux2Model, type FreecutExportCompletePayload, type FreecutExportProgressPayload, type FreecutImportFile, type FreecutRequestImportPayload, type FullSelectorMode, type Furniture, type FurnitureSubcategory, GEMINI_OMNI_PROVIDERS, GENERATE_TEXT_DELIMITER, GLOBAL_MAX_DURATION_SECONDS, GRANTED_ACCESS, GROUP_HANDLE_PREFIX, GUIDANCE_SCALE_SUPPORT, GVP_ANCHOR_CHOICES, GVP_DEFAULT_PROVIDER, GVP_END_FRAME_PROVIDERS, GVP_EXTEND_PROVIDERS, GVP_SUPPORTED_PROVIDERS, GenerateMotionInputSchema, type GenerateMotionResult, GenerateMotionResultSchema, type GenericEdge, type GenericNode, type GrantedAccess, type GvpAnchorChoice, type GvpAnchorWireMode, HANDLE_PORT_SEPARATOR, HELPERS_SHIPPED_IN_1B3, HIGH_QUALITY_PROVIDERS, HINT_EXEMPT_PARAMETER_TYPES, type HintEdgeLike, type HintGraphContext, type HintNodeLike, type I18nCatalogId, I2I_MASK_SUPPORT, I2I_STRENGTH_SUPPORT, IDEOGRAM_PROVIDERS, IMAGE_ASPECT_RATIO_VALUES, IMAGE_CRITIC_LEAF_MODES, IMAGE_CRITIC_MAX_RETRIES, IMAGE_CRITIC_METADATA_KEYS, IMAGE_CRITIC_MIN_ADHERENCE_SCORE, IMAGE_CRITIC_MODES, IMAGE_CRITIC_UNRESOLVABLE, IMAGE_EDIT_PROVIDERS, IMAGE_GEN_PROVIDERS, IMAGE_I2I_PROVIDERS, IMAGE_MASK_MODE, IMAGE_PROMPT_MAX, IMAGE_REF_TYPES, IMAGE_TO_VIDEO_PROVIDERS, INPUT_FIELD_MAP, INPUT_NODE_TYPES, INSTAGRAM_CAROUSEL_MAX_ITEMS, INSTAGRAM_CAROUSEL_MIN_ITEMS, ITER_CLONE_PATTERN, type IdentityFidelity, type IdentityMeta, type ImageAspectRatio, type ImageCriticIssue, ImageCriticIssueSchema, type ImageCriticLeafMode, type ImageCriticMetadataKey, type ImageCriticMode, type ImageCriticNodeIssue, type ImageCriticResult, ImageCriticResultSchema, type ImageCriticVerdict, ImageCriticVerdictSchema, type ImageEditProvider, type ImageGenProvider, type ImageI2IProvider, type ImageMaskMode, type ImageMentionTokenInfo, type ImageToVideoProvider, type ImprovePromptInput, ImprovePromptInputSchema, type ImprovePromptResult, ImprovePromptResultSchema, type InputFieldSchema, type InvitationDelivery, type InvitationPreview, type InvitationState, type InvitationView, type JoinCodeView, type JsonEvalResult, type JsonFilter, type JsonPatch, KEYFRAME_CREDITS_PER_SHOT, KINETIC_CAPTION_STYLES, type KieApiFormat, type KineticCaptionStyle, LANGUAGES, LEGACY_LOTTIE_HOST_REMAP, LIP_SYNC_DURATION_BUCKETS, LIP_SYNC_MAX_AUDIO_SECONDS, LIP_SYNC_PROVIDERS, LLM_FEATURE_DEFAULTS, LLM_MODALITY_CAPS, LLM_MODELS, LLM_MODEL_IDS, LLM_REASONING_EFFORTS, LLM_ROUTE_DEFAULTS, LLM_TEXT_INPUT_MAX, LLM_VENDOR_LABELS, LLM_VENDOR_ORDER, LOCATION_ASSET_TYPES, LOCATION_ASSET_VARIANTS, LOCATION_ATMOSPHERE_PROVIDERS, LOCATION_ATTACH_COLUMNS, LOCATION_BUCKET_TO_CATALOG_ID, LOCATION_PRESET_TO_CATALOG, LOCATION_REFERENCE_PHOTO_KINDS, LOCATION_REFERENCE_PHOTO_KIND_LABELS, LOCATION_USAGE_MODES, LOTTIE_OVERLAY_CATALOG, LOTTIE_SLOT_FIELD_PREFIX, type LabeledOption, type LipSyncDurationBucket, type LipSyncProvider, type LlmFeature, type LlmModelDef, type LlmModelGroup, type LlmReasoningEffort, type LlmRouteDefaults, type LlmTier, type LlmVendor, type LocaleCatalogMap, type LocaleDirection, type LocaleId, type LocationAssetType, type LocationAtmosphereProvider, type LocationAttachColumn, type LocationCatalogRef, type LocationImageCriticVerdict, LocationImageCriticVerdictSchema, type LocationMentionTokenInfo, LocationMetadataSchema, type LocationReferencePhotoKind, type LocationUsageMode, LocationsCoverageCriticIssueSchema, type LocationsCoverageCriticVerdict, LocationsCoverageCriticVerdictSchema, type LoopTrimEstimatorInput, type LoopVideoEstimatorInput, type LoraEligibleRef, type LoraRouting, type LottieOverlayCatalogEntry, type LottieSlotField, MAX_CUSTOM_ENTRIES_PER_BOARD, MAX_IMAGE_PROMPT_CHARS_BY_PROVIDER, MAX_LOCATION_VARIANTS, MAX_NEGATIVE_PROMPT_CHARS_BY_PROVIDER, MAX_PANELS_PER_SHEET, MAX_TTS_CHARS_BY_PROVIDER, MAX_VIDEO_PROMPT_CHARS_BY_PROVIDER, MEMBER_STATUSES, MINIMAX_H3_DEFAULT_RESOLUTION, MINIMAX_H3_PROVIDERS, MODELS_WITH_REFERENCE_IMAGE_SUPPORT, MODEL_CATALOG, MODEL_PARAM_NODE_TYPES, MODEL_RECOMMENDATIONS, MODIFY_IMAGE_PROVIDERS, MOTION_COLUMN, MOTION_TRANSFER_PROVIDERS, MUSIC_PROVIDERS, type MaskRegionDescriptor, type MatchCutVerdict, MatchCutVerdictSchema, type MeOrganizations, type Member, type MemberStatus, type MinimalEdge, type MinimalNode, type ModelCatalogEntry, type ModelInputAdjustment, type ModelKind, type ModelMenuOption, type ModelMode, type ModelNodeTarget, type ModelPromptingStyle, type ModelRecommendation, type ModelTreeLine, type ModelTreeVariant, type ModelValidationIssue, type ModifyImageProvider, type MotionTransferProviderType, type MusicProvider, NATIVE_ADAPTIVE_ASPECT, NATIVE_NEGATIVE_PROMPT_MODELS, NATIVE_NEGATIVE_VIDEO_PROVIDERS, NEGATIVE_PROMPT_MAX, NODARO_IMPORT_FILES, NODARO_LOAD_TIMELINE, NODARO_LOAD_VIDEO, NODARO_RESET_PROJECT, NODE_DEFAULT_TYPES, NODE_MAPPABLE_FIELDS, NODE_PRESET_EXPORT_KIND, NODE_REF_PATTERN, NON_EN_LOCALE_IDS, NO_SPLIT_DELIMITER, type NodaroLoadTimelinePayload, type NodaroLoadVideoPayload, type NodeDefaultType, type NodeParamAdjustment, type NodePresetExport, type NormalizedImageGen, type NormalizedModelInput, type NormalizedNodes, type NormalizedVideoRequest, OBJECT_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS, OBJECT_ASSET_TYPES, OBJECT_ASSET_VARIANTS, OBJECT_ATTACH_COLUMNS, OBJECT_MOTION_PROVIDERS, OBJECT_PICKER_NODE_TYPES, ORG_ERROR_CODES, ORG_KINDS, ORG_ROLES, ORG_STATUSES, OUTPUT_FIELD_MAP, OUTPUT_FORMATS, type ObjectAspectRatio, type ObjectAssetType, type ObjectAssetTypeForAspect, type ObjectAttachColumn, ObjectMetadataSchema, type ObjectMotionProvider, type ObjectsValidationIssue, type ObjectsValidationResult, OptimizeForModelInputSchema, type OptimizeForModelResult, OptimizeForModelResultSchema, type OrgAuditEntry, type OrgErrorCode, type OrgKind, type OrgMemberView, type OrgPage, type OrgRole, type OrgSettings, OrgSettingsSchema, type OrgStatus, type OrganizationSummary, type OrganizationView, type OutputFormat, type OutputMode, type OutputType, PARAMETER_NODE_TYPES, PASSTHROUGH_TYPES, PAYG_RETENTION_DAYS, PER_FORMAT_DURATION_BOUNDS, PICKER_TO_COMBINE_TRANSITION, PIPELINE_ACTIVATION_MODES, PIPELINE_FORMATS, PIPELINE_HARD_TIMEOUT_MS, PIPELINE_MODEL_STAGES, PIPELINE_MODES, PIPELINE_OUTPUT_RESOLUTIONS, PIPELINE_PINNABLE_IMAGE_MODELS, PIPELINE_PINNABLE_SCRIPT_LLMS, PIPELINE_PINNABLE_VIDEO_MODELS, PIPELINE_STAGE_NAMES, PIPELINE_STAGE_TIMEOUT_MS, PIPELINE_TYPES, PLACEHOLDER_CHARACTER_NAME, PLATFORM_LABELS, PLATFORM_SPECS, PRESET_APPLY_CLEAR_KEYS, PRESET_EXCLUDED_KEYS, PRESET_LABELS, PRESET_SETTING_KEYS, PRICING_DEFAULT_DURATION_SEC, PRICING_DEFAULT_RESOLUTION, PROMPT_HARD_CEILING, PROMPT_PREFIX_KEY, PROMPT_SUFFIX_KEY, PROVIDER_DIRECTIVE_DEFAULTS, PROVIDER_PLACEHOLDER_PREFIX, type PanelGenRequest, type PanelRequest, type PanelSource, type PipelineActivationMode, type PipelineCompletedEvent, PipelineCompletedEventSchema, type PipelineConfig, PipelineConfigSchema, type PipelineDriftSummary, PipelineDriftSummarySchema, type PipelineEditorDecisionsReadyEvent, PipelineEditorDecisionsReadyEventSchema, type PipelineEvent, type PipelineForkedEvent, PipelineForkedEventSchema, type PipelineFormat, type PipelineInput, PipelineInputSchema, type PipelineLifecycleEvent, type PipelineMode, type PipelineModelStage, type PipelineMusicReadyEvent, PipelineMusicReadyEventSchema, type PipelineOutputResolution, type PipelinePinnableImageModel, type PipelinePinnableScriptLlm, type PipelinePinnableVideoModel, type PipelineStageName, PipelineStageNameSchema, type PipelineStageStatus, PipelineStageStatusSchema, type PipelineState, PipelineStateSchema, type PipelineStatus, PipelineStatusSchema, type PipelineType, type PixelBox, type PresentationItem, type PresetEntry, type PresetSettingKey, type PresetSettings, PresetSettingsSchema, type PriceVariant, type PricedVideoSelection, type ProgressSegment, type ProjectedCatalog, type ProjectedCatalogDimension, type ProjectedCatalogOption, type PromptAffixFields, type PromptAffixes, type ProposedChange, type PublishListingParams, type PublishListingResult, QA_CHECK_PROVIDERS, type QaCheckProvider, type QualityLevel, REDUCE_STRATEGIES, REDUCE_STRATEGY_IDS, REFERENCE_BOARD_PROVIDERS, REFERENCE_BOARD_TEMPLATES, REFERENCE_HANDLE_MAP, REFERENCE_ROLE_PRESETS, REF_HANDLE_CATEGORY, REF_IMAGE_MAX_LIMITS, REF_TOKEN_NAMESPACE_PREFIXES, RENDERING_SPEED_SUPPORT, REPEATABLE_NODE_TYPES, REPEAT_PLACEHOLDER, REPLICATE_LIP_SYNC_PROVIDERS, RESERVED_TEMPLATE_VARS, type ReduceMeta, type ReduceStrategy, type ReduceStrategyId, type RefCandidate, type RefModalityEdge, type RefTokenKind, type RefVideoDurationLimit, type ReferenceBoardProvider, type ReferenceModality, type ReferenceSheet, type ReferenceSource, type ReportListingResult, type ResolveCharacterAspectOptions, type ResolveObjectAspectOptions, type ResolveSeparatorOptions, type ResolvedDialogueVoiceLine, type RouterConditionGroup, SCENE3D_ASSET_KINDS, SCENE3D_ASSET_ROLES, SCENE3D_ASSET_ROLE_KINDS, SCENE3D_CAMERA_TRACK_FORMAT, SCENE3D_CAMERA_TRACK_LIMITS, SCENE3D_CAMERA_TRACK_VERSION, SCENE3D_CLAY_LIGHTING_PRESETS, SCENE3D_DEFAULT_DURATION_SECONDS, SCENE3D_DEFAULT_ENTITY_CAPABILITIES, SCENE3D_DEFAULT_FPS, SCENE3D_EDIT_NODE_TYPE, SCENE3D_ENTITY_CAPABILITIES, SCENE3D_ENTITY_ROLES, SCENE3D_GENERATE_NODE_TYPE, SCENE3D_GLB_EXTRAS_ALLOWLIST, SCENE3D_GLB_EXTRAS_ENTITY_ID, SCENE3D_GLB_EXTRAS_MATERIAL_ROLE, SCENE3D_GLB_EXTRAS_SUBPART_ID, SCENE3D_LIMITS, SCENE3D_PLAN_FIELD, SCENE3D_PLAN_TYPE, SCENE3D_PRIMITIVES, SCENE3D_PRIMITIVE_MATERIAL_ROLE, SCENE3D_RENDERER_ASSET_KINDS, SCENE3D_SCHEMA_VERSION, SCENE3D_SCHEMA_VERSION_V2, SCENE3D_SUPPORTED_SCHEMA_VERSIONS, SCENE3D_V2_CONTENT_HASH_EXCLUDED, SCENE3D_V2_ENGINES, SCENE3D_V2_LIMITS, SCENE3D_V2_OVERRIDE_OPERATION_VERSION, SCENE3D_V2_PRIMITIVES, SCENE_HELPER_NAMES, SCRAPER_ACTOR_LABELS, SCRAPER_CREDIT_COSTS, SCRAPER_OUTPUT_FIELDS, SCRIPT_PROVIDERS, SEASONS, SECTION_BOARD, SECTION_KINDS, SEEDANCE_2_5_REF_LIMITS, SEEDANCE_2_CONTINUATION_REF_SEC, SEEDANCE_2_EXTEND_STITCH, SEEDANCE_2_PROVIDERS, SEEDANCE_2_R2V_MAX_AUDIO_SEC_BY_PROVIDER, SEEDANCE_2_R2V_MIN_REF_VIDEO_SEC, SEEDANCE_2_REF_LIMITS, SEEDANCE_LIP_SYNC_PROVIDERS, SEED_SUPPORT, SEPARATOR_DISPLAY, SEPARATOR_PRESETS, SHEET_ASPECTS, SHEET_BACKGROUNDS, SHEET_PRESETS, SHEET_SKINS, SHEET_TYPES, SHORT_FILM_ANGLE_COUNT, SHORT_FILM_EXPRESSION_COUNT, SHORT_FILM_VARIANT_THRESHOLD_SEC, SLOT_TOKEN_RE, SMART_CUT_WINDOW_DEFAULT, SMART_CUT_WINDOW_MAX, SMART_CUT_WINDOW_MIN, SOCIAL_POST_NODE_TYPES, STAGE_PATCH_SCHEMA, STATIC_CAPTION_STYLES, STRUCTURAL_SECTIONS, STRUCTURED_VISION_MODELS, STUDIO_SHOT_TRANSIENT_KEYS, STUDIO_TRANSIENT_KEYS, SUBMISSION_STATUSES, SUNO_ADD_TRACK_MODELS, SUNO_FIELD_HANDLE_FIELDS, SUNO_HARD_CEILING, SUNO_MODELS, SUNO_SELECT_OPERATIONS, SUNO_TEXT_MAX, SUNO_TITLE_MAX, SUNO_TRACK_SOURCE_TYPES, SUNO_VERSION_PRICED_OPERATIONS, SUPPORTED_FONT_NAMES, SURROUND_DIRECTIONS, SWITCHX_BLOCK_FRAMES, SWITCHX_FRAME_TIERS, type SafetyRetryPolicy, type Scene3DAnchor, type Scene3DAssetAnimation, type Scene3DAssetKind, type Scene3DAssetRef, type Scene3DAssetRole, type Scene3DCamera, type Scene3DCameraChanges, type Scene3DCameraKeyframe, type Scene3DCameraSample, type Scene3DCameraTrackV1, type Scene3DClayLighting, type Scene3DClayLightingPreset, type Scene3DEasing, type Scene3DEditErrorCode, type Scene3DEditOperation, type Scene3DEditOptions, type Scene3DEditResult, type Scene3DEntityCapability, type Scene3DEntityRole, type Scene3DEntityV2, type Scene3DEntityVisual, type Scene3DJobOutput, type Scene3DJobOutputAny, type Scene3DJobOutputV2, type Scene3DKnownEngine, type Scene3DLighting, type Scene3DLightingChanges, type Scene3DMaterialBinding, type Scene3DNormalizedAssetStats, type Scene3DObject, type Scene3DObjectChanges, type Scene3DObjectKeyframe, type Scene3DOverride, type Scene3DOverrideSpace, type Scene3DParseResult, type Scene3DPlan, type Scene3DPlanV1, type Scene3DPlanV2, type Scene3DPrimitive, type Scene3DProvenance, type Scene3DReference, type Scene3DReferenceKind, type Scene3DReferenceRole, type Scene3DSemanticIssue, type Scene3DShot, type Scene3DSupportedSchemaVersion, type Scene3DV2EditOperation, type Scene3DV2EditOptions, type Scene3DV2EditResult, type Scene3DV2OverrideInput, type Scene3DV2Primitive, type Scene3DV2ResourceUsage, type SceneData, type SceneHelperName, SceneHelperNameSchema, type SceneInputMode, SceneInputModeSchema, type SceneMetadata, SceneMetadataSchema, type SceneNodeData, SceneNodeDataSchema, SceneSpecSchema, type ScraperActorId, type ScriptCriticVerdict, ScriptCriticVerdictSchema, type ScriptProvider, type Season, type SectionKind, type SelectorConfig, type SelectorFields, type SelectorMode, type SelectorPredicateOp, type SelectorResult, type SemanticAspectRatio, type SeparatorPreset, type SharedListing, type SharedVoice, type SheetAspect, type SheetBackground, type SheetCostEstimate, type SheetEntry, type SheetFlavour, type SheetGenerationPlan, type SheetPreset, type SheetPresetId, type SheetSection, type SheetSkin, type SheetTextData, type SheetType, type ShotElement, type ShotImageElement, type ShotShapeElement, type ShotSpec, ShotSpecSchema, type ShotTextElement, type ShowrunnerPlan, ShowrunnerPlanSchema, type SidecarLoader, type SlotControlDescriptor, type SlotControlKind, type SlotVariation, type SocialMediaContentType, type SocialMediaPlatform, type SocialMediaSpec, type SortDirection, type SortListOptions, type SortType, type StageAwaitingSubGateEvent, StageAwaitingSubGateEventSchema, type StaticCaptionStyle, type StoryboardCohesionCriticVerdict, StoryboardCohesionCriticVerdictSchema, type StyleDirectives, StyleDirectivesSchema, type SubGateName, SubGateNameSchema, type SubmissionStatus, type SunoAddTrackModel, type SunoModel, type SupportedFontName, type SurroundDirection, type Swatch, T2I_TO_I2I_VARIANT, TASK_CHAINED_EDIT_PROVIDERS, TEXT_TO_AUDIO_PROVIDERS, TEXT_TO_VIDEO_PROVIDERS, TIER_MAX_PIPELINE_COST_CREDITS, TIER_PIPELINE_PARALLELISM, TILT_CARRIED_FRACTION, TOPAZ_DEFAULT_UPSCALE_FACTOR, TOPAZ_UPSCALE_FACTORS, TRANSCRIBE_PROVIDERS, TRANSIENT_RUNTIME_KEYS, TTS_PROVIDERS, TTS_TEXT_MAX, TWO_K_RESOLUTION_PROVIDERS, type TextToAudioProvider, type TextToVideoProvider, type TopazUpscaleAdjustment, type TopazUpscaleFactor, type TopazUpscaleResolution, type TranscribeProvider, type TransitionType, TransitionTypeSchema, type TrimVideoEstimatorInput, type TtsProvider, UPSCALE_IMAGE_PROVIDERS, USAGE_GROUP_BYS, USAGE_MODES, type UpscaleImageProvider, type UsageGroupBy, type UsageLogEntry, type UsageMode, type UsageQuery, type UsageReport, type UsageReportRow, type UsageReportTotals, type UsageVarianceRow, VARIABLES_HANDLE_ID, VARIABLE_PRICING_MODELS, VEHICLES, VEHICLE_SUBCATEGORY_LABELS, VEHICLE_SUBCATEGORY_ORDER, VEO_PROVIDERS, VIDEO_ANALYSIS_AUDIO_MODES, VIDEO_ANALYSIS_BUCKET_CREDITS, VIDEO_ANALYSIS_CLIP_TRANSITIONS_IN, VIDEO_ANALYSIS_DEFAULT_VARIATION, VIDEO_ANALYSIS_DURATION_BUCKETS, VIDEO_ANALYSIS_DURATION_TOLERANCE_SEC, VIDEO_ANALYSIS_ENTITY_SOURCES, VIDEO_ANALYSIS_FACELESS_ANGLES, VIDEO_ANALYSIS_LEGACY_MODELS, VIDEO_ANALYSIS_LLM_MODELS, VIDEO_ANALYSIS_MAX_DURATION_SEC, VIDEO_ANALYSIS_MAX_SCENE_SEC, VIDEO_ANALYSIS_MAX_VARIATIONS, VIDEO_ANALYSIS_MIXED_TIERS, VIDEO_ANALYSIS_SHOT_ANGLES, VIDEO_ANALYSIS_SPEED_EFFECTS, VIDEO_ANALYSIS_STORY_JUMPS, VIDEO_ANALYSIS_TEXT_KINDS, VIDEO_ANALYSIS_TIERS, VIDEO_ANALYSIS_TIER_LABELS, VIDEO_ANALYSIS_TIER_ORDER, VIDEO_ANALYSIS_TIMES_OF_DAY, VIDEO_ANALYSIS_TRANSITIONS, VIDEO_ANALYSIS_VARIATION_SLUGS, VIDEO_ANALYSIS_VISUAL_EFFECTS, VIDEO_ANALYSIS_WINDOW, VIDEO_AUDIO_CAPABILITY, VIDEO_AUDIT_BUCKET_CREDITS, VIDEO_CLIP_CREDITS, VIDEO_CRITIC_CREDITS_PER_SHOT, VIDEO_CRITIC_FRAME_MODES, VIDEO_CRITIC_MAX_RETRIES, VIDEO_CRITIC_METADATA_KEYS, VIDEO_CRITIC_MIN_ADHERENCE_SCORE, VIDEO_DURATION_TIERS, VIDEO_GEN_COLLAPSED_T2V_IDS, VIDEO_GEN_PROVIDERS, VIDEO_INPUT_LIP_SYNC_PROVIDERS, VIDEO_MODEL_CAPS, VIDEO_MODE_ALIASES, VIDEO_PRODUCER_TYPES, VIDEO_PROMPT_MAX, VIDEO_PROVIDERS_REQUIRING_IMAGE, VIDEO_PROVIDERS_WITHOUT_DISPATCH, VIDEO_REF_LIMITS_BY_PROVIDER, VIDEO_REF_VIDEO_DURATION_LIMITS, VIDEO_TO_VIDEO_PROVIDERS, VIDEO_UPSCALE_PROVIDERS, VIDEO_UTIL_PRICING, VIDEO_VARIABLE_PRICING, VOICE_CHANGER_MODELS, VOICE_CHANGER_MODEL_IDS, VOICE_DESIGN_MODELS, type ValidateMatchCutInput, ValidateMatchCutInputSchema, type ValidateMatchCutResult, ValidateMatchCutResultSchema, type ValidationField, type Vec3, type Vehicle, type VehicleSubcategory, type VideoAnalysisAudioMode, type VideoAnalysisClipTransitionIn, type VideoAnalysisEntitySource, type VideoAnalysisMixedTier, type VideoAnalysisModelTier, type VideoAnalysisResult, type VideoAnalysisShotAngle, type VideoAnalysisSpeedEffect, type VideoAnalysisTextKind, type VideoAnalysisTier, type VideoAnalysisTransition, type VideoAnalysisVisualEffect, type VideoAudioCapability, type VideoAudioMode, type VideoClipCost, type VideoCriticFrameMode, type VideoCriticMetadataKey, type VideoCriticShotFields, type VideoCriticVerdict, VideoCriticVerdictSchema, type VideoGenProvider, type VideoModeAlias, type VideoModelCapabilities, type VideoToVideoProvider, type VideoUpscaleProvider, type Voice, type VoiceChangerModel, type VoiceClone, type VoiceDesignModel, type VoiceLibraryParams, type VoiceLibraryResponse, type VoiceMatch, VoiceMatchSchema, type VoiceType, WAN_3_DEFAULT_RESOLUTION, WAN_3_PROVIDERS, WARDROBE_VARIANTS, WEAPONS, WEAPON_SUBCATEGORY_LABELS, WEAPON_SUBCATEGORY_ORDER, WORKFLOW_VISIBILITIES, WORKSPACE_HEADER, WORKSPACE_HEADER_LOWER, WORKSPACE_ROLES, type Weapon, type WeaponSubcategory, type WindowAnalysis, type WindowScene, type WorkflowAssetKind, type WorkflowExport, type WorkflowExportCharacter, type WorkflowExportCreature, type WorkflowExportLocation, type WorkflowExportObject, type WorkflowImportReport, type WorkflowImportSkippedAsset, type WorkflowMediaRef, type WorkflowPortability, type WorkflowVisibility, type WorkspaceMemberView, type WorkspaceRole, type WorkspaceSettings, WorkspaceSettingsSchema, type WorkspaceSummary, type WorkspaceView, aggregateByType, aiAvatarReserveCreditId, analyzedSceneSchema, applyDefaultVideoSelection, applyHandleInputOverride, applyRange, applyRangeIndices, applyScene3DEditOperations, applyScene3DV2EditOperations, applySlots, applyVideoAudioToggle, applyVideoNegativePrompt, aspectRatioFromDims, aspectRatioOptionsByKind, aspectRatioToNumber, assembleNarratedVideoCredits, availableReasoningEfforts, bucketSecondsFromAuditCreditId, bucketSecondsFromCreditId, buildBoardPrompt, buildChildrenByParent, buildConditionVariables, buildCreditModelIdentifier, buildExpressionFromVisual, buildLipSyncCreditId, buildLlmCreditIdentifier, buildModelMenu, buildModelTree, buildMotionCreditModelIdentifier, buildNodePresetExport, buildPanelPrompt, buildProgressSegments, buildRangeLabel, buildScraperCreditId, buildVideoAnalysisCreditId, buildVideoAuditCreditId, buildVideoCreditModelIdentifier, calculateCombinedProgress, calculateMonetizationMarkup, calculateMonetizedCost, calculateProgress, canonicalScene3DPlanV2Json, canonicalVarName, characterBoardItems, characterBucketDisplayRank, characterMentionSlug, characterMentionableAssetArrays, characterSheetRefItems, characterVariantAssetArrays, checkRefVideoDurations, cinematicCreditId, clampCinematicDuration, clampSmartCutWindow, classifyRefToken, cleanOrphanedItems, clearImageCriticMetadata, clearVideoCriticMetadata, clipLookSchema, collectAncestorRefs, combineSameLabelRefs, computeAggregateLanes, computeScene3DPlanV2ContentHash, countRefModalityEdges, creditRangesAll, creditsToUsd, decodeProviderItem, defaultCarriedFraction, defaultResolutionFor, defaultRoleForSource, defaultVideoAspectRatio, deriveLinkedFields, deriveLottieSlotFields, deriveSlotRefs, describeEdgeBehavior, describeMaskRegion, describeNodeAdjustments, describeSlotControl, dropUnknownBindings, dropUnknownSpeakers, durationsByMode, effectiveReasoningEffort, encodeProviderItem, ensureLocaleCatalogLoaded, entityHydrationColumns, entityMentionSlug, entityMentionSlugForRef, entityScalarFields, entitySlotSchema, entryMatchesQuery, estimateCombineVideosCredits, estimateFilmCredits, estimateLoopTrimAddonCredits, estimateLoopVideoCredits, estimateScriptDurationSec, estimateSheetCost, estimateTrimVideoCredits, evaluateCondition, evaluateConditionGroup, evaluateJsonExpression, evaluateJsonPath, expandExtraRefsToConnectedReferences, expandItemsWithRepeat, extractAllGeneratedResults, extractCharacterLoraFields, extractGeneratedJsonAsList, extractPresetData, extractReferencedLabels, extractVideoDurationFromNode, fieldKeyFromHandle, filterCloneNodes, findCharacterMentionTokens, findEntityMentionTokens, findImageMentionTokens, findLocationMentionTokens, findSeedance2AudioOverLimit, firstSightExtraRole, flattenItems, getAnimal, getAnimalLabel, getAnimalPromptHint, getAnimalTerm, getAspectRatioOptions, getAudioCrossfadeCurve, getCharacterFacet, getCombineTransition, getCreditRange, getDurationsForModel, getEffectiveRepeatCount, getFeaturedEntities, getFurniture, getFurnitureLabel, getInputFieldSchema, getInputNodes, getItemSortId, getLipSyncMaxAudioSeconds, getLlmModalityCaps, getLlmModel, getLlmTier, getLocaleDirection, getMaxImagePromptChars, getMaxNegativePromptChars, getMaxSunoPromptChars, getMaxSunoStyleChars, getMaxTtsChars, getMaxVideoPromptChars, getModel, getNodeLabel, getNodeResult, getOutputNodes, getOutputType, getParameterValue, getQualityOptions, getResolutionOptions, getRouteReachableNodeIds, getStrategy, getTargetField, getValidValues, getVehicle, getVehicleLabel, getVideoAudioCapability, getWeapon, getWeaponLabel, groupByFamily, groupHandleId, groupLlmModelsByVendor, hasContiguousSegmentDurations, hasFeature, hexToRgbaArray, humanizeSlotSid, imageMentionSlug, imageMentionSlugForRef, imageReferenceLimit, inferMusicVideo, isAggregateableType, isCharacterAspectRatio, isCollectInEdge, isDefaultSelectorConfig, isExpandedClone, isFlux2Model, isGeminiOmniProvider, isGvpSupportedProvider, isHandleInputWired, isKineticCaptionStyle, isKnownScene3DEngine, isLocationUsageMode, isMinimaxH3Provider, isObjectAspectRatio, isOversizedScene, isPaygRetentionActive, isPerSecondLipSyncProvider, isScene3DCameraTrack, isScene3DHttpUrl, isScene3DPlan, isScene3DPlanV1, isScene3DPlanV2, isScene3DSchemaVersionSupported, isScraperActor, isSeedance2Provider, isTiltDirection, isUsageMode, isVeoProvider, isVideoAnalysisMixedTier, isVideoAnalysisTier, isWan3Provider, jsonResultToList, knownEntitySlugsFromRefs, knownImageSlugsFromRefs, listBoardTemplates, listModels, listSlotSids, llmRouteDefaults, locationMentionSlug, locationReferencePhotoKindLabel, locationUsageModeLabel, mapAspectRatio, mapQuality, mapShotIntentToProviderDirectives, matchVariant, maxSegmentSecFor, maxSegmentsFor, mergeClipLook, mergeExposedSettings, migrateEdgeOutputMode, migrateToItems, minSegmentSecFor, modelIdsByKindMode, modelToNodeTarget, modelsForInputMode, modelsWithFeature, motionGraphicsFeature, newScene3DRevisionId, normalizeLottieLayers, normalizeMinimaxH3Resolution, normalizeModelInput, normalizeNodeModelParams, normalizePinterestUrl, normalizeRoleSlug, normalizeVideoRequestParams, normalizeWan3Resolution, orderedLlmModels, parseAttributedDialogue, parseCharacterMentionToken, parseEntityMentionToken, parseGroupHandle, parseHandleId, parseImageMentionToken, parseListExpression, parseLocationMentionToken, parseNodePresetExport, parseNodeRef, parseScene3DCameraTrackJson, parseScene3DPlanV2Json, pickAiAvatarBucket, pickIds, pickLipSyncBucket, pickSwitchXFrameTier, pickVideoAnalysisBucket, planSheetGeneration, planSheetPanels, preferredInputModeForModel, presentTypes, presetApplyClearKeys, presetDataMatches, presetEntries, pricedVideoSelection, qualityOptionsByKind, readPromptAffixes, refHandleCategory, referenceModalityForHandle, referenceSheetCreditId, registerCatalogSidecars, registerSidecarLoaders, renderAnalyzedScene, resetCatalogSidecars, resolutionOptionsByKind, resolveAiAvatarCreditId, resolveAudioCrossfadeCurve, resolveCharacterAspectRatio, resolveCinematicCreditId, resolveConditionValue, resolveDefaultRole, resolveDescription, resolveDialogueVoices, resolveEffectiveSourceType, resolveEffectiveTier, resolveEntityAspect, resolveFieldMappings, resolveGvpAnchorWire, resolveImageGenCreditIdentifier, resolveIndex, resolveLabel, resolveListExpression, resolveLlmCreditId, resolveLocationFields, resolveLocationPresetCatalog, resolveLottieOverlaySrc, resolveNodeRefs, resolveNormalizedImageGen, resolveObjectAspectRatio, resolvePipelineModel, resolveRelativeWindowToken, resolveScraperCreditId, resolveSelectorRefs, resolveSeparator, resolveSheetSections, resolveSlideshowTransition, resolveSourceThroughConnectedList, resolveStoredTier, resolveSwitchXCreditId, resolveTopazUpscale, resolveVideoAnalysisModel, resolveVideoModeForInputs, resolveVideoProviderForMode, resolveXfadeName, rewriteSceneBindings, rewriteSlotTokens, rewriteSpeakerSlots, rgbaArrayToHex, roleToPhrase, rotationVec3Schema, runSelector, safetyRetryPolicy, sanitizeRole, scaleVec3Schema, scene3DAcceptedSchemaVersionsSchema, scene3DAnchorNameSchema, scene3DAnchorSchema, scene3DAnyPlanSchema, scene3DAssetAnimationSchema, scene3DAssetIdSchema, scene3DAssetRefSchema, scene3DCameraChangesSchema, scene3DCameraKeyframeSchema, scene3DCameraSampleSchema, scene3DCameraSchema, scene3DCameraTrackIssues, scene3DCameraTrackObjectSchema, scene3DCameraTrackPlanIssues, scene3DCameraTrackSchema, scene3DClayLightingSchema, scene3DColorSchema, scene3DDeepEqual, scene3DEasingSchema, scene3DEditOperationSchema, scene3DEditOperationsSchema, scene3DEngineIdSchema, scene3DEntityAcceptsOverlay, scene3DEntityCapabilitySchema, scene3DEntityV2Schema, scene3DEntityVisualSchema, scene3DIdSchema, scene3DJsonByteLength, scene3DLightingChangesSchema, scene3DLightingSchema, scene3DMaterialBindingSchema, scene3DMaterialNameSchema, scene3DMaterialRoleSchema, scene3DNodeIdSchema, scene3DObjectChangesSchema, scene3DObjectKeyframeSchema, scene3DObjectSchema, scene3DOverrideSchema, scene3DPlanIssues, scene3DPlanSchema, scene3DPlanSchemaVersion, scene3DPlanV1Issues, scene3DPlanV1ObjectSchema, scene3DPlanV1Schema, scene3DPlanV2Issues, scene3DPlanV2ObjectSchema, scene3DPlanV2Schema, scene3DPrimitiveSchema, scene3DProjectionIssues, scene3DProvenanceSchema, scene3DReferenceSchema, scene3DSampleForFrame, scene3DSha256Schema, scene3DShotForFrame, scene3DShotIndexForFrame, scene3DShotSchema, scene3DUrlSchema, scene3DV2AdmissionIssues, scene3DV2EditOperationSchema, scene3DV2EditOperationsSchema, scene3DV2HierarchyDepth, scene3DV2NormalizationIssues, scene3DV2OverrideInputSchema, scene3DV2ResourceUsage, scene3DVersionTokenSchema, scene3DZodIssues, searchModelVariants, seedance2AudioLimitSec, segmentDurationsFor, selectByModulo, selectByNamedKey, selectByPredicate, selectListItems, selectLoraRoutingForMentions, selectRandom, setRegisteredPersonPackFields, settledWithLimit, sizeVec3Schema, slotVariationSchema, sortCharacterEntriesForDisplay, sortListItems, sourceRefKey, spliceDelimitedRows, splitByLoopDelimiter, splitGeneratedItems, spreadJsonArrayIfSingleton, stringifyPathResults, stripDerivedAnalysisFields, stripExportContent, stripStudioTransientSettings, stripTransientRuntimeData, summarizeScene3DOperations, sunoCreditType, supportedDefaultDimensions, supportsAdvancedMode, supportsEndAnchor, supportsExtendRender, toConnectedReference, toConnectedReferences, togglePick, tryParseJson, uiAspectRatioFill, uiDurationFill, uiResolutionFill, unresolvedRefTokens, unwrapUnresolvedTokens, usageModeDirective, usageModeIncludesName, usageModeLabel, usdToCredits, validateAiAvatarPayload, validateCinematicAvatarPayload, validateDurationForFormat, validateModeActivation, validateModelInput, validateNoNestedGroups, validateObjects, validateProviderForNodeType, validateSubWorkflowRoutes, variantJobId, vec3Schema, verifyScene3DPlanV2ContentHash, videoAnalysisCreditSegment, videoAnalysisNumWindows, videoAnalysisResultSchema, videoAuditCreditsForBucket, videoModelCanSpeakDialogue, videoModelSupportsAudio, videoNegativeSuffix, videoProviderFoldsLoneEndFrame, videoProviderRequiresImage, windowAnalysisSchema, zipMergeLists };
15386
+ /** The value that names the Basic lane explicitly. Absent means the same. */
15387
+ declare const SCENE3D_BASIC_ENGINE = "basic";
15388
+ /** Everything a caller may put in `engine` on a Generate/Edit request. */
15389
+ declare const SCENE3D_AUTHORING_ENGINES: readonly ["basic", "blender-cloud", "blender-local"];
15390
+ type Scene3DAuthoringEngine = (typeof SCENE3D_AUTHORING_ENGINES)[number];
15391
+ /**
15392
+ * The engine an Advanced run picks when nothing else names one.
15393
+ *
15394
+ * Hosted cloud, because that is the contract's default lane; `blender-local`
15395
+ * is never inferred — it needs a paired desktop and its own deployment flag,
15396
+ * so it is only ever used when it was explicitly asked for or when the scene
15397
+ * under edit was authored by it and this install still offers it.
15398
+ */
15399
+ declare const SCENE3D_DEFAULT_ADVANCED_ENGINE: Scene3DKnownEngine;
15400
+ declare function isScene3DAuthoringEngine(value: unknown): value is Scene3DAuthoringEngine;
15401
+ interface Scene3DEngineChoiceInput {
15402
+ /** The node's/caller's explicit selection. `undefined` = "not chosen". */
15403
+ requested?: string | null;
15404
+ /**
15405
+ * The plan the run edits, for an edit. Omit for generate.
15406
+ *
15407
+ * The raw plan rather than a version number on purpose: the caller already
15408
+ * holds it, and reading the version here is the ONE place the "v2 never goes
15409
+ * to Basic" rule can be enforced for every surface at once.
15410
+ */
15411
+ plan?: unknown;
15412
+ /**
15413
+ * Advanced engines this install can actually serve, from
15414
+ * `GET /v1/3d-scene/capabilities`.
15415
+ *
15416
+ * `undefined` means NOT KNOWN (the headless orchestrator never asks, and the
15417
+ * browser has not had the answer back yet) — which is different from "none".
15418
+ * Unknown proceeds and lets the route refuse honestly with
15419
+ * `SCENE_CAPABILITY_UNAVAILABLE`; a known-empty list refuses here, before a
15420
+ * request that cannot succeed is sent.
15421
+ */
15422
+ availableEngines?: readonly string[] | undefined;
15423
+ }
15424
+ /** The extra body fields an Advanced request carries. Empty on Basic, so the
15425
+ * Basic request stays byte-identical to what it has always been. */
15426
+ interface Scene3DEngineRequestFields {
15427
+ engine?: Scene3DKnownEngine;
15428
+ /**
15429
+ * Which scene schema versions the CALLER can read back.
15430
+ *
15431
+ * Contract §5: an advanced authoring request declares this so the engine
15432
+ * never answers with a revision the caller cannot render. Both of our
15433
+ * surfaces read v1 and v2, so both send the same list.
15434
+ */
15435
+ acceptedSceneSchemaVersions?: number[];
15436
+ }
15437
+ type Scene3DEngineChoiceRefusalCode =
15438
+ /** The name is not an engine this contract knows. */
15439
+ "unknown_engine"
15440
+ /** Explicitly asked for an engine this install does not serve. */
15441
+ | "engine_unavailable"
15442
+ /** A v2 scene was pointed at the Basic lane. */
15443
+ | "schema_requires_advanced"
15444
+ /** The scene claims a version nothing here can author against. */
15445
+ | "unsupported_schema_version"
15446
+ /** v2 scene, and no Advanced engine installed at all. */
15447
+ | "advanced_unavailable";
15448
+ type Scene3DEngineChoice = {
15449
+ ok: true;
15450
+ lane: "basic";
15451
+ engine: undefined;
15452
+ fields: Scene3DEngineRequestFields;
15453
+ } | {
15454
+ ok: true;
15455
+ lane: "advanced";
15456
+ engine: Scene3DKnownEngine;
15457
+ fields: Scene3DEngineRequestFields;
15458
+ } | {
15459
+ ok: false;
15460
+ code: Scene3DEngineChoiceRefusalCode;
15461
+ message: string;
15462
+ };
15463
+ /**
15464
+ * Resolve the lane, or refuse with a sentence the user can act on.
15465
+ *
15466
+ * Pure and synchronous: every caller already holds the three inputs, and the
15467
+ * answer must be identical on the canvas and in the orchestrator.
15468
+ */
15469
+ declare function resolveScene3DAuthoringEngine(input: Scene3DEngineChoiceInput): Scene3DEngineChoice;
15470
+ /** v1's version constant, re-exported for callers narrowing a plan by hand. */
15471
+ declare const SCENE3D_BASIC_SCHEMA_VERSION = 1;
15472
+
15473
+ export { ACCESS_LEVELS, ACTIVE_SCENE_HELPERS, ADVANCED_MODE_UNAVAILABLE_REASON, AGGREGATEABLE_TYPES, AGGREGATE_LANE_SOURCE_TYPES, AI_AVATAR_DURATION_BUCKETS, AI_AVATAR_MAX_AUDIO_SEC, AI_AVATAR_MAX_DURATION_SEC, AI_AVATAR_RESERVE_IDS, AI_WRITER_PROVIDERS, ALA_CARTE_BOARDS, ALL_CAPTION_STYLES, ANIMALS, ANIMAL_SUBCATEGORY_LABELS, ANIMAL_SUBCATEGORY_ORDER, ASPECT_RATIO_DIMENSIONS, AUDIO_ADDON_PROVIDERS, AUDIO_CROSSFADE_CURVES, AUDIO_CROSSFADE_CURVE_IDS, AUDIO_FX_PRESETS, AUDIO_FX_PRESET_LABELS, AUDIO_FX_PRESET_SET, AUDIO_FX_REVERB_PRESETS, AUDIO_PRODUCER_TYPES, type AccessLevel, type AddBRollResult, AddBRollResultSchema, type AggregateableType, type AggregationBuckets, type AiAvatarDurationBucket, type AiAvatarEngine, type AiAvatarResolution, type AiWriterProvider, type AlaCarteBoard, type AnalyzedScene, type AnchorSceneStyleResult, AnchorSceneStyleResultSchema, type Animal, type AnimalSubcategory, type AssetRef, AssetRefSchema, type AudioCrossfadeCurve, type AudioFxPreset, type AudioLayer, type AuditImagesResult, AuditImagesResultSchema, type AuditImagesShotEntry, AuditImagesShotEntrySchema, AuditPromptIssueSchema, type AuditPromptResult, AuditPromptResultSchema, AvatarPayloadError, BOARD_TO_ASSET_TYPE, BOARD_TO_COLUMN, BOARD_VARIANTS, type BoardEntityKind, type BoardPromptContext, type BoardTemplate, BridgeToNextSceneInputSchema, type BridgeToNextSceneResult, BridgeToNextSceneResultSchema, type BrowseCommunityParams, type BrowseCommunityResult, CATEGORY_DURATION_DEFAULTS, CHARACTER_ASPECT_DEFAULTS, CHARACTER_ASPECT_OPTIONS, CHARACTER_ASSET_TYPES, CHARACTER_ASSET_VARIANTS, CHARACTER_ATTACH_COLUMNS, CHARACTER_FACETS, CHARACTER_FACET_IDS, CHARACTER_LORA_TRAINING_JOB_TYPE, CHARACTER_MOTION_PROVIDERS, CHARACTER_PICKER_DISPLAY_ORDER, CHARACTER_REFERENCE_PHOTO_KINDS, CHARACTER_STYLES, CHARACTER_VARIANT_ASSET_BUCKETS, CHAT_ENABLED_STAGES, CHAT_STAGES, CHAT_TURN_CAPS, CHAT_WIRED_STAGES, CINEMATIC_DEFAULT_DURATION_SEC, CINEMATIC_DEFAULT_RESOLUTION, CINEMATIC_MAX_DURATION_SEC, CINEMATIC_MAX_LOOKS, CINEMATIC_MAX_REFERENCE_IMAGES, CINEMATIC_MAX_REFERENCE_VIDEOS, CINEMATIC_MIN_DURATION_SEC, CINEMATIC_MIN_LOOKS, CINEMATIC_PROMPT_MAX, CINEMATIC_RESERVE_IDS, COLLABORATOR_ROLES, COLLECT_IN_HANDLE, COMBINE_TRANSITIONS, COMBINE_TRANSITION_GROUP_LABELS, COMBINE_TRANSITION_GROUP_ORDER, COMBINE_TRANSITION_IDS, COMPOSER_PLAN_FIELDS, COMPOSER_PLAN_MAP, CONTENT_TYPES_BY_PLATFORM, CREATURE_ATTACH_COLUMNS, CREDIT_BASE_USD, CREDIT_ROUNDING_RESOLUTION, type CaptionStyle, type CastCoverageCriticVerdict, CastCoverageCriticVerdictSchema, type CharacterAspectRatio, type CharacterAssetType, type CharacterAssetTypeForAspect, type CharacterAttachColumn, type CharacterDef, type CharacterFacet, type CharacterImageCriticVerdict, CharacterImageCriticVerdictSchema, type CharacterLoraFields, type CharacterMentionTokenInfo, CharacterMetadataSchema, type CharacterMotionProvider, type CharacterReferencePhoto, type CharacterReferencePhotoKind, type CharacterVariantAssetBucket, type CharacterVariantAssetItem, type CharacterVoiceSpec, type ChatEnabledStage, type ChatTurnResponse, ChatTurnResponseSchema, type CinematicResolution, type ClipLook, type CloneListingResult, type CollaboratorRole, type CombineTransition, type CombineTransitionGroup, type CombineVideosEstimatorInput, type CommunityCard, type CommunityEntityType, type CommunityFullDetail, type CommunityReportReason, type CommunitySort, type ComponentHandle, type ComponentMetadata, type ConnectedReference, type CreatureAttachColumn, CriticIssueSchema, type CustomEntry, DEFAULT_AUDIO_CROSSFADE_CURVE_ID, DEFAULT_CARRIED_FRACTION, DEFAULT_CHARACTER_ANGLE_COUNT, DEFAULT_CHARACTER_EXPRESSION_COUNT, DEFAULT_CHARACTER_FACET, DEFAULT_LABEL_BY_SOURCE, DEFAULT_LOCATION_USAGE_MODE, DEFAULT_PANEL_COUNT, DEFAULT_REF_IMAGE_MAX, DEFAULT_SECTIONS, DEFAULT_USAGE_MODE, DEFAULT_VIDEO_ANALYSIS_MODEL, DEFAULT_VIDEO_ANALYSIS_TIER, DEFAULT_VIDEO_CLIP_COST, DEFAULT_VIDEO_DURATION_SEC, DEFAULT_VIDEO_PROVIDER, DEFAULT_VOICE_CHANGER_MODEL, DEFAULT_VOICE_DESIGN_MODEL, DETAIL_VARIANTS, DURATION_PRICED_PROVIDERS, DYNAMIC_PRODUCER_TYPES, type DescribedReference, type DetectionResult, DetectionResultSchema, type DialogueLine, EFFORT_TIER_BUMP, EMOTIONAL_BEAT, ENTITY_ASPECT_DEFAULTS, ENTITY_BUCKET_FIELDS, ENTITY_DB_ID_FIELD, ENTITY_IMAGE_HANDLE_TYPES, ENTITY_KIND_SCALAR_FIELDS, ENTITY_NAME_FIELD, ENTITY_NODE_KINDS, ENTITY_SCALAR_FIELDS, ENTITY_SECTIONS, ENTITY_STATUSES, ENTITY_TABLE, ENTITY_TOOL_RETRY_CAP, ENTITY_TYPES, EXECUTION_DATA_KEYS, EXTEND_VIDEO_PROVIDERS, type EntityKind, type EntityMentionTokenInfo, type EntityMetadata, EntityMetadataSchema, type EntityNodeKind, type EntityReferenceInput, type EntityRejectInput, EntityRejectInputSchema, type EntitySlot, type EntityStaleEvent, EntityStaleEventSchema, type EntityStateChangeEvent, EntityStateChangeEventSchema, type EntityStatus, type EntityStudioKind, type EntityStyle, type EntityType, type EvaluateConditionOptions, type ExportedPreset, type ExposableField, type ExposableOutput, type ExposedSetting, type ExtendVideoProvider, type ExtraRefCharacterContext, type ExtraRefInput, FACE_SWAP_PROVIDERS, FAL_LIP_SYNC_PROVIDERS, FAN_OUT_EACH_TYPES, FEATURED_ENTITIES, FILM_BASE_CREDITS, FLEXIBLE_INPUT_LIP_SYNC_PROVIDERS, FLUX2_RES_MP, FLUX_LORA_CHARACTER_MODEL_ID, FRAME_MODE_ADAPTIVE_ONLY_ASPECT, FRAME_TARGET_HANDLES, FREECUT_EXPORT_COMPLETE, FREECUT_EXPORT_PROGRESS, FREECUT_READY, FREECUT_REQUEST_IMPORT, FURNITURE, FURNITURE_SUBCATEGORY_LABELS, FURNITURE_SUBCATEGORY_ORDER, type FaceSwapProvider, type FavoriteListingResult, type FeaturedEntity, type FilmCreditEstimate, type FilterListCondition, type FilterListOperator, type FilterOperator, type FixContinuityInput, FixContinuityInputSchema, type FixContinuityResult, FixContinuityResultSchema, type Flux2Model, type FreecutExportCompletePayload, type FreecutExportProgressPayload, type FreecutImportFile, type FreecutRequestImportPayload, type FullSelectorMode, type Furniture, type FurnitureSubcategory, GEMINI_OMNI_PROVIDERS, GENERATE_TEXT_DELIMITER, GLOBAL_MAX_DURATION_SECONDS, GRANTED_ACCESS, GROUP_HANDLE_PREFIX, GUIDANCE_SCALE_SUPPORT, GVP_ANCHOR_CHOICES, GVP_DEFAULT_PROVIDER, GVP_END_FRAME_PROVIDERS, GVP_EXTEND_PROVIDERS, GVP_SUPPORTED_PROVIDERS, GenerateMotionInputSchema, type GenerateMotionResult, GenerateMotionResultSchema, type GenericEdge, type GenericNode, type GrantedAccess, type GvpAnchorChoice, type GvpAnchorWireMode, HANDLE_PORT_SEPARATOR, HELPERS_SHIPPED_IN_1B3, HIGH_QUALITY_PROVIDERS, HINT_EXEMPT_PARAMETER_TYPES, type HintEdgeLike, type HintGraphContext, type HintNodeLike, type I18nCatalogId, I2I_MASK_SUPPORT, I2I_STRENGTH_SUPPORT, IDEOGRAM_PROVIDERS, IMAGE_ASPECT_RATIO_VALUES, IMAGE_CRITIC_LEAF_MODES, IMAGE_CRITIC_MAX_RETRIES, IMAGE_CRITIC_METADATA_KEYS, IMAGE_CRITIC_MIN_ADHERENCE_SCORE, IMAGE_CRITIC_MODES, IMAGE_CRITIC_UNRESOLVABLE, IMAGE_EDIT_PROVIDERS, IMAGE_GEN_PROVIDERS, IMAGE_I2I_PROVIDERS, IMAGE_MASK_MODE, IMAGE_PROMPT_MAX, IMAGE_REF_TYPES, IMAGE_TO_VIDEO_PROVIDERS, INPUT_FIELD_MAP, INPUT_NODE_TYPES, INSTAGRAM_CAROUSEL_MAX_ITEMS, INSTAGRAM_CAROUSEL_MIN_ITEMS, ITER_CLONE_PATTERN, type IdentityFidelity, type IdentityMeta, type ImageAspectRatio, type ImageCriticIssue, ImageCriticIssueSchema, type ImageCriticLeafMode, type ImageCriticMetadataKey, type ImageCriticMode, type ImageCriticNodeIssue, type ImageCriticResult, ImageCriticResultSchema, type ImageCriticVerdict, ImageCriticVerdictSchema, type ImageEditProvider, type ImageGenProvider, type ImageI2IProvider, type ImageMaskMode, type ImageMentionTokenInfo, type ImageToVideoProvider, type ImprovePromptInput, ImprovePromptInputSchema, type ImprovePromptResult, ImprovePromptResultSchema, type InputFieldSchema, type InvitationDelivery, type InvitationPreview, type InvitationState, type InvitationView, type JoinCodeView, type JsonEvalResult, type JsonFilter, type JsonPatch, KEYFRAME_CREDITS_PER_SHOT, KINETIC_CAPTION_STYLES, type KieApiFormat, type KineticCaptionStyle, LANGUAGES, LEGACY_LOTTIE_HOST_REMAP, LIP_SYNC_DURATION_BUCKETS, LIP_SYNC_MAX_AUDIO_SECONDS, LIP_SYNC_PROVIDERS, LLM_FEATURE_DEFAULTS, LLM_MODALITY_CAPS, LLM_MODELS, LLM_MODEL_IDS, LLM_REASONING_EFFORTS, LLM_ROUTE_DEFAULTS, LLM_TEXT_INPUT_MAX, LLM_VENDOR_LABELS, LLM_VENDOR_ORDER, LOCATION_ASSET_TYPES, LOCATION_ASSET_VARIANTS, LOCATION_ATMOSPHERE_PROVIDERS, LOCATION_ATTACH_COLUMNS, LOCATION_BUCKET_TO_CATALOG_ID, LOCATION_PRESET_TO_CATALOG, LOCATION_REFERENCE_PHOTO_KINDS, LOCATION_REFERENCE_PHOTO_KIND_LABELS, LOCATION_USAGE_MODES, LOTTIE_OVERLAY_CATALOG, LOTTIE_SLOT_FIELD_PREFIX, type LabeledOption, type LipSyncDurationBucket, type LipSyncProvider, type LlmFeature, type LlmModelDef, type LlmModelGroup, type LlmReasoningEffort, type LlmRouteDefaults, type LlmTier, type LlmVendor, type LocaleCatalogMap, type LocaleDirection, type LocaleId, type LocationAssetType, type LocationAtmosphereProvider, type LocationAttachColumn, type LocationCatalogRef, type LocationImageCriticVerdict, LocationImageCriticVerdictSchema, type LocationMentionTokenInfo, LocationMetadataSchema, type LocationReferencePhotoKind, type LocationUsageMode, LocationsCoverageCriticIssueSchema, type LocationsCoverageCriticVerdict, LocationsCoverageCriticVerdictSchema, type LoopTrimEstimatorInput, type LoopVideoEstimatorInput, type LoraEligibleRef, type LoraRouting, type LottieOverlayCatalogEntry, type LottieSlotField, MAX_CUSTOM_ENTRIES_PER_BOARD, MAX_IMAGE_PROMPT_CHARS_BY_PROVIDER, MAX_LOCATION_VARIANTS, MAX_NEGATIVE_PROMPT_CHARS_BY_PROVIDER, MAX_PANELS_PER_SHEET, MAX_TTS_CHARS_BY_PROVIDER, MAX_VIDEO_PROMPT_CHARS_BY_PROVIDER, MEMBER_STATUSES, MINIMAX_H3_DEFAULT_RESOLUTION, MINIMAX_H3_PROVIDERS, MODELS_WITH_REFERENCE_IMAGE_SUPPORT, MODEL_CATALOG, MODEL_PARAM_NODE_TYPES, MODEL_RECOMMENDATIONS, MODIFY_IMAGE_PROVIDERS, MOTION_COLUMN, MOTION_TRANSFER_PROVIDERS, MUSIC_PROVIDERS, type MaskRegionDescriptor, type MatchCutVerdict, MatchCutVerdictSchema, type MeOrganizations, type Member, type MemberStatus, type MinimalEdge, type MinimalNode, type ModelCatalogEntry, type ModelInputAdjustment, type ModelKind, type ModelMenuOption, type ModelMode, type ModelNodeTarget, type ModelPromptingStyle, type ModelRecommendation, type ModelTreeLine, type ModelTreeVariant, type ModelValidationIssue, type ModifyImageProvider, type MotionTransferProviderType, type MusicProvider, NATIVE_ADAPTIVE_ASPECT, NATIVE_NEGATIVE_PROMPT_MODELS, NATIVE_NEGATIVE_VIDEO_PROVIDERS, NEGATIVE_PROMPT_MAX, NODARO_IMPORT_FILES, NODARO_LOAD_TIMELINE, NODARO_LOAD_VIDEO, NODARO_RESET_PROJECT, NODE_DEFAULT_TYPES, NODE_MAPPABLE_FIELDS, NODE_PRESET_EXPORT_KIND, NODE_REF_PATTERN, NON_EN_LOCALE_IDS, NO_SPLIT_DELIMITER, type NodaroLoadTimelinePayload, type NodaroLoadVideoPayload, type NodeDefaultType, type NodeParamAdjustment, type NodePresetExport, type NormalizedImageGen, type NormalizedModelInput, type NormalizedNodes, type NormalizedVideoRequest, OBJECT_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS, OBJECT_ASSET_TYPES, OBJECT_ASSET_VARIANTS, OBJECT_ATTACH_COLUMNS, OBJECT_MOTION_PROVIDERS, OBJECT_PICKER_NODE_TYPES, ORG_ERROR_CODES, ORG_KINDS, ORG_ROLES, ORG_STATUSES, OUTPUT_FIELD_MAP, OUTPUT_FORMATS, type ObjectAspectRatio, type ObjectAssetType, type ObjectAssetTypeForAspect, type ObjectAttachColumn, ObjectMetadataSchema, type ObjectMotionProvider, type ObjectsValidationIssue, type ObjectsValidationResult, OptimizeForModelInputSchema, type OptimizeForModelResult, OptimizeForModelResultSchema, type OrgAuditEntry, type OrgErrorCode, type OrgKind, type OrgMemberView, type OrgPage, type OrgRole, type OrgSettings, OrgSettingsSchema, type OrgStatus, type OrganizationSummary, type OrganizationView, type OutputFormat, type OutputMode, type OutputType, PARAMETER_NODE_TYPES, PASSTHROUGH_TYPES, PAYG_RETENTION_DAYS, PER_FORMAT_DURATION_BOUNDS, PICKER_TO_COMBINE_TRANSITION, PIPELINE_ACTIVATION_MODES, PIPELINE_FORMATS, PIPELINE_HARD_TIMEOUT_MS, PIPELINE_MODEL_STAGES, PIPELINE_MODES, PIPELINE_OUTPUT_RESOLUTIONS, PIPELINE_PINNABLE_IMAGE_MODELS, PIPELINE_PINNABLE_SCRIPT_LLMS, PIPELINE_PINNABLE_VIDEO_MODELS, PIPELINE_STAGE_NAMES, PIPELINE_STAGE_TIMEOUT_MS, PIPELINE_TYPES, PLACEHOLDER_CHARACTER_NAME, PLATFORM_LABELS, PLATFORM_SPECS, PRESET_APPLY_CLEAR_KEYS, PRESET_EXCLUDED_KEYS, PRESET_LABELS, PRESET_SETTING_KEYS, PRICING_DEFAULT_DURATION_SEC, PRICING_DEFAULT_RESOLUTION, PRO3D_RENDER_ASPECT_RATIOS, PRO3D_RENDER_CREDIT_ID, PRO3D_RENDER_DEFAULT_ENGINE, PRO3D_RENDER_DEFAULT_QUALITY, PRO3D_RENDER_DEFAULT_REPAIR_PASSES, PRO3D_RENDER_DEFAULT_STYLE, PRO3D_RENDER_ENGINES, PRO3D_RENDER_LABEL, PRO3D_RENDER_LIMITS, PRO3D_RENDER_MAX_REPAIR_PASSES, PRO3D_RENDER_MIN_REPAIR_PASSES, PRO3D_RENDER_NODE_TYPE, PRO3D_RENDER_PROMPT_MAX, PRO3D_RENDER_QUALITY_PROFILES, PRO3D_RENDER_SOURCE_KINDS, PRO3D_RENDER_STYLES, PROMPT_HARD_CEILING, PROMPT_PREFIX_KEY, PROMPT_SUFFIX_KEY, PROVIDER_DIRECTIVE_DEFAULTS, PROVIDER_PLACEHOLDER_PREFIX, type PanelGenRequest, type PanelRequest, type PanelSource, type PipelineActivationMode, type PipelineCompletedEvent, PipelineCompletedEventSchema, type PipelineConfig, PipelineConfigSchema, type PipelineDriftSummary, PipelineDriftSummarySchema, type PipelineEditorDecisionsReadyEvent, PipelineEditorDecisionsReadyEventSchema, type PipelineEvent, type PipelineForkedEvent, PipelineForkedEventSchema, type PipelineFormat, type PipelineInput, PipelineInputSchema, type PipelineLifecycleEvent, type PipelineMode, type PipelineModelStage, type PipelineMusicReadyEvent, PipelineMusicReadyEventSchema, type PipelineOutputResolution, type PipelinePinnableImageModel, type PipelinePinnableScriptLlm, type PipelinePinnableVideoModel, type PipelineStageName, PipelineStageNameSchema, type PipelineStageStatus, PipelineStageStatusSchema, type PipelineState, PipelineStateSchema, type PipelineStatus, PipelineStatusSchema, type PipelineType, type PixelBox, type PresentationItem, type PresetEntry, type PresetSettingKey, type PresetSettings, PresetSettingsSchema, type PriceVariant, type PricedVideoSelection, type Pro3DRenderAspectRatio, type Pro3DRenderCapabilities, type Pro3DRenderEngine, type Pro3DRenderJobOutput, type Pro3DRenderLocalExportSource, type Pro3DRenderPromptSource, type Pro3DRenderQuality, type Pro3DRenderQuote, type Pro3DRenderQuoteLine, type Pro3DRenderResultMetadata, type Pro3DRenderSceneSource, type Pro3DRenderSource, type Pro3DRenderSourceInput, type Pro3DRenderSourceKind, type Pro3DRenderSourceResult, type Pro3DRenderStyle, type Pro3DRenderValidationWarning, type ProgressSegment, type ProjectedCatalog, type ProjectedCatalogDimension, type ProjectedCatalogOption, type PromptAffixFields, type PromptAffixes, type ProposedChange, type PublishListingParams, type PublishListingResult, QA_CHECK_PROVIDERS, type QaCheckProvider, type QualityLevel, REDUCE_STRATEGIES, REDUCE_STRATEGY_IDS, REFERENCE_BOARD_PROVIDERS, REFERENCE_BOARD_TEMPLATES, REFERENCE_HANDLE_MAP, REFERENCE_ROLE_PRESETS, REF_HANDLE_CATEGORY, REF_IMAGE_MAX_LIMITS, REF_TOKEN_NAMESPACE_PREFIXES, RENDERING_SPEED_SUPPORT, REPEATABLE_NODE_TYPES, REPEAT_PLACEHOLDER, REPLICATE_LIP_SYNC_PROVIDERS, RESERVED_TEMPLATE_VARS, type ReduceMeta, type ReduceStrategy, type ReduceStrategyId, type RefCandidate, type RefModalityEdge, type RefTokenKind, type RefVideoDurationLimit, type ReferenceBoardProvider, type ReferenceModality, type ReferenceSheet, type ReferenceSource, type ReportListingResult, type ResolveCharacterAspectOptions, type ResolveObjectAspectOptions, type ResolveSeparatorOptions, type ResolvedDialogueVoiceLine, type RouterConditionGroup, SCENE3D_ASSET_KINDS, SCENE3D_ASSET_ROLES, SCENE3D_ASSET_ROLE_KINDS, SCENE3D_AUTHORING_ENGINES, SCENE3D_BASIC_ENGINE, SCENE3D_BASIC_SCHEMA_VERSION, SCENE3D_CAMERA_TRACK_FORMAT, SCENE3D_CAMERA_TRACK_LIMITS, SCENE3D_CAMERA_TRACK_VERSION, SCENE3D_CLAY_LIGHTING_PRESETS, SCENE3D_DEFAULT_ADVANCED_ENGINE, SCENE3D_DEFAULT_DURATION_SECONDS, SCENE3D_DEFAULT_ENTITY_CAPABILITIES, SCENE3D_DEFAULT_FPS, SCENE3D_EDIT_NODE_TYPE, SCENE3D_ENTITY_CAPABILITIES, SCENE3D_ENTITY_ROLES, SCENE3D_GENERATE_NODE_TYPE, SCENE3D_GLB_EXTRAS_ALLOWLIST, SCENE3D_GLB_EXTRAS_ENTITY_ID, SCENE3D_GLB_EXTRAS_MATERIAL_ROLE, SCENE3D_GLB_EXTRAS_SUBPART_ID, SCENE3D_LIMITS, SCENE3D_PLAN_FIELD, SCENE3D_PLAN_TYPE, SCENE3D_PRIMITIVES, SCENE3D_PRIMITIVE_MATERIAL_ROLE, SCENE3D_RENDERER_ASSET_KINDS, SCENE3D_SCHEMA_VERSION, SCENE3D_SCHEMA_VERSION_V2, SCENE3D_SUPPORTED_SCHEMA_VERSIONS, SCENE3D_V2_CONTENT_HASH_EXCLUDED, SCENE3D_V2_ENGINES, SCENE3D_V2_LIMITS, SCENE3D_V2_OVERRIDE_OPERATION_VERSION, SCENE3D_V2_PRIMITIVES, SCENE_HELPER_NAMES, SCRAPER_ACTOR_LABELS, SCRAPER_CREDIT_COSTS, SCRAPER_OUTPUT_FIELDS, SCRIPT_PROVIDERS, SEASONS, SECTION_BOARD, SECTION_KINDS, SEEDANCE_2_5_REF_LIMITS, SEEDANCE_2_CONTINUATION_REF_SEC, SEEDANCE_2_EXTEND_STITCH, SEEDANCE_2_PROVIDERS, SEEDANCE_2_R2V_MAX_AUDIO_SEC_BY_PROVIDER, SEEDANCE_2_R2V_MIN_REF_VIDEO_SEC, SEEDANCE_2_REF_LIMITS, SEEDANCE_LIP_SYNC_PROVIDERS, SEED_SUPPORT, SEPARATOR_DISPLAY, SEPARATOR_PRESETS, SHEET_ASPECTS, SHEET_BACKGROUNDS, SHEET_PRESETS, SHEET_SKINS, SHEET_TYPES, SHORT_FILM_ANGLE_COUNT, SHORT_FILM_EXPRESSION_COUNT, SHORT_FILM_VARIANT_THRESHOLD_SEC, SLOT_TOKEN_RE, SMART_CUT_WINDOW_DEFAULT, SMART_CUT_WINDOW_MAX, SMART_CUT_WINDOW_MIN, SOCIAL_POST_NODE_TYPES, STAGE_PATCH_SCHEMA, STATIC_CAPTION_STYLES, STRUCTURAL_SECTIONS, STRUCTURED_VISION_MODELS, STUDIO_SHOT_TRANSIENT_KEYS, STUDIO_TRANSIENT_KEYS, SUBMISSION_STATUSES, SUNO_ADD_TRACK_MODELS, SUNO_FIELD_HANDLE_FIELDS, SUNO_HARD_CEILING, SUNO_MODELS, SUNO_SELECT_OPERATIONS, SUNO_TEXT_MAX, SUNO_TITLE_MAX, SUNO_TRACK_SOURCE_TYPES, SUNO_VERSION_PRICED_OPERATIONS, SUPPORTED_FONT_NAMES, SURROUND_DIRECTIONS, SWITCHX_BLOCK_FRAMES, SWITCHX_FRAME_TIERS, type SafetyRetryPolicy, type Scene3DAnchor, type Scene3DAssetAnimation, type Scene3DAssetKind, type Scene3DAssetRef, type Scene3DAssetRole, type Scene3DAuthoringEngine, type Scene3DCamera, type Scene3DCameraChanges, type Scene3DCameraKeyframe, type Scene3DCameraSample, type Scene3DCameraTrackV1, type Scene3DClayLighting, type Scene3DClayLightingPreset, type Scene3DEasing, type Scene3DEditErrorCode, type Scene3DEditOperation, type Scene3DEditOptions, type Scene3DEditResult, type Scene3DEngineChoice, type Scene3DEngineChoiceInput, type Scene3DEngineChoiceRefusalCode, type Scene3DEngineRequestFields, type Scene3DEntityCapability, type Scene3DEntityRole, type Scene3DEntityV2, type Scene3DEntityVisual, type Scene3DJobOutput, type Scene3DJobOutputAny, type Scene3DJobOutputV2, type Scene3DKnownEngine, type Scene3DLighting, type Scene3DLightingChanges, type Scene3DMaterialBinding, type Scene3DNormalizedAssetStats, type Scene3DObject, type Scene3DObjectChanges, type Scene3DObjectKeyframe, type Scene3DOverride, type Scene3DOverrideSpace, type Scene3DParseResult, type Scene3DPlan, type Scene3DPlanV1, type Scene3DPlanV2, type Scene3DPrimitive, type Scene3DProvenance, type Scene3DReference, type Scene3DReferenceKind, type Scene3DReferenceRole, type Scene3DSemanticIssue, type Scene3DShot, type Scene3DSupportedSchemaVersion, type Scene3DV2EditOperation, type Scene3DV2EditOptions, type Scene3DV2EditResult, type Scene3DV2OverrideInput, type Scene3DV2Primitive, type Scene3DV2ResourceUsage, type SceneData, type SceneHelperName, SceneHelperNameSchema, type SceneInputMode, SceneInputModeSchema, type SceneMetadata, SceneMetadataSchema, type SceneNodeData, SceneNodeDataSchema, SceneSpecSchema, type ScraperActorId, type ScriptCriticVerdict, ScriptCriticVerdictSchema, type ScriptProvider, type Season, type SectionKind, type SelectorConfig, type SelectorFields, type SelectorMode, type SelectorPredicateOp, type SelectorResult, type SemanticAspectRatio, type SeparatorPreset, type SharedListing, type SharedVoice, type SheetAspect, type SheetBackground, type SheetCostEstimate, type SheetEntry, type SheetFlavour, type SheetGenerationPlan, type SheetPreset, type SheetPresetId, type SheetSection, type SheetSkin, type SheetTextData, type SheetType, type ShotElement, type ShotImageElement, type ShotShapeElement, type ShotSpec, ShotSpecSchema, type ShotTextElement, type ShowrunnerPlan, ShowrunnerPlanSchema, type SidecarLoader, type SlotControlDescriptor, type SlotControlKind, type SlotVariation, type SocialMediaContentType, type SocialMediaPlatform, type SocialMediaSpec, type SortDirection, type SortListOptions, type SortType, type StageAwaitingSubGateEvent, StageAwaitingSubGateEventSchema, type StaticCaptionStyle, type StoryboardCohesionCriticVerdict, StoryboardCohesionCriticVerdictSchema, type StyleDirectives, StyleDirectivesSchema, type SubGateName, SubGateNameSchema, type SubmissionStatus, type SunoAddTrackModel, type SunoModel, type SupportedFontName, type SurroundDirection, type Swatch, T2I_TO_I2I_VARIANT, TASK_CHAINED_EDIT_PROVIDERS, TEXT_TO_AUDIO_PROVIDERS, TEXT_TO_VIDEO_PROVIDERS, TIER_MAX_PIPELINE_COST_CREDITS, TIER_PIPELINE_PARALLELISM, TILT_CARRIED_FRACTION, TOPAZ_DEFAULT_UPSCALE_FACTOR, TOPAZ_UPSCALE_FACTORS, TRANSCRIBE_PROVIDERS, TRANSIENT_RUNTIME_KEYS, TTS_PROVIDERS, TTS_TEXT_MAX, TWO_K_RESOLUTION_PROVIDERS, type TextToAudioProvider, type TextToVideoProvider, type TopazUpscaleAdjustment, type TopazUpscaleFactor, type TopazUpscaleResolution, type TranscribeProvider, type TransitionType, TransitionTypeSchema, type TrimVideoEstimatorInput, type TtsProvider, UPSCALE_IMAGE_PROVIDERS, USAGE_GROUP_BYS, USAGE_MODES, type UpscaleImageProvider, type UsageGroupBy, type UsageLogEntry, type UsageMode, type UsageQuery, type UsageReport, type UsageReportRow, type UsageReportTotals, type UsageVarianceRow, VARIABLES_HANDLE_ID, VARIABLE_PRICING_MODELS, VEHICLES, VEHICLE_SUBCATEGORY_LABELS, VEHICLE_SUBCATEGORY_ORDER, VEO_PROVIDERS, VIDEO_ANALYSIS_AUDIO_MODES, VIDEO_ANALYSIS_BUCKET_CREDITS, VIDEO_ANALYSIS_CLIP_TRANSITIONS_IN, VIDEO_ANALYSIS_DEFAULT_VARIATION, VIDEO_ANALYSIS_DURATION_BUCKETS, VIDEO_ANALYSIS_DURATION_TOLERANCE_SEC, VIDEO_ANALYSIS_ENTITY_SOURCES, VIDEO_ANALYSIS_FACELESS_ANGLES, VIDEO_ANALYSIS_LEGACY_MODELS, VIDEO_ANALYSIS_LLM_MODELS, VIDEO_ANALYSIS_MAX_DURATION_SEC, VIDEO_ANALYSIS_MAX_SCENE_SEC, VIDEO_ANALYSIS_MAX_VARIATIONS, VIDEO_ANALYSIS_MIXED_TIERS, VIDEO_ANALYSIS_SHOT_ANGLES, VIDEO_ANALYSIS_SPEED_EFFECTS, VIDEO_ANALYSIS_STORY_JUMPS, VIDEO_ANALYSIS_TEXT_KINDS, VIDEO_ANALYSIS_TIERS, VIDEO_ANALYSIS_TIER_LABELS, VIDEO_ANALYSIS_TIER_ORDER, VIDEO_ANALYSIS_TIMES_OF_DAY, VIDEO_ANALYSIS_TRANSITIONS, VIDEO_ANALYSIS_VARIATION_SLUGS, VIDEO_ANALYSIS_VISUAL_EFFECTS, VIDEO_ANALYSIS_WINDOW, VIDEO_AUDIO_CAPABILITY, VIDEO_AUDIT_BUCKET_CREDITS, VIDEO_CLIP_CREDITS, VIDEO_CRITIC_CREDITS_PER_SHOT, VIDEO_CRITIC_FRAME_MODES, VIDEO_CRITIC_MAX_RETRIES, VIDEO_CRITIC_METADATA_KEYS, VIDEO_CRITIC_MIN_ADHERENCE_SCORE, VIDEO_DURATION_TIERS, VIDEO_GEN_COLLAPSED_T2V_IDS, VIDEO_GEN_PROVIDERS, VIDEO_INPUT_LIP_SYNC_PROVIDERS, VIDEO_MODEL_CAPS, VIDEO_MODE_ALIASES, VIDEO_PRODUCER_TYPES, VIDEO_PROMPT_MAX, VIDEO_PROVIDERS_REQUIRING_IMAGE, VIDEO_PROVIDERS_WITHOUT_DISPATCH, VIDEO_REF_LIMITS_BY_PROVIDER, VIDEO_REF_VIDEO_DURATION_LIMITS, VIDEO_TO_VIDEO_PROVIDERS, VIDEO_UPSCALE_PROVIDERS, VIDEO_UTIL_PRICING, VIDEO_VARIABLE_PRICING, VOICE_CHANGER_MODELS, VOICE_CHANGER_MODEL_IDS, VOICE_DESIGN_MODELS, type ValidateMatchCutInput, ValidateMatchCutInputSchema, type ValidateMatchCutResult, ValidateMatchCutResultSchema, type ValidationField, type Vec3, type Vehicle, type VehicleSubcategory, type VideoAnalysisAudioMode, type VideoAnalysisClipTransitionIn, type VideoAnalysisEntitySource, type VideoAnalysisMixedTier, type VideoAnalysisModelTier, type VideoAnalysisResult, type VideoAnalysisShotAngle, type VideoAnalysisSpeedEffect, type VideoAnalysisTextKind, type VideoAnalysisTier, type VideoAnalysisTransition, type VideoAnalysisVisualEffect, type VideoAudioCapability, type VideoAudioMode, type VideoClipCost, type VideoCriticFrameMode, type VideoCriticMetadataKey, type VideoCriticShotFields, type VideoCriticVerdict, VideoCriticVerdictSchema, type VideoGenProvider, type VideoModeAlias, type VideoModelCapabilities, type VideoToVideoProvider, type VideoUpscaleProvider, type Voice, type VoiceChangerModel, type VoiceClone, type VoiceDesignModel, type VoiceLibraryParams, type VoiceLibraryResponse, type VoiceMatch, VoiceMatchSchema, type VoiceType, WAN_3_DEFAULT_RESOLUTION, WAN_3_PROVIDERS, WARDROBE_VARIANTS, WEAPONS, WEAPON_SUBCATEGORY_LABELS, WEAPON_SUBCATEGORY_ORDER, WORKFLOW_VISIBILITIES, WORKSPACE_HEADER, WORKSPACE_HEADER_LOWER, WORKSPACE_ROLES, type Weapon, type WeaponSubcategory, type WindowAnalysis, type WindowScene, type WorkflowAssetKind, type WorkflowExport, type WorkflowExportCharacter, type WorkflowExportCreature, type WorkflowExportLocation, type WorkflowExportObject, type WorkflowImportReport, type WorkflowImportSkippedAsset, type WorkflowMediaRef, type WorkflowPortability, type WorkflowVisibility, type WorkspaceMemberView, type WorkspaceRole, type WorkspaceSettings, WorkspaceSettingsSchema, type WorkspaceSummary, type WorkspaceView, aggregateByType, aiAvatarReserveCreditId, analyzedSceneSchema, applyDefaultVideoSelection, applyHandleInputOverride, applyRange, applyRangeIndices, applyScene3DEditOperations, applyScene3DV2EditOperations, applySlots, applyVideoAudioToggle, applyVideoNegativePrompt, aspectRatioFromDims, aspectRatioOptionsByKind, aspectRatioToNumber, assembleNarratedVideoCredits, availableReasoningEfforts, bucketSecondsFromAuditCreditId, bucketSecondsFromCreditId, buildBoardPrompt, buildChildrenByParent, buildConditionVariables, buildCreditModelIdentifier, buildExpressionFromVisual, buildLipSyncCreditId, buildLlmCreditIdentifier, buildModelMenu, buildModelTree, buildMotionCreditModelIdentifier, buildNodePresetExport, buildPanelPrompt, buildPro3DRenderSource, buildProgressSegments, buildRangeLabel, buildScraperCreditId, buildVideoAnalysisCreditId, buildVideoAuditCreditId, buildVideoCreditModelIdentifier, calculateCombinedProgress, calculateMonetizationMarkup, calculateMonetizedCost, calculateProgress, canonicalScene3DPlanV2Json, canonicalVarName, characterBoardItems, characterBucketDisplayRank, characterMentionSlug, characterMentionableAssetArrays, characterSheetRefItems, characterVariantAssetArrays, checkRefVideoDurations, cinematicCreditId, clampCinematicDuration, clampSmartCutWindow, classifyRefToken, cleanOrphanedItems, clearImageCriticMetadata, clearVideoCriticMetadata, clipLookSchema, collectAncestorRefs, combineSameLabelRefs, computeAggregateLanes, computeScene3DPlanV2ContentHash, countRefModalityEdges, creditRangesAll, creditsToUsd, decodeProviderItem, defaultCarriedFraction, defaultResolutionFor, defaultRoleForSource, defaultVideoAspectRatio, deriveLinkedFields, deriveLottieSlotFields, deriveSlotRefs, describeEdgeBehavior, describeMaskRegion, describeNodeAdjustments, describeSlotControl, dropUnknownBindings, dropUnknownSpeakers, durationsByMode, effectiveReasoningEffort, encodeProviderItem, ensureLocaleCatalogLoaded, entityHydrationColumns, entityMentionSlug, entityMentionSlugForRef, entityScalarFields, entitySlotSchema, entryMatchesQuery, estimateCombineVideosCredits, estimateFilmCredits, estimateLoopTrimAddonCredits, estimateLoopVideoCredits, estimateScriptDurationSec, estimateSheetCost, estimateTrimVideoCredits, evaluateCondition, evaluateConditionGroup, evaluateJsonExpression, evaluateJsonPath, expandExtraRefsToConnectedReferences, expandItemsWithRepeat, extractAllGeneratedResults, extractCharacterLoraFields, extractGeneratedJsonAsList, extractPresetData, extractReferencedLabels, extractVideoDurationFromNode, fieldKeyFromHandle, filterCloneNodes, findCharacterMentionTokens, findEntityMentionTokens, findImageMentionTokens, findLocationMentionTokens, findSeedance2AudioOverLimit, firstSightExtraRole, flattenItems, getAnimal, getAnimalLabel, getAnimalPromptHint, getAnimalTerm, getAspectRatioOptions, getAudioCrossfadeCurve, getCharacterFacet, getCombineTransition, getCreditRange, getDurationsForModel, getEffectiveRepeatCount, getFeaturedEntities, getFurniture, getFurnitureLabel, getInputFieldSchema, getInputNodes, getItemSortId, getLipSyncMaxAudioSeconds, getLlmModalityCaps, getLlmModel, getLlmTier, getLocaleDirection, getMaxImagePromptChars, getMaxNegativePromptChars, getMaxSunoPromptChars, getMaxSunoStyleChars, getMaxTtsChars, getMaxVideoPromptChars, getModel, getNodeLabel, getNodeResult, getOutputNodes, getOutputType, getParameterValue, getQualityOptions, getResolutionOptions, getRouteReachableNodeIds, getStrategy, getTargetField, getValidValues, getVehicle, getVehicleLabel, getVideoAudioCapability, getWeapon, getWeaponLabel, groupByFamily, groupHandleId, groupLlmModelsByVendor, hasContiguousSegmentDurations, hasFeature, hexToRgbaArray, humanizeSlotSid, imageMentionSlug, imageMentionSlugForRef, imageReferenceLimit, inferMusicVideo, isAggregateableType, isCharacterAspectRatio, isCollectInEdge, isDefaultSelectorConfig, isExpandedClone, isFlux2Model, isGeminiOmniProvider, isGvpSupportedProvider, isHandleInputWired, isKineticCaptionStyle, isKnownScene3DEngine, isLocationUsageMode, isMinimaxH3Provider, isObjectAspectRatio, isOversizedScene, isPaygRetentionActive, isPerSecondLipSyncProvider, isPro3DRenderJobOutput, isPro3DRenderQuote, isPro3DRenderRenderOnly, isScene3DAuthoringEngine, isScene3DCameraTrack, isScene3DHttpUrl, isScene3DPlan, isScene3DPlanV1, isScene3DPlanV2, isScene3DSchemaVersionSupported, isScraperActor, isSeedance2Provider, isTiltDirection, isUsageMode, isVeoProvider, isVideoAnalysisMixedTier, isVideoAnalysisTier, isWan3Provider, jsonResultToList, knownEntitySlugsFromRefs, knownImageSlugsFromRefs, listBoardTemplates, listModels, listSlotSids, llmRouteDefaults, locationMentionSlug, locationReferencePhotoKindLabel, locationUsageModeLabel, mapAspectRatio, mapQuality, mapShotIntentToProviderDirectives, matchVariant, maxSegmentSecFor, maxSegmentsFor, mergeClipLook, mergeExposedSettings, migrateEdgeOutputMode, migrateToItems, minSegmentSecFor, modelIdsByKindMode, modelToNodeTarget, modelsForInputMode, modelsWithFeature, motionGraphicsFeature, newScene3DRevisionId, normalizeLottieLayers, normalizeMinimaxH3Resolution, normalizeModelInput, normalizeNodeModelParams, normalizePinterestUrl, normalizeRoleSlug, normalizeVideoRequestParams, normalizeWan3Resolution, orderedLlmModels, parseAttributedDialogue, parseCharacterMentionToken, parseEntityMentionToken, parseGroupHandle, parseHandleId, parseImageMentionToken, parseListExpression, parseLocationMentionToken, parseNodePresetExport, parseNodeRef, parseScene3DCameraTrackJson, parseScene3DPlanV2Json, pickAiAvatarBucket, pickIds, pickLipSyncBucket, pickSwitchXFrameTier, pickVideoAnalysisBucket, planSheetGeneration, planSheetPanels, preferredInputModeForModel, presentTypes, presetApplyClearKeys, presetDataMatches, presetEntries, pricedVideoSelection, pro3DRenderCoreOutputSchema, pro3DRenderJobOutputSchema, pro3DRenderProducedSchemaVersion, pro3DRenderQuoteSchema, pro3DRenderTimingOverrides, qualityOptionsByKind, readPromptAffixes, refHandleCategory, referenceModalityForHandle, referenceSheetCreditId, registerCatalogSidecars, registerSidecarLoaders, renderAnalyzedScene, resetCatalogSidecars, resolutionOptionsByKind, resolveAiAvatarCreditId, resolveAudioCrossfadeCurve, resolveCharacterAspectRatio, resolveCinematicCreditId, resolveConditionValue, resolveDefaultRole, resolveDescription, resolveDialogueVoices, resolveEffectiveSourceType, resolveEffectiveTier, resolveEntityAspect, resolveFieldMappings, resolveGvpAnchorWire, resolveImageGenCreditIdentifier, resolveIndex, resolveLabel, resolveListExpression, resolveLlmCreditId, resolveLocationFields, resolveLocationPresetCatalog, resolveLottieOverlaySrc, resolveNodeRefs, resolveNormalizedImageGen, resolveObjectAspectRatio, resolvePipelineModel, resolveRelativeWindowToken, resolveScene3DAuthoringEngine, resolveScraperCreditId, resolveSelectorRefs, resolveSeparator, resolveSheetSections, resolveSlideshowTransition, resolveSourceThroughConnectedList, resolveStoredTier, resolveSwitchXCreditId, resolveTopazUpscale, resolveVideoAnalysisModel, resolveVideoModeForInputs, resolveVideoProviderForMode, resolveXfadeName, rewriteSceneBindings, rewriteSlotTokens, rewriteSpeakerSlots, rgbaArrayToHex, roleToPhrase, rotationVec3Schema, runSelector, safetyRetryPolicy, sanitizeRole, scaleVec3Schema, scene3DAcceptedSchemaVersionsSchema, scene3DAnchorNameSchema, scene3DAnchorSchema, scene3DAnyPlanSchema, scene3DAssetAnimationSchema, scene3DAssetIdSchema, scene3DAssetRefSchema, scene3DCameraChangesSchema, scene3DCameraKeyframeSchema, scene3DCameraSampleSchema, scene3DCameraSchema, scene3DCameraTrackIssues, scene3DCameraTrackObjectSchema, scene3DCameraTrackPlanIssues, scene3DCameraTrackSchema, scene3DClayLightingSchema, scene3DColorSchema, scene3DDeepEqual, scene3DEasingSchema, scene3DEditOperationSchema, scene3DEditOperationsSchema, scene3DEngineIdSchema, scene3DEntityAcceptsOverlay, scene3DEntityCapabilitySchema, scene3DEntityV2Schema, scene3DEntityVisualSchema, scene3DIdSchema, scene3DJsonByteLength, scene3DLightingChangesSchema, scene3DLightingSchema, scene3DMaterialBindingSchema, scene3DMaterialNameSchema, scene3DMaterialRoleSchema, scene3DNodeIdSchema, scene3DObjectChangesSchema, scene3DObjectKeyframeSchema, scene3DObjectSchema, scene3DOverrideSchema, scene3DPlanIssues, scene3DPlanSchema, scene3DPlanSchemaVersion, scene3DPlanV1Issues, scene3DPlanV1ObjectSchema, scene3DPlanV1Schema, scene3DPlanV2Issues, scene3DPlanV2ObjectSchema, scene3DPlanV2Schema, scene3DPrimitiveSchema, scene3DProjectionIssues, scene3DProvenanceSchema, scene3DReferenceSchema, scene3DSampleForFrame, scene3DSha256Schema, scene3DShotForFrame, scene3DShotIndexForFrame, scene3DShotSchema, scene3DUrlSchema, scene3DV2AdmissionIssues, scene3DV2EditOperationSchema, scene3DV2EditOperationsSchema, scene3DV2HierarchyDepth, scene3DV2NormalizationIssues, scene3DV2OverrideInputSchema, scene3DV2ResourceUsage, scene3DVersionTokenSchema, scene3DZodIssues, searchModelVariants, seedance2AudioLimitSec, segmentDurationsFor, selectByModulo, selectByNamedKey, selectByPredicate, selectListItems, selectLoraRoutingForMentions, selectRandom, setRegisteredPersonPackFields, settledWithLimit, sizeVec3Schema, slotVariationSchema, sortCharacterEntriesForDisplay, sortListItems, sourceRefKey, spliceDelimitedRows, splitByLoopDelimiter, splitGeneratedItems, spreadJsonArrayIfSingleton, stringifyPathResults, stripDerivedAnalysisFields, stripExportContent, stripStudioTransientSettings, stripTransientRuntimeData, summarizeScene3DOperations, sunoCreditType, supportedDefaultDimensions, supportsAdvancedMode, supportsEndAnchor, supportsExtendRender, toConnectedReference, toConnectedReferences, togglePick, tryParseJson, uiAspectRatioFill, uiDurationFill, uiResolutionFill, unresolvedRefTokens, unwrapUnresolvedTokens, usageModeDirective, usageModeIncludesName, usageModeLabel, usdToCredits, validateAiAvatarPayload, validateCinematicAvatarPayload, validateDurationForFormat, validateModeActivation, validateModelInput, validateNoNestedGroups, validateObjects, validateProviderForNodeType, validateSubWorkflowRoutes, variantJobId, vec3Schema, verifyScene3DPlanV2ContentHash, videoAnalysisCreditSegment, videoAnalysisNumWindows, videoAnalysisResultSchema, videoAuditCreditsForBucket, videoModelCanSpeakDialogue, videoModelSupportsAudio, videoNegativeSuffix, videoProviderFoldsLoneEndFrame, videoProviderRequiresImage, windowAnalysisSchema, zipMergeLists };