@nodaro/shared 1.20.0 → 1.22.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.cjs +261 -50
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +350 -15
- package/dist/index.d.ts +350 -15
- package/dist/index.js +250 -51
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/llm-models.test.ts +138 -0
- package/src/__tests__/video-analysis-catalog-sync.test.ts +63 -0
- package/src/__tests__/video-analysis-pricing.test.ts +5 -4
- package/src/__tests__/video-analysis.test.ts +201 -1
- package/src/index.ts +3 -0
- package/src/llm-models.ts +141 -11
- package/src/model-catalog.ts +20 -20
- package/src/video-analysis-pricing.ts +21 -18
- package/src/video-analysis.ts +256 -1
package/dist/index.d.cts
CHANGED
|
@@ -1849,8 +1849,44 @@ interface LlmModelDef {
|
|
|
1849
1849
|
structuredOutputMode?: "anthropic-tool" | "kie-response-format" | "responses-json-schema";
|
|
1850
1850
|
/** If set, fallback to direct Anthropic SDK with this model ID when KIE.ai fails */
|
|
1851
1851
|
directFallbackModel?: string;
|
|
1852
|
+
/**
|
|
1853
|
+
* Google Gemini API model id for the DIRECT lane (generativelanguage, keyed
|
|
1854
|
+
* by `GEMINI_API_KEY`) — the Google-side twin of `directFallbackModel`.
|
|
1855
|
+
* Presence declares "this model CAN be served straight from Google"; absence
|
|
1856
|
+
* pins it to KIE forever. Stated, never derived: Google carries `-preview`
|
|
1857
|
+
* suffixes on unreleased models, so the id routinely differs from both `id`
|
|
1858
|
+
* and `kieSlugOrModel` (`gemini-3.1-pro` → `gemini-3.1-pro-preview`).
|
|
1859
|
+
*/
|
|
1860
|
+
directGeminiModel?: string;
|
|
1861
|
+
/**
|
|
1862
|
+
* Try the direct-vendor lane FIRST for this model, with KIE as the failure
|
|
1863
|
+
* fallback. Absent (while `directGeminiModel` is set) = KIE first, direct
|
|
1864
|
+
* only when KIE fails.
|
|
1865
|
+
*
|
|
1866
|
+
* This is a per-model COST decision, not just a routing one: the two lanes
|
|
1867
|
+
* bill the same model at materially different unit rates, so a model that
|
|
1868
|
+
* backs a high-volume default (see `LLM_FEATURE_DEFAULTS`) is usually better
|
|
1869
|
+
* left on whichever lane is cheaper. The rate tables for both lanes live in
|
|
1870
|
+
* `backend/src/lib/pricing/llm-cost.ts` — deliberately not in this package,
|
|
1871
|
+
* which is published to npm.
|
|
1872
|
+
*
|
|
1873
|
+
* Mutually exclusive with `preferKie` — the Claude-side half of the same
|
|
1874
|
+
* idea. Guarded by a registry test so the two can't both be set.
|
|
1875
|
+
*/
|
|
1876
|
+
preferDirect?: true;
|
|
1852
1877
|
/** Effort levels this model accepts (ascending). Absent/empty = no effort lever, picker hidden. */
|
|
1853
1878
|
reasoningEfforts?: readonly LlmReasoningEffort[];
|
|
1879
|
+
/**
|
|
1880
|
+
* Effort levels available on the DIRECT lane, when the vendor's own API
|
|
1881
|
+
* accepts more than the aggregator does. Absent = the direct lane offers the
|
|
1882
|
+
* same set as `reasoningEfforts`.
|
|
1883
|
+
*
|
|
1884
|
+
* This exists because `reasoningEfforts` has to stay at the KIE-safe
|
|
1885
|
+
* intersection — sending a level KIE rejects is a hard failure — while the
|
|
1886
|
+
* vendor API accepts the full ladder. Unlocking those extra levels is one of
|
|
1887
|
+
* the concrete things Advanced mode buys.
|
|
1888
|
+
*/
|
|
1889
|
+
directReasoningEfforts?: readonly LlmReasoningEffort[];
|
|
1854
1890
|
/** false = model rejects `temperature` (Claude 5-era, GPT-5.6). Absent = accepts. */
|
|
1855
1891
|
supportsTemperature?: false;
|
|
1856
1892
|
/** Claude-only: KIE is the preferred routing, direct Anthropic the fallback. */
|
|
@@ -1907,22 +1943,35 @@ declare function getLlmModalityCaps(modelId: string | undefined): {
|
|
|
1907
1943
|
};
|
|
1908
1944
|
declare function getLlmModel(id: string): LlmModelDef | undefined;
|
|
1909
1945
|
declare function getLlmTier(id: string): LlmTier;
|
|
1946
|
+
/**
|
|
1947
|
+
* Effort levels this model actually accepts on the lane it will be served on.
|
|
1948
|
+
*
|
|
1949
|
+
* The two lanes do NOT offer the same ladder: the aggregator accepts a narrower
|
|
1950
|
+
* set than the vendor's own API does, which is one of the concrete things
|
|
1951
|
+
* Advanced mode buys. Kept as one lookup so the UI picker and the wire-side
|
|
1952
|
+
* clamp can never disagree about what's selectable.
|
|
1953
|
+
*/
|
|
1954
|
+
declare function availableReasoningEfforts(modelId: string | undefined, advanced?: boolean): readonly LlmReasoningEffort[];
|
|
1910
1955
|
/** Highest level the model supports that is ≤ the requested level; undefined = treat as Auto. */
|
|
1911
|
-
declare function effectiveReasoningEffort(modelId: string | undefined, requested?: string): LlmReasoningEffort | undefined;
|
|
1956
|
+
declare function effectiveReasoningEffort(modelId: string | undefined, requested?: string, advanced?: boolean): LlmReasoningEffort | undefined;
|
|
1912
1957
|
/**
|
|
1913
|
-
*
|
|
1914
|
-
*
|
|
1915
|
-
*
|
|
1916
|
-
*
|
|
1917
|
-
*
|
|
1918
|
-
*
|
|
1919
|
-
*
|
|
1920
|
-
* never bumps.
|
|
1958
|
+
* Can this model be run in Advanced mode?
|
|
1959
|
+
*
|
|
1960
|
+
* Advanced mode pins the call to the vendor's own API, which is the only lane
|
|
1961
|
+
* where sampling levers (`temperature`, `maxTokens`) and the full effort range
|
|
1962
|
+
* actually take effect. Capability-derived from the registry — a model without
|
|
1963
|
+
* a direct lane simply cannot offer it, so UI and routes both gate on this
|
|
1964
|
+
* rather than on a hand-maintained model list.
|
|
1921
1965
|
*/
|
|
1922
|
-
declare function
|
|
1966
|
+
declare function supportsAdvancedMode(modelId: string | undefined): boolean;
|
|
1967
|
+
/** User-facing reason a model can't offer Advanced mode. Single-sourced so the
|
|
1968
|
+
* config panel's disabled hint and the route's 400 say the same thing. */
|
|
1969
|
+
declare const ADVANCED_MODE_UNAVAILABLE_REASON = "Advanced mode is available on Gemini models \u2014 switch the model to enable it.";
|
|
1970
|
+
declare function buildLlmCreditIdentifier(feature: string, modelId?: string, reasoningEffort?: string, advancedMode?: boolean): string;
|
|
1923
1971
|
/**
|
|
1924
|
-
* Resolve llmModel (+ reasoningEffort) from raw body for
|
|
1925
|
-
* (before Zod parsing). Returns the credit identifier
|
|
1972
|
+
* Resolve llmModel (+ reasoningEffort, advancedMode) from raw body for the
|
|
1973
|
+
* creditGuard preHandler (before Zod parsing). Returns the credit identifier
|
|
1974
|
+
* for the given feature.
|
|
1926
1975
|
*/
|
|
1927
1976
|
declare function resolveLlmCreditId(feature: string, body: unknown): string;
|
|
1928
1977
|
/** Models capable of video-analysis: capability-derived, never hand-listed (route-enum-sync convention). */
|
|
@@ -8539,6 +8588,99 @@ declare function sanitizeRole(raw: string): string;
|
|
|
8539
8588
|
*/
|
|
8540
8589
|
|
|
8541
8590
|
declare const VIDEO_ANALYSIS_MAX_SCENE_SEC = 8;
|
|
8591
|
+
/**
|
|
8592
|
+
* Camera VIEWPOINT — where the camera is relative to the subject. The axis
|
|
8593
|
+
* `shotType` does not carry, and the one the analyzer had been improvising.
|
|
8594
|
+
*
|
|
8595
|
+
* Two failures this fixes, both from real jobs:
|
|
8596
|
+
*
|
|
8597
|
+
* 1. `shotType` is framing SIZE (Wide … Extreme Close-Up), so a true angle had
|
|
8598
|
+
* nowhere to go and landed in the MOVEMENT field instead:
|
|
8599
|
+
* `"camera": "low angle static"`. That loses the angle to anything reading
|
|
8600
|
+
* `camera` and pollutes the movement vocabulary.
|
|
8601
|
+
* 2. The relational viewpoints — `Over-the-Shoulder`, `POV` — were conventions
|
|
8602
|
+
* inside the `shotType` list, competing with the sizes for one slot. So an
|
|
8603
|
+
* over-the-shoulder MEDIUM had to pick one and threw the other away. They
|
|
8604
|
+
* belong here, leaving `shotType` free to state the size: an OTS medium is
|
|
8605
|
+
* `shotType: "Medium"` + `angle: "over-the-shoulder"`, which is strictly more
|
|
8606
|
+
* than either field could carry alone.
|
|
8607
|
+
*
|
|
8608
|
+
* A closed enum rather than free text precisely because improvisation is the
|
|
8609
|
+
* failure being fixed. Absent means EYE-LEVEL — the overwhelming default, so
|
|
8610
|
+
* omitting it costs nothing on most shots (the same "absence is the default"
|
|
8611
|
+
* shape as `transitionOut` and appearance variations).
|
|
8612
|
+
*
|
|
8613
|
+
* `from-behind` and `over-the-shoulder` also carry real meaning downstream: a
|
|
8614
|
+
* face is not visible in either, which is what auto-cast needs to know before
|
|
8615
|
+
* choosing one as an identity reference.
|
|
8616
|
+
*/
|
|
8617
|
+
declare const VIDEO_ANALYSIS_SHOT_ANGLES: readonly ["eye-level", "low", "high", "overhead", "worms-eye", "dutch", "over-the-shoulder", "pov", "profile", "from-behind"];
|
|
8618
|
+
type VideoAnalysisShotAngle = (typeof VIDEO_ANALYSIS_SHOT_ANGLES)[number];
|
|
8619
|
+
/** Viewpoints in which the subject's FACE is not visible — so a frame shot this
|
|
8620
|
+
* way is a poor identity reference however good its framing otherwise is. */
|
|
8621
|
+
declare const VIDEO_ANALYSIS_FACELESS_ANGLES: ReadonlySet<string>;
|
|
8622
|
+
/**
|
|
8623
|
+
* Effects applied to the PICTURE of a shot. An array — a shot can be grainy and
|
|
8624
|
+
* vignetted at once — and absent when the image is clean, which is most shots.
|
|
8625
|
+
*
|
|
8626
|
+
* Scoped deliberately to things done to the IMAGE, and NOT to compositing that
|
|
8627
|
+
* asserts what is in the shot (picture-in-picture, split screen). That line
|
|
8628
|
+
* matters: a real job invented `{slot:creator} overlay talking to camera` across
|
|
8629
|
+
* nine scenes for a man who is never seen, so a field for "there is an inset of a
|
|
8630
|
+
* person here" would hand that fabrication a legitimate home. An effect is
|
|
8631
|
+
* verifiable in the pixels; a claim about who is inset is not.
|
|
8632
|
+
*
|
|
8633
|
+
* `dissolve` and `fade` are NOT here either — they are edits BETWEEN shots and
|
|
8634
|
+
* belong to `transitionOut`.
|
|
8635
|
+
*/
|
|
8636
|
+
declare const VIDEO_ANALYSIS_VISUAL_EFFECTS: readonly ["blur", "pixelate", "glitch", "grain", "vignette", "flash", "distortion", "double-exposure"];
|
|
8637
|
+
type VideoAnalysisVisualEffect = (typeof VIDEO_ANALYSIS_VISUAL_EFFECTS)[number];
|
|
8638
|
+
/**
|
|
8639
|
+
* Visible edit INTO the next shot.
|
|
8640
|
+
*
|
|
8641
|
+
* `dissolve` (a cross-fade from one image to the other) is distinct from `fade`
|
|
8642
|
+
* (through black or white). Collapsing both onto `fade` — as this enum did — makes
|
|
8643
|
+
* a recreation render the wrong edit, and the two look nothing alike.
|
|
8644
|
+
*/
|
|
8645
|
+
declare const VIDEO_ANALYSIS_TRANSITIONS: readonly ["cut", "fade", "dissolve", "wipe", "whip"];
|
|
8646
|
+
type VideoAnalysisTransition = (typeof VIDEO_ANALYSIS_TRANSITIONS)[number];
|
|
8647
|
+
/**
|
|
8648
|
+
* Time manipulation — slow motion, ramps, timelapse, freeze, reverse.
|
|
8649
|
+
*
|
|
8650
|
+
* Previously unrepresentable anywhere in the schema, so a recreation rendered
|
|
8651
|
+
* every shot at normal speed no matter what the footage did. It is a first-class
|
|
8652
|
+
* lever in every video model and a real editing decision in most action footage.
|
|
8653
|
+
*
|
|
8654
|
+
* `"normal"` is deliberately NOT a member: absence is normal speed, so there is
|
|
8655
|
+
* exactly one way to say "nothing unusual here" and the field costs nothing on
|
|
8656
|
+
* the majority of shots.
|
|
8657
|
+
*/
|
|
8658
|
+
declare const VIDEO_ANALYSIS_SPEED_EFFECTS: readonly ["slow-motion", "ramp-in", "ramp-out", "timelapse", "freeze", "reverse"];
|
|
8659
|
+
type VideoAnalysisSpeedEffect = (typeof VIDEO_ANALYSIS_SPEED_EFFECTS)[number];
|
|
8660
|
+
/**
|
|
8661
|
+
* The CLIP-LEVEL look — one source of truth for the properties that belong to
|
|
8662
|
+
* the whole piece rather than any one shot.
|
|
8663
|
+
*
|
|
8664
|
+
* Colour grade, camera format and lens character were previously only ever prose
|
|
8665
|
+
* inside each scene's `visual`, which meant a 43-scene analysis re-decided the
|
|
8666
|
+
* grade forty-three independent times with nothing holding them consistent. That
|
|
8667
|
+
* is the same drift problem entity slots solve for people: state it once, apply it
|
|
8668
|
+
* everywhere. A recreation reads this alongside every scene.
|
|
8669
|
+
*
|
|
8670
|
+
* Every field optional — an analyzer that cannot read the format should say
|
|
8671
|
+
* nothing rather than guess, and a per-scene deviation still belongs in that
|
|
8672
|
+
* scene's `visual` prose.
|
|
8673
|
+
*/
|
|
8674
|
+
declare const clipLookSchema: z.ZodObject<{
|
|
8675
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8676
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8677
|
+
format: z.ZodOptional<z.ZodString>;
|
|
8678
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
8679
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
8680
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
8681
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
8682
|
+
}, z.core.$strip>;
|
|
8683
|
+
type ClipLook = z.infer<typeof clipLookSchema>;
|
|
8542
8684
|
declare const VIDEO_ANALYSIS_ENTITY_SOURCES: readonly ["wired-character", "wired-object", "wired-location", "wired-creature"];
|
|
8543
8685
|
type VideoAnalysisEntitySource = (typeof VIDEO_ANALYSIS_ENTITY_SOURCES)[number];
|
|
8544
8686
|
/** Matches {slot:<id>} tokens. Distinct from NODE_REF_PATTERN / {image:N} grammars. */
|
|
@@ -8597,6 +8739,7 @@ declare const audioLayerSchema: z.ZodObject<{
|
|
|
8597
8739
|
}>;
|
|
8598
8740
|
content: z.ZodString;
|
|
8599
8741
|
voice: z.ZodOptional<z.ZodString>;
|
|
8742
|
+
speakerSlot: z.ZodOptional<z.ZodString>;
|
|
8600
8743
|
}, z.core.$strip>;
|
|
8601
8744
|
type AudioLayer = z.infer<typeof audioLayerSchema>;
|
|
8602
8745
|
declare const windowSceneSchema: z.ZodObject<{
|
|
@@ -8605,9 +8748,41 @@ declare const windowSceneSchema: z.ZodObject<{
|
|
|
8605
8748
|
label: z.ZodString;
|
|
8606
8749
|
shotType: z.ZodString;
|
|
8607
8750
|
camera: z.ZodString;
|
|
8751
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8752
|
+
"eye-level": "eye-level";
|
|
8753
|
+
high: "high";
|
|
8754
|
+
low: "low";
|
|
8755
|
+
overhead: "overhead";
|
|
8756
|
+
pov: "pov";
|
|
8757
|
+
dutch: "dutch";
|
|
8758
|
+
"worms-eye": "worms-eye";
|
|
8759
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8760
|
+
profile: "profile";
|
|
8761
|
+
"from-behind": "from-behind";
|
|
8762
|
+
}>>;
|
|
8763
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8764
|
+
reverse: "reverse";
|
|
8765
|
+
"slow-motion": "slow-motion";
|
|
8766
|
+
"ramp-in": "ramp-in";
|
|
8767
|
+
"ramp-out": "ramp-out";
|
|
8768
|
+
timelapse: "timelapse";
|
|
8769
|
+
freeze: "freeze";
|
|
8770
|
+
}>>;
|
|
8608
8771
|
visual: z.ZodString;
|
|
8772
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8773
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8774
|
+
blur: "blur";
|
|
8775
|
+
pixelate: "pixelate";
|
|
8776
|
+
glitch: "glitch";
|
|
8777
|
+
grain: "grain";
|
|
8778
|
+
vignette: "vignette";
|
|
8779
|
+
flash: "flash";
|
|
8780
|
+
distortion: "distortion";
|
|
8781
|
+
"double-exposure": "double-exposure";
|
|
8782
|
+
}>>>;
|
|
8609
8783
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8610
8784
|
cut: "cut";
|
|
8785
|
+
dissolve: "dissolve";
|
|
8611
8786
|
fade: "fade";
|
|
8612
8787
|
wipe: "wipe";
|
|
8613
8788
|
whip: "whip";
|
|
@@ -8620,6 +8795,7 @@ declare const windowSceneSchema: z.ZodObject<{
|
|
|
8620
8795
|
}>;
|
|
8621
8796
|
content: z.ZodString;
|
|
8622
8797
|
voice: z.ZodOptional<z.ZodString>;
|
|
8798
|
+
speakerSlot: z.ZodOptional<z.ZodString>;
|
|
8623
8799
|
}, z.core.$strip>>;
|
|
8624
8800
|
slotVariations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8625
8801
|
}, z.core.$strip>;
|
|
@@ -8627,6 +8803,15 @@ type WindowScene = z.infer<typeof windowSceneSchema>;
|
|
|
8627
8803
|
/** What the MODEL emits per window (strict-JSON footer schema). scenes has NO min. */
|
|
8628
8804
|
declare const windowAnalysisSchema: z.ZodObject<{
|
|
8629
8805
|
language: z.ZodOptional<z.ZodString>;
|
|
8806
|
+
look: z.ZodOptional<z.ZodObject<{
|
|
8807
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8808
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8809
|
+
format: z.ZodOptional<z.ZodString>;
|
|
8810
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
8811
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
8812
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
8813
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
8814
|
+
}, z.core.$strip>>;
|
|
8630
8815
|
slots: z.ZodArray<z.ZodObject<{
|
|
8631
8816
|
slotId: z.ZodString;
|
|
8632
8817
|
label: z.ZodString;
|
|
@@ -8652,9 +8837,41 @@ declare const windowAnalysisSchema: z.ZodObject<{
|
|
|
8652
8837
|
label: z.ZodString;
|
|
8653
8838
|
shotType: z.ZodString;
|
|
8654
8839
|
camera: z.ZodString;
|
|
8840
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8841
|
+
"eye-level": "eye-level";
|
|
8842
|
+
high: "high";
|
|
8843
|
+
low: "low";
|
|
8844
|
+
overhead: "overhead";
|
|
8845
|
+
pov: "pov";
|
|
8846
|
+
dutch: "dutch";
|
|
8847
|
+
"worms-eye": "worms-eye";
|
|
8848
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8849
|
+
profile: "profile";
|
|
8850
|
+
"from-behind": "from-behind";
|
|
8851
|
+
}>>;
|
|
8852
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8853
|
+
reverse: "reverse";
|
|
8854
|
+
"slow-motion": "slow-motion";
|
|
8855
|
+
"ramp-in": "ramp-in";
|
|
8856
|
+
"ramp-out": "ramp-out";
|
|
8857
|
+
timelapse: "timelapse";
|
|
8858
|
+
freeze: "freeze";
|
|
8859
|
+
}>>;
|
|
8655
8860
|
visual: z.ZodString;
|
|
8861
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8862
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8863
|
+
blur: "blur";
|
|
8864
|
+
pixelate: "pixelate";
|
|
8865
|
+
glitch: "glitch";
|
|
8866
|
+
grain: "grain";
|
|
8867
|
+
vignette: "vignette";
|
|
8868
|
+
flash: "flash";
|
|
8869
|
+
distortion: "distortion";
|
|
8870
|
+
"double-exposure": "double-exposure";
|
|
8871
|
+
}>>>;
|
|
8656
8872
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8657
8873
|
cut: "cut";
|
|
8874
|
+
dissolve: "dissolve";
|
|
8658
8875
|
fade: "fade";
|
|
8659
8876
|
wipe: "wipe";
|
|
8660
8877
|
whip: "whip";
|
|
@@ -8667,6 +8884,7 @@ declare const windowAnalysisSchema: z.ZodObject<{
|
|
|
8667
8884
|
}>;
|
|
8668
8885
|
content: z.ZodString;
|
|
8669
8886
|
voice: z.ZodOptional<z.ZodString>;
|
|
8887
|
+
speakerSlot: z.ZodOptional<z.ZodString>;
|
|
8670
8888
|
}, z.core.$strip>>;
|
|
8671
8889
|
slotVariations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8672
8890
|
}, z.core.$strip>>;
|
|
@@ -8678,9 +8896,41 @@ declare const analyzedSceneSchema: z.ZodObject<{
|
|
|
8678
8896
|
label: z.ZodString;
|
|
8679
8897
|
shotType: z.ZodString;
|
|
8680
8898
|
camera: z.ZodString;
|
|
8899
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8900
|
+
"eye-level": "eye-level";
|
|
8901
|
+
high: "high";
|
|
8902
|
+
low: "low";
|
|
8903
|
+
overhead: "overhead";
|
|
8904
|
+
pov: "pov";
|
|
8905
|
+
dutch: "dutch";
|
|
8906
|
+
"worms-eye": "worms-eye";
|
|
8907
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8908
|
+
profile: "profile";
|
|
8909
|
+
"from-behind": "from-behind";
|
|
8910
|
+
}>>;
|
|
8911
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8912
|
+
reverse: "reverse";
|
|
8913
|
+
"slow-motion": "slow-motion";
|
|
8914
|
+
"ramp-in": "ramp-in";
|
|
8915
|
+
"ramp-out": "ramp-out";
|
|
8916
|
+
timelapse: "timelapse";
|
|
8917
|
+
freeze: "freeze";
|
|
8918
|
+
}>>;
|
|
8681
8919
|
visual: z.ZodString;
|
|
8920
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8921
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8922
|
+
blur: "blur";
|
|
8923
|
+
pixelate: "pixelate";
|
|
8924
|
+
glitch: "glitch";
|
|
8925
|
+
grain: "grain";
|
|
8926
|
+
vignette: "vignette";
|
|
8927
|
+
flash: "flash";
|
|
8928
|
+
distortion: "distortion";
|
|
8929
|
+
"double-exposure": "double-exposure";
|
|
8930
|
+
}>>>;
|
|
8682
8931
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8683
8932
|
cut: "cut";
|
|
8933
|
+
dissolve: "dissolve";
|
|
8684
8934
|
fade: "fade";
|
|
8685
8935
|
wipe: "wipe";
|
|
8686
8936
|
whip: "whip";
|
|
@@ -8693,6 +8943,7 @@ declare const analyzedSceneSchema: z.ZodObject<{
|
|
|
8693
8943
|
}>;
|
|
8694
8944
|
content: z.ZodString;
|
|
8695
8945
|
voice: z.ZodOptional<z.ZodString>;
|
|
8946
|
+
speakerSlot: z.ZodOptional<z.ZodString>;
|
|
8696
8947
|
}, z.core.$strip>>;
|
|
8697
8948
|
slotVariations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8698
8949
|
sceneNumber: z.ZodNumber;
|
|
@@ -8710,6 +8961,15 @@ declare const videoAnalysisResultSchema: z.ZodObject<{
|
|
|
8710
8961
|
title: z.ZodOptional<z.ZodString>;
|
|
8711
8962
|
language: z.ZodOptional<z.ZodString>;
|
|
8712
8963
|
}, z.core.$strip>;
|
|
8964
|
+
look: z.ZodOptional<z.ZodObject<{
|
|
8965
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8966
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8967
|
+
format: z.ZodOptional<z.ZodString>;
|
|
8968
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
8969
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
8970
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
8971
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
8972
|
+
}, z.core.$strip>>;
|
|
8713
8973
|
slots: z.ZodArray<z.ZodObject<{
|
|
8714
8974
|
slotId: z.ZodString;
|
|
8715
8975
|
label: z.ZodString;
|
|
@@ -8735,9 +8995,41 @@ declare const videoAnalysisResultSchema: z.ZodObject<{
|
|
|
8735
8995
|
label: z.ZodString;
|
|
8736
8996
|
shotType: z.ZodString;
|
|
8737
8997
|
camera: z.ZodString;
|
|
8998
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8999
|
+
"eye-level": "eye-level";
|
|
9000
|
+
high: "high";
|
|
9001
|
+
low: "low";
|
|
9002
|
+
overhead: "overhead";
|
|
9003
|
+
pov: "pov";
|
|
9004
|
+
dutch: "dutch";
|
|
9005
|
+
"worms-eye": "worms-eye";
|
|
9006
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
9007
|
+
profile: "profile";
|
|
9008
|
+
"from-behind": "from-behind";
|
|
9009
|
+
}>>;
|
|
9010
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
9011
|
+
reverse: "reverse";
|
|
9012
|
+
"slow-motion": "slow-motion";
|
|
9013
|
+
"ramp-in": "ramp-in";
|
|
9014
|
+
"ramp-out": "ramp-out";
|
|
9015
|
+
timelapse: "timelapse";
|
|
9016
|
+
freeze: "freeze";
|
|
9017
|
+
}>>;
|
|
8738
9018
|
visual: z.ZodString;
|
|
9019
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
9020
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9021
|
+
blur: "blur";
|
|
9022
|
+
pixelate: "pixelate";
|
|
9023
|
+
glitch: "glitch";
|
|
9024
|
+
grain: "grain";
|
|
9025
|
+
vignette: "vignette";
|
|
9026
|
+
flash: "flash";
|
|
9027
|
+
distortion: "distortion";
|
|
9028
|
+
"double-exposure": "double-exposure";
|
|
9029
|
+
}>>>;
|
|
8739
9030
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8740
9031
|
cut: "cut";
|
|
9032
|
+
dissolve: "dissolve";
|
|
8741
9033
|
fade: "fade";
|
|
8742
9034
|
wipe: "wipe";
|
|
8743
9035
|
whip: "whip";
|
|
@@ -8750,6 +9042,7 @@ declare const videoAnalysisResultSchema: z.ZodObject<{
|
|
|
8750
9042
|
}>;
|
|
8751
9043
|
content: z.ZodString;
|
|
8752
9044
|
voice: z.ZodOptional<z.ZodString>;
|
|
9045
|
+
speakerSlot: z.ZodOptional<z.ZodString>;
|
|
8753
9046
|
}, z.core.$strip>>;
|
|
8754
9047
|
slotVariations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8755
9048
|
sceneNumber: z.ZodNumber;
|
|
@@ -8790,6 +9083,45 @@ declare function dropUnknownBindings(sv: Record<string, string> | undefined, val
|
|
|
8790
9083
|
variationId: string;
|
|
8791
9084
|
}>;
|
|
8792
9085
|
};
|
|
9086
|
+
/**
|
|
9087
|
+
* Rewrite speech attribution after cross-window slot unification — the
|
|
9088
|
+
* `rewriteSceneBindings` counterpart for the `audio` channel. Slot unification
|
|
9089
|
+
* renames a loser id to its survivor and rewrites `{slot:…}` tokens and
|
|
9090
|
+
* variation bindings; an un-rewritten `speakerSlot` would be left pointing at an
|
|
9091
|
+
* id that no longer exists. Copy-on-write: returns the input array untouched
|
|
9092
|
+
* when no layer names a renamed slot.
|
|
9093
|
+
*/
|
|
9094
|
+
declare function rewriteSpeakerSlots(audio: AudioLayer[], slotRenames: Record<string, string>): AudioLayer[];
|
|
9095
|
+
/**
|
|
9096
|
+
* Strip attribution that no scene can honour — the `dropUnknownBindings` mirror
|
|
9097
|
+
* for the `audio` channel. Two cases, both model sloppiness rather than errors
|
|
9098
|
+
* worth failing a roll over:
|
|
9099
|
+
* - a `speakerSlot` on a `music`/`sfx` layer (nobody is speaking)
|
|
9100
|
+
* - a `speakerSlot` naming a slot that is not in the final list
|
|
9101
|
+
*
|
|
9102
|
+
* MUST run AFTER the orphan-slot sweep, and attribution must NEVER count as a
|
|
9103
|
+
* slot reference for that sweep: a slot reachable only as a speaker is a voice
|
|
9104
|
+
* with no body — precisely the invented-narrator entity doctrine §5 forbids. The
|
|
9105
|
+
* two passes compose to remove both the phantom slot and the dangling
|
|
9106
|
+
* attribution pointing at it.
|
|
9107
|
+
*/
|
|
9108
|
+
declare function dropUnknownSpeakers(audio: AudioLayer[], validSlotIds: Set<string>): {
|
|
9109
|
+
audio: AudioLayer[];
|
|
9110
|
+
dropped: string[];
|
|
9111
|
+
};
|
|
9112
|
+
/**
|
|
9113
|
+
* Fold each window's reading of the clip look into one, FIELD BY FIELD: the first
|
|
9114
|
+
* window that had something to say about a field wins it.
|
|
9115
|
+
*
|
|
9116
|
+
* Per-field rather than first-window-wins-everything because the windows see
|
|
9117
|
+
* different footage — an opening window may read the grade confidently while only
|
|
9118
|
+
* a later one contains the shot that reveals the format. Mirrors how `language` is
|
|
9119
|
+
* resolved across windows rather than taken from window 0.
|
|
9120
|
+
*
|
|
9121
|
+
* Returns undefined when no window said anything, so an analysis with nothing to
|
|
9122
|
+
* report omits the field rather than shipping an empty object.
|
|
9123
|
+
*/
|
|
9124
|
+
declare function mergeClipLook(looks: ReadonlyArray<ClipLook | undefined>): ClipLook | undefined;
|
|
8793
9125
|
/** Substitute {slot:x}: castMap binding wins, else the slot's description, else literal id. */
|
|
8794
9126
|
declare function renderAnalyzedScene(scene: {
|
|
8795
9127
|
visual: string;
|
|
@@ -8823,8 +9155,11 @@ declare function aspectRatioFromDims(w: number, h: number): string;
|
|
|
8823
9155
|
* `VIDEO_CLIP_CREDITS` uses in `film-pricing.ts`. It is what the frontend's
|
|
8824
9156
|
* client-side cost preview (`estimateNodeCredits` in
|
|
8825
9157
|
* workflow-editor/types.ts) reads instead of calling the formula directly.
|
|
8826
|
-
*
|
|
8827
|
-
*
|
|
9158
|
+
* The formula's own test in `@nodaroai/cloud-plugins`
|
|
9159
|
+
* (`src/plugins/video-analysis/__tests__/cost.test.ts`) cross-checks this table
|
|
9160
|
+
* against it and fails on drift. There is deliberately NO app-side formula to
|
|
9161
|
+
* check against — it was moved private in 2026-07 and the old backend test
|
|
9162
|
+
* went with it.
|
|
8828
9163
|
*/
|
|
8829
9164
|
declare const VIDEO_ANALYSIS_DURATION_BUCKETS: readonly [60, 180, 360, 600];
|
|
8830
9165
|
/** Worker re-check grace: route metadata is integer-rounded, provider durations nominal;
|
|
@@ -8920,4 +9255,4 @@ interface HintGraphContext {
|
|
|
8920
9255
|
readonly edges: ReadonlyArray<HintEdgeLike>;
|
|
8921
9256
|
}
|
|
8922
9257
|
|
|
8923
|
-
export { ACTIVE_SCENE_HELPERS, AGGREGATEABLE_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 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, 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, 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 CloneListingResult, 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 DetectionResult, DetectionResultSchema, type DialogueLine, EFFORT_TIER_BUMP, EMOTIONAL_BEAT, ENTITY_ASPECT_DEFAULTS, ENTITY_IMAGE_HANDLE_TYPES, ENTITY_SECTIONS, ENTITY_STATUSES, ENTITY_TOOL_RETRY_CAP, ENTITY_TYPES, EXECUTION_DATA_KEYS, EXTEND_VIDEO_PROVIDERS, type EntityKind, type EntityMetadata, EntityMetadataSchema, 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_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, GENERATE_TEXT_DELIMITER, GLOBAL_MAX_DURATION_SECONDS, GROUP_HANDLE_PREFIX, GUIDANCE_SCALE_SUPPORT, GVP_SUPPORTED_PROVIDERS, GenerateMotionInputSchema, type GenerateMotionResult, GenerateMotionResultSchema, type GenericEdge, type GenericNode, 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_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 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 ImageToVideoProvider, type ImprovePromptInput, ImprovePromptInputSchema, type ImprovePromptResult, ImprovePromptResultSchema, type InputFieldSchema, 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_TEXT_INPUT_MAX, 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 LlmReasoningEffort, type LlmTier, 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, MODELS_WITH_REFERENCE_IMAGE_SUPPORT, MODEL_CATALOG, MODEL_RECOMMENDATIONS, MODIFY_IMAGE_PROVIDERS, MOTION_COLUMN, MOTION_TRANSFER_PROVIDERS, MUSIC_PROVIDERS, type MaskRegionDescriptor, type MatchCutVerdict, MatchCutVerdictSchema, type Member, type MinimalEdge, type MinimalNode, type ModelCatalogEntry, 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 NodePresetExport, OBJECT_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS, OBJECT_ASSET_TYPES, OBJECT_ASSET_VARIANTS, OBJECT_ATTACH_COLUMNS, OBJECT_MOTION_PROVIDERS, OBJECT_PICKER_NODE_TYPES, 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 OutputFormat, type OutputMode, type OutputType, PARAMETER_NODE_TYPES, PASSTHROUGH_TYPES, PER_FORMAT_DURATION_BOUNDS, 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, PROMPT_HARD_CEILING, 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 PriceVariant, type ProgressSegment, 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, 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 ReferenceBoardProvider, type ReferenceModality, type ReferenceSheet, type ReferenceSource, type ReportListingResult, type ResolveCharacterAspectOptions, type ResolveObjectAspectOptions, type ResolveSeparatorOptions, type ResolvedDialogueVoiceLine, type RouterConditionGroup, SCENE_HELPER_NAMES, SCRAPER_ACTOR_LABELS, SCRAPER_CREDIT_COSTS, SCRAPER_OUTPUT_FIELDS, SCRIPT_PROVIDERS, SEASONS, SECTION_BOARD, SECTION_KINDS, 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, SUNO_ADD_TRACK_MODELS, SUNO_FIELD_HANDLE_FIELDS, SUNO_MODELS, SUNO_TEXT_MAX, SUNO_TITLE_MAX, SUPPORTED_FONT_NAMES, SURROUND_DIRECTIONS, SWITCHX_BLOCK_FRAMES, SWITCHX_FRAME_TIERS, 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 SunoAddTrackModel, type SunoModel, type SupportedFontName, type SurroundDirection, type Swatch, T2I_TO_I2I_VARIANT, TEXT_TO_AUDIO_PROVIDERS, TEXT_TO_VIDEO_PROVIDERS, TIER_MAX_PIPELINE_COST_CREDITS, TIER_PIPELINE_PARALLELISM, TILT_CARRIED_FRACTION, TRANSCRIBE_PROVIDERS, TRANSIENT_RUNTIME_KEYS, TTS_PROVIDERS, TTS_TEXT_MAX, TWO_K_RESOLUTION_PROVIDERS, type TextToAudioProvider, type TextToVideoProvider, type TranscribeProvider, type TransitionType, TransitionTypeSchema, type TrimVideoEstimatorInput, type TtsProvider, UPSCALE_IMAGE_PROVIDERS, USAGE_MODES, type UpscaleImageProvider, type UsageMode, VARIABLES_HANDLE_ID, VARIABLE_PRICING_MODELS, VEHICLES, VEHICLE_SUBCATEGORY_LABELS, VEHICLE_SUBCATEGORY_ORDER, VEO_PROVIDERS, VIDEO_ANALYSIS_BUCKET_CREDITS, VIDEO_ANALYSIS_DEFAULT_VARIATION, VIDEO_ANALYSIS_DURATION_BUCKETS, VIDEO_ANALYSIS_DURATION_TOLERANCE_SEC, VIDEO_ANALYSIS_ENTITY_SOURCES, 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_TIERS, VIDEO_ANALYSIS_TIER_LABELS, VIDEO_ANALYSIS_TIER_ORDER, VIDEO_ANALYSIS_VARIATION_SLUGS, VIDEO_ANALYSIS_WINDOW, VIDEO_AUDIO_CAPABILITY, 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_REF_LIMITS_BY_PROVIDER, 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 Vehicle, type VehicleSubcategory, type VideoAnalysisEntitySource, type VideoAnalysisMixedTier, type VideoAnalysisModelTier, type VideoAnalysisResult, type VideoAnalysisTier, 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, WARDROBE_VARIANTS, WEAPONS, WEAPON_SUBCATEGORY_LABELS, WEAPON_SUBCATEGORY_ORDER, type Weapon, type WeaponSubcategory, type WindowAnalysis, type WindowScene, type WorkflowExport, type WorkflowExportCharacter, type WorkflowExportCreature, type WorkflowExportLocation, type WorkflowExportObject, aggregateByType, aiAvatarReserveCreditId, analyzedSceneSchema, applyDefaultVideoSelection, applyHandleInputOverride, applyRange, applyRangeIndices, applySlots, applyVideoAudioToggle, applyVideoNegativePrompt, aspectRatioFromDims, aspectRatioOptionsByKind, aspectRatioToNumber, assembleNarratedVideoCredits, bucketSecondsFromCreditId, buildBoardPrompt, buildChildrenByParent, buildConditionVariables, buildCreditModelIdentifier, buildExpressionFromVisual, buildLipSyncCreditId, buildLlmCreditIdentifier, buildModelMenu, buildModelTree, buildMotionCreditModelIdentifier, buildNodePresetExport, buildPanelPrompt, buildProgressSegments, buildRangeLabel, buildScraperCreditId, buildSurroundFillPrompt, buildVideoAnalysisCreditId, buildVideoCreditModelIdentifier, calculateCombinedProgress, calculateMonetizationMarkup, calculateMonetizedCost, calculateProgress, canonicalVarName, characterBoardItems, characterBucketDisplayRank, characterMentionSlug, characterMentionableAssetArrays, characterSheetRefItems, characterVariantAssetArrays, cinematicCreditId, clampCinematicDuration, clampSmartCutWindow, cleanOrphanedItems, clearImageCriticMetadata, clearVideoCriticMetadata, collectAncestorRefs, combineSameLabelRefs, countRefModalityEdges, creditRangesAll, decodeProviderItem, defaultCarriedFraction, defaultRoleForSource, defaultVideoAspectRatio, deriveLinkedFields, deriveLottieSlotFields, deriveSlotRefs, describeEdgeBehavior, describeMaskRegion, describeSlotControl, dropUnknownBindings, durationsByMode, effectiveReasoningEffort, encodeProviderItem, ensureLocaleCatalogLoaded, entitySlotSchema, entryMatchesQuery, estimateCombineVideosCredits, estimateFilmCredits, estimateLoopTrimAddonCredits, estimateLoopVideoCredits, estimateScriptDurationSec, estimateSheetCost, estimateTrimVideoCredits, evaluateCondition, evaluateConditionGroup, evaluateJsonExpression, evaluateJsonPath, expandExtraRefsToConnectedReferences, expandItemsWithRepeat, extractAllGeneratedResults, extractCharacterLoraFields, extractGeneratedJsonAsList, extractPresetData, extractReferencedLabels, extractVideoDurationFromNode, fieldKeyFromHandle, filterCloneNodes, findCharacterMentionTokens, findLocationMentionTokens, findSeedance2AudioOverLimit, firstSightExtraRole, flattenItems, getAnimal, getAnimalLabel, 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, hasFeature, hexToRgbaArray, humanizeSlotSid, imageReferenceLimit, isAggregateableType, isCharacterAspectRatio, isCollectInEdge, isDefaultSelectorConfig, isExpandedClone, isFlux2Model, isGvpSupportedProvider, isHandleInputWired, isKineticCaptionStyle, isLocationUsageMode, isObjectAspectRatio, isOversizedScene, isPerSecondLipSyncProvider, isScraperActor, isSeedance2Provider, isTiltDirection, isUsageMode, isVeoProvider, isVideoAnalysisMixedTier, isVideoAnalysisTier, jsonResultToList, listBoardTemplates, listModels, listSlotSids, locationMentionSlug, locationReferencePhotoKindLabel, locationUsageModeLabel, mapAspectRatio, mapQuality, mapShotIntentToProviderDirectives, matchVariant, mergeExposedSettings, migrateEdgeOutputMode, migrateToItems, modelIdsByKindMode, modelToNodeTarget, modelsForInputMode, modelsWithFeature, motionGraphicsFeature, normalizeLottieLayers, normalizePinterestUrl, normalizeRoleSlug, parseAttributedDialogue, parseCharacterMentionToken, parseGroupHandle, parseHandleId, parseListExpression, parseLocationMentionToken, parseNodePresetExport, parseNodeRef, pickAiAvatarBucket, pickIds, pickLipSyncBucket, pickSwitchXFrameTier, pickVideoAnalysisBucket, planSheetGeneration, planSheetPanels, preferredInputModeForModel, presentTypes, presetDataMatches, presetEntries, qualityOptionsByKind, refHandleCategory, referenceModalityForHandle, referenceSheetCreditId, registerSidecarLoaders, renderAnalyzedScene, resolutionOptionsByKind, resolveAiAvatarCreditId, resolveAudioCrossfadeCurve, resolveCharacterAspectRatio, resolveCinematicCreditId, resolveConditionValue, resolveDefaultRole, resolveDescription, resolveDialogueVoices, resolveEffectiveSourceType, resolveEntityAspect, resolveFieldMappings, resolveImageGenCreditIdentifier, resolveIndex, resolveLabel, resolveListExpression, resolveLlmCreditId, resolveLocationFields, resolveLocationPresetCatalog, resolveLottieOverlaySrc, resolveNodeRefs, resolveObjectAspectRatio, resolvePipelineModel, resolveRelativeWindowToken, resolveScraperCreditId, resolveSelectorRefs, resolveSeparator, resolveSheetSections, resolveSourceThroughConnectedList, resolveSwitchXCreditId, resolveVideoAnalysisModel, resolveVideoProviderForMode, resolveXfadeName, rewriteSceneBindings, rewriteSlotTokens, rgbaArrayToHex, roleToPhrase, runSelector, sanitizeRole, searchModelVariants, seedance2AudioLimitSec, selectByModulo, selectByNamedKey, selectByPredicate, selectListItems, selectLoraRoutingForMentions, selectRandom, settledWithLimit, slotVariationSchema, sortCharacterEntriesForDisplay, sortListItems, sourceRefKey, spliceDelimitedRows, splitByLoopDelimiter, splitGeneratedItems, spreadJsonArrayIfSingleton, stringifyPathResults, stripExportContent, stripTransientRuntimeData, supportedDefaultDimensions, toConnectedReference, toConnectedReferences, togglePick, tryParseJson, unwrapUnresolvedTokens, usageModeDirective, usageModeIncludesName, usageModeLabel, validateAiAvatarPayload, validateCinematicAvatarPayload, validateDurationForFormat, validateModeActivation, validateModelInput, validateNoNestedGroups, validateObjects, validateProviderForNodeType, validateSubWorkflowRoutes, variantJobId, videoAnalysisCreditSegment, videoAnalysisNumWindows, videoAnalysisResultSchema, videoModelCanSpeakDialogue, videoModelSupportsAudio, videoProviderRequiresImage, windowAnalysisSchema, zipMergeLists };
|
|
9258
|
+
export { ACTIVE_SCENE_HELPERS, ADVANCED_MODE_UNAVAILABLE_REASON, AGGREGATEABLE_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 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, 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, 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 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 DetectionResult, DetectionResultSchema, type DialogueLine, EFFORT_TIER_BUMP, EMOTIONAL_BEAT, ENTITY_ASPECT_DEFAULTS, ENTITY_IMAGE_HANDLE_TYPES, ENTITY_SECTIONS, ENTITY_STATUSES, ENTITY_TOOL_RETRY_CAP, ENTITY_TYPES, EXECUTION_DATA_KEYS, EXTEND_VIDEO_PROVIDERS, type EntityKind, type EntityMetadata, EntityMetadataSchema, 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_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, GENERATE_TEXT_DELIMITER, GLOBAL_MAX_DURATION_SECONDS, GROUP_HANDLE_PREFIX, GUIDANCE_SCALE_SUPPORT, GVP_SUPPORTED_PROVIDERS, GenerateMotionInputSchema, type GenerateMotionResult, GenerateMotionResultSchema, type GenericEdge, type GenericNode, 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_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 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 ImageToVideoProvider, type ImprovePromptInput, ImprovePromptInputSchema, type ImprovePromptResult, ImprovePromptResultSchema, type InputFieldSchema, 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_TEXT_INPUT_MAX, 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 LlmReasoningEffort, type LlmTier, 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, MODELS_WITH_REFERENCE_IMAGE_SUPPORT, MODEL_CATALOG, MODEL_RECOMMENDATIONS, MODIFY_IMAGE_PROVIDERS, MOTION_COLUMN, MOTION_TRANSFER_PROVIDERS, MUSIC_PROVIDERS, type MaskRegionDescriptor, type MatchCutVerdict, MatchCutVerdictSchema, type Member, type MinimalEdge, type MinimalNode, type ModelCatalogEntry, 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 NodePresetExport, OBJECT_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS, OBJECT_ASSET_TYPES, OBJECT_ASSET_VARIANTS, OBJECT_ATTACH_COLUMNS, OBJECT_MOTION_PROVIDERS, OBJECT_PICKER_NODE_TYPES, 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 OutputFormat, type OutputMode, type OutputType, PARAMETER_NODE_TYPES, PASSTHROUGH_TYPES, PER_FORMAT_DURATION_BOUNDS, 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, PROMPT_HARD_CEILING, 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 PriceVariant, type ProgressSegment, 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, 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 ReferenceBoardProvider, type ReferenceModality, type ReferenceSheet, type ReferenceSource, type ReportListingResult, type ResolveCharacterAspectOptions, type ResolveObjectAspectOptions, type ResolveSeparatorOptions, type ResolvedDialogueVoiceLine, type RouterConditionGroup, SCENE_HELPER_NAMES, SCRAPER_ACTOR_LABELS, SCRAPER_CREDIT_COSTS, SCRAPER_OUTPUT_FIELDS, SCRIPT_PROVIDERS, SEASONS, SECTION_BOARD, SECTION_KINDS, 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, SUNO_ADD_TRACK_MODELS, SUNO_FIELD_HANDLE_FIELDS, SUNO_MODELS, SUNO_TEXT_MAX, SUNO_TITLE_MAX, SUPPORTED_FONT_NAMES, SURROUND_DIRECTIONS, SWITCHX_BLOCK_FRAMES, SWITCHX_FRAME_TIERS, 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 SunoAddTrackModel, type SunoModel, type SupportedFontName, type SurroundDirection, type Swatch, T2I_TO_I2I_VARIANT, TEXT_TO_AUDIO_PROVIDERS, TEXT_TO_VIDEO_PROVIDERS, TIER_MAX_PIPELINE_COST_CREDITS, TIER_PIPELINE_PARALLELISM, TILT_CARRIED_FRACTION, TRANSCRIBE_PROVIDERS, TRANSIENT_RUNTIME_KEYS, TTS_PROVIDERS, TTS_TEXT_MAX, TWO_K_RESOLUTION_PROVIDERS, type TextToAudioProvider, type TextToVideoProvider, type TranscribeProvider, type TransitionType, TransitionTypeSchema, type TrimVideoEstimatorInput, type TtsProvider, UPSCALE_IMAGE_PROVIDERS, USAGE_MODES, type UpscaleImageProvider, type UsageMode, VARIABLES_HANDLE_ID, VARIABLE_PRICING_MODELS, VEHICLES, VEHICLE_SUBCATEGORY_LABELS, VEHICLE_SUBCATEGORY_ORDER, VEO_PROVIDERS, VIDEO_ANALYSIS_BUCKET_CREDITS, 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_TIERS, VIDEO_ANALYSIS_TIER_LABELS, VIDEO_ANALYSIS_TIER_ORDER, VIDEO_ANALYSIS_TRANSITIONS, VIDEO_ANALYSIS_VARIATION_SLUGS, VIDEO_ANALYSIS_VISUAL_EFFECTS, VIDEO_ANALYSIS_WINDOW, VIDEO_AUDIO_CAPABILITY, 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_REF_LIMITS_BY_PROVIDER, 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 Vehicle, type VehicleSubcategory, type VideoAnalysisEntitySource, type VideoAnalysisMixedTier, type VideoAnalysisModelTier, type VideoAnalysisResult, type VideoAnalysisShotAngle, type VideoAnalysisSpeedEffect, 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, WARDROBE_VARIANTS, WEAPONS, WEAPON_SUBCATEGORY_LABELS, WEAPON_SUBCATEGORY_ORDER, type Weapon, type WeaponSubcategory, type WindowAnalysis, type WindowScene, type WorkflowExport, type WorkflowExportCharacter, type WorkflowExportCreature, type WorkflowExportLocation, type WorkflowExportObject, aggregateByType, aiAvatarReserveCreditId, analyzedSceneSchema, applyDefaultVideoSelection, applyHandleInputOverride, applyRange, applyRangeIndices, applySlots, applyVideoAudioToggle, applyVideoNegativePrompt, aspectRatioFromDims, aspectRatioOptionsByKind, aspectRatioToNumber, assembleNarratedVideoCredits, availableReasoningEfforts, bucketSecondsFromCreditId, buildBoardPrompt, buildChildrenByParent, buildConditionVariables, buildCreditModelIdentifier, buildExpressionFromVisual, buildLipSyncCreditId, buildLlmCreditIdentifier, buildModelMenu, buildModelTree, buildMotionCreditModelIdentifier, buildNodePresetExport, buildPanelPrompt, buildProgressSegments, buildRangeLabel, buildScraperCreditId, buildSurroundFillPrompt, buildVideoAnalysisCreditId, buildVideoCreditModelIdentifier, calculateCombinedProgress, calculateMonetizationMarkup, calculateMonetizedCost, calculateProgress, canonicalVarName, characterBoardItems, characterBucketDisplayRank, characterMentionSlug, characterMentionableAssetArrays, characterSheetRefItems, characterVariantAssetArrays, cinematicCreditId, clampCinematicDuration, clampSmartCutWindow, cleanOrphanedItems, clearImageCriticMetadata, clearVideoCriticMetadata, clipLookSchema, collectAncestorRefs, combineSameLabelRefs, countRefModalityEdges, creditRangesAll, decodeProviderItem, defaultCarriedFraction, defaultRoleForSource, defaultVideoAspectRatio, deriveLinkedFields, deriveLottieSlotFields, deriveSlotRefs, describeEdgeBehavior, describeMaskRegion, describeSlotControl, dropUnknownBindings, dropUnknownSpeakers, durationsByMode, effectiveReasoningEffort, encodeProviderItem, ensureLocaleCatalogLoaded, entitySlotSchema, entryMatchesQuery, estimateCombineVideosCredits, estimateFilmCredits, estimateLoopTrimAddonCredits, estimateLoopVideoCredits, estimateScriptDurationSec, estimateSheetCost, estimateTrimVideoCredits, evaluateCondition, evaluateConditionGroup, evaluateJsonExpression, evaluateJsonPath, expandExtraRefsToConnectedReferences, expandItemsWithRepeat, extractAllGeneratedResults, extractCharacterLoraFields, extractGeneratedJsonAsList, extractPresetData, extractReferencedLabels, extractVideoDurationFromNode, fieldKeyFromHandle, filterCloneNodes, findCharacterMentionTokens, findLocationMentionTokens, findSeedance2AudioOverLimit, firstSightExtraRole, flattenItems, getAnimal, getAnimalLabel, 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, hasFeature, hexToRgbaArray, humanizeSlotSid, imageReferenceLimit, isAggregateableType, isCharacterAspectRatio, isCollectInEdge, isDefaultSelectorConfig, isExpandedClone, isFlux2Model, isGvpSupportedProvider, isHandleInputWired, isKineticCaptionStyle, isLocationUsageMode, isObjectAspectRatio, isOversizedScene, isPerSecondLipSyncProvider, isScraperActor, isSeedance2Provider, isTiltDirection, isUsageMode, isVeoProvider, isVideoAnalysisMixedTier, isVideoAnalysisTier, jsonResultToList, listBoardTemplates, listModels, listSlotSids, locationMentionSlug, locationReferencePhotoKindLabel, locationUsageModeLabel, mapAspectRatio, mapQuality, mapShotIntentToProviderDirectives, matchVariant, mergeClipLook, mergeExposedSettings, migrateEdgeOutputMode, migrateToItems, modelIdsByKindMode, modelToNodeTarget, modelsForInputMode, modelsWithFeature, motionGraphicsFeature, normalizeLottieLayers, normalizePinterestUrl, normalizeRoleSlug, parseAttributedDialogue, parseCharacterMentionToken, parseGroupHandle, parseHandleId, parseListExpression, parseLocationMentionToken, parseNodePresetExport, parseNodeRef, pickAiAvatarBucket, pickIds, pickLipSyncBucket, pickSwitchXFrameTier, pickVideoAnalysisBucket, planSheetGeneration, planSheetPanels, preferredInputModeForModel, presentTypes, presetDataMatches, presetEntries, qualityOptionsByKind, refHandleCategory, referenceModalityForHandle, referenceSheetCreditId, registerSidecarLoaders, renderAnalyzedScene, resolutionOptionsByKind, resolveAiAvatarCreditId, resolveAudioCrossfadeCurve, resolveCharacterAspectRatio, resolveCinematicCreditId, resolveConditionValue, resolveDefaultRole, resolveDescription, resolveDialogueVoices, resolveEffectiveSourceType, resolveEntityAspect, resolveFieldMappings, resolveImageGenCreditIdentifier, resolveIndex, resolveLabel, resolveListExpression, resolveLlmCreditId, resolveLocationFields, resolveLocationPresetCatalog, resolveLottieOverlaySrc, resolveNodeRefs, resolveObjectAspectRatio, resolvePipelineModel, resolveRelativeWindowToken, resolveScraperCreditId, resolveSelectorRefs, resolveSeparator, resolveSheetSections, resolveSourceThroughConnectedList, resolveSwitchXCreditId, resolveVideoAnalysisModel, resolveVideoProviderForMode, resolveXfadeName, rewriteSceneBindings, rewriteSlotTokens, rewriteSpeakerSlots, rgbaArrayToHex, roleToPhrase, runSelector, sanitizeRole, searchModelVariants, seedance2AudioLimitSec, selectByModulo, selectByNamedKey, selectByPredicate, selectListItems, selectLoraRoutingForMentions, selectRandom, settledWithLimit, slotVariationSchema, sortCharacterEntriesForDisplay, sortListItems, sourceRefKey, spliceDelimitedRows, splitByLoopDelimiter, splitGeneratedItems, spreadJsonArrayIfSingleton, stringifyPathResults, stripExportContent, stripTransientRuntimeData, supportedDefaultDimensions, supportsAdvancedMode, toConnectedReference, toConnectedReferences, togglePick, tryParseJson, unwrapUnresolvedTokens, usageModeDirective, usageModeIncludesName, usageModeLabel, validateAiAvatarPayload, validateCinematicAvatarPayload, validateDurationForFormat, validateModeActivation, validateModelInput, validateNoNestedGroups, validateObjects, validateProviderForNodeType, validateSubWorkflowRoutes, variantJobId, videoAnalysisCreditSegment, videoAnalysisNumWindows, videoAnalysisResultSchema, videoModelCanSpeakDialogue, videoModelSupportsAudio, videoProviderRequiresImage, windowAnalysisSchema, zipMergeLists };
|