@nodaro/prompts 1.19.0 → 1.21.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 +11175 -1797
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +280 -41
- package/dist/index.d.ts +280 -41
- package/dist/index.js +10049 -686
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/__tests__/adult-only-ratchet.test.ts +26 -1
- package/src/__tests__/character-motion-audit.test.ts +77 -0
- package/src/__tests__/character-motion-docs-example.test.ts +26 -0
- package/src/__tests__/character-motion-exit-visibility.test.ts +183 -0
- package/src/__tests__/character-motion-partner-referent.test.ts +225 -0
- package/src/__tests__/character-motion-timing-catalogs.test.ts +76 -0
- package/src/__tests__/character-motion.test.ts +214 -0
- package/src/__tests__/fixtures/parameter-hint-golden.json +136 -0
- package/src/__tests__/frame-delivery.test.ts +93 -0
- package/src/__tests__/graph-composed-unwired-identity.test.ts +166 -0
- package/src/__tests__/parameter-hint-mode.test.ts +28 -0
- package/src/__tests__/parameter-prompt-hint.test.ts +165 -0
- package/src/__tests__/parameter-registry-sync.test.ts +2 -0
- package/src/__tests__/picker-analyzer-registry.test.ts +1 -1
- package/src/__tests__/transition-timing-catalogs.test.ts +1 -1
- package/src/__tests__/video-reference-features.test.ts +10 -1
- package/src/age-floor.ts +1 -1
- package/src/character-motion/animals-pets.ts +116 -0
- package/src/character-motion/athletic-stunts.ts +159 -0
- package/src/character-motion/camera-interaction.ts +96 -0
- package/src/character-motion/combat-weapons.ts +147 -0
- package/src/character-motion/dance.ts +125 -0
- package/src/character-motion/entrances-exits.ts +92 -0
- package/src/character-motion/evasive-falls.ts +92 -0
- package/src/character-motion/everyday-actions.ts +237 -0
- package/src/character-motion/face-expression.ts +129 -0
- package/src/character-motion/gestures.ts +215 -0
- package/src/character-motion/head-gestures.ts +70 -0
- package/src/character-motion/idle-ambient.ts +89 -0
- package/src/character-motion/posture-shifts.ts +120 -0
- package/src/character-motion/runway.ts +77 -0
- package/src/character-motion/stage-performance.ts +96 -0
- package/src/character-motion/turns-looks.ts +90 -0
- package/src/character-motion/two-person.ts +245 -0
- package/src/character-motion/types.ts +45 -0
- package/src/character-motion/unnatural-horror.ts +57 -0
- package/src/character-motion/vehicles-mounts.ts +105 -0
- package/src/character-motion/walks-runs.ts +97 -0
- package/src/character-motion-diagnostics.ts +49 -0
- package/src/character-motion.ts +362 -0
- package/src/frame-delivery.ts +106 -0
- package/src/index.ts +5 -0
- package/src/parameter-prompt-hint.ts +71 -0
- package/src/picker-analyzer-registry.ts +9 -5
- package/src/picker-catalogs.ts +33 -1
- package/src/picker-wiring.ts +2 -0
- package/src/prompt-wizard-categories.ts +0 -2
- package/src/provider-prompt-doctrine.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ConnectedReference, GenericNode, GenericEdge, HintNodeLike, HintGraphContext, EntityStyle, SupportedFontName, DescribedReference, CharacterDef, IdentityMeta, SceneData, CharacterMentionTokenInfo, LocationMentionTokenInfo, UsageMode, ProjectedCatalog, ProjectedCatalogDimension, ProjectedCatalogOption, LocaleId, LocaleCatalogMap, PromptAffixes, StyleDirectives, I18nCatalogId, SurroundDirection } from '@nodaro/shared';
|
|
2
|
-
export { HintEdgeLike, HintGraphContext, HintNodeLike } from '@nodaro/shared';
|
|
1
|
+
import { ConnectedReference, GenericNode, GenericEdge, HintNodeLike, HintGraphContext, EntityStyle, SupportedFontName, DescribedReference, CharacterDef, IdentityMeta, SceneData, CharacterMentionTokenInfo, LocationMentionTokenInfo, UsageMode, CharacterMotionMetadata, ProjectedCatalog, ProjectedCatalogDimension, ProjectedCatalogOption, LocaleId, LocaleCatalogMap, PromptAffixes, StyleDirectives, I18nCatalogId, SurroundDirection, FrameDelivery } from '@nodaro/shared';
|
|
2
|
+
export { CharacterMotionMetadata, HintEdgeLike, HintGraphContext, HintNodeLike } from '@nodaro/shared';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -421,6 +421,13 @@ declare function isSuspiciousDerivedTerm(label: string, opts?: SuspiciousTermOpt
|
|
|
421
421
|
*/
|
|
422
422
|
declare function resolveTerm(entry: TermCarrier | undefined | null): string;
|
|
423
423
|
|
|
424
|
+
/** The preview, diagnostics and execution use identical graph bindings. */
|
|
425
|
+
declare function getCharacterMotionBindings(node: HintNodeLike, ctx?: HintGraphContext): {
|
|
426
|
+
targetNames: string[];
|
|
427
|
+
partnerNames: string[];
|
|
428
|
+
subjectMinor: boolean;
|
|
429
|
+
selfPairing: boolean;
|
|
430
|
+
};
|
|
424
431
|
/**
|
|
425
432
|
* Dispatch by parameter-node type to its prompt-hint string. For camera-motion,
|
|
426
433
|
* pass `ctx` to include the composed start/end clauses; otherwise only the
|
|
@@ -3351,41 +3358,29 @@ declare function buildPersonTerms(data: Record<string, unknown> & PersonValue):
|
|
|
3351
3358
|
declare function migratePersonValue<T extends Record<string, unknown>>(data: T): T;
|
|
3352
3359
|
|
|
3353
3360
|
/**
|
|
3354
|
-
*
|
|
3355
|
-
*
|
|
3356
|
-
*
|
|
3357
|
-
*
|
|
3358
|
-
* just the catalog metadata + flattened options — so it can be consumed by
|
|
3359
|
-
* the backend, the public SDK, docs tooling, and the editor alike from one
|
|
3360
|
-
* source of truth.
|
|
3361
|
-
*
|
|
3362
|
-
* Two kinds of entry (mirroring the frontend):
|
|
3363
|
-
* - "single": one value field whose value is a string id chosen from a
|
|
3364
|
-
* catalog. `options` carries the full flattened catalog (id/label/
|
|
3365
|
-
* description/category/promptHint), so a consumer can render a picker or
|
|
3366
|
-
* resolve an id → prompt fragment without importing the heavy frontend
|
|
3367
|
-
* registry.
|
|
3368
|
-
* - "multi": several value fields (e.g. Framing.shotSize + .angle + …).
|
|
3369
|
-
* Structured / multi-dimensional. There is no single catalog to flatten,
|
|
3370
|
-
* so instead of top-level `options` each multi entry carries a
|
|
3371
|
-
* `dimensions` array — one self-describing entry per field
|
|
3372
|
-
* ({ field, label, options }) in `fields` order — so a consumer can render
|
|
3373
|
-
* a per-field picker or resolve any field's id → prompt fragment without
|
|
3374
|
-
* importing the heavy frontend registry.
|
|
3375
|
-
*
|
|
3376
|
-
* A drift-guard test (`frontend/src/lib/__tests__/picker-catalogs-sync.test.ts`)
|
|
3377
|
-
* asserts parity between this registry and the frontend one so the two cannot
|
|
3378
|
-
* silently diverge.
|
|
3379
|
-
*
|
|
3380
|
-
* NOTE on `promptHint` for the four Object-entity catalogs (animal / vehicle /
|
|
3381
|
-
* weapon / furniture): those catalog entries do NOT carry a `promptHint`
|
|
3382
|
-
* field — at runtime `getParameterPromptHint` synthesizes the fragment from
|
|
3383
|
-
* `label` + `description` ("featuring a golden retriever, …"). We reproduce the
|
|
3384
|
-
* exact same phrasing here so each option's `promptHint` is non-empty AND
|
|
3385
|
-
* matches what actually gets injected downstream.
|
|
3361
|
+
* Types for the Character Motion catalog. The entry arrays live one file per
|
|
3362
|
+
* category under this directory; `../character-motion.ts` aggregates them and
|
|
3363
|
+
* owns the getters, the timing scales and the composer. Kept apart so no file
|
|
3364
|
+
* in the catalog passes the repo's 800-line ceiling.
|
|
3386
3365
|
*/
|
|
3366
|
+
type CharacterMotionCategory = "entrances-exits" | "turns-looks" | "head-gestures" | "walks-runs" | "runway" | "dance" | "face-expression" | "gestures" | "camera-interaction" | "combat-weapons" | "athletic-stunts" | "evasive-falls" | "posture-shifts" | "everyday-actions" | "vehicles-mounts" | "animals-pets" | "two-person" | "idle-ambient" | "stage-performance" | "unnatural-horror";
|
|
3367
|
+
interface CharacterMotion extends CharacterMotionMetadata {
|
|
3368
|
+
readonly id: string;
|
|
3369
|
+
readonly label: string;
|
|
3370
|
+
readonly category: CharacterMotionCategory;
|
|
3371
|
+
readonly description: string;
|
|
3372
|
+
readonly promptHint: string;
|
|
3373
|
+
/** Authored compact term (see `../term.ts`); every injecting entry authors one. */
|
|
3374
|
+
readonly term?: string;
|
|
3375
|
+
/** Minor-age floor flag (see `../pose.ts`). Hand-curated; never on neutral movement. */
|
|
3376
|
+
readonly adultOnly?: true;
|
|
3377
|
+
/** The move needs a second person; the hint contains the literal words "the partner". */
|
|
3378
|
+
readonly twoPerson?: true;
|
|
3379
|
+
}
|
|
3387
3380
|
|
|
3388
3381
|
interface PickerOption {
|
|
3382
|
+
/** Character Motion only: authored prerequisites, state and search metadata. */
|
|
3383
|
+
readonly motion?: CharacterMotionMetadata;
|
|
3389
3384
|
readonly id: string;
|
|
3390
3385
|
readonly label: string;
|
|
3391
3386
|
readonly description?: string;
|
|
@@ -3851,7 +3846,7 @@ interface AdultOnlyEntry {
|
|
|
3851
3846
|
* sweeps for the flag, and which analyzer keys `FLOORED_PICKER_KEYS` strips
|
|
3852
3847
|
* flagged ids out of (a `photo-genre` swept for the flag but absent from the
|
|
3853
3848
|
* strip list let `glamour-portrait` survive on a minor). */
|
|
3854
|
-
declare const ADULT_SWEPT_CATALOG_IDS: readonly ["styling", "mood", "pose", "photo-genre"];
|
|
3849
|
+
declare const ADULT_SWEPT_CATALOG_IDS: readonly ["styling", "mood", "pose", "photo-genre", "character-motion"];
|
|
3855
3850
|
/** Every entry, across the swept catalogs, that carries the flag. Reads every
|
|
3856
3851
|
* catalog through the pack-composed funnel — `getRegisteredPeople()` for
|
|
3857
3852
|
* person, `getRegisteredPickerCatalogs()` for styling/mood/pose/photo-genre —
|
|
@@ -3950,7 +3945,7 @@ declare function containsMinorAgeHint(text: string | null | undefined): boolean;
|
|
|
3950
3945
|
* sweep included it, so a minor kept `glamour-portrait`. The analyzer JSON is
|
|
3951
3946
|
* keyed by picker type id (`describe-to-picker.ts`), which is the same string
|
|
3952
3947
|
* as the catalog id, so this list IS the set of keys to visit. */
|
|
3953
|
-
declare const FLOORED_PICKER_KEYS: readonly ["person", "styling", "mood", "pose", "photo-genre"];
|
|
3948
|
+
declare const FLOORED_PICKER_KEYS: readonly ["person", "styling", "mood", "pose", "photo-genre", "character-motion"];
|
|
3954
3949
|
/** Analyzer / import post-filter: when the person value describes a minor,
|
|
3955
3950
|
* remove every flagged id from the person, styling, pose and mood values.
|
|
3956
3951
|
* Identity (same reference) for an adult. */
|
|
@@ -4157,6 +4152,13 @@ declare const PICKER_ANALYZER_REGISTRY: {
|
|
|
4157
4152
|
label: string;
|
|
4158
4153
|
entries: ReadonlyArray<AnalyzerEntry>;
|
|
4159
4154
|
};
|
|
4155
|
+
"character-motion": {
|
|
4156
|
+
kind: "flat";
|
|
4157
|
+
toolName: string;
|
|
4158
|
+
field: string;
|
|
4159
|
+
label: string;
|
|
4160
|
+
entries: ReadonlyArray<AnalyzerEntry>;
|
|
4161
|
+
};
|
|
4160
4162
|
pose: {
|
|
4161
4163
|
kind: "flat";
|
|
4162
4164
|
toolName: string;
|
|
@@ -4366,12 +4368,14 @@ declare const PICKER_ANALYZER_REGISTRY: {
|
|
|
4366
4368
|
type PickerType = keyof typeof PICKER_ANALYZER_REGISTRY;
|
|
4367
4369
|
declare const PICKER_TYPES: PickerType[];
|
|
4368
4370
|
/**
|
|
4369
|
-
* Family grouping for BATCHED analysis. A single call across
|
|
4370
|
-
*
|
|
4371
|
+
* Family grouping for BATCHED analysis. A single call across the first 38
|
|
4372
|
+
* catalogs carried a ~211k-char legend (~53k tokens — measured 2026-08-09, the
|
|
4371
4373
|
* measure-first probe from the text-to-picker spec), which is slow, costly,
|
|
4372
4374
|
* and dilutes per-section accuracy. The text-to-picker route fans out one
|
|
4373
|
-
* structured call per family (6-15k tokens each) and merges.
|
|
4374
|
-
*
|
|
4375
|
+
* structured call per family (6-15k tokens each) and merges. The character
|
|
4376
|
+
* family is the exception: Character Motion's 1005-id legend alone is ~82k
|
|
4377
|
+
* chars (~46k input tokens measured 2026-09-15), making it the heaviest call.
|
|
4378
|
+
* Mirrors the build-brief's §5 UI grouping so Cine can reuse the same partition.
|
|
4375
4379
|
*/
|
|
4376
4380
|
declare const PICKER_ANALYZER_FAMILIES: Readonly<Record<string, ReadonlyArray<PickerType>>>;
|
|
4377
4381
|
declare const ANALYZABLE_PICKER_TYPES: ReadonlySet<string>;
|
|
@@ -5036,6 +5040,164 @@ declare const CHARACTER_FX_INTENSITIES: readonly [{
|
|
|
5036
5040
|
*/
|
|
5037
5041
|
declare function composeCharacterFxHintFromConnections(effectId: string | ReadonlyArray<string> | undefined, targetHints: ReadonlyArray<string>, timing?: CharacterFxTiming, mode?: PickerHintMode): string;
|
|
5038
5042
|
|
|
5043
|
+
/**
|
|
5044
|
+
* Canonical catalog of CHARACTER MOTION choices — what the subject DOES across
|
|
5045
|
+
* a video clip: walks in, turns to camera, breaks into a smile, ducks, draws and
|
|
5046
|
+
* fires, runway-walks, dances. Temporal by definition.
|
|
5047
|
+
*
|
|
5048
|
+
* Distinct from:
|
|
5049
|
+
* - Pose — a static SNAPSHOT of body position (serves still images too).
|
|
5050
|
+
* - Character FX — supernatural change to the subject's body (werewolf, fire breath).
|
|
5051
|
+
* - Action FX — a scene event (explosion, lightning); motion is the BODY acting.
|
|
5052
|
+
* - Camera Motion — the camera moves, never the subject.
|
|
5053
|
+
*
|
|
5054
|
+
* Shared between the picker UI, the standalone Character Motion parameter node,
|
|
5055
|
+
* and the prompt-hint injection on both the frontend DAG executor and the
|
|
5056
|
+
* backend orchestrator. Video-only: never injected into still-image consumers.
|
|
5057
|
+
*
|
|
5058
|
+
* Every non-empty `promptHint` references "the subject" at least once — the
|
|
5059
|
+
* composer does a global regex replace of "the subject" with the wired target's
|
|
5060
|
+
* display name. Two-person moves ALSO contain the literal words "the partner",
|
|
5061
|
+
* replaced with the wired partner's name on every occurrence. With nothing
|
|
5062
|
+
* wired to the partner handle, the fallback "another person" INTRODUCES the
|
|
5063
|
+
* referent at its first occurrence in THAT TARGET's clauses and every later
|
|
5064
|
+
* occurrence of that target reads "that same person" — a hint that names the
|
|
5065
|
+
* partner five times still describes one person, and a sequence of picks keeps
|
|
5066
|
+
* that one person throughout. Multiple wired targets each perform a separate
|
|
5067
|
+
* copy of the sequence, so each copy introduces its own partner rather than
|
|
5068
|
+
* sharing one between two performers. See `referenceTo` in the composer.
|
|
5069
|
+
*
|
|
5070
|
+
* Multi-pick is an ORDERED SEQUENCE: value field accepts `string | string[]`
|
|
5071
|
+
* (cap 3), joined with ", then " in BOTH hint modes (a movement happens after
|
|
5072
|
+
* the previous one; Character FX joins with ", and " because effects coincide).
|
|
5073
|
+
*
|
|
5074
|
+
* `adultOnly` marks the W1-a minor-age floor. The composer drops flagged ids
|
|
5075
|
+
* when its caller reports a minor subject (`floor.subjectMinor`); the AI Fill
|
|
5076
|
+
* strip drops them from analyzer output. Hand-curated; the `adult-only-ratchet`
|
|
5077
|
+
* test only ratchets. Never set on neutral movement or the `auto` / `none` heads.
|
|
5078
|
+
*/
|
|
5079
|
+
|
|
5080
|
+
declare const CHARACTER_MOTION_CATEGORY_ORDER: ReadonlyArray<CharacterMotionCategory>;
|
|
5081
|
+
declare const CHARACTER_MOTION_CATEGORY_LABELS: Readonly<Record<CharacterMotionCategory, string>>;
|
|
5082
|
+
/**
|
|
5083
|
+
* The catalog: two no-op heads + every category array, in category order.
|
|
5084
|
+
* Authored injecting entries across 20 categories.
|
|
5085
|
+
*/
|
|
5086
|
+
declare const CHARACTER_MOTIONS: ReadonlyArray<CharacterMotion>;
|
|
5087
|
+
declare function getCharacterMotion(id: string | undefined | null): CharacterMotion | undefined;
|
|
5088
|
+
declare function getCharacterMotionLabel(id: string | undefined | null, fallback?: string): string;
|
|
5089
|
+
declare function getCharacterMotionPromptHint(id: string | undefined | null): string;
|
|
5090
|
+
/** Compact counterpart of `getCharacterMotionPromptHint` — same lookup, same
|
|
5091
|
+
* empty-string-on-miss, and the no-op `auto` / `none` heads inject nothing. */
|
|
5092
|
+
declare function getCharacterMotionTerm(id: string | undefined | null): string;
|
|
5093
|
+
declare const CHARACTER_MOTION_IDS: ReadonlyArray<string>;
|
|
5094
|
+
/** Cap on ordered picks. Shared by the composer (`.slice(0, N)`), the picker
|
|
5095
|
+
* (`maxSelected`) and the config panel — the three must agree. */
|
|
5096
|
+
declare const CHARACTER_MOTION_MAX_PICKS = 3;
|
|
5097
|
+
interface CharacterMotionTimingOption {
|
|
5098
|
+
readonly id: string;
|
|
5099
|
+
readonly label: string;
|
|
5100
|
+
readonly description: string;
|
|
5101
|
+
readonly promptHint: string;
|
|
5102
|
+
readonly term?: string;
|
|
5103
|
+
}
|
|
5104
|
+
declare const CHARACTER_MOTION_POSITIONS: readonly [{
|
|
5105
|
+
readonly id: "auto";
|
|
5106
|
+
readonly label: "Auto";
|
|
5107
|
+
readonly description: "Let the model place the movement";
|
|
5108
|
+
readonly promptHint: "";
|
|
5109
|
+
readonly term: "";
|
|
5110
|
+
}, {
|
|
5111
|
+
readonly id: "start";
|
|
5112
|
+
readonly label: "Start";
|
|
5113
|
+
readonly description: "Begins at the opening of the clip";
|
|
5114
|
+
readonly promptHint: "the movement begins at the opening of the clip";
|
|
5115
|
+
readonly term: "starting as the clip opens";
|
|
5116
|
+
}, {
|
|
5117
|
+
readonly id: "middle";
|
|
5118
|
+
readonly label: "Middle";
|
|
5119
|
+
readonly description: "Begins midway through the clip";
|
|
5120
|
+
readonly promptHint: "the movement begins midway through the clip";
|
|
5121
|
+
readonly term: "starting midway through the clip";
|
|
5122
|
+
}, {
|
|
5123
|
+
readonly id: "end";
|
|
5124
|
+
readonly label: "End";
|
|
5125
|
+
readonly description: "Happens in the closing moments of the clip";
|
|
5126
|
+
readonly promptHint: "the movement happens in the closing moments of the clip";
|
|
5127
|
+
readonly term: "in the closing moments of the clip";
|
|
5128
|
+
}, {
|
|
5129
|
+
readonly id: "full";
|
|
5130
|
+
readonly label: "Full";
|
|
5131
|
+
readonly description: "Plays out across the entire clip";
|
|
5132
|
+
readonly promptHint: "the movement plays out across the entire clip";
|
|
5133
|
+
readonly term: "playing out across the whole clip";
|
|
5134
|
+
}];
|
|
5135
|
+
declare const CHARACTER_MOTION_PACES: readonly [{
|
|
5136
|
+
readonly id: "auto";
|
|
5137
|
+
readonly label: "Auto";
|
|
5138
|
+
readonly description: "Let the model set the tempo";
|
|
5139
|
+
readonly promptHint: "";
|
|
5140
|
+
readonly term: "";
|
|
5141
|
+
}, {
|
|
5142
|
+
readonly id: "slow-motion";
|
|
5143
|
+
readonly label: "Slow Motion";
|
|
5144
|
+
readonly description: "The action itself is rendered in slow motion";
|
|
5145
|
+
readonly promptHint: "the action is rendered in slow motion, every phase of the movement stretched and drawn out";
|
|
5146
|
+
readonly term: "in slow motion";
|
|
5147
|
+
}, {
|
|
5148
|
+
readonly id: "slow";
|
|
5149
|
+
readonly label: "Slow";
|
|
5150
|
+
readonly description: "Performed slowly and deliberately";
|
|
5151
|
+
readonly promptHint: "performed slowly and deliberately, each phase of the movement given its full time";
|
|
5152
|
+
readonly term: "slow and deliberate";
|
|
5153
|
+
}, {
|
|
5154
|
+
readonly id: "natural";
|
|
5155
|
+
readonly label: "Natural";
|
|
5156
|
+
readonly description: "Performed at an everyday tempo";
|
|
5157
|
+
readonly promptHint: "performed at a natural everyday tempo, neither rushed nor drawn out";
|
|
5158
|
+
readonly term: "at a natural everyday tempo";
|
|
5159
|
+
}, {
|
|
5160
|
+
readonly id: "fast";
|
|
5161
|
+
readonly label: "Fast";
|
|
5162
|
+
readonly description: "Performed quickly, brisk and urgent";
|
|
5163
|
+
readonly promptHint: "performed quickly, with brisk urgent tempo and sharp transitions between phases";
|
|
5164
|
+
readonly term: "fast and brisk";
|
|
5165
|
+
}, {
|
|
5166
|
+
readonly id: "explosive";
|
|
5167
|
+
readonly label: "Explosive";
|
|
5168
|
+
readonly description: "A sudden burst from stillness into full-speed motion";
|
|
5169
|
+
readonly promptHint: "performed with an explosive burst of energy, snapping from stillness into full-speed motion";
|
|
5170
|
+
readonly term: "with an explosive burst";
|
|
5171
|
+
}];
|
|
5172
|
+
type CharacterMotionPosition = (typeof CHARACTER_MOTION_POSITIONS)[number]["id"];
|
|
5173
|
+
type CharacterMotionPace = (typeof CHARACTER_MOTION_PACES)[number]["id"];
|
|
5174
|
+
interface CharacterMotionTiming {
|
|
5175
|
+
position?: CharacterMotionPosition;
|
|
5176
|
+
pace?: CharacterMotionPace;
|
|
5177
|
+
}
|
|
5178
|
+
/** What the caller knows about the wired target. `subjectMinor: true` drops
|
|
5179
|
+
* every `adultOnly` pick after the cap; otherwise the output is unchanged. */
|
|
5180
|
+
interface CharacterMotionFloor {
|
|
5181
|
+
readonly subjectMinor?: boolean;
|
|
5182
|
+
}
|
|
5183
|
+
/**
|
|
5184
|
+
* Compose a character-motion prompt fragment from an ORDERED list of 1–3 move
|
|
5185
|
+
* ids, the display names wired to the `target` and `partner` handles, and the
|
|
5186
|
+
* optional Position / Pace timing.
|
|
5187
|
+
*
|
|
5188
|
+
* Full mode: each hint has "the subject" rewritten to the target name(s) (only
|
|
5189
|
+
* when a target is wired) and "the partner" rewritten to the partner name, or —
|
|
5190
|
+
* when nothing is wired to that handle — to "another person" on that target's
|
|
5191
|
+
* first mention and "that same person" after; ALWAYS, so the literal words
|
|
5192
|
+
* "the partner" never ship. Both BEFORE the ", then " join. Compact mode: terms joined with ", then ",
|
|
5193
|
+
* prefixed `"{target}: "` when a target is wired. A term never contains "the
|
|
5194
|
+
* subject" (the prefix names the target) but a two-person term always contains
|
|
5195
|
+
* "the partner", which is substituted exactly as in full mode.
|
|
5196
|
+
* Timing clauses follow in the fixed order position, pace, in both modes.
|
|
5197
|
+
* `floor.subjectMinor` drops adult-only picks after the cap; none left ⇒ "".
|
|
5198
|
+
*/
|
|
5199
|
+
declare function composeCharacterMotionHintFromConnections(motionId: string | ReadonlyArray<string> | undefined | null, targetHints: ReadonlyArray<string>, partnerHints: ReadonlyArray<string>, timing?: CharacterMotionTiming, mode?: PickerHintMode, floor?: CharacterMotionFloor): string;
|
|
5200
|
+
|
|
5039
5201
|
/**
|
|
5040
5202
|
* Canonical catalog of color/look choices.
|
|
5041
5203
|
*
|
|
@@ -7945,4 +8107,81 @@ declare function getPickerWiring(nodeType: string | undefined | null): PickerWir
|
|
|
7945
8107
|
*/
|
|
7946
8108
|
declare function buildSurroundFillPrompt(direction: SurroundDirection, userPrompt?: string): string;
|
|
7947
8109
|
|
|
7948
|
-
export { ACTION_FX, ACTION_FX_CATEGORY_LABELS, ACTION_FX_CATEGORY_ORDER, ACTION_FX_IDS, ADULT_AGE_IDS, ADULT_ONLY_FLAG, ADULT_SWEPT_CATALOG_IDS, AESTHETICS, AESTHETIC_CATEGORY_LABELS, AESTHETIC_CATEGORY_ORDER, AESTHETIC_IDS, ALL_PICKER_WIRING, ANALYZABLE_PICKER_TYPES, ANGLE_LABELS, ASPECT_RATIO_LABELS, ATMOSPHERES, ATMOSPHERE_IDS, AUDIO_WIZARD_CATEGORIES, type ActionFx, type ActionFxCategory, type AdultOnlyEntry, type Aesthetic, type AestheticCategory, type AssembleImageInput, type AssembleSunoInput, type AssembleSunoResult, type Atmosphere, BACKDROPS, BACKDROP_CATEGORY_LABELS, BACKDROP_CATEGORY_ORDER, BACKDROP_IDS, BRAND_PRESETS, BRAND_PRESET_IDS, BRAND_PRESET_META, type Backdrop, type BackdropCategory, type BrandCasing, type BrandFonts, type BrandLogo, type BrandPalette, type BrandPresetId, type BrandPresetMeta, type BrandTokens, type BrandTypeSpec, type BuildImagePromptConfig, type BuildImagePromptOverflowResult, type BuildImagePromptResult, type BuildImagePromptSegmentsResult, CAMERA_FORMATS, CAMERA_FORMAT_IDS, CAMERA_MOTIONS, CAMERA_MOTION_CATEGORY_LABELS, CAMERA_MOTION_CATEGORY_ORDER, CAMERA_MOTION_IDS, CHARACTER_FX, CHARACTER_FX_CATEGORY_LABELS, CHARACTER_FX_CATEGORY_ORDER, CHARACTER_FX_DURATIONS, CHARACTER_FX_IDS, CHARACTER_FX_INTENSITIES, CHARACTER_FX_POSITIONS, CINEMATIC_LOOK_TAIL, COLOR_LOOKS, COLOR_LOOK_CATEGORY_LABELS, COLOR_LOOK_CATEGORY_ORDER, COLOR_LOOK_IDS, COMPOSITION_EFFECTS, COMPOSITION_EFFECT_IDS, type CameraFormat, type CameraMotion, type CameraMotionCategory, type CatalogPack, type CatalogPackMode, type CategorizedInstrument, type CharacterFx, type CharacterFxCategory, type CharacterFxDuration, type CharacterFxIntensity, type CharacterFxPosition, type CharacterFxTiming, type CharacterFxTimingOption, type CharacterMeta, type CharacterMotionPromptInput, type CharacterPromptInput, type ColorLook, type ColorLookCategory, type CompositionEffect, type ComputeNodePromptArgs, type CreaturePromptInput, DEFAULT_IDENTITY_LOCK, DEFAULT_TEMPLATES, DIRECTION_ARRAY_CEILING, DIRECTION_FIELDS, DIRECTION_ID_MAX_CHARS, DIRECTION_KEYS, type DirectionFamily, type DirectionFieldRow, type DirectionFieldSpec, type DirectionFields, type DirectionHintClause, type DirectionHintMode, type DirectionKey, type DirectionStyleGroup, type DirectionSurface, ERAS, ERA_CATEGORY_LABELS, ERA_CATEGORY_ORDER, ERA_IDS, EXPOSURE_CATEGORY_LABELS, EXPOSURE_CATEGORY_ORDER, EXPOSURE_FIELD_BY_CATEGORY, EXPOSURE_IDS, EXPOSURE_SETTINGS, type Era, type EraCategory, type ExposureCategory, type ExposureSettings, type ExposureValue, FACTORY_PRESETS, FACTORY_SNIPPETS, FILM_STILL_PREFIX, FILM_STYLE_KEYS, FLOORED_PICKER_KEYS, FRAMINGS, FRAMING_CATEGORY_LABELS, FRAMING_CATEGORY_ORDER, FRAMING_FIELD_BY_CATEGORY, FRAMING_IDS, type FacePromptInput, type FactoryPreset, type FactoryPresetGroup, type FactorySnippet, type ForeignCatalogId, type Framing, type FramingCategory, type FramingValue, GAPS_SCHEMA, type GeminiOmniI2vInputsArgs, type GeminiOmniI2vInputsResult, HELD_PROPS, HELD_PROP_CATEGORY_LABELS, HELD_PROP_CATEGORY_ORDER, HELD_PROP_IDS, type HeldProp, type HeldPropCategory, IMAGE_HINT_MODE_DEFAULT, IMAGE_REFERENCE_PROMPT_DOCTRINE, IMAGE_WIZARD_CATEGORIES, INSTRUMENTATION_DEFAULT_DATA, INSTRUMENTS, INSTRUMENT_CATEGORY_LABELS, INSTRUMENT_CATEGORY_ORDER, type IdentityLockMode, type ImageDirectionKey, type ImageReferenceDoctrine, type InstrumentCategory, type InstrumentationEntry, LENSES, LENS_IDS, LIGHTINGS, LIGHTING_CATEGORY_LABELS, LIGHTING_CATEGORY_ORDER, LIGHTING_FIELD_BY_CATEGORY, LIGHTING_IDS, LLM_CHAT_WIZARD_CATEGORIES, LOOP_SUBJECTS, LOOP_SUBJECT_CATEGORY_LABELS, LOOP_SUBJECT_CATEGORY_ORDER, type Lens, type Lighting, type LightingCategory, type LightingValue, type LlmChatFieldArgs, type LocationMotionPromptInput, type LocationPromptInput, type LocationRefinePromptInput, type LoopSubject, type LoopSubjectCategory, MATERIALS, MATERIAL_CATEGORY_LABELS, MATERIAL_CATEGORY_ORDER, MATERIAL_IDS, MAX_SELECTED_BY_DIMENSION, MAX_SELECTED_BY_FRAMING_CATEGORY, MAX_SELECTED_BY_STYLING_DIMENSION, MAX_SUBJECT_KEYS, MINOR_IMPLYING_TYPE_IDS, MOODS, MOOD_CATEGORY_LABELS, MOOD_CATEGORY_ORDER, MOOD_IDS, MOVEMENT_LABELS, MULTI_PICKER_WIRING, MUSIC_EMOTIONS, MUSIC_ENERGIES, MUSIC_ERAS, MUSIC_GENRES, MUSIC_GENRE_CATEGORY_LABELS, MUSIC_GENRE_CATEGORY_ORDER, MUSIC_GENRE_DEFAULT_DATA, MUSIC_MOOD_DEFAULT_DATA, MUSIC_VIBES, MUSIC_WIZARD_CATEGORIES, type Material, type MaterialCategory, type ModelChange, type Mood, type MoodCategory, type MoodValue, type MultiDimPickerWiring, type MultiPickerAnalyzerSpec, type MusicEra, type MusicGenre, type MusicGenreCategory, type MusicMoodData, type MusicMoodEntry, type MusicSubgenre, NODE_PROMPT_CANDIDATE_FIELDS, NODE_PROMPT_FIELDS, OBJECT_ANGLE_PRESETS, OBJECT_ANGLE_PROMPTS, OBJECT_ASSET_PRESETS, OBJECT_ASSET_PROMPTS, OBJECT_MATERIAL_PRESETS, OBJECT_MATERIAL_PROMPTS, OBJECT_VARIATION_PRESETS, OBJECT_VARIATION_PROMPTS, type ObjectMotionPromptInput, type ObjectPresetAssetType, type ObjectPromptInput, PEOPLE, PERSON_DIMENSION_LABELS, PERSON_DIMENSION_ORDER, PERSON_DIMENSION_SECTIONS, PERSON_FIELD_BY_DIMENSION, PERSON_IDS, PHOTOGRAPHERS, PHOTOGRAPHER_CATEGORY_LABELS, PHOTOGRAPHER_CATEGORY_ORDER, PHOTOGRAPHER_IDS, PHOTO_GENRES, PHOTO_GENRE_CATEGORY_LABELS, PHOTO_GENRE_CATEGORY_ORDER, PHOTO_GENRE_IDS, PICKER_ANALYZER_FAMILIES, PICKER_ANALYZER_REGISTRY, PICKER_CATALOGS, PICKER_TYPES, POSES, POSE_CATEGORY_LABELS, POSE_CATEGORY_ORDER, POSE_IDS, POST_PROCESS_EFFECTS, POST_PROCESS_EFFECT_IDS, PRODUCTION_STYLES, PROMPT_AFFIX_CORE_FIELD_OVERRIDES, PROMPT_AFFIX_NODE_TYPES, PROMPT_HINT_SEPARATOR, PROVIDER_CAPABILITIES, PROVIDER_PROMPT_DOCTRINES, type Person, type PersonDimension, type PersonDimensionSection, type PersonPack, type PersonValue, type PhotoGenre, type PhotoGenreCategory, type Photographer, type PhotographerCategory, type PickerAnalyzer, type PickerAnalyzerDescriptor, type PickerAnalyzerSpec, type PickerApplyMode, type PickerCatalog, type PickerCatalogDetail, type PickerCatalogInput, type PickerCatalogSummary, type PickerDimension, type PickerDimensionInput, type PickerDimensionSpec, type PickerGaps, type PickerHintMode, type PickerOption, type PickerOptionInput, type PickerType, type PickerWiring, type PickerWiringEntry, type Pose, type PoseCategory, type PoseValue, type PostProcessEffect, type ProjectPickerCatalogOptions, type ProjectedPickerCatalog, type ProjectedPickerDimension, type ProjectedPickerOption, type PromptClauseSlot, type PromptFieldSpec, type PromptIconKind, type PromptSegment, type PromptSegmentOrigin, type ProviderPromptDoctrine, REFERENCE_IMAGE_ROLES, REFERENCE_RULES, REFERENCE_RULES_MULTI_PERSON, REF_BINDING, RENDER_QUALITIES, RENDER_QUALITY_IDS, RETIRED_ADULT_ONLY_HINT_STRINGS, type RecommendedModel, type RefIdTokenContext, type ReferenceCounts, type ReferenceLineFormat, type RegisteredPersonEntry, type RenderQuality, type ResolveCharacterMentionsResult, type ResolveLocationMentionsResult, type ResolvePromptArgs, type ResolveVideoReferenceCoreArgs, SCENE3D_FIGURE_REFERENCE_RULE, SCENE3D_FREE_PLATE_SLOTS, SCENE3D_LAYOUT_REFERENCE_SCOPING_FIXTURE, SCENE3D_LAYOUT_REFERENCE_SCOPING_LINE, SCENE3D_LAYOUT_SCOPING_FOR, SCENE3D_LAYOUT_SCOPING_IGNORE, SCENE3D_LAYOUT_SCOPING_LOOK_SOURCE, SCENE3D_LAYOUT_SCOPING_MARKER, SCENE3D_UNREFERENCED_FIGURES_WARNING_CODE, SCENE_FRAME_RULE, SCENE_PROMPT_MAX_LENGTH, SETTINGS, SETTING_CATEGORY_LABELS, SETTING_IDS, SHOT_LABELS, SINGING_STYLES, SINGLE_PICKER_WIRING, SNIPPET_MEDIA_VALUES, STYLES, STYLE_IDS, STYLE_PRESETS, STYLE_SECTION_GAP, STYLE_SECTION_HEADER, STYLINGS, STYLING_DIMENSION_LABELS, STYLING_DIMENSION_ORDER, STYLING_FIELD_BY_DIMENSION, STYLING_IDS, SUBJECT_ARRAY_CEILING, SUBJECT_CUSTOM_AGE_KEY, SUBJECT_FIELDS, SUBJECT_FOLD_KEYS, SUBJECT_ID_MAX_CHARS, SUBJECT_IMAGE_HINT_MODE_DEFAULT, SUBJECT_KEYS, SUBJECT_KEY_MAX_CHARS, SUBJECT_VIDEO_HINT_MODE_DEFAULT, type Scene3DFigureReferenceCheck, type Scene3DLayoutReferenceCarrier, type Scene3DLayoutReferenceSeat, type Scene3DLayoutScopingSpec, type Scene3DUnreferencedFiguresWarning, type Seedance2InputsArgs, type Seedance2InputsResult, type Seedance2Mode, type Setting, type SettingCategory, type SidecarCoverageReport, type SingleDimPickerWiring, type SlottedPromptClause, type SnippetMedia, type SnippetTarget, type SoundComposition, type SoundCompositionFields, type SoundConsumerType, type StructuredPromptFields, type Style, type StylePreset, type Styling, type StylingDimension, type StylingValue, type SubjectFieldRow, type SubjectFieldSpec, type SubjectFields, type SubjectGroupFieldSpec, type SubjectHintMode, type SubjectIdsFieldSpec, type SubjectSurface, type SuspiciousTermOptions, TEMPORALS, TEMPORAL_CATEGORY_LABELS, TEMPORAL_CATEGORY_ORDER, TEMPORAL_FIELD_BY_CATEGORY, TEMPORAL_IDS, TERM_MAX_CHARS, TEXT_WIZARD_CATEGORIES, TRANSITIONS, TRANSITION_CATEGORY_LABELS, TRANSITION_CATEGORY_ORDER, TRANSITION_DURATIONS, TRANSITION_IDS, TRANSITION_INTENSITIES, TRANSITION_POSITIONS, type Temporal, type TemporalCategory, type TemporalValue, type TermCarrier, type Transition, type TransitionCategory, type TransitionDuration, type TransitionIntensity, type TransitionPosition, type TransitionTiming, type TransitionTimingOption, VIDEO_HINT_MODE_DEFAULT, VIDEO_WIZARD_CATEGORIES, VOCAL_PRESENCE, VOCAL_PRESENCE_INSTRUMENTAL_ID, VOICE_ACCENTS, VOICE_AGES, VOICE_ARCHETYPES, VOICE_CHARACTER_DEFAULT_DATA, VOICE_DELIVERY_DEFAULT_DATA, VOICE_EMOTIONS, VOICE_GENDERS, VOICE_LANGUAGES, VOICE_PACES, VOICE_TIMBRES, type VeoI2vInputsArgs, type VeoI2vInputsResult, type VideoDirectionKey, type VideoExtraRef, type VideoPromptCapOptions, type VoiceCharacterEntry, type VoiceDeliveryEntry, WARDROBE, WARDROBE_CATEGORY_LABELS, WARDROBE_DIMENSION_ORDER, WARDROBE_FIELD_BY_DIMENSION, type WardrobeDimension, type WardrobeEntry, type WardrobeValue, type WizardCategory, type WizardNodeContext, type WizardOption, type WizardQuestion, type WizardSelection, __resetCatalogIdGuardForTests, appendField, appendMusicMeta, appendReferenceLines, appendScene3DStillScopingLines, applyMinorAgeFloorToPickerValues, applyPickerJson, applyPromptAffixes, applyReferenceOrderToVideo, applyTemplate, asBodyClauses, assembleImageInput, assembleSunoInput, buildActionFxHints, buildActionFxTerms, buildAestheticHints, buildAestheticTerms, buildAgeHint, buildAtmosphereHints, buildAtmosphereTerms, buildCharacterPrompt, buildCreaturePrompt, buildExposureHints, buildExposureTerms, buildFaceTemplateInputs, buildFramingHints, buildFramingTerms, buildHeldPropHints, buildHeldPropTerms, buildIdentityDirectives, buildIdentityLockLine, buildImagePrompt, buildImagePromptSegments, buildImagePromptWithOverflow, buildInstrumentationHints, buildInstrumentationTerms, buildLightingHints, buildLightingTerms, buildLocationMotionPrompt, buildLocationPrompt, buildLocationRefinePrompt, buildMaterialHints, buildMaterialTerms, buildMoodHints, buildMoodTerms, buildMotionPrompt, buildMultiPickerAnalyzerSpec, buildMusicGenreHints, buildMusicGenreTerms, buildMusicMoodHints, buildMusicMoodTerms, buildNeedleAlternationSource, buildObjectMotionPrompt, buildObjectPrompt, buildPersonHints, buildPersonTerms, buildPhotographerHints, buildPhotographerTerms, buildPickerAnalyzerSpec, buildPickerLegend, buildPickerZodSchema, buildPoseHints, buildPoseTerms, buildPostProcessHints, buildPostProcessTerms, buildReferenceBlocks, buildScene3DLayoutScopingLine, buildScene3DUnreferencedFiguresWarning, buildScenePrompt, buildStylingHints, buildStylingTerms, buildSurroundFillPrompt, buildTemporalHints, buildTemporalTerms, buildVoiceCharacterHints, buildVoiceCharacterTerms, buildVoiceDeliveryHints, buildVoiceDeliveryTerms, buildWardrobeHints, catalogGuardActive, catalogPacksVersion, characterLockToRefLock, collectIdentityLockClause, composeCameraMotionHintFromConnections, composeCameraMotionTermFromConnections, composeCharacterFxHintFromConnections, composeNegative, composePickerCatalogs, composeSectionedPrompt, composeSoundHintFromConnections, composeTransitionHintFromConnections, composeVideoPromptText, composedHas, composedOption, composedOptionIndex, computeLlmChatFields, computeNodePrompt, computePackSidecarCoverage, containsMinorAgeHint, curateEntries, curatedAnimalPromptHint, curatedAnimalTerm, curatedFurnitureText, curatedVehicleText, curatedWeaponText, deriveTerm, directionFieldsForSurface, endsInsideStyleSection, expandImagePositionRefs, expandImageRefTokens, filmStillPrefix, findForeignCatalogIds, findForeignCatalogIdsInBody, foreignCatalogIdMessage, getActionFx, getActionFxLabel, getActionFxPromptHint, getActionFxTerm, getAdultOnlyEntries, getAdultOnlyHintStrings, getAdultOnlyIds, getAesthetic, getAestheticLabel, getAestheticPromptHint, getAestheticTerm, getAtmosphere, getAtmosphereLabel, getAtmospherePromptHint, getAtmosphereTerm, getBackdrop, getBackdropLabel, getBackdropPromptHint, getBackdropTerm, getCameraFormat, getCameraFormatLabel, getCameraFormatPromptHint, getCameraFormatTerm, getCameraMotion, getCameraMotionLabel, getCameraMotionPromptHint, getCameraMotionTerm, getCategoriesForNodeType, getCharacterFx, getCharacterFxLabel, getCharacterFxPromptHint, getCharacterFxTerm, getColorLook, getColorLookLabel, getColorLookPromptHint, getColorLookTerm, getCompositionEffect, getCompositionEffectLabel, getCompositionEffectPromptHint, getCompositionEffectTerm, getEffectiveSunoCustomMode, getEra, getEraLabel, getEraPromptHint, getEraTerm, getExposure, getExposureLabel, getExposurePromptHint, getExposureTerm, getFactoryPresets, getFactorySnippets, getFraming, getFramingCategoryLimit, getFramingLabel, getFramingPromptHint, getFramingTerm, getHeldProp, getHeldPropLabel, getHeldPropPromptHint, getHeldPropTerm, getIdentityLockClause, getInstrument, getInstrumentTerm, getLens, getLensLabel, getLensPromptHint, getLensTerm, getLighting, getLightingLabel, getLightingPromptHint, getLightingTerm, getLoopSubject, getLoopSubjectLabel, getLoopSubjectPromptHint, getLoopSubjectTerm, getMaterial, getMaterialLabel, getMaterialPromptHint, getMaterialTerm, getMinorAgeHintStrings, getMood, getMoodLabel, getMoodPromptHint, getMoodTerm, getMusicEmotion, getMusicEmotionTerm, getMusicEnergy, getMusicEnergyTerm, getMusicEra, getMusicEraTerm, getMusicGenre, getMusicGenreLabel, getMusicGenreTerm, getMusicSubgenre, getMusicSubgenreTerm, getMusicVibe, getMusicVibeTerm, getParameterPromptHint, getPerson, getPersonDimensionLimit, getPersonLabel, getPersonPromptHint, getPersonTerm, getPhotoGenre, getPhotoGenreLabel, getPhotoGenrePromptHint, getPhotoGenreTerm, getPhotographer, getPhotographerLabel, getPhotographerPromptHint, getPhotographerTerm, getPickerAnalyzer, getPickerCatalog, getPickerWiring, getPose, getPoseLabel, getPosePromptHint, getPoseTerm, getPostProcessEffect, getPostProcessEffectLabel, getPostProcessEffectPromptHint, getPostProcessEffectTerm, getProductionStyle, getProductionStyleTerm, getPromptDoctrine, getPromptFields, getPromptTips, getRegisteredCatalogPacks, getRegisteredPeople, getRegisteredPersonDimensionLabels, getRegisteredPersonDimensionOrder, getRegisteredPersonFieldByDimension, getRegisteredPickerCatalogs, getRegisteredSubjectKeys, getRenderQuality, getRenderQualityLabel, getRenderQualityPromptHint, getRenderQualityTerm, getSetting, getSettingLabel, getSettingPromptHint, getSettingTerm, getSingingStyle, getSingingStyleTerm, getSnippetMedia, getStyle, getStyleLabel, getStylePreset, getStylePromptHint, getStyleTerm, getStyling, getStylingDimensionLimit, getStylingLabel, getStylingPromptHint, getStylingTerm, getTemporal, getTemporalLabel, getTemporalPromptHint, getTemporalTerm, getTransition, getTransitionLabel, getTransitionPromptHint, getTransitionTerm, getVocalPresence, getVocalPresenceTerm, getVoiceAccent, getVoiceAccentTerm, getVoiceAge, getVoiceAgeTerm, getVoiceArchetype, getVoiceArchetypeTerm, getVoiceEmotion, getVoiceEmotionTerm, getVoiceGender, getVoiceGenderTerm, getVoiceLanguage, getVoiceLanguageTerm, getVoicePace, getVoicePaceTerm, getVoiceTimbre, getVoiceTimbreTerm, getWardrobeEntriesByDimension, getWardrobeEntry, getWardrobePromptHint, groupFactoryPresets, hasCatalogPacksFor, hasScene3DLayoutScopingLine, hasUpstreamCharacter, identityRefsSentence, insertBeforeStyleSection, isAnalyzablePicker, isDeniedStyleId, isInstrumentalVocal, isMinorAge, isSuspiciousDerivedTerm, isVantageFraming, isWizardSupported, joinHintFragments, joinPromptHints, joinPromptParts, keepableDirectionHints, listPickerCatalogs, migratePersonValue, modeForFamily, nodeHasInlinePrompt, nodeHasPromptField, nodeSupportsPromptAffixes, normalizeSubjectFields, overlayEntry, partitionStyleClauses, personPacksVersion, pickerFanoutTargets, projectAllCatalogs, projectPickerCatalog, promptAffixCoreField, promptBindsFirstFrame, promptFieldCarriesAffixes, promptPartSeparator, readDirectionFields, readStructuredFields, readSubjectFields, referenceDescriptionLine, referenceRulesBlock, registerCatalogPack, registerPersonPack, renderDescribedReferenceLines, renderDirectionHintClauses, renderDirectionHints, renderReferenceCaptionLines, renderScene3DLayoutScopingLine, renderStructuredFields, renderStyleSection, renderSubjectHints, resetCatalogPacks, resetPersonPacks, resolveBrandInput, resolveCharacterMentions, resolveGeminiOmniI2vInputs, resolveLocationMentions, resolvePrompt, resolveRefIdTokens, resolveReferenceTokens, resolveSeedance2Inputs, resolveTemplate, resolveTerm, resolveVeoI2vInputs, resolveVideoReferenceCore, scene3DLayoutVideoCaptions, sectionedClauseCosts, setComposedCatalogResolver, splitStyleSection, styleSectionFromClauses, styleSlotFor, subjectFieldsForSurface, subscribeCatalogPacks, summarizePickerCatalogs, toIdentityLockMode, truncateForField, truncateText, withForcedIdentityLock };
|
|
8110
|
+
/**
|
|
8111
|
+
* HOW A START/END FRAME TRAVELS — one plan, read by both ends.
|
|
8112
|
+
*
|
|
8113
|
+
* A frame can reach a model two ways: as a real frame, or as a reference image
|
|
8114
|
+
* bound in prose as the opening (or closing) frame. Which one is right is
|
|
8115
|
+
* measured per model — the Seedance 2.0 family crop-zooms a frame 2% and drifts
|
|
8116
|
+
* 11-26% darker within six frames, but holds its look from frame 0 when the same
|
|
8117
|
+
* image rides as a reference; every other model measured reproduces the opening
|
|
8118
|
+
* frame better as a frame (see `resolveFrameDelivery` in @nodaro/shared).
|
|
8119
|
+
*
|
|
8120
|
+
* The composition — where the frames sit in the reference list, which sentence
|
|
8121
|
+
* binds them, when the switch is refused — lives HERE rather than at the
|
|
8122
|
+
* dispatch site, because two places need the same answer:
|
|
8123
|
+
*
|
|
8124
|
+
* - `backend/src/lib/video-frame-dispatch.ts` builds the actual request,
|
|
8125
|
+
* - the editor's config panel tells the user which mode their node will run in.
|
|
8126
|
+
*
|
|
8127
|
+
* When those two disagree the panel lies, which is worse than having no panel
|
|
8128
|
+
* text at all. One function, two callers, no drift.
|
|
8129
|
+
*/
|
|
8130
|
+
|
|
8131
|
+
interface FrameDeliveryPlanArgs {
|
|
8132
|
+
readonly provider: string | undefined;
|
|
8133
|
+
/** The node's / caller's choice. `auto` (or absent) resolves per model. */
|
|
8134
|
+
readonly requested?: FrameDelivery;
|
|
8135
|
+
/** Whether the model accepts reference images at all. */
|
|
8136
|
+
readonly supportsReferenceImages: boolean;
|
|
8137
|
+
readonly startFrameUrl?: string;
|
|
8138
|
+
readonly endFrameUrl?: string;
|
|
8139
|
+
/** The user's OWN reference images, in their existing order. */
|
|
8140
|
+
readonly userReferenceUrls?: readonly string[];
|
|
8141
|
+
/** Consulted only to avoid a duplicate opening-frame sentence. */
|
|
8142
|
+
readonly prompt?: string;
|
|
8143
|
+
}
|
|
8144
|
+
interface FrameDeliveryPlan {
|
|
8145
|
+
/** What will actually happen — never `auto`. */
|
|
8146
|
+
readonly delivery: Exclude<FrameDelivery, "auto">;
|
|
8147
|
+
/** The full reference list to send. Equals the user's own list under `frame`. */
|
|
8148
|
+
readonly referenceImageUrls: readonly string[];
|
|
8149
|
+
/** Sentence(s) to append to the prompt. Empty under `frame`. */
|
|
8150
|
+
readonly promptSuffix: string;
|
|
8151
|
+
/** Set when reference delivery was WANTED but refused, so a caller can say why. */
|
|
8152
|
+
readonly refusedReason?: "no-reference-support" | "image-cap";
|
|
8153
|
+
}
|
|
8154
|
+
/**
|
|
8155
|
+
* Resolve delivery and compose the request shape that follows from it.
|
|
8156
|
+
*
|
|
8157
|
+
* Two refusals, both deliberate:
|
|
8158
|
+
* - a model with no reference-image support keeps frame mode (there is nowhere
|
|
8159
|
+
* for the frame to go);
|
|
8160
|
+
* - a switch that would push past the model's image cap keeps frame mode,
|
|
8161
|
+
* because the alternative is dropping one of the USER's reference images to
|
|
8162
|
+
* make room for ours.
|
|
8163
|
+
*
|
|
8164
|
+
* The frames are appended AFTER the user's own images so their `@image_N`
|
|
8165
|
+
* ordinals never shift, and the opening sentence is skipped when the prompt
|
|
8166
|
+
* already binds its own first frame — a second binding at another position
|
|
8167
|
+
* dilutes the first back into coin-flip behaviour (field finding 2026-07-20).
|
|
8168
|
+
*/
|
|
8169
|
+
declare function planFrameDelivery(args: FrameDeliveryPlanArgs): FrameDeliveryPlan;
|
|
8170
|
+
|
|
8171
|
+
interface CharacterMotionDiagnostic {
|
|
8172
|
+
readonly code: "unknown" | "omitted" | "retired" | "pose" | "visibility" | "hands" | "pace" | "requirements" | "compound" | "capacity" | "multiple-targets" | "roles";
|
|
8173
|
+
readonly severity: "error" | "warning" | "info";
|
|
8174
|
+
readonly ids: readonly string[];
|
|
8175
|
+
readonly message: string;
|
|
8176
|
+
}
|
|
8177
|
+
interface CharacterMotionBindings {
|
|
8178
|
+
readonly selfPairing?: boolean;
|
|
8179
|
+
readonly subjectMinor?: boolean;
|
|
8180
|
+
readonly partnerNames?: readonly string[];
|
|
8181
|
+
readonly targetNames?: readonly string[];
|
|
8182
|
+
}
|
|
8183
|
+
/** Shared by editor, API clients and local review. Missing metadata means
|
|
8184
|
+
* unknown; this never certifies a sequence or predicts clip duration. */
|
|
8185
|
+
declare function getCharacterMotionDiagnostics(value: string | readonly string[] | null | undefined, timing?: CharacterMotionTiming, bindings?: CharacterMotionBindings): readonly CharacterMotionDiagnostic[];
|
|
8186
|
+
|
|
8187
|
+
export { ACTION_FX, ACTION_FX_CATEGORY_LABELS, ACTION_FX_CATEGORY_ORDER, ACTION_FX_IDS, ADULT_AGE_IDS, ADULT_ONLY_FLAG, ADULT_SWEPT_CATALOG_IDS, AESTHETICS, AESTHETIC_CATEGORY_LABELS, AESTHETIC_CATEGORY_ORDER, AESTHETIC_IDS, ALL_PICKER_WIRING, ANALYZABLE_PICKER_TYPES, ANGLE_LABELS, ASPECT_RATIO_LABELS, ATMOSPHERES, ATMOSPHERE_IDS, AUDIO_WIZARD_CATEGORIES, type ActionFx, type ActionFxCategory, type AdultOnlyEntry, type Aesthetic, type AestheticCategory, type AssembleImageInput, type AssembleSunoInput, type AssembleSunoResult, type Atmosphere, BACKDROPS, BACKDROP_CATEGORY_LABELS, BACKDROP_CATEGORY_ORDER, BACKDROP_IDS, BRAND_PRESETS, BRAND_PRESET_IDS, BRAND_PRESET_META, type Backdrop, type BackdropCategory, type BrandCasing, type BrandFonts, type BrandLogo, type BrandPalette, type BrandPresetId, type BrandPresetMeta, type BrandTokens, type BrandTypeSpec, type BuildImagePromptConfig, type BuildImagePromptOverflowResult, type BuildImagePromptResult, type BuildImagePromptSegmentsResult, CAMERA_FORMATS, CAMERA_FORMAT_IDS, CAMERA_MOTIONS, CAMERA_MOTION_CATEGORY_LABELS, CAMERA_MOTION_CATEGORY_ORDER, CAMERA_MOTION_IDS, CHARACTER_FX, CHARACTER_FX_CATEGORY_LABELS, CHARACTER_FX_CATEGORY_ORDER, CHARACTER_FX_DURATIONS, CHARACTER_FX_IDS, CHARACTER_FX_INTENSITIES, CHARACTER_FX_POSITIONS, CHARACTER_MOTIONS, CHARACTER_MOTION_CATEGORY_LABELS, CHARACTER_MOTION_CATEGORY_ORDER, CHARACTER_MOTION_IDS, CHARACTER_MOTION_MAX_PICKS, CHARACTER_MOTION_PACES, CHARACTER_MOTION_POSITIONS, CINEMATIC_LOOK_TAIL, COLOR_LOOKS, COLOR_LOOK_CATEGORY_LABELS, COLOR_LOOK_CATEGORY_ORDER, COLOR_LOOK_IDS, COMPOSITION_EFFECTS, COMPOSITION_EFFECT_IDS, type CameraFormat, type CameraMotion, type CameraMotionCategory, type CatalogPack, type CatalogPackMode, type CategorizedInstrument, type CharacterFx, type CharacterFxCategory, type CharacterFxDuration, type CharacterFxIntensity, type CharacterFxPosition, type CharacterFxTiming, type CharacterFxTimingOption, type CharacterMeta, type CharacterMotion, type CharacterMotionBindings, type CharacterMotionCategory, type CharacterMotionDiagnostic, type CharacterMotionFloor, type CharacterMotionPace, type CharacterMotionPosition, type CharacterMotionPromptInput, type CharacterMotionTiming, type CharacterMotionTimingOption, type CharacterPromptInput, type ColorLook, type ColorLookCategory, type CompositionEffect, type ComputeNodePromptArgs, type CreaturePromptInput, DEFAULT_IDENTITY_LOCK, DEFAULT_TEMPLATES, DIRECTION_ARRAY_CEILING, DIRECTION_FIELDS, DIRECTION_ID_MAX_CHARS, DIRECTION_KEYS, type DirectionFamily, type DirectionFieldRow, type DirectionFieldSpec, type DirectionFields, type DirectionHintClause, type DirectionHintMode, type DirectionKey, type DirectionStyleGroup, type DirectionSurface, ERAS, ERA_CATEGORY_LABELS, ERA_CATEGORY_ORDER, ERA_IDS, EXPOSURE_CATEGORY_LABELS, EXPOSURE_CATEGORY_ORDER, EXPOSURE_FIELD_BY_CATEGORY, EXPOSURE_IDS, EXPOSURE_SETTINGS, type Era, type EraCategory, type ExposureCategory, type ExposureSettings, type ExposureValue, FACTORY_PRESETS, FACTORY_SNIPPETS, FILM_STILL_PREFIX, FILM_STYLE_KEYS, FLOORED_PICKER_KEYS, FRAMINGS, FRAMING_CATEGORY_LABELS, FRAMING_CATEGORY_ORDER, FRAMING_FIELD_BY_CATEGORY, FRAMING_IDS, type FacePromptInput, type FactoryPreset, type FactoryPresetGroup, type FactorySnippet, type ForeignCatalogId, type FrameDeliveryPlan, type FrameDeliveryPlanArgs, type Framing, type FramingCategory, type FramingValue, GAPS_SCHEMA, type GeminiOmniI2vInputsArgs, type GeminiOmniI2vInputsResult, HELD_PROPS, HELD_PROP_CATEGORY_LABELS, HELD_PROP_CATEGORY_ORDER, HELD_PROP_IDS, type HeldProp, type HeldPropCategory, IMAGE_HINT_MODE_DEFAULT, IMAGE_REFERENCE_PROMPT_DOCTRINE, IMAGE_WIZARD_CATEGORIES, INSTRUMENTATION_DEFAULT_DATA, INSTRUMENTS, INSTRUMENT_CATEGORY_LABELS, INSTRUMENT_CATEGORY_ORDER, type IdentityLockMode, type ImageDirectionKey, type ImageReferenceDoctrine, type InstrumentCategory, type InstrumentationEntry, LENSES, LENS_IDS, LIGHTINGS, LIGHTING_CATEGORY_LABELS, LIGHTING_CATEGORY_ORDER, LIGHTING_FIELD_BY_CATEGORY, LIGHTING_IDS, LLM_CHAT_WIZARD_CATEGORIES, LOOP_SUBJECTS, LOOP_SUBJECT_CATEGORY_LABELS, LOOP_SUBJECT_CATEGORY_ORDER, type Lens, type Lighting, type LightingCategory, type LightingValue, type LlmChatFieldArgs, type LocationMotionPromptInput, type LocationPromptInput, type LocationRefinePromptInput, type LoopSubject, type LoopSubjectCategory, MATERIALS, MATERIAL_CATEGORY_LABELS, MATERIAL_CATEGORY_ORDER, MATERIAL_IDS, MAX_SELECTED_BY_DIMENSION, MAX_SELECTED_BY_FRAMING_CATEGORY, MAX_SELECTED_BY_STYLING_DIMENSION, MAX_SUBJECT_KEYS, MINOR_IMPLYING_TYPE_IDS, MOODS, MOOD_CATEGORY_LABELS, MOOD_CATEGORY_ORDER, MOOD_IDS, MOVEMENT_LABELS, MULTI_PICKER_WIRING, MUSIC_EMOTIONS, MUSIC_ENERGIES, MUSIC_ERAS, MUSIC_GENRES, MUSIC_GENRE_CATEGORY_LABELS, MUSIC_GENRE_CATEGORY_ORDER, MUSIC_GENRE_DEFAULT_DATA, MUSIC_MOOD_DEFAULT_DATA, MUSIC_VIBES, MUSIC_WIZARD_CATEGORIES, type Material, type MaterialCategory, type ModelChange, type Mood, type MoodCategory, type MoodValue, type MultiDimPickerWiring, type MultiPickerAnalyzerSpec, type MusicEra, type MusicGenre, type MusicGenreCategory, type MusicMoodData, type MusicMoodEntry, type MusicSubgenre, NODE_PROMPT_CANDIDATE_FIELDS, NODE_PROMPT_FIELDS, OBJECT_ANGLE_PRESETS, OBJECT_ANGLE_PROMPTS, OBJECT_ASSET_PRESETS, OBJECT_ASSET_PROMPTS, OBJECT_MATERIAL_PRESETS, OBJECT_MATERIAL_PROMPTS, OBJECT_VARIATION_PRESETS, OBJECT_VARIATION_PROMPTS, type ObjectMotionPromptInput, type ObjectPresetAssetType, type ObjectPromptInput, PEOPLE, PERSON_DIMENSION_LABELS, PERSON_DIMENSION_ORDER, PERSON_DIMENSION_SECTIONS, PERSON_FIELD_BY_DIMENSION, PERSON_IDS, PHOTOGRAPHERS, PHOTOGRAPHER_CATEGORY_LABELS, PHOTOGRAPHER_CATEGORY_ORDER, PHOTOGRAPHER_IDS, PHOTO_GENRES, PHOTO_GENRE_CATEGORY_LABELS, PHOTO_GENRE_CATEGORY_ORDER, PHOTO_GENRE_IDS, PICKER_ANALYZER_FAMILIES, PICKER_ANALYZER_REGISTRY, PICKER_CATALOGS, PICKER_TYPES, POSES, POSE_CATEGORY_LABELS, POSE_CATEGORY_ORDER, POSE_IDS, POST_PROCESS_EFFECTS, POST_PROCESS_EFFECT_IDS, PRODUCTION_STYLES, PROMPT_AFFIX_CORE_FIELD_OVERRIDES, PROMPT_AFFIX_NODE_TYPES, PROMPT_HINT_SEPARATOR, PROVIDER_CAPABILITIES, PROVIDER_PROMPT_DOCTRINES, type Person, type PersonDimension, type PersonDimensionSection, type PersonPack, type PersonValue, type PhotoGenre, type PhotoGenreCategory, type Photographer, type PhotographerCategory, type PickerAnalyzer, type PickerAnalyzerDescriptor, type PickerAnalyzerSpec, type PickerApplyMode, type PickerCatalog, type PickerCatalogDetail, type PickerCatalogInput, type PickerCatalogSummary, type PickerDimension, type PickerDimensionInput, type PickerDimensionSpec, type PickerGaps, type PickerHintMode, type PickerOption, type PickerOptionInput, type PickerType, type PickerWiring, type PickerWiringEntry, type Pose, type PoseCategory, type PoseValue, type PostProcessEffect, type ProjectPickerCatalogOptions, type ProjectedPickerCatalog, type ProjectedPickerDimension, type ProjectedPickerOption, type PromptClauseSlot, type PromptFieldSpec, type PromptIconKind, type PromptSegment, type PromptSegmentOrigin, type ProviderPromptDoctrine, REFERENCE_IMAGE_ROLES, REFERENCE_RULES, REFERENCE_RULES_MULTI_PERSON, REF_BINDING, RENDER_QUALITIES, RENDER_QUALITY_IDS, RETIRED_ADULT_ONLY_HINT_STRINGS, type RecommendedModel, type RefIdTokenContext, type ReferenceCounts, type ReferenceLineFormat, type RegisteredPersonEntry, type RenderQuality, type ResolveCharacterMentionsResult, type ResolveLocationMentionsResult, type ResolvePromptArgs, type ResolveVideoReferenceCoreArgs, SCENE3D_FIGURE_REFERENCE_RULE, SCENE3D_FREE_PLATE_SLOTS, SCENE3D_LAYOUT_REFERENCE_SCOPING_FIXTURE, SCENE3D_LAYOUT_REFERENCE_SCOPING_LINE, SCENE3D_LAYOUT_SCOPING_FOR, SCENE3D_LAYOUT_SCOPING_IGNORE, SCENE3D_LAYOUT_SCOPING_LOOK_SOURCE, SCENE3D_LAYOUT_SCOPING_MARKER, SCENE3D_UNREFERENCED_FIGURES_WARNING_CODE, SCENE_FRAME_RULE, SCENE_PROMPT_MAX_LENGTH, SETTINGS, SETTING_CATEGORY_LABELS, SETTING_IDS, SHOT_LABELS, SINGING_STYLES, SINGLE_PICKER_WIRING, SNIPPET_MEDIA_VALUES, STYLES, STYLE_IDS, STYLE_PRESETS, STYLE_SECTION_GAP, STYLE_SECTION_HEADER, STYLINGS, STYLING_DIMENSION_LABELS, STYLING_DIMENSION_ORDER, STYLING_FIELD_BY_DIMENSION, STYLING_IDS, SUBJECT_ARRAY_CEILING, SUBJECT_CUSTOM_AGE_KEY, SUBJECT_FIELDS, SUBJECT_FOLD_KEYS, SUBJECT_ID_MAX_CHARS, SUBJECT_IMAGE_HINT_MODE_DEFAULT, SUBJECT_KEYS, SUBJECT_KEY_MAX_CHARS, SUBJECT_VIDEO_HINT_MODE_DEFAULT, type Scene3DFigureReferenceCheck, type Scene3DLayoutReferenceCarrier, type Scene3DLayoutReferenceSeat, type Scene3DLayoutScopingSpec, type Scene3DUnreferencedFiguresWarning, type Seedance2InputsArgs, type Seedance2InputsResult, type Seedance2Mode, type Setting, type SettingCategory, type SidecarCoverageReport, type SingleDimPickerWiring, type SlottedPromptClause, type SnippetMedia, type SnippetTarget, type SoundComposition, type SoundCompositionFields, type SoundConsumerType, type StructuredPromptFields, type Style, type StylePreset, type Styling, type StylingDimension, type StylingValue, type SubjectFieldRow, type SubjectFieldSpec, type SubjectFields, type SubjectGroupFieldSpec, type SubjectHintMode, type SubjectIdsFieldSpec, type SubjectSurface, type SuspiciousTermOptions, TEMPORALS, TEMPORAL_CATEGORY_LABELS, TEMPORAL_CATEGORY_ORDER, TEMPORAL_FIELD_BY_CATEGORY, TEMPORAL_IDS, TERM_MAX_CHARS, TEXT_WIZARD_CATEGORIES, TRANSITIONS, TRANSITION_CATEGORY_LABELS, TRANSITION_CATEGORY_ORDER, TRANSITION_DURATIONS, TRANSITION_IDS, TRANSITION_INTENSITIES, TRANSITION_POSITIONS, type Temporal, type TemporalCategory, type TemporalValue, type TermCarrier, type Transition, type TransitionCategory, type TransitionDuration, type TransitionIntensity, type TransitionPosition, type TransitionTiming, type TransitionTimingOption, VIDEO_HINT_MODE_DEFAULT, VIDEO_WIZARD_CATEGORIES, VOCAL_PRESENCE, VOCAL_PRESENCE_INSTRUMENTAL_ID, VOICE_ACCENTS, VOICE_AGES, VOICE_ARCHETYPES, VOICE_CHARACTER_DEFAULT_DATA, VOICE_DELIVERY_DEFAULT_DATA, VOICE_EMOTIONS, VOICE_GENDERS, VOICE_LANGUAGES, VOICE_PACES, VOICE_TIMBRES, type VeoI2vInputsArgs, type VeoI2vInputsResult, type VideoDirectionKey, type VideoExtraRef, type VideoPromptCapOptions, type VoiceCharacterEntry, type VoiceDeliveryEntry, WARDROBE, WARDROBE_CATEGORY_LABELS, WARDROBE_DIMENSION_ORDER, WARDROBE_FIELD_BY_DIMENSION, type WardrobeDimension, type WardrobeEntry, type WardrobeValue, type WizardCategory, type WizardNodeContext, type WizardOption, type WizardQuestion, type WizardSelection, __resetCatalogIdGuardForTests, appendField, appendMusicMeta, appendReferenceLines, appendScene3DStillScopingLines, applyMinorAgeFloorToPickerValues, applyPickerJson, applyPromptAffixes, applyReferenceOrderToVideo, applyTemplate, asBodyClauses, assembleImageInput, assembleSunoInput, buildActionFxHints, buildActionFxTerms, buildAestheticHints, buildAestheticTerms, buildAgeHint, buildAtmosphereHints, buildAtmosphereTerms, buildCharacterPrompt, buildCreaturePrompt, buildExposureHints, buildExposureTerms, buildFaceTemplateInputs, buildFramingHints, buildFramingTerms, buildHeldPropHints, buildHeldPropTerms, buildIdentityDirectives, buildIdentityLockLine, buildImagePrompt, buildImagePromptSegments, buildImagePromptWithOverflow, buildInstrumentationHints, buildInstrumentationTerms, buildLightingHints, buildLightingTerms, buildLocationMotionPrompt, buildLocationPrompt, buildLocationRefinePrompt, buildMaterialHints, buildMaterialTerms, buildMoodHints, buildMoodTerms, buildMotionPrompt, buildMultiPickerAnalyzerSpec, buildMusicGenreHints, buildMusicGenreTerms, buildMusicMoodHints, buildMusicMoodTerms, buildNeedleAlternationSource, buildObjectMotionPrompt, buildObjectPrompt, buildPersonHints, buildPersonTerms, buildPhotographerHints, buildPhotographerTerms, buildPickerAnalyzerSpec, buildPickerLegend, buildPickerZodSchema, buildPoseHints, buildPoseTerms, buildPostProcessHints, buildPostProcessTerms, buildReferenceBlocks, buildScene3DLayoutScopingLine, buildScene3DUnreferencedFiguresWarning, buildScenePrompt, buildStylingHints, buildStylingTerms, buildSurroundFillPrompt, buildTemporalHints, buildTemporalTerms, buildVoiceCharacterHints, buildVoiceCharacterTerms, buildVoiceDeliveryHints, buildVoiceDeliveryTerms, buildWardrobeHints, catalogGuardActive, catalogPacksVersion, characterLockToRefLock, collectIdentityLockClause, composeCameraMotionHintFromConnections, composeCameraMotionTermFromConnections, composeCharacterFxHintFromConnections, composeCharacterMotionHintFromConnections, composeNegative, composePickerCatalogs, composeSectionedPrompt, composeSoundHintFromConnections, composeTransitionHintFromConnections, composeVideoPromptText, composedHas, composedOption, composedOptionIndex, computeLlmChatFields, computeNodePrompt, computePackSidecarCoverage, containsMinorAgeHint, curateEntries, curatedAnimalPromptHint, curatedAnimalTerm, curatedFurnitureText, curatedVehicleText, curatedWeaponText, deriveTerm, directionFieldsForSurface, endsInsideStyleSection, expandImagePositionRefs, expandImageRefTokens, filmStillPrefix, findForeignCatalogIds, findForeignCatalogIdsInBody, foreignCatalogIdMessage, getActionFx, getActionFxLabel, getActionFxPromptHint, getActionFxTerm, getAdultOnlyEntries, getAdultOnlyHintStrings, getAdultOnlyIds, getAesthetic, getAestheticLabel, getAestheticPromptHint, getAestheticTerm, getAtmosphere, getAtmosphereLabel, getAtmospherePromptHint, getAtmosphereTerm, getBackdrop, getBackdropLabel, getBackdropPromptHint, getBackdropTerm, getCameraFormat, getCameraFormatLabel, getCameraFormatPromptHint, getCameraFormatTerm, getCameraMotion, getCameraMotionLabel, getCameraMotionPromptHint, getCameraMotionTerm, getCategoriesForNodeType, getCharacterFx, getCharacterFxLabel, getCharacterFxPromptHint, getCharacterFxTerm, getCharacterMotion, getCharacterMotionBindings, getCharacterMotionDiagnostics, getCharacterMotionLabel, getCharacterMotionPromptHint, getCharacterMotionTerm, getColorLook, getColorLookLabel, getColorLookPromptHint, getColorLookTerm, getCompositionEffect, getCompositionEffectLabel, getCompositionEffectPromptHint, getCompositionEffectTerm, getEffectiveSunoCustomMode, getEra, getEraLabel, getEraPromptHint, getEraTerm, getExposure, getExposureLabel, getExposurePromptHint, getExposureTerm, getFactoryPresets, getFactorySnippets, getFraming, getFramingCategoryLimit, getFramingLabel, getFramingPromptHint, getFramingTerm, getHeldProp, getHeldPropLabel, getHeldPropPromptHint, getHeldPropTerm, getIdentityLockClause, getInstrument, getInstrumentTerm, getLens, getLensLabel, getLensPromptHint, getLensTerm, getLighting, getLightingLabel, getLightingPromptHint, getLightingTerm, getLoopSubject, getLoopSubjectLabel, getLoopSubjectPromptHint, getLoopSubjectTerm, getMaterial, getMaterialLabel, getMaterialPromptHint, getMaterialTerm, getMinorAgeHintStrings, getMood, getMoodLabel, getMoodPromptHint, getMoodTerm, getMusicEmotion, getMusicEmotionTerm, getMusicEnergy, getMusicEnergyTerm, getMusicEra, getMusicEraTerm, getMusicGenre, getMusicGenreLabel, getMusicGenreTerm, getMusicSubgenre, getMusicSubgenreTerm, getMusicVibe, getMusicVibeTerm, getParameterPromptHint, getPerson, getPersonDimensionLimit, getPersonLabel, getPersonPromptHint, getPersonTerm, getPhotoGenre, getPhotoGenreLabel, getPhotoGenrePromptHint, getPhotoGenreTerm, getPhotographer, getPhotographerLabel, getPhotographerPromptHint, getPhotographerTerm, getPickerAnalyzer, getPickerCatalog, getPickerWiring, getPose, getPoseLabel, getPosePromptHint, getPoseTerm, getPostProcessEffect, getPostProcessEffectLabel, getPostProcessEffectPromptHint, getPostProcessEffectTerm, getProductionStyle, getProductionStyleTerm, getPromptDoctrine, getPromptFields, getPromptTips, getRegisteredCatalogPacks, getRegisteredPeople, getRegisteredPersonDimensionLabels, getRegisteredPersonDimensionOrder, getRegisteredPersonFieldByDimension, getRegisteredPickerCatalogs, getRegisteredSubjectKeys, getRenderQuality, getRenderQualityLabel, getRenderQualityPromptHint, getRenderQualityTerm, getSetting, getSettingLabel, getSettingPromptHint, getSettingTerm, getSingingStyle, getSingingStyleTerm, getSnippetMedia, getStyle, getStyleLabel, getStylePreset, getStylePromptHint, getStyleTerm, getStyling, getStylingDimensionLimit, getStylingLabel, getStylingPromptHint, getStylingTerm, getTemporal, getTemporalLabel, getTemporalPromptHint, getTemporalTerm, getTransition, getTransitionLabel, getTransitionPromptHint, getTransitionTerm, getVocalPresence, getVocalPresenceTerm, getVoiceAccent, getVoiceAccentTerm, getVoiceAge, getVoiceAgeTerm, getVoiceArchetype, getVoiceArchetypeTerm, getVoiceEmotion, getVoiceEmotionTerm, getVoiceGender, getVoiceGenderTerm, getVoiceLanguage, getVoiceLanguageTerm, getVoicePace, getVoicePaceTerm, getVoiceTimbre, getVoiceTimbreTerm, getWardrobeEntriesByDimension, getWardrobeEntry, getWardrobePromptHint, groupFactoryPresets, hasCatalogPacksFor, hasScene3DLayoutScopingLine, hasUpstreamCharacter, identityRefsSentence, insertBeforeStyleSection, isAnalyzablePicker, isDeniedStyleId, isInstrumentalVocal, isMinorAge, isSuspiciousDerivedTerm, isVantageFraming, isWizardSupported, joinHintFragments, joinPromptHints, joinPromptParts, keepableDirectionHints, listPickerCatalogs, migratePersonValue, modeForFamily, nodeHasInlinePrompt, nodeHasPromptField, nodeSupportsPromptAffixes, normalizeSubjectFields, overlayEntry, partitionStyleClauses, personPacksVersion, pickerFanoutTargets, planFrameDelivery, projectAllCatalogs, projectPickerCatalog, promptAffixCoreField, promptBindsFirstFrame, promptFieldCarriesAffixes, promptPartSeparator, readDirectionFields, readStructuredFields, readSubjectFields, referenceDescriptionLine, referenceRulesBlock, registerCatalogPack, registerPersonPack, renderDescribedReferenceLines, renderDirectionHintClauses, renderDirectionHints, renderReferenceCaptionLines, renderScene3DLayoutScopingLine, renderStructuredFields, renderStyleSection, renderSubjectHints, resetCatalogPacks, resetPersonPacks, resolveBrandInput, resolveCharacterMentions, resolveGeminiOmniI2vInputs, resolveLocationMentions, resolvePrompt, resolveRefIdTokens, resolveReferenceTokens, resolveSeedance2Inputs, resolveTemplate, resolveTerm, resolveVeoI2vInputs, resolveVideoReferenceCore, scene3DLayoutVideoCaptions, sectionedClauseCosts, setComposedCatalogResolver, splitStyleSection, styleSectionFromClauses, styleSlotFor, subjectFieldsForSurface, subscribeCatalogPacks, summarizePickerCatalogs, toIdentityLockMode, truncateForField, truncateText, withForcedIdentityLock };
|