@nodaro/shared 1.21.0 → 1.23.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 +240 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +343 -7
- package/dist/index.d.ts +343 -7
- package/dist/index.js +229 -50
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/llm-models.test.ts +157 -0
- package/src/__tests__/video-analysis-catalog-sync.test.ts +102 -0
- package/src/__tests__/video-analysis-pricing.test.ts +5 -4
- package/src/__tests__/video-analysis.test.ts +133 -1
- package/src/index.ts +6 -0
- package/src/llm-models.ts +184 -11
- package/src/model-catalog.ts +20 -20
- package/src/video-analysis-pricing.ts +21 -18
- package/src/video-analysis.ts +191 -1
package/dist/index.d.ts
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,8 +1943,17 @@ 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
1958
|
* Build a composite credit identifier for an LLM feature.
|
|
1914
1959
|
* - economy tier → "ai-writer:economy"
|
|
@@ -1919,10 +1964,46 @@ declare function effectiveReasoningEffort(modelId: string | undefined, requested
|
|
|
1919
1964
|
* premium stays premium). `high` is the Claude-family server default and
|
|
1920
1965
|
* never bumps.
|
|
1921
1966
|
*/
|
|
1922
|
-
declare function buildLlmCreditIdentifier(feature: string, modelId?: string, reasoningEffort?: string): string;
|
|
1923
1967
|
/**
|
|
1924
|
-
*
|
|
1925
|
-
*
|
|
1968
|
+
* The sampling defaults each LLM feature's route sends when Advanced mode is
|
|
1969
|
+
* OFF — and therefore the values its Advanced panel must seed the sliders with.
|
|
1970
|
+
*
|
|
1971
|
+
* SINGLE SOURCE because the two used to disagree: the routes hardcoded their
|
|
1972
|
+
* own literals while the toggle fell back to 0.7/2048, so the panel displayed
|
|
1973
|
+
* a temperature the run never used, and one arrow-key press on 3D Title's Max
|
|
1974
|
+
* Tokens silently cut its budget from 3072 to 2048 on a node that emits
|
|
1975
|
+
* structured JSON.
|
|
1976
|
+
*
|
|
1977
|
+
* `structuredOutput` marks the features whose prompt asks the model for JSON —
|
|
1978
|
+
* a high temperature measurably degrades schema adherence there, so the panel
|
|
1979
|
+
* warns. Absent `temperature` means the route sends none (vendor default).
|
|
1980
|
+
*/
|
|
1981
|
+
interface LlmRouteDefaults {
|
|
1982
|
+
temperature?: number;
|
|
1983
|
+
maxTokens?: number;
|
|
1984
|
+
structuredOutput?: true;
|
|
1985
|
+
}
|
|
1986
|
+
declare const LLM_ROUTE_DEFAULTS: Record<string, LlmRouteDefaults>;
|
|
1987
|
+
/** Route defaults for a feature; `{}` for an unknown one. */
|
|
1988
|
+
declare function llmRouteDefaults(feature: string | undefined): LlmRouteDefaults;
|
|
1989
|
+
/**
|
|
1990
|
+
* Can this model be run in Advanced mode?
|
|
1991
|
+
*
|
|
1992
|
+
* Advanced mode pins the call to the vendor's own API, which is the only lane
|
|
1993
|
+
* where sampling levers (`temperature`, `maxTokens`) and the full effort range
|
|
1994
|
+
* actually take effect. Capability-derived from the registry — a model without
|
|
1995
|
+
* a direct lane simply cannot offer it, so UI and routes both gate on this
|
|
1996
|
+
* rather than on a hand-maintained model list.
|
|
1997
|
+
*/
|
|
1998
|
+
declare function supportsAdvancedMode(modelId: string | undefined): boolean;
|
|
1999
|
+
/** User-facing reason a model can't offer Advanced mode. Single-sourced so the
|
|
2000
|
+
* config panel's disabled hint and the route's 400 say the same thing. */
|
|
2001
|
+
declare const ADVANCED_MODE_UNAVAILABLE_REASON = "Advanced mode is available on Gemini models \u2014 switch the model to enable it.";
|
|
2002
|
+
declare function buildLlmCreditIdentifier(feature: string, modelId?: string, reasoningEffort?: string, advancedMode?: boolean): string;
|
|
2003
|
+
/**
|
|
2004
|
+
* Resolve llmModel (+ reasoningEffort, advancedMode) from raw body for the
|
|
2005
|
+
* creditGuard preHandler (before Zod parsing). Returns the credit identifier
|
|
2006
|
+
* for the given feature.
|
|
1926
2007
|
*/
|
|
1927
2008
|
declare function resolveLlmCreditId(feature: string, body: unknown): string;
|
|
1928
2009
|
/** Models capable of video-analysis: capability-derived, never hand-listed (route-enum-sync convention). */
|
|
@@ -8539,6 +8620,99 @@ declare function sanitizeRole(raw: string): string;
|
|
|
8539
8620
|
*/
|
|
8540
8621
|
|
|
8541
8622
|
declare const VIDEO_ANALYSIS_MAX_SCENE_SEC = 8;
|
|
8623
|
+
/**
|
|
8624
|
+
* Camera VIEWPOINT — where the camera is relative to the subject. The axis
|
|
8625
|
+
* `shotType` does not carry, and the one the analyzer had been improvising.
|
|
8626
|
+
*
|
|
8627
|
+
* Two failures this fixes, both from real jobs:
|
|
8628
|
+
*
|
|
8629
|
+
* 1. `shotType` is framing SIZE (Wide … Extreme Close-Up), so a true angle had
|
|
8630
|
+
* nowhere to go and landed in the MOVEMENT field instead:
|
|
8631
|
+
* `"camera": "low angle static"`. That loses the angle to anything reading
|
|
8632
|
+
* `camera` and pollutes the movement vocabulary.
|
|
8633
|
+
* 2. The relational viewpoints — `Over-the-Shoulder`, `POV` — were conventions
|
|
8634
|
+
* inside the `shotType` list, competing with the sizes for one slot. So an
|
|
8635
|
+
* over-the-shoulder MEDIUM had to pick one and threw the other away. They
|
|
8636
|
+
* belong here, leaving `shotType` free to state the size: an OTS medium is
|
|
8637
|
+
* `shotType: "Medium"` + `angle: "over-the-shoulder"`, which is strictly more
|
|
8638
|
+
* than either field could carry alone.
|
|
8639
|
+
*
|
|
8640
|
+
* A closed enum rather than free text precisely because improvisation is the
|
|
8641
|
+
* failure being fixed. Absent means EYE-LEVEL — the overwhelming default, so
|
|
8642
|
+
* omitting it costs nothing on most shots (the same "absence is the default"
|
|
8643
|
+
* shape as `transitionOut` and appearance variations).
|
|
8644
|
+
*
|
|
8645
|
+
* `from-behind` and `over-the-shoulder` also carry real meaning downstream: a
|
|
8646
|
+
* face is not visible in either, which is what auto-cast needs to know before
|
|
8647
|
+
* choosing one as an identity reference.
|
|
8648
|
+
*/
|
|
8649
|
+
declare const VIDEO_ANALYSIS_SHOT_ANGLES: readonly ["eye-level", "low", "high", "overhead", "worms-eye", "dutch", "over-the-shoulder", "pov", "profile", "from-behind"];
|
|
8650
|
+
type VideoAnalysisShotAngle = (typeof VIDEO_ANALYSIS_SHOT_ANGLES)[number];
|
|
8651
|
+
/** Viewpoints in which the subject's FACE is not visible — so a frame shot this
|
|
8652
|
+
* way is a poor identity reference however good its framing otherwise is. */
|
|
8653
|
+
declare const VIDEO_ANALYSIS_FACELESS_ANGLES: ReadonlySet<string>;
|
|
8654
|
+
/**
|
|
8655
|
+
* Effects applied to the PICTURE of a shot. An array — a shot can be grainy and
|
|
8656
|
+
* vignetted at once — and absent when the image is clean, which is most shots.
|
|
8657
|
+
*
|
|
8658
|
+
* Scoped deliberately to things done to the IMAGE, and NOT to compositing that
|
|
8659
|
+
* asserts what is in the shot (picture-in-picture, split screen). That line
|
|
8660
|
+
* matters: a real job invented `{slot:creator} overlay talking to camera` across
|
|
8661
|
+
* nine scenes for a man who is never seen, so a field for "there is an inset of a
|
|
8662
|
+
* person here" would hand that fabrication a legitimate home. An effect is
|
|
8663
|
+
* verifiable in the pixels; a claim about who is inset is not.
|
|
8664
|
+
*
|
|
8665
|
+
* `dissolve` and `fade` are NOT here either — they are edits BETWEEN shots and
|
|
8666
|
+
* belong to `transitionOut`.
|
|
8667
|
+
*/
|
|
8668
|
+
declare const VIDEO_ANALYSIS_VISUAL_EFFECTS: readonly ["blur", "pixelate", "glitch", "grain", "vignette", "flash", "distortion", "double-exposure"];
|
|
8669
|
+
type VideoAnalysisVisualEffect = (typeof VIDEO_ANALYSIS_VISUAL_EFFECTS)[number];
|
|
8670
|
+
/**
|
|
8671
|
+
* Visible edit INTO the next shot.
|
|
8672
|
+
*
|
|
8673
|
+
* `dissolve` (a cross-fade from one image to the other) is distinct from `fade`
|
|
8674
|
+
* (through black or white). Collapsing both onto `fade` — as this enum did — makes
|
|
8675
|
+
* a recreation render the wrong edit, and the two look nothing alike.
|
|
8676
|
+
*/
|
|
8677
|
+
declare const VIDEO_ANALYSIS_TRANSITIONS: readonly ["cut", "fade", "dissolve", "wipe", "whip"];
|
|
8678
|
+
type VideoAnalysisTransition = (typeof VIDEO_ANALYSIS_TRANSITIONS)[number];
|
|
8679
|
+
/**
|
|
8680
|
+
* Time manipulation — slow motion, ramps, timelapse, freeze, reverse.
|
|
8681
|
+
*
|
|
8682
|
+
* Previously unrepresentable anywhere in the schema, so a recreation rendered
|
|
8683
|
+
* every shot at normal speed no matter what the footage did. It is a first-class
|
|
8684
|
+
* lever in every video model and a real editing decision in most action footage.
|
|
8685
|
+
*
|
|
8686
|
+
* `"normal"` is deliberately NOT a member: absence is normal speed, so there is
|
|
8687
|
+
* exactly one way to say "nothing unusual here" and the field costs nothing on
|
|
8688
|
+
* the majority of shots.
|
|
8689
|
+
*/
|
|
8690
|
+
declare const VIDEO_ANALYSIS_SPEED_EFFECTS: readonly ["slow-motion", "ramp-in", "ramp-out", "timelapse", "freeze", "reverse"];
|
|
8691
|
+
type VideoAnalysisSpeedEffect = (typeof VIDEO_ANALYSIS_SPEED_EFFECTS)[number];
|
|
8692
|
+
/**
|
|
8693
|
+
* The CLIP-LEVEL look — one source of truth for the properties that belong to
|
|
8694
|
+
* the whole piece rather than any one shot.
|
|
8695
|
+
*
|
|
8696
|
+
* Colour grade, camera format and lens character were previously only ever prose
|
|
8697
|
+
* inside each scene's `visual`, which meant a 43-scene analysis re-decided the
|
|
8698
|
+
* grade forty-three independent times with nothing holding them consistent. That
|
|
8699
|
+
* is the same drift problem entity slots solve for people: state it once, apply it
|
|
8700
|
+
* everywhere. A recreation reads this alongside every scene.
|
|
8701
|
+
*
|
|
8702
|
+
* Every field optional — an analyzer that cannot read the format should say
|
|
8703
|
+
* nothing rather than guess, and a per-scene deviation still belongs in that
|
|
8704
|
+
* scene's `visual` prose.
|
|
8705
|
+
*/
|
|
8706
|
+
declare const clipLookSchema: z.ZodObject<{
|
|
8707
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8708
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8709
|
+
format: z.ZodOptional<z.ZodString>;
|
|
8710
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
8711
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
8712
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
8713
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
8714
|
+
}, z.core.$strip>;
|
|
8715
|
+
type ClipLook = z.infer<typeof clipLookSchema>;
|
|
8542
8716
|
declare const VIDEO_ANALYSIS_ENTITY_SOURCES: readonly ["wired-character", "wired-object", "wired-location", "wired-creature"];
|
|
8543
8717
|
type VideoAnalysisEntitySource = (typeof VIDEO_ANALYSIS_ENTITY_SOURCES)[number];
|
|
8544
8718
|
/** Matches {slot:<id>} tokens. Distinct from NODE_REF_PATTERN / {image:N} grammars. */
|
|
@@ -8606,9 +8780,41 @@ declare const windowSceneSchema: z.ZodObject<{
|
|
|
8606
8780
|
label: z.ZodString;
|
|
8607
8781
|
shotType: z.ZodString;
|
|
8608
8782
|
camera: z.ZodString;
|
|
8783
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8784
|
+
"eye-level": "eye-level";
|
|
8785
|
+
high: "high";
|
|
8786
|
+
low: "low";
|
|
8787
|
+
overhead: "overhead";
|
|
8788
|
+
pov: "pov";
|
|
8789
|
+
dutch: "dutch";
|
|
8790
|
+
"worms-eye": "worms-eye";
|
|
8791
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8792
|
+
profile: "profile";
|
|
8793
|
+
"from-behind": "from-behind";
|
|
8794
|
+
}>>;
|
|
8795
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8796
|
+
reverse: "reverse";
|
|
8797
|
+
"slow-motion": "slow-motion";
|
|
8798
|
+
"ramp-in": "ramp-in";
|
|
8799
|
+
"ramp-out": "ramp-out";
|
|
8800
|
+
timelapse: "timelapse";
|
|
8801
|
+
freeze: "freeze";
|
|
8802
|
+
}>>;
|
|
8609
8803
|
visual: z.ZodString;
|
|
8804
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8805
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8806
|
+
blur: "blur";
|
|
8807
|
+
pixelate: "pixelate";
|
|
8808
|
+
glitch: "glitch";
|
|
8809
|
+
grain: "grain";
|
|
8810
|
+
vignette: "vignette";
|
|
8811
|
+
flash: "flash";
|
|
8812
|
+
distortion: "distortion";
|
|
8813
|
+
"double-exposure": "double-exposure";
|
|
8814
|
+
}>>>;
|
|
8610
8815
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8611
8816
|
cut: "cut";
|
|
8817
|
+
dissolve: "dissolve";
|
|
8612
8818
|
fade: "fade";
|
|
8613
8819
|
wipe: "wipe";
|
|
8614
8820
|
whip: "whip";
|
|
@@ -8629,6 +8835,15 @@ type WindowScene = z.infer<typeof windowSceneSchema>;
|
|
|
8629
8835
|
/** What the MODEL emits per window (strict-JSON footer schema). scenes has NO min. */
|
|
8630
8836
|
declare const windowAnalysisSchema: z.ZodObject<{
|
|
8631
8837
|
language: z.ZodOptional<z.ZodString>;
|
|
8838
|
+
look: z.ZodOptional<z.ZodObject<{
|
|
8839
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8840
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8841
|
+
format: z.ZodOptional<z.ZodString>;
|
|
8842
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
8843
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
8844
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
8845
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
8846
|
+
}, z.core.$strip>>;
|
|
8632
8847
|
slots: z.ZodArray<z.ZodObject<{
|
|
8633
8848
|
slotId: z.ZodString;
|
|
8634
8849
|
label: z.ZodString;
|
|
@@ -8654,9 +8869,41 @@ declare const windowAnalysisSchema: z.ZodObject<{
|
|
|
8654
8869
|
label: z.ZodString;
|
|
8655
8870
|
shotType: z.ZodString;
|
|
8656
8871
|
camera: z.ZodString;
|
|
8872
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8873
|
+
"eye-level": "eye-level";
|
|
8874
|
+
high: "high";
|
|
8875
|
+
low: "low";
|
|
8876
|
+
overhead: "overhead";
|
|
8877
|
+
pov: "pov";
|
|
8878
|
+
dutch: "dutch";
|
|
8879
|
+
"worms-eye": "worms-eye";
|
|
8880
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8881
|
+
profile: "profile";
|
|
8882
|
+
"from-behind": "from-behind";
|
|
8883
|
+
}>>;
|
|
8884
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8885
|
+
reverse: "reverse";
|
|
8886
|
+
"slow-motion": "slow-motion";
|
|
8887
|
+
"ramp-in": "ramp-in";
|
|
8888
|
+
"ramp-out": "ramp-out";
|
|
8889
|
+
timelapse: "timelapse";
|
|
8890
|
+
freeze: "freeze";
|
|
8891
|
+
}>>;
|
|
8657
8892
|
visual: z.ZodString;
|
|
8893
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8894
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8895
|
+
blur: "blur";
|
|
8896
|
+
pixelate: "pixelate";
|
|
8897
|
+
glitch: "glitch";
|
|
8898
|
+
grain: "grain";
|
|
8899
|
+
vignette: "vignette";
|
|
8900
|
+
flash: "flash";
|
|
8901
|
+
distortion: "distortion";
|
|
8902
|
+
"double-exposure": "double-exposure";
|
|
8903
|
+
}>>>;
|
|
8658
8904
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8659
8905
|
cut: "cut";
|
|
8906
|
+
dissolve: "dissolve";
|
|
8660
8907
|
fade: "fade";
|
|
8661
8908
|
wipe: "wipe";
|
|
8662
8909
|
whip: "whip";
|
|
@@ -8681,9 +8928,41 @@ declare const analyzedSceneSchema: z.ZodObject<{
|
|
|
8681
8928
|
label: z.ZodString;
|
|
8682
8929
|
shotType: z.ZodString;
|
|
8683
8930
|
camera: z.ZodString;
|
|
8931
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
8932
|
+
"eye-level": "eye-level";
|
|
8933
|
+
high: "high";
|
|
8934
|
+
low: "low";
|
|
8935
|
+
overhead: "overhead";
|
|
8936
|
+
pov: "pov";
|
|
8937
|
+
dutch: "dutch";
|
|
8938
|
+
"worms-eye": "worms-eye";
|
|
8939
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
8940
|
+
profile: "profile";
|
|
8941
|
+
"from-behind": "from-behind";
|
|
8942
|
+
}>>;
|
|
8943
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
8944
|
+
reverse: "reverse";
|
|
8945
|
+
"slow-motion": "slow-motion";
|
|
8946
|
+
"ramp-in": "ramp-in";
|
|
8947
|
+
"ramp-out": "ramp-out";
|
|
8948
|
+
timelapse: "timelapse";
|
|
8949
|
+
freeze: "freeze";
|
|
8950
|
+
}>>;
|
|
8684
8951
|
visual: z.ZodString;
|
|
8952
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
8953
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8954
|
+
blur: "blur";
|
|
8955
|
+
pixelate: "pixelate";
|
|
8956
|
+
glitch: "glitch";
|
|
8957
|
+
grain: "grain";
|
|
8958
|
+
vignette: "vignette";
|
|
8959
|
+
flash: "flash";
|
|
8960
|
+
distortion: "distortion";
|
|
8961
|
+
"double-exposure": "double-exposure";
|
|
8962
|
+
}>>>;
|
|
8685
8963
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8686
8964
|
cut: "cut";
|
|
8965
|
+
dissolve: "dissolve";
|
|
8687
8966
|
fade: "fade";
|
|
8688
8967
|
wipe: "wipe";
|
|
8689
8968
|
whip: "whip";
|
|
@@ -8714,6 +8993,15 @@ declare const videoAnalysisResultSchema: z.ZodObject<{
|
|
|
8714
8993
|
title: z.ZodOptional<z.ZodString>;
|
|
8715
8994
|
language: z.ZodOptional<z.ZodString>;
|
|
8716
8995
|
}, z.core.$strip>;
|
|
8996
|
+
look: z.ZodOptional<z.ZodObject<{
|
|
8997
|
+
style: z.ZodOptional<z.ZodString>;
|
|
8998
|
+
grade: z.ZodOptional<z.ZodString>;
|
|
8999
|
+
format: z.ZodOptional<z.ZodString>;
|
|
9000
|
+
lens: z.ZodOptional<z.ZodString>;
|
|
9001
|
+
lighting: z.ZodOptional<z.ZodString>;
|
|
9002
|
+
genre: z.ZodOptional<z.ZodString>;
|
|
9003
|
+
influence: z.ZodOptional<z.ZodString>;
|
|
9004
|
+
}, z.core.$strip>>;
|
|
8717
9005
|
slots: z.ZodArray<z.ZodObject<{
|
|
8718
9006
|
slotId: z.ZodString;
|
|
8719
9007
|
label: z.ZodString;
|
|
@@ -8739,9 +9027,41 @@ declare const videoAnalysisResultSchema: z.ZodObject<{
|
|
|
8739
9027
|
label: z.ZodString;
|
|
8740
9028
|
shotType: z.ZodString;
|
|
8741
9029
|
camera: z.ZodString;
|
|
9030
|
+
angle: z.ZodOptional<z.ZodEnum<{
|
|
9031
|
+
"eye-level": "eye-level";
|
|
9032
|
+
high: "high";
|
|
9033
|
+
low: "low";
|
|
9034
|
+
overhead: "overhead";
|
|
9035
|
+
pov: "pov";
|
|
9036
|
+
dutch: "dutch";
|
|
9037
|
+
"worms-eye": "worms-eye";
|
|
9038
|
+
"over-the-shoulder": "over-the-shoulder";
|
|
9039
|
+
profile: "profile";
|
|
9040
|
+
"from-behind": "from-behind";
|
|
9041
|
+
}>>;
|
|
9042
|
+
speed: z.ZodOptional<z.ZodEnum<{
|
|
9043
|
+
reverse: "reverse";
|
|
9044
|
+
"slow-motion": "slow-motion";
|
|
9045
|
+
"ramp-in": "ramp-in";
|
|
9046
|
+
"ramp-out": "ramp-out";
|
|
9047
|
+
timelapse: "timelapse";
|
|
9048
|
+
freeze: "freeze";
|
|
9049
|
+
}>>;
|
|
8742
9050
|
visual: z.ZodString;
|
|
9051
|
+
onScreenText: z.ZodOptional<z.ZodString>;
|
|
9052
|
+
effects: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9053
|
+
blur: "blur";
|
|
9054
|
+
pixelate: "pixelate";
|
|
9055
|
+
glitch: "glitch";
|
|
9056
|
+
grain: "grain";
|
|
9057
|
+
vignette: "vignette";
|
|
9058
|
+
flash: "flash";
|
|
9059
|
+
distortion: "distortion";
|
|
9060
|
+
"double-exposure": "double-exposure";
|
|
9061
|
+
}>>>;
|
|
8743
9062
|
transitionOut: z.ZodOptional<z.ZodEnum<{
|
|
8744
9063
|
cut: "cut";
|
|
9064
|
+
dissolve: "dissolve";
|
|
8745
9065
|
fade: "fade";
|
|
8746
9066
|
wipe: "wipe";
|
|
8747
9067
|
whip: "whip";
|
|
@@ -8821,6 +9141,19 @@ declare function dropUnknownSpeakers(audio: AudioLayer[], validSlotIds: Set<stri
|
|
|
8821
9141
|
audio: AudioLayer[];
|
|
8822
9142
|
dropped: string[];
|
|
8823
9143
|
};
|
|
9144
|
+
/**
|
|
9145
|
+
* Fold each window's reading of the clip look into one, FIELD BY FIELD: the first
|
|
9146
|
+
* window that had something to say about a field wins it.
|
|
9147
|
+
*
|
|
9148
|
+
* Per-field rather than first-window-wins-everything because the windows see
|
|
9149
|
+
* different footage — an opening window may read the grade confidently while only
|
|
9150
|
+
* a later one contains the shot that reveals the format. Mirrors how `language` is
|
|
9151
|
+
* resolved across windows rather than taken from window 0.
|
|
9152
|
+
*
|
|
9153
|
+
* Returns undefined when no window said anything, so an analysis with nothing to
|
|
9154
|
+
* report omits the field rather than shipping an empty object.
|
|
9155
|
+
*/
|
|
9156
|
+
declare function mergeClipLook(looks: ReadonlyArray<ClipLook | undefined>): ClipLook | undefined;
|
|
8824
9157
|
/** Substitute {slot:x}: castMap binding wins, else the slot's description, else literal id. */
|
|
8825
9158
|
declare function renderAnalyzedScene(scene: {
|
|
8826
9159
|
visual: string;
|
|
@@ -8854,8 +9187,11 @@ declare function aspectRatioFromDims(w: number, h: number): string;
|
|
|
8854
9187
|
* `VIDEO_CLIP_CREDITS` uses in `film-pricing.ts`. It is what the frontend's
|
|
8855
9188
|
* client-side cost preview (`estimateNodeCredits` in
|
|
8856
9189
|
* workflow-editor/types.ts) reads instead of calling the formula directly.
|
|
8857
|
-
*
|
|
8858
|
-
*
|
|
9190
|
+
* The formula's own test in `@nodaroai/cloud-plugins`
|
|
9191
|
+
* (`src/plugins/video-analysis/__tests__/cost.test.ts`) cross-checks this table
|
|
9192
|
+
* against it and fails on drift. There is deliberately NO app-side formula to
|
|
9193
|
+
* check against — it was moved private in 2026-07 and the old backend test
|
|
9194
|
+
* went with it.
|
|
8859
9195
|
*/
|
|
8860
9196
|
declare const VIDEO_ANALYSIS_DURATION_BUCKETS: readonly [60, 180, 360, 600];
|
|
8861
9197
|
/** Worker re-check grace: route metadata is integer-rounded, provider durations nominal;
|
|
@@ -8951,4 +9287,4 @@ interface HintGraphContext {
|
|
|
8951
9287
|
readonly edges: ReadonlyArray<HintEdgeLike>;
|
|
8952
9288
|
}
|
|
8953
9289
|
|
|
8954
|
-
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, 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, 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, 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 };
|
|
9290
|
+
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_ROUTE_DEFAULTS, 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 LlmRouteDefaults, 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, llmRouteDefaults, 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 };
|