// @generated by crates/nana-contracts; do not edit. export type ResourceId = string; export type ResourceKind = "character" | "world_book" | "persona" | "plot_module" | "item_spec"; export type ResourceRef = { id: ResourceId, kind: ResourceKind, revision: string, content_hash: string, }; export type ResourceHeader = { id: ResourceId, kind: ResourceKind, schema_version: number, revision: string, content_hash: string, dependencies: Array, }; export type CharacterStyle = { speech: string, mannerisms: Array, forbidden_player_assumptions: Array, }; export type CharacterJudgmentRule = { tags: Array, meaning: string, relationship_effects: Array, }; export type SkillValue = { skill: string, value: number, }; export type CharacterCard = { header: ResourceHeader, name: string, identity: string, personality: Array, values: Array, boundaries: Array, style: CharacterStyle, initial_relationship: RelationshipAxes, judgment_rules: Array, skills: Array, default_expression: string, }; export type WorldBookEntry = { id: string, title: string, content: string, keywords: Array, tags: Array, required_flags: Array, }; export type WorldBook = { header: ResourceHeader, name: string, entries: Array, }; export type Persona = { header: ResourceHeader, name: string, identity: string, traits: Array, skills: Array, initial_items: Array, }; export type PlotPressure = { id: string, description: string, clock_id: string | null, clock_delta: number | null, }; export type PlotOutcome = { id: string, description: string, effects: Array, }; export type PlotEvent = { id: string, title: string, tags: Array, situation: Array, required_flags: Array, pressures: Array, outcomes: Array, }; export type PlotModule = { header: ResourceHeader, name: string, opening_event: string, events: Array, }; export type ItemMechanics = { usable: boolean, grants_tags: Array, check_modifier: number | null, }; export type ItemSpec = { header: ResourceHeader, name: string, description: string, tags: Array, lore_refs: Array, mechanics: ItemMechanics, hidden_facts: Array, }; export type ResourceBundle = { id: string, schema_version: number, revision: string, display_name: string, entry_character: ResourceId, entry_persona: ResourceId, entry_plot_module: ResourceId | null, characters: Array, world_books: Array, personas: Array, plot_modules: Array, item_specs: Array, }; export type RelationshipAxes = { affinity: number, trust: number, hope: number, respect: number, intimacy: number, attachment: number, }; export type RelationshipAdjustment = { dimension: RelationshipDimension, delta: number, cause: string, judgment_rule: string | null, }; export type RelationshipDimension = "affinity" | "trust" | "hope" | "respect" | "intimacy" | "attachment"; export type RelationshipBand = "distant" | "guarded" | "warming" | "close" | "bonded"; export type RelationshipView = { affinity: RelationshipBand, trust: RelationshipBand, hope: RelationshipBand, respect: RelationshipBand, intimacy: RelationshipBand, attachment: RelationshipBand, updatedAtNode: string | null, }; export type PromiseStatus = "proposed" | "accepted" | "fulfilled" | "broken" | "released" | "impossible"; export type PromiseWeight = "minor" | "major"; export type Promise = { id: string, promiser: string, promisee: string, content: string, status: PromiseStatus, weight: PromiseWeight, created_at: string, accepted_at: string | null, resolved_at: string | null, }; export type RelationshipState = { id: string, tag: string, description: string, source_node: string, active: boolean, }; export type KnowledgeCertainty = "suspected" | "reported" | "confirmed"; export type KnowledgeRecord = { id: string, observer: string, subject: string | null, fact: string, certainty: KnowledgeCertainty, source: string, learned_at: string, last_verified_at: string | null, }; export type ItemPlacement = "bag" | "worn" | "hand" | "scene" | "hidden"; export type AcquisitionMode = "initial" | "found" | "given" | "borrowed" | "stolen" | "returned"; export type ItemAcquisition = { mode: AcquisitionMode, from: string | null, at_node: string, }; export type ItemInstance = { id: string, spec_ref: ResourceId, owner: string, holder: string, placement: ItemPlacement, quantity: number, condition: string, state_tags: Array, acquisition: ItemAcquisition, }; export type CheckDifficulty = "regular" | "hard" | "extreme"; export type CheckResult = "critical_success" | "extreme_success" | "hard_success" | "success" | "failure" | "fumble"; export type CheckRecord = { id: string, action_id: string, actor: string, skill: string, target: number, difficulty: CheckDifficulty, bonus_dice: number, roll: number, result: CheckResult, pushed_from: string | null, node_id: string, }; export type ClockState = { id: string, label: string, value: number, max: number, }; export type StoryBinding = { persona: ResourceRef, characters: Array, world_books: Array, plot_modules: Array, }; export type Story = { id: string, title: string, ruleset: string, bindings: StoryBinding, root_node: string, active_branch: string, }; export type StateDelta = { ops: Array, }; export type StateOp = { "op": "set_world_flag", key: string, value: boolean, } | { "op": "adjust_relationship", from: string, to: string, adjustment: RelationshipAdjustment, } | { "op": "create_promise", promise: Promise, } | { "op": "update_promise", promise_id: string, status: PromiseStatus, resolved_at: string | null, } | { "op": "add_knowledge", record: KnowledgeRecord, } | { "op": "add_item", item: ItemInstance, } | { "op": "transfer_item", item_id: string, from: string, to: string, placement: ItemPlacement, mode: AcquisitionMode, } | { "op": "record_check", check: CheckRecord, } | { "op": "advance_clock", clock_id: string, delta: number, }; export type StoryNode = { id: string, story_id: string, branch_id: string, parent_id: string | null, action_id: string, user_input: string, delta: StateDelta, state_hash: string, scene: PresentationScene, character: PresentationCharacter, beats: Array, suggestions: Array, can_continue: boolean, }; export type RuntimeState = { story_id: string, current_node: string, current_branch: string, world_flags: { [key in string]?: boolean }, relationships: { [key in string]?: RelationshipAxes }, relationship_states: Array, promises: Array, knowledge: Array, items: Array, clocks: Array, checks: Array, }; export type BeatKind = "narration" | "dialogue" | "action" | "system"; export type VisualDirective = { character: string | null, expression: string | null, pose: string | null, scene: string | null, }; export type PresentationBeat = { id: string, kind: BeatKind, speaker: string | null, text: string, visual: VisualDirective | null, }; export type ActionSuggestion = { id: string, label: string, draft: string, }; export type PresentationScene = { id: string, title: string, }; export type PresentationCharacter = { id: string, name: string, expression: string | null, pose: string | null, }; export type PresentationSnapshot = { scene: PresentationScene, character: PresentationCharacter, beats: Array, suggestions: Array, can_continue: boolean, }; export type PlayerItemView = { instanceId: string, name: string, description: string, quantity: number, placement: ItemPlacement, condition: string, }; export type PlayerKnowledgeView = { id: string, title: string, summary: string, certainty: KnowledgeCertainty, }; export type PlayerPromiseView = { id: string, content: string, status: PromiseStatus, weight: PromiseWeight, }; export type HistoryNodeView = { id: string, parentId: string | null, branchId: string, label: string, isCurrent: boolean, }; export type PlayerView = { storyId: string, nodeId: string, branchId: string, sceneId: string, sceneTitle: string, characterName: string, characterExpression: string | null, characterPose: string | null, beats: Array, suggestions: Array, inventory: Array, knowledge: Array, promises: Array, relationship: RelationshipView, history: Array, canContinue: boolean, }; export type TurnIntent = "speak_or_act" | "continue" | "regenerate" | "push_check"; export type TurnRequest = { storyId: string, branchId: string, expectedNodeId: string, actionId: string, intent: TurnIntent, input: string, }; export type TurnResult = { committedNodeId: string, playerView: PlayerView, }; export type ForkBranchRequest = { storyId: string, currentBranchId: string, expectedCurrentNodeId: string, sourceNodeId: string, actionId: string, }; export type ForkBranchResult = { branchId: string, playerView: PlayerView, }; export type BranchSummary = { branchId: string, name: string, headNodeId: string, headLabel: string, sourceNodeId: string | null, isActive: boolean, }; export type BranchList = { storyId: string, activeBranchId: string, branches: Array, }; export type SwitchBranchRequest = { storyId: string, branchId: string, expectedActiveBranchId: string, }; export type SwitchBranchResult = { branchId: string, playerView: PlayerView, }; export type RenameBranchRequest = { storyId: string, branchId: string, name: string, }; export type LappModelOption = { providerId: string, providerName: string | null, modelId: string, modelName: string | null, }; export type LappMode = "lapp" | "demo" | "unavailable"; export type LappSettings = { mode: LappMode, selectedProviderId: string | null, selectedModelId: string | null, availableModels: Array, statusMessage: string, }; export type UpdateLappSettingsRequest = { providerId: string, modelId: string, }; export type LappConnectionTestResult = { ok: boolean, providerId: string, modelId: string, message: string, diagnosticCode: string | null, }; export type TurnFailureCode = "stale_node" | "invalid_input" | "invalid_model_output" | "provider_configuration" | "provider_credentials" | "provider_rate_limited" | "provider_rejected" | "provider_unavailable" | "cancelled" | "timed_out" | "internal"; export type TurnFailure = { code: TurnFailureCode, message: string, retryable: boolean, }; export type AppInfo = { name: string, version: string, contractVersion: number, }; export type DemoPackSummary = { id: string, displayName: string, revision: string, characters: number, worldBooks: number, personas: number, plotModules: number, itemSpecs: number, }; export type ValidationCode = "invalid_id" | "invalid_schema_version" | "invalid_revision" | "invalid_content_hash" | "wrong_resource_kind" | "duplicate_resource" | "missing_reference" | "invalid_relationship_value" | "invalid_skill_value"; export type ValidationIssue = { code: ValidationCode, path: string, message: string, }; export type ValidationReport = { issues: Array, };