@hypit/hypit 0.1.3 → 0.1.5
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/README.md +5 -3
- package/dist/public/caption.d.ts +206 -183
- package/dist/public/composition.d.ts +25 -3
- package/dist/public/endpoint-kit.d.ts +24 -2
- package/dist/public/generation.d.ts +5 -1
- package/dist/public/hyperframes.d.ts +19 -1
- package/dist/public/narrative.d.ts +17 -3
- package/dist/public/performance.d.ts +1590 -0
- package/dist/public/program-space.d.ts +179 -32
- package/dist/public/runtime-kit.d.ts +21 -8
- package/dist/public/sound.d.ts +822 -0
- package/dist/public/speech.d.ts +41 -0
- package/dist/public/studio-adapter.d.ts +107 -16
- package/dist/public/temporal-markup.d.ts +9 -44
- package/dist/public/temporal.d.ts +37 -28
- package/dist/public/{semantic-track.d.ts → timeline.d.ts} +62 -49
- package/examples/README.md +18 -10
- package/examples/minimal-author-package/packages/example-component/preview/preview.svml +19 -12
- package/examples/minimal-author-package/packages/example-component/src/component.ts +5 -5
- package/examples/minimal-author-package/packages/example-component/src/fragment.ts +3 -5
- package/examples/minimal-author-package/packages/example-component/src/manifest.ts +8 -10
- package/examples/minimal-author-package/packages/example-component/src/surface.ts +2 -2
- package/examples/provider-package/README.md +78 -0
- package/examples/provider-package/hypit.runtime.json +12 -0
- package/examples/provider-package/packages/provider-images/package.json +11 -0
- package/examples/provider-package/packages/provider-images/src/activation.ts +24 -0
- package/examples/provider-package/packages/provider-images/src/provider.ts +122 -0
- package/examples/provider-package/packages/provider-images/tsconfig.json +9 -0
- package/examples/semantic-composition/README.md +6 -0
- package/examples/semantic-composition/chat.svml +6 -5
- package/examples/semantic-composition/packages/chat-scene/README.md +3 -3
- package/examples/semantic-composition/packages/chat-scene/src/activation.ts +18 -21
- package/examples/semantic-composition/packages/chat-scene/src/render.ts +4 -4
- package/examples/semantic-composition/packages/performance-styles/README.md +42 -0
- package/examples/semantic-composition/packages/performance-styles/package.json +25 -0
- package/examples/semantic-composition/packages/performance-styles/src/activation.ts +57 -0
- package/examples/semantic-composition/packages/performance-styles/src/render.ts +54 -0
- package/examples/semantic-composition/packages/performance-styles/src/studio.ts +28 -0
- package/examples/semantic-composition/packages/performance-styles/tsconfig.json +18 -0
- package/examples/semantic-composition/packages/responsive-explainer/README.md +16 -9
- package/examples/semantic-composition/packages/responsive-explainer/src/activation.ts +12 -12
- package/examples/semantic-composition/packages/responsive-explainer/src/render.ts +5 -5
- package/examples/semantic-composition/packages/sound-styles/README.md +36 -0
- package/examples/semantic-composition/packages/sound-styles/package.json +25 -0
- package/examples/semantic-composition/packages/sound-styles/src/activation.ts +53 -0
- package/examples/semantic-composition/packages/sound-styles/src/render.ts +14 -0
- package/examples/semantic-composition/packages/sound-styles/tsconfig.json +18 -0
- package/package.json +35 -15
- package/packages/audio-track/README.md +20 -13
- package/packages/audio-track/package.json +1 -1
- package/packages/audio-track/src/component.ts +4 -4
- package/packages/audio-track/src/fragment.ts +6 -5
- package/packages/audio-track/src/index.ts +1 -1
- package/packages/audio-track/src/manifest.ts +17 -16
- package/packages/audio-track/src/program.ts +21 -25
- package/packages/audio-track/src/surface.ts +19 -18
- package/packages/audio-track-studio/README.md +23 -0
- package/packages/audio-track-studio/src/index.ts +33 -19
- package/packages/author-kit/README.md +1 -1
- package/packages/background-removal/README.md +4 -7
- package/packages/browser-capture/package.json +1 -1
- package/packages/build-result/README.md +69 -0
- package/packages/build-result/package.json +2 -1
- package/packages/build-result/src/decode.ts +12 -8
- package/packages/build-result/src/execution-log.ts +17 -0
- package/packages/build-result/src/file-reference.ts +42 -0
- package/packages/build-result/src/index.ts +4 -0
- package/packages/build-result/src/replace-file-windows.ts +58 -0
- package/packages/build-result/src/replace-file.ts +11 -0
- package/packages/build-result/src/store.ts +58 -14
- package/packages/build-result/src/types.ts +41 -8
- package/packages/build-result/src/writer.ts +12 -1
- package/packages/build-result-fs/README.md +23 -1
- package/packages/build-result-s3/README.md +5 -0
- package/packages/build-result-s3/src/repository.ts +23 -5
- package/packages/caption/README.md +61 -73
- package/packages/caption/package.json +3 -2
- package/packages/caption/src/activation.ts +2 -2
- package/packages/caption/src/component.ts +20 -5
- package/packages/caption/src/display.ts +3 -18
- package/packages/caption/src/fragment.ts +3 -7
- package/packages/caption/src/index.ts +6 -5
- package/packages/caption/src/manifest.ts +29 -46
- package/packages/caption/src/style.ts +24 -135
- package/packages/caption/src/surface.ts +12 -92
- package/packages/caption/src/temporalize.ts +18 -53
- package/packages/caption/src/types.ts +8 -35
- package/packages/caption/src/visibility.ts +23 -0
- package/packages/caption-fine/README.md +31 -11
- package/packages/caption-fine/package.json +4 -2
- package/packages/caption-fine/src/component.ts +3 -3
- package/packages/caption-fine/src/fragment.ts +7 -19
- package/packages/caption-fine/src/index.ts +2 -0
- package/packages/caption-fine/src/manifest.ts +27 -18
- package/packages/caption-fine/src/recipe.ts +7 -0
- package/packages/caption-fine/src/render.ts +62 -49
- package/packages/caption-fine/src/schedule.ts +39 -35
- package/packages/caption-fine/src/style.ts +10 -9
- package/packages/caption-fine/src/surface.ts +62 -35
- package/packages/caption-fine/src/types.ts +2 -0
- package/packages/caption-fine-studio/README.md +24 -2
- package/packages/caption-fine-studio/package.json +10 -3
- package/packages/caption-fine-studio/src/activation.ts +3 -3
- package/packages/caption-fine-studio/src/index.ts +61 -40
- package/packages/cli/README.md +81 -3
- package/packages/cli/package.json +1 -0
- package/packages/cli/src/arguments.ts +39 -15
- package/packages/cli/src/build-planning.ts +9 -3
- package/packages/cli/src/command.ts +7 -1
- package/packages/cli/src/commands/environment.ts +66 -27
- package/packages/cli/src/commands/execution.ts +81 -26
- package/packages/cli/src/commands/results.ts +7 -11
- package/packages/cli/src/index.ts +2 -2
- package/packages/cli/src/machine-view.ts +15 -5
- package/packages/cli/src/main.ts +38 -42
- package/packages/cli/src/observation.ts +7 -1
- package/packages/cli/src/output.ts +92 -34
- package/packages/cli/src/result-export.ts +22 -13
- package/packages/cli/src/run-file.ts +19 -8
- package/packages/cli/src/view.ts +64 -18
- package/packages/comment-sticker/README.md +3 -3
- package/packages/comment-sticker/package.json +1 -1
- package/packages/comment-sticker/src/component.ts +4 -4
- package/packages/comment-sticker/src/fragment.ts +5 -4
- package/packages/comment-sticker/src/manifest.ts +7 -6
- package/packages/comment-sticker/src/program.ts +9 -9
- package/packages/comment-sticker/src/surface.ts +6 -7
- package/packages/comment-sticker-studio/src/index.ts +2 -1
- package/packages/compiler-node/src/compiler.ts +1 -0
- package/packages/composition/README.md +21 -0
- package/packages/composition/src/audio-presentation.ts +44 -0
- package/packages/composition/src/index.ts +3 -0
- package/packages/composition/src/schema.ts +8 -3
- package/packages/composition/src/track.ts +15 -1
- package/packages/credential-store-env/README.md +1 -1
- package/packages/deck-track/README.md +3 -3
- package/packages/deck-track/package.json +1 -1
- package/packages/deck-track/src/component.ts +5 -5
- package/packages/deck-track/src/fragment.ts +6 -5
- package/packages/deck-track/src/lower.ts +12 -12
- package/packages/deck-track/src/manifest.ts +8 -7
- package/packages/deck-track/src/program.ts +13 -16
- package/packages/deck-track/src/surface.ts +9 -10
- package/packages/driver-node/src/driver.ts +41 -3
- package/packages/elevenlabs-speech/README.md +27 -0
- package/packages/{provider-xiaomi-mimo → elevenlabs-speech}/package.json +5 -8
- package/packages/elevenlabs-speech/src/activation.ts +26 -0
- package/packages/elevenlabs-speech/src/fragment.ts +11 -0
- package/packages/elevenlabs-speech/src/index.ts +111 -0
- package/packages/elevenlabs-speech/src/surface.ts +167 -0
- package/packages/endpoint-kit/README.md +24 -0
- package/packages/endpoint-kit/src/index.ts +7 -1
- package/packages/estimate/README.md +56 -3
- package/packages/estimate/src/program.ts +7 -8
- package/packages/film/README.md +12 -7
- package/packages/film/package.json +1 -1
- package/packages/film/src/component.ts +4 -4
- package/packages/film/src/fragment.ts +6 -5
- package/packages/film/src/manifest.ts +11 -10
- package/packages/film/src/program.ts +5 -5
- package/packages/film/src/recipe.ts +2 -1
- package/packages/film/src/surface.ts +6 -6
- package/packages/film-studio/package.json +1 -1
- package/packages/film-studio/src/index.ts +2 -2
- package/packages/fishaudio-speech/README.md +33 -0
- package/packages/fishaudio-speech/package.json +21 -0
- package/packages/fishaudio-speech/src/activation.ts +32 -0
- package/packages/fishaudio-speech/src/fragment.ts +11 -0
- package/packages/fishaudio-speech/src/index.ts +156 -0
- package/packages/fishaudio-speech/src/surface.ts +192 -0
- package/packages/fonts-open/README.md +5 -0
- package/packages/fonts-open/package.json +5 -1
- package/packages/fonts-open/src/studio.ts +21 -0
- package/packages/generation/README.md +11 -1
- package/packages/generation/src/mapping.ts +28 -30
- package/packages/gpt-image/README.md +1 -2
- package/packages/grok-imagine/README.md +1 -2
- package/packages/hyperframes/README.md +7 -3
- package/packages/hyperframes/src/browser-program.ts +11 -2
- package/packages/hyperframes/src/document.ts +15 -2
- package/packages/interview-emoji-reveal/README.md +4 -4
- package/packages/interview-emoji-reveal/package.json +1 -1
- package/packages/interview-emoji-reveal/src/component.ts +4 -4
- package/packages/interview-emoji-reveal/src/fragment.ts +6 -5
- package/packages/interview-emoji-reveal/src/manifest.ts +9 -8
- package/packages/interview-emoji-reveal/src/program.ts +14 -14
- package/packages/interview-emoji-reveal/src/surface.ts +8 -9
- package/packages/media-execution/README.md +7 -3
- package/packages/media-execution/src/audio-presentation.ts +23 -0
- package/packages/media-execution/src/execute.ts +2 -0
- package/packages/media-pipeline/README.md +7 -3
- package/packages/media-pipeline/src/audio-plan.ts +4 -1
- package/packages/media-pipeline/src/component.ts +16 -2
- package/packages/media-pipeline/src/manifest.ts +3 -1
- package/packages/media-pipeline/src/types.ts +2 -1
- package/packages/media-track/README.md +14 -47
- package/packages/media-track/package.json +1 -1
- package/packages/media-track/preview/preview.svml +5 -5
- package/packages/media-track/src/author.ts +12 -6
- package/packages/media-track/src/component.ts +10 -16
- package/packages/media-track/src/fragment.ts +8 -7
- package/packages/media-track/src/index.ts +3 -1
- package/packages/media-track/src/lower.ts +7 -7
- package/packages/media-track/src/manifest.ts +16 -38
- package/packages/media-track/src/program.ts +62 -67
- package/packages/media-track/src/sampling.ts +6 -6
- package/packages/media-track/src/sequence.ts +8 -8
- package/packages/media-track/src/surface.ts +25 -43
- package/packages/media-track-studio/README.md +9 -0
- package/packages/media-track-studio/src/index.ts +23 -13
- package/packages/mimo-speech/README.md +1 -1
- package/packages/minimax-h3/README.md +1 -1
- package/packages/nano-banana/README.md +1 -1
- package/packages/narrative/README.md +23 -1
- package/packages/narrative/src/identity.ts +11 -0
- package/packages/narrative/src/index.ts +3 -0
- package/packages/narrative/src/schema.ts +28 -27
- package/packages/narrative/src/selection.ts +52 -0
- package/packages/narrative/src/types.ts +2 -0
- package/packages/package-loader-node/README.md +30 -0
- package/packages/package-loader-node/package.json +5 -2
- package/packages/package-loader-node/src/distribution-resolution.ts +10 -3
- package/packages/package-loader-node/src/index.ts +1 -0
- package/packages/package-loader-node/src/loader.ts +12 -15
- package/packages/package-loader-node/src/location.ts +27 -1
- package/packages/package-loader-node/src/module-scope.ts +183 -0
- package/packages/package-loader-node/src/types.ts +4 -0
- package/packages/performance/README.md +83 -0
- package/packages/performance/package.json +30 -0
- package/packages/performance/src/activation.ts +11 -0
- package/packages/performance/src/component.ts +46 -0
- package/packages/performance/src/index.ts +6 -0
- package/packages/performance/src/manifest.ts +53 -0
- package/packages/{media-track/src/performance.ts → performance/src/media.ts} +9 -10
- package/packages/performance/src/program.ts +51 -0
- package/packages/performance/src/style.ts +35 -0
- package/packages/performance/src/surface.ts +99 -0
- package/packages/performance-studio/README.md +25 -0
- package/packages/performance-studio/package.json +21 -0
- package/packages/performance-studio/src/activation.ts +6 -0
- package/packages/performance-studio/src/index.ts +84 -0
- package/packages/program-space/README.md +9 -18
- package/packages/program-space/src/activation.ts +1 -5
- package/packages/program-space/src/index.ts +2 -11
- package/packages/program-space/src/surface.ts +1 -20
- package/packages/project-context-node/README.md +20 -0
- package/packages/project-context-node/package.json +10 -0
- package/packages/project-context-node/src/index.ts +3 -0
- package/packages/{cli → project-context-node}/src/runtime-selection.ts +7 -2
- package/packages/provider-hyperframes-local/README.md +43 -15
- package/packages/provider-hyperframes-local/src/activation.ts +4 -3
- package/packages/provider-hyperframes-local/src/capture-process.ts +26 -4
- package/packages/provider-hyperframes-local/src/capture.ts +96 -26
- package/packages/provider-hyperframes-local/src/concurrency.ts +86 -0
- package/packages/provider-hyperframes-local/src/opaque-capture.ts +92 -0
- package/packages/provider-hyperframes-local/src/options.ts +2 -0
- package/packages/provider-hyperframes-local/src/program.ts +6 -3
- package/packages/provider-hyperframes-local/src/progress.ts +53 -0
- package/packages/provider-hyperframes-local/src/provider.ts +18 -5
- package/packages/provider-hyperframes-local/src/render.ts +48 -7
- package/packages/provider-hypihub/README.md +48 -17
- package/packages/provider-hypihub/package.json +2 -0
- package/packages/provider-hypihub/src/mapping.ts +31 -7
- package/packages/provider-hypihub/src/oauth.ts +6 -0
- package/packages/provider-hypihub/src/provider.ts +25 -13
- package/packages/provider-hypihub/src/routes.ts +1 -2
- package/packages/provider-hypihub/src/upload.ts +2 -0
- package/packages/provider-media-local/README.md +3 -4
- package/packages/provider-whisperx-local/README.md +57 -0
- package/packages/provider-whisperx-local/src/program.ts +1 -0
- package/packages/provider-whisperx-local/src/provider.ts +3 -0
- package/packages/ranking/README.md +8 -6
- package/packages/ranking/package.json +1 -1
- package/packages/ranking/src/component.ts +6 -6
- package/packages/ranking/src/fragment.ts +11 -7
- package/packages/ranking/src/manifest.ts +21 -14
- package/packages/ranking/src/render.ts +33 -35
- package/packages/ranking/src/schedule.ts +16 -19
- package/packages/ranking/src/surface.ts +12 -13
- package/packages/ranking-studio/README.md +29 -0
- package/packages/ranking-studio/package.json +8 -3
- package/packages/ranking-studio/src/index.ts +71 -12
- package/packages/render-hyperframes/README.md +7 -7
- package/packages/render-hyperframes/package.json +1 -1
- package/packages/render-hyperframes/src/component.ts +11 -1
- package/packages/render-hyperframes/src/fragment.ts +7 -4
- package/packages/render-hyperframes/src/manifest.ts +4 -4
- package/packages/render-hyperframes/src/surface.ts +6 -6
- package/packages/runtime/README.md +8 -1
- package/packages/runtime/src/catalog.ts +2 -0
- package/packages/runtime/src/execution.ts +15 -4
- package/packages/runtime/src/index.ts +2 -1
- package/packages/runtime/src/log.ts +51 -0
- package/packages/runtime/src/types.ts +5 -8
- package/packages/runtime-host-node/README.md +30 -0
- package/packages/runtime-host-node/package.json +1 -0
- package/packages/runtime-host-node/src/index.ts +25 -9
- package/packages/runtime-host-node/src/packages.ts +47 -50
- package/packages/runtime-kit/README.md +5 -0
- package/packages/runtime-kit/src/index.ts +3 -1
- package/packages/runtime-local/README.md +111 -4
- package/packages/runtime-local/src/config.ts +202 -56
- package/packages/runtime-local/src/control.ts +9 -1
- package/packages/runtime-local/src/executor.ts +66 -0
- package/packages/runtime-local/src/host.ts +37 -17
- package/packages/runtime-local/src/log.ts +48 -0
- package/packages/runtime-local/src/programs.ts +41 -25
- package/packages/runtime-local/src/result-writer.ts +2 -0
- package/packages/runtime-local/src/runtime.ts +10 -6
- package/packages/runtime-local/src/supervisor.ts +142 -0
- package/packages/runtime-local/src/types.ts +9 -2
- package/packages/runtime-local/src/worker-process.ts +7 -24
- package/packages/runtime-local/src/worker.ts +55 -83
- package/packages/screen-overlay/README.md +3 -3
- package/packages/screen-overlay/package.json +1 -1
- package/packages/screen-overlay/src/component.ts +3 -3
- package/packages/screen-overlay/src/fragment.ts +5 -4
- package/packages/screen-overlay/src/manifest.ts +7 -6
- package/packages/screen-overlay/src/program.ts +9 -9
- package/packages/screen-overlay/src/surface.ts +6 -7
- package/packages/script/README.md +37 -2
- package/packages/script/src/edit.ts +123 -73
- package/packages/script/src/lexical.ts +40 -6
- package/packages/script/src/manifest.ts +2 -2
- package/packages/script/src/narrative.ts +1 -0
- package/packages/script/src/parser.ts +36 -8
- package/packages/script/src/surface.ts +4 -3
- package/packages/script/src/types.ts +5 -1
- package/packages/script-studio/package.json +9 -3
- package/packages/script-studio/src/index.ts +2 -0
- package/packages/script-studio/src/projection.ts +105 -0
- package/packages/seedance/README.md +30 -1
- package/packages/seedance/src/index.ts +18 -7
- package/packages/seedance/src/surface.ts +17 -4
- package/packages/seedance-kits/README.md +10 -2
- package/packages/seedance-kits/kits/speaker-v1.svs +5 -5
- package/packages/seedream/README.md +1 -1
- package/packages/sound/README.md +81 -0
- package/packages/sound/package.json +25 -0
- package/packages/sound/src/activation.ts +11 -0
- package/packages/sound/src/component.ts +28 -0
- package/packages/sound/src/index.ts +5 -0
- package/packages/sound/src/manifest.ts +47 -0
- package/packages/sound/src/program.ts +84 -0
- package/packages/sound/src/style.ts +34 -0
- package/packages/sound/src/surface.ts +90 -0
- package/packages/sound-studio/README.md +22 -0
- package/packages/sound-studio/package.json +20 -0
- package/packages/sound-studio/src/activation.ts +6 -0
- package/packages/sound-studio/src/index.ts +74 -0
- package/packages/speech/README.md +2 -2
- package/packages/speech-alignment/src/align.ts +45 -21
- package/packages/speech-alignment/src/local.ts +8 -0
- package/packages/speech-alignment/src/locate.ts +1 -1
- package/packages/store-sqlite/README.md +7 -0
- package/packages/store-sqlite/src/store.ts +84 -83
- package/packages/studio/INSPECTOR.md +117 -0
- package/packages/studio/README.md +149 -14
- package/packages/studio/package.json +8 -7
- package/packages/studio/src/build-library.ts +99 -84
- package/packages/studio/src/companion-assembly.ts +1 -0
- package/packages/studio/src/domain.ts +1 -1
- package/packages/studio/src/fallback-companions.ts +3 -3
- package/packages/studio/src/feedback-server.ts +51 -0
- package/packages/studio/src/feedback-store.ts +66 -0
- package/packages/studio/src/feedback.ts +60 -0
- package/packages/studio/src/library-media.ts +19 -0
- package/packages/studio/src/parameter-values.ts +83 -1
- package/packages/studio/src/parameters.ts +132 -43
- package/packages/studio/src/preview/render.ts +5 -1
- package/packages/studio/src/preview/runtime-shim.ts +49 -3
- package/packages/studio/src/programme.ts +14 -30
- package/packages/studio/src/server.ts +66 -34
- package/packages/studio/src/shared.ts +24 -8
- package/packages/studio/src/snapshot.ts +21 -132
- package/packages/studio/src/studio-preflight.ts +3 -3
- package/packages/studio/src/studio-registry.ts +72 -6
- package/packages/studio/src/style.css +342 -190
- package/packages/studio/src/temporal-edit.ts +131 -0
- package/packages/studio/src/ui/artifact-name.ts +80 -0
- package/packages/studio/src/ui/artifact-preview.ts +99 -0
- package/packages/studio/src/ui/comments.ts +233 -0
- package/packages/studio/src/ui/icons.ts +10 -1
- package/packages/studio/src/ui/library.ts +373 -192
- package/packages/studio/src/ui/main.ts +291 -110
- package/packages/studio/src/ui/material-preview.ts +1 -1
- package/packages/studio/src/ui/overlay.ts +31 -26
- package/packages/studio/src/ui/scrub-preview.ts +108 -0
- package/packages/studio/src/ui/sidebar-panel.ts +31 -0
- package/packages/studio/src/ui/stage.ts +188 -9
- package/packages/studio/src/ui/timeline.ts +187 -281
- package/packages/studio/start.ts +19 -5
- package/packages/studio-adapter/README.md +151 -11
- package/packages/studio-adapter/src/index.ts +126 -14
- package/packages/temporal/README.md +6 -6
- package/packages/temporal/package.json +1 -1
- package/packages/temporal/src/component.ts +5 -6
- package/packages/temporal/src/index.ts +8 -6
- package/packages/temporal/src/location.ts +11 -11
- package/packages/temporal/src/projection.ts +19 -19
- package/packages/temporal/src/rational.ts +4 -4
- package/packages/temporal-markup/EDITING.md +183 -0
- package/packages/temporal-markup/README.md +31 -11
- package/packages/temporal-markup/package.json +1 -1
- package/packages/temporal-markup/src/index.ts +20 -25
- package/packages/temporal-markup/src/space.ts +10 -41
- package/packages/timeline/README.md +31 -0
- package/packages/{semantic-track → timeline}/package.json +1 -1
- package/packages/timeline/src/activation.ts +8 -0
- package/packages/timeline/src/component.ts +24 -0
- package/packages/timeline/src/identity.ts +60 -0
- package/packages/timeline/src/index.ts +6 -0
- package/packages/{semantic-track → timeline}/src/location.ts +20 -20
- package/packages/timeline/src/manifest.ts +39 -0
- package/packages/{semantic-track → timeline}/src/projection.ts +14 -14
- package/packages/timeline/src/types.ts +24 -0
- package/packages/timeline-author/README.md +68 -0
- package/packages/{speech-track → timeline-author}/package.json +6 -4
- package/packages/timeline-author/src/activation.ts +22 -0
- package/packages/{speech-track → timeline-author}/src/component.ts +15 -13
- package/packages/{speech-track → timeline-author}/src/fragment.ts +14 -23
- package/packages/timeline-author/src/index.ts +7 -0
- package/packages/timeline-author/src/manifest.ts +78 -0
- package/packages/timeline-author/src/program.ts +107 -0
- package/packages/timeline-author/src/surface.ts +46 -0
- package/packages/timeline-author/src/types.ts +6 -0
- package/packages/typography-track/README.md +4 -4
- package/packages/typography-track/package.json +1 -1
- package/packages/typography-track/src/component.ts +4 -4
- package/packages/typography-track/src/fragment.ts +4 -3
- package/packages/typography-track/src/manifest.ts +11 -9
- package/packages/typography-track/src/program.ts +15 -15
- package/packages/typography-track/src/surface.ts +17 -18
- package/packages/typography-track-studio/package.json +8 -3
- package/packages/typography-track-studio/src/index.ts +5 -1
- package/packages/video-cli/README.md +16 -4
- package/packages/video-cli/package.json +2 -1
- package/packages/video-cli/src/creation.ts +25 -9
- package/packages/video-cli/src/index.ts +1 -1
- package/packages/video-cli/src/studio-distribution.ts +2 -1
- package/packages/volcengine-matting/README.md +3 -3
- package/packages/whisperx/README.md +8 -1
- package/packages/workspace/src/index.ts +2 -0
- package/packages/workspace-fs-node/README.md +4 -1
- package/packages/workspace-fs-node/src/workspace.ts +3 -1
- package/services/whisperx/README.md +14 -0
- package/services/whisperx/pyproject.toml +2 -0
- package/services/whisperx/uv.lock +20 -20
- package/packages/provider-hyperframes-aws-lambda/README.md +0 -30
- package/packages/provider-hyperframes-aws-lambda/package.json +0 -30
- package/packages/provider-hyperframes-aws-lambda/src/activation.ts +0 -97
- package/packages/provider-hyperframes-aws-lambda/src/client.ts +0 -114
- package/packages/provider-hyperframes-aws-lambda/src/index.ts +0 -21
- package/packages/provider-hyperframes-aws-lambda/src/provider.ts +0 -522
- package/packages/provider-kie/README.md +0 -134
- package/packages/provider-kie/package.json +0 -43
- package/packages/provider-kie/src/activation.ts +0 -71
- package/packages/provider-kie/src/index.ts +0 -10
- package/packages/provider-kie/src/mapping.ts +0 -182
- package/packages/provider-kie/src/provider.ts +0 -657
- package/packages/provider-kie/src/routes.ts +0 -150
- package/packages/provider-xiaomi-mimo/README.md +0 -32
- package/packages/provider-xiaomi-mimo/src/activation.ts +0 -57
- package/packages/provider-xiaomi-mimo/src/index.ts +0 -5
- package/packages/provider-xiaomi-mimo/src/provider.ts +0 -214
- package/packages/runtime/src/environment.ts +0 -6
- package/packages/semantic-track/README.md +0 -21
- package/packages/semantic-track/src/activation.ts +0 -8
- package/packages/semantic-track/src/component.ts +0 -24
- package/packages/semantic-track/src/identity.ts +0 -58
- package/packages/semantic-track/src/index.ts +0 -6
- package/packages/semantic-track/src/manifest.ts +0 -38
- package/packages/semantic-track/src/types.ts +0 -26
- package/packages/speech-track/README.md +0 -51
- package/packages/speech-track/src/activation.ts +0 -19
- package/packages/speech-track/src/index.ts +0 -7
- package/packages/speech-track/src/manifest.ts +0 -73
- package/packages/speech-track/src/program.ts +0 -64
- package/packages/speech-track/src/surface.ts +0 -35
- package/packages/speech-track/src/types.ts +0 -6
- package/packages/speech-track-studio/README.md +0 -3
- package/packages/speech-track-studio/package.json +0 -14
- package/packages/speech-track-studio/src/activation.ts +0 -7
- package/packages/speech-track-studio/src/index.ts +0 -40
- /package/packages/{cli → project-context-node}/src/project-context.ts +0 -0
- /package/packages/{speech-track → timeline-author}/preview/Track.png +0 -0
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
<p align="center">
|
|
19
19
|
<a href="https://github.com/hypit-ai/hypit/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/hypit-ai/hypit?style=flat-square&color=FFD700&logo=github&logoColor=white&label=Stars"></a>
|
|
20
|
-
<a href="https://github.com/hypit-ai/hypit/blob/main/package.json"><img alt="Node 22.
|
|
20
|
+
<a href="https://github.com/hypit-ai/hypit/blob/main/package.json"><img alt="Node 22.15+" src="https://img.shields.io/badge/Node.js-22.15%2B-5FA04E?style=flat-square&logo=nodedotjs&logoColor=white"></a>
|
|
21
21
|
<a href="https://github.com/hypit-ai/hypit/blob/main/package.json"><img alt="pnpm 10.33" src="https://img.shields.io/badge/pnpm-10.33-F69220?style=flat-square&logo=pnpm&logoColor=white"></a>
|
|
22
22
|
<a href="https://github.com/hypit-ai/hypit/blob/main/package.json"><img alt="TypeScript 5.9" src="https://img.shields.io/badge/TypeScript-5.9-3178C6?style=flat-square&logo=typescript&logoColor=white"></a>
|
|
23
23
|
<a href="https://github.com/hypit-ai/hypit/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache--2.0%20with%20conditions-E3B341?style=flat-square"></a>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<p align="center">
|
|
27
27
|
<a href="https://hypit.ai"><img alt="Visit our website" src="https://img.shields.io/badge/Visit%20our%20website-DF3C68?style=for-the-badge&logo=data:image/svg%2Bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjI1Ny4wMyAyODcuNDggNDg2Ljk0IDQyNi4wNCI%2BPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTczMy4wMDEsNDYyLjU5MmMtMTEuNDQtMTYuNTEtMzAuMjg1LTI2LjM0NC01MC4zNTMtMjYuMzQ0aC0xNzguNzA1Yy0yMy40OTMsMC00Ny42NzUsMTQuMjM0LTU2LjYyOCwzNS45NjdsLTU0LjA2NSwxNDUuMDUzYy04LjgsMjEuNTIzLTguNjg2LDQ2LjAxMSw0LjI0Nyw2NS4zNTIsMTIuOTksMTkuNDE4LDM3LjAzOCwzMC44OTcsNjAuMzk3LDMwLjg5N2gxNjQuNDljMjcuMDEzLDAsNTEuNDYzLTE2Ljk4OSw2MC45MTQtNDIuMjhsNTYuODAxLTE1Mi4yMjdjNy4wMjEtMTguODI1LDQuMzgxLTM5LjkwOC03LjA1OS01Ni4zOTl2LS4wMzhoLS4wMzh2LjAxOVpNNjMzLjk3OCw2NTIuODEzYy0xLjc5OCw0LjgyMS02LjQ4NSw4LjA3My0xMS42MzIsOC4wNzNoLTE1OS42NWMtOC4zMDMsMC0xMi43OC01LjM1Ny0xNC4zMjktNy42MzNzLTQuNzgzLTguNDc1LTEuNjA3LTE2LjE0N2w0NS42MjgtMTI2LjcyNWM0LjM4MS0xMi4xNDgsMTUuNDU4LTIwLjc5NiwyOC4zNTItMjEuNDY1LjYzMS0uMDM4LDEuMjgyLS4wMzgsMS45NTEtLjAzOGgxNDQuMjY5czIzLjkzMywyLjcxNywxNy43NzMsMjcuOTUxbC01MC43NTUsMTM2LjAwNGgwdi0uMDE5Wk0zNTYuMjUsNjIzLjEyMnMtNDIuNzc3LTIyLjE3My0zMy43ODYtNjIuNDgzbDU2Ljc2Mi0xNTcuMzE2YzkuMTQ1LTI1LjM0OSwzMy4yMTItNDIuMjYxLDYwLjE2OC00Mi4yNjFoMTgxLjc4NWMxMS45NTcsMCwyMy4xNDksNS43OTcsMzAuMDU1LDE1LjU3M2wyNi41NzMsMzcuNjVoLTIxNi4xMjVjLTE2LjY0NCwwLTMxLjU0NywxMC4zNS0zNy4zNDQsMjUuOTYxbC02OC4wODgsMTgyLjg5NWgwdi0uMDE5Wk0yOTIuMDY0LDU0OS41NDNzLTQyLjc5Ny0yMi4xNzMtMzMuNzg2LTYyLjQ4M2w1Ni43NjItMTU3LjMxNmM5LjE2NC0yNS4zNDksMzMuMjMxLTQyLjI2MSw2MC4xNjgtNDIuMjYxaDE3Mi4wMDljMTEuOTU3LDAsMjMuMTQ5LDUuNzk3LDMwLjA1NSwxNS41NzNsMjYuNTczLDM3LjY1aC0yMDYuMzExYy0xNi42NDQsMC0zMS41NDcsMTAuMzUtMzcuMzQ0LDI1Ljk2MWwtNjguMDg4LDE4Mi44OTVoLS4wMzh2LS4wMTlaIi8%2BPC9zdmc%2B"></a>
|
|
28
28
|
<a href="https://discord.gg/85hnyQnxpn"><img alt="Join our Discord" src="https://img.shields.io/badge/Join%20our%20Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white"></a>
|
|
29
|
-
<a href="https://t.me/
|
|
29
|
+
<a href="https://t.me/hypitai"><img alt="Join our Telegram" src="https://img.shields.io/badge/Join%20our%20Telegram-26A5E4?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
30
30
|
<a href="https://x.com/hypitai"><img alt="Follow @hypitai on X" src="https://img.shields.io/badge/Follow%20%40hypitai-000000?style=for-the-badge&logo=x&logoColor=white"></a>
|
|
31
31
|
</p>
|
|
32
32
|
|
|
@@ -46,7 +46,7 @@ Hypit gives AI agents (Claude Code, Codex...) a language and system to create vi
|
|
|
46
46
|
|
|
47
47
|
## Install once
|
|
48
48
|
|
|
49
|
-
Install the Hypit CLI (Node.js 22.
|
|
49
|
+
Install the Hypit CLI (Node.js 22.15 or newer):
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
52
|
npm install -g @hypit/hypit
|
|
@@ -140,3 +140,5 @@ commands and the repository layout.
|
|
|
140
140
|
## License
|
|
141
141
|
|
|
142
142
|
Hypit is released under the [Hypit Open Source License](https://github.com/hypit-ai/hypit/blob/main/LICENSE). The videos and other outputs you create belong to you; third-party models and services may have their own terms.
|
|
143
|
+
|
|
144
|
+
Partnership Community: [LINUX DO](https://linux.do/)
|
package/dist/public/caption.d.ts
CHANGED
|
@@ -240,12 +240,14 @@ type SemanticAnchor = {
|
|
|
240
240
|
readonly segmentId: string;
|
|
241
241
|
readonly tokenId?: string;
|
|
242
242
|
};
|
|
243
|
+
/** Complete authored content; local views are projections of this value. */
|
|
243
244
|
type Narrative = {
|
|
244
245
|
/** Author-visible `<script id>`; every exported semantic view retains it. */
|
|
245
246
|
readonly id: string;
|
|
246
247
|
readonly segments: readonly NarrativeSegment[];
|
|
247
248
|
readonly tokens: readonly NarrativeToken[];
|
|
248
249
|
readonly turns: readonly NarrativeTurn[];
|
|
250
|
+
readonly caption: CaptionDocument;
|
|
249
251
|
readonly selections: readonly NarrativeSelection[];
|
|
250
252
|
readonly moments: readonly NarrativeMoment[];
|
|
251
253
|
readonly semanticIndex: {
|
|
@@ -259,13 +261,30 @@ type CaptionUnitSubset = {
|
|
|
259
261
|
readonly unitIds: readonly string[];
|
|
260
262
|
};
|
|
261
263
|
/** Project a semantic Selection to complete authored N:M Caption units. */
|
|
262
|
-
declare function captionUnitsForSelection(
|
|
264
|
+
declare function captionUnitsForSelection(narrative: Narrative, selection: NarrativeSelection): CaptionUnitSubset;
|
|
263
265
|
declare function captionUnitsForRole(document: CaptionDocument, role: string): CaptionUnitSubset;
|
|
264
266
|
declare function captionWordsForAttribute(document: CaptionDocument, attribute: string): readonly string[];
|
|
265
267
|
declare function assertCaptionUnitSubset(value: CaptionUnitSubset, document: CaptionDocument): void;
|
|
266
268
|
|
|
267
269
|
declare const captionComponent: {
|
|
268
|
-
producers: {
|
|
270
|
+
producers: ({
|
|
271
|
+
producer: {
|
|
272
|
+
module: {
|
|
273
|
+
readonly name: "@hypit/caption";
|
|
274
|
+
readonly version: "1";
|
|
275
|
+
};
|
|
276
|
+
name: string;
|
|
277
|
+
};
|
|
278
|
+
handler: ({ inputs }: ProducerHandlerContext) => {
|
|
279
|
+
outputs: {
|
|
280
|
+
program: {
|
|
281
|
+
kind: "inline";
|
|
282
|
+
value: CanonicalValue;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
needs: {};
|
|
286
|
+
};
|
|
287
|
+
} | {
|
|
269
288
|
producer: {
|
|
270
289
|
module: {
|
|
271
290
|
readonly name: "@hypit/caption";
|
|
@@ -282,7 +301,7 @@ declare const captionComponent: {
|
|
|
282
301
|
};
|
|
283
302
|
needs: {};
|
|
284
303
|
};
|
|
285
|
-
}[];
|
|
304
|
+
})[];
|
|
286
305
|
validators: {
|
|
287
306
|
type: {
|
|
288
307
|
module: {
|
|
@@ -381,14 +400,26 @@ type AuthorSourceIdentity = {
|
|
|
381
400
|
type Awaitable<T> = T | Promise<T>;
|
|
382
401
|
|
|
383
402
|
declare const captionTimingFragment: GraphFragment;
|
|
384
|
-
/** Kept as the fragment's public name for callers that only know the old export. */
|
|
385
|
-
declare const plannedCaptionTimingFragment: GraphFragment;
|
|
386
403
|
|
|
387
404
|
declare const captionModuleRef: {
|
|
388
405
|
readonly name: "@hypit/caption";
|
|
389
406
|
readonly version: "1";
|
|
390
407
|
};
|
|
391
408
|
declare const captionProducers: {
|
|
409
|
+
create: {
|
|
410
|
+
module: {
|
|
411
|
+
readonly name: "@hypit/caption";
|
|
412
|
+
readonly version: "1";
|
|
413
|
+
};
|
|
414
|
+
name: string;
|
|
415
|
+
};
|
|
416
|
+
append: {
|
|
417
|
+
module: {
|
|
418
|
+
readonly name: "@hypit/caption";
|
|
419
|
+
readonly version: "1";
|
|
420
|
+
};
|
|
421
|
+
name: string;
|
|
422
|
+
};
|
|
392
423
|
temporalizeDocument: {
|
|
393
424
|
module: {
|
|
394
425
|
readonly name: "@hypit/caption";
|
|
@@ -398,6 +429,20 @@ declare const captionProducers: {
|
|
|
398
429
|
};
|
|
399
430
|
};
|
|
400
431
|
declare const captionTypes: {
|
|
432
|
+
header: {
|
|
433
|
+
module: {
|
|
434
|
+
readonly name: "@hypit/caption";
|
|
435
|
+
readonly version: "1";
|
|
436
|
+
};
|
|
437
|
+
name: string;
|
|
438
|
+
};
|
|
439
|
+
filter: {
|
|
440
|
+
module: {
|
|
441
|
+
readonly name: "@hypit/caption";
|
|
442
|
+
readonly version: "1";
|
|
443
|
+
};
|
|
444
|
+
name: string;
|
|
445
|
+
};
|
|
401
446
|
style: {
|
|
402
447
|
module: {
|
|
403
448
|
readonly name: "@hypit/caption";
|
|
@@ -424,8 +469,8 @@ declare const captionStyleSchema: ValueSchema;
|
|
|
424
469
|
declare const captionProgramSchema: ValueSchema;
|
|
425
470
|
declare const timedCaptionProjectionSchema: ValueSchema;
|
|
426
471
|
declare const captionMarkupSurfaces: readonly [{
|
|
427
|
-
readonly name: "
|
|
428
|
-
readonly tag: "
|
|
472
|
+
readonly name: "hidden";
|
|
473
|
+
readonly tag: "Hidden";
|
|
429
474
|
readonly mode: "structured";
|
|
430
475
|
readonly outputs: readonly [{
|
|
431
476
|
module: {
|
|
@@ -435,113 +480,15 @@ declare const captionMarkupSurfaces: readonly [{
|
|
|
435
480
|
name: string;
|
|
436
481
|
}];
|
|
437
482
|
readonly vocabulary: {
|
|
438
|
-
readonly summary: "
|
|
483
|
+
readonly summary: "Declares a Caption Style that contributes no rendering when selected by Use.";
|
|
439
484
|
readonly attributes: readonly [{
|
|
440
485
|
readonly name: "id";
|
|
441
486
|
readonly kind: "identifier";
|
|
442
487
|
readonly required: true;
|
|
443
|
-
readonly summary: "Names the
|
|
444
|
-
}, {
|
|
445
|
-
readonly name: "document";
|
|
446
|
-
readonly kind: "reference";
|
|
447
|
-
readonly required: true;
|
|
448
|
-
readonly accepts: readonly [{
|
|
449
|
-
module: {
|
|
450
|
-
readonly name: "@hypit/narrative";
|
|
451
|
-
readonly version: "1";
|
|
452
|
-
};
|
|
453
|
-
name: string;
|
|
454
|
-
}];
|
|
455
|
-
readonly summary: "The complete Script-owned CaptionDocument.";
|
|
456
|
-
}, {
|
|
457
|
-
readonly name: "narrative";
|
|
458
|
-
readonly kind: "reference";
|
|
459
|
-
readonly required: true;
|
|
460
|
-
readonly accepts: readonly [{
|
|
461
|
-
module: {
|
|
462
|
-
readonly name: "@hypit/narrative";
|
|
463
|
-
readonly version: "1";
|
|
464
|
-
};
|
|
465
|
-
name: string;
|
|
466
|
-
}];
|
|
467
|
-
readonly summary: "The semantic anchor universe used to project selections.";
|
|
468
|
-
}, {
|
|
469
|
-
readonly name: "default";
|
|
470
|
-
readonly kind: "reference";
|
|
471
|
-
readonly required: true;
|
|
472
|
-
readonly accepts: readonly [{
|
|
473
|
-
module: {
|
|
474
|
-
readonly name: "@hypit/caption";
|
|
475
|
-
readonly version: "1";
|
|
476
|
-
};
|
|
477
|
-
name: string;
|
|
478
|
-
}];
|
|
479
|
-
readonly summary: "The default Style.";
|
|
480
|
-
}];
|
|
481
|
-
readonly children: readonly [{
|
|
482
|
-
readonly tag: "Use";
|
|
483
|
-
readonly cardinality: "many";
|
|
484
|
-
readonly summary: "Applies a complete Style by Role or semantic Selection, or supplies a word-attribute Style for a supporting family.";
|
|
485
|
-
readonly attributes: readonly [{
|
|
486
|
-
readonly name: "style";
|
|
487
|
-
readonly kind: "reference";
|
|
488
|
-
readonly required: true;
|
|
489
|
-
readonly accepts: readonly [{
|
|
490
|
-
module: {
|
|
491
|
-
readonly name: "@hypit/caption";
|
|
492
|
-
readonly version: "1";
|
|
493
|
-
};
|
|
494
|
-
name: string;
|
|
495
|
-
}];
|
|
496
|
-
readonly summary: "The Style to apply.";
|
|
497
|
-
}, {
|
|
498
|
-
readonly name: "role";
|
|
499
|
-
readonly kind: "literal";
|
|
500
|
-
readonly required: false;
|
|
501
|
-
readonly summary: "Selects all Caption units authored for this Role.";
|
|
502
|
-
}, {
|
|
503
|
-
readonly name: "selection";
|
|
504
|
-
readonly kind: "reference";
|
|
505
|
-
readonly required: false;
|
|
506
|
-
readonly accepts: readonly [{
|
|
507
|
-
module: {
|
|
508
|
-
readonly name: "@hypit/narrative";
|
|
509
|
-
readonly version: "1";
|
|
510
|
-
};
|
|
511
|
-
name: string;
|
|
512
|
-
}];
|
|
513
|
-
readonly summary: "Selects complete Caption units contained by a semantic Selection.";
|
|
514
|
-
}, {
|
|
515
|
-
readonly name: "attribute";
|
|
516
|
-
readonly kind: "literal";
|
|
517
|
-
readonly required: false;
|
|
518
|
-
readonly summary: "Selects display words carrying this Script-native attribute.";
|
|
519
|
-
}];
|
|
520
|
-
}, {
|
|
521
|
-
readonly tag: "Mute";
|
|
522
|
-
readonly cardinality: "many";
|
|
523
|
-
readonly summary: "Hides selected complete Caption units.";
|
|
524
|
-
readonly attributes: readonly [{
|
|
525
|
-
readonly name: "role";
|
|
526
|
-
readonly kind: "literal";
|
|
527
|
-
readonly required: false;
|
|
528
|
-
readonly summary: "Selects all Caption units authored for this Role.";
|
|
529
|
-
}, {
|
|
530
|
-
readonly name: "selection";
|
|
531
|
-
readonly kind: "reference";
|
|
532
|
-
readonly required: false;
|
|
533
|
-
readonly accepts: readonly [{
|
|
534
|
-
module: {
|
|
535
|
-
readonly name: "@hypit/narrative";
|
|
536
|
-
readonly version: "1";
|
|
537
|
-
};
|
|
538
|
-
name: string;
|
|
539
|
-
}];
|
|
540
|
-
readonly summary: "Selects complete Caption units contained by a semantic Selection.";
|
|
541
|
-
}];
|
|
488
|
+
readonly summary: "Names the hidden Style.";
|
|
542
489
|
}];
|
|
543
|
-
readonly example: "<caption:
|
|
544
|
-
readonly notes: readonly ["
|
|
490
|
+
readonly example: "<caption:Hidden id=\"hidden\"/>";
|
|
491
|
+
readonly notes: readonly ["Hidden is a complete Style choice; it uses ordinary Use precedence and changes no speech or semantic anchors."];
|
|
545
492
|
};
|
|
546
493
|
}];
|
|
547
494
|
declare const captionManifest: ModuleManifest;
|
|
@@ -608,75 +555,17 @@ type SurfaceResolvedReference = {
|
|
|
608
555
|
};
|
|
609
556
|
type StructuredSurfaceHandler = (input: StructuredSurfaceInput) => Awaitable<SurfaceDecodeOutput>;
|
|
610
557
|
|
|
611
|
-
declare const
|
|
558
|
+
declare const decodeHiddenCaptionStyleSurface: StructuredSurfaceHandler;
|
|
612
559
|
|
|
613
|
-
type
|
|
560
|
+
type ProgramSpace = {
|
|
561
|
+
/** Author-visible identity of this film time axis. */
|
|
614
562
|
readonly id: string;
|
|
615
|
-
readonly
|
|
616
|
-
|
|
617
|
-
readonly
|
|
563
|
+
readonly durationSec: number;
|
|
564
|
+
readonly frameRate: {
|
|
565
|
+
readonly numerator: number;
|
|
566
|
+
readonly denominator: number;
|
|
618
567
|
};
|
|
619
568
|
};
|
|
620
|
-
type CaptionStyleApplication = {
|
|
621
|
-
readonly id: string;
|
|
622
|
-
readonly unitIds: readonly string[];
|
|
623
|
-
readonly style: CaptionStyleIntent;
|
|
624
|
-
};
|
|
625
|
-
type CaptionWordStyleApplication = {
|
|
626
|
-
readonly id: string;
|
|
627
|
-
readonly attribute: string;
|
|
628
|
-
readonly wordIds: readonly string[];
|
|
629
|
-
readonly style: CaptionStyleIntent;
|
|
630
|
-
};
|
|
631
|
-
type CaptionMuteApplication = {
|
|
632
|
-
readonly id: string;
|
|
633
|
-
readonly unitIds: readonly string[];
|
|
634
|
-
};
|
|
635
|
-
type CaptionProgramRun = {
|
|
636
|
-
readonly id: string;
|
|
637
|
-
readonly styleId: string;
|
|
638
|
-
readonly unitIds: readonly string[];
|
|
639
|
-
};
|
|
640
|
-
type CaptionProgramWordRun = {
|
|
641
|
-
readonly id: string;
|
|
642
|
-
readonly styleId: string;
|
|
643
|
-
readonly wordIds: readonly string[];
|
|
644
|
-
};
|
|
645
|
-
type CaptionProgram = {
|
|
646
|
-
readonly id: string;
|
|
647
|
-
readonly documentId: string;
|
|
648
|
-
readonly styles: readonly CaptionStyleIntent[];
|
|
649
|
-
readonly runs: readonly CaptionProgramRun[];
|
|
650
|
-
/** Optional local word styles resolved from Script-native word attributes. */
|
|
651
|
-
readonly wordRuns: readonly CaptionProgramWordRun[];
|
|
652
|
-
readonly mutedUnitIds: readonly string[];
|
|
653
|
-
};
|
|
654
|
-
type TimedCaptionUnit = {
|
|
655
|
-
readonly unitId: string;
|
|
656
|
-
readonly startFrame: number;
|
|
657
|
-
readonly endFrameExclusive: number;
|
|
658
|
-
};
|
|
659
|
-
type TimedCaptionCue = {
|
|
660
|
-
readonly id: string;
|
|
661
|
-
readonly styleId: string;
|
|
662
|
-
readonly startFrame: number;
|
|
663
|
-
readonly endFrameExclusive: number;
|
|
664
|
-
readonly units: readonly TimedCaptionUnit[];
|
|
665
|
-
};
|
|
666
|
-
type TimedCaptionProjection = {
|
|
667
|
-
/** Semantic ProgramSpace from which every unit frame was measured. */
|
|
668
|
-
readonly spaceId: string;
|
|
669
|
-
readonly narrativeId: string;
|
|
670
|
-
readonly documentId: string;
|
|
671
|
-
readonly cues: readonly TimedCaptionCue[];
|
|
672
|
-
};
|
|
673
|
-
|
|
674
|
-
declare function sealCaptionStyle(value: CaptionStyleIntent): CaptionStyleIntent;
|
|
675
|
-
declare function assertCaptionStyle(value: CaptionStyleIntent): void;
|
|
676
|
-
declare function sealCaptionProgram(value: CaptionProgram): CaptionProgram;
|
|
677
|
-
declare function assertCaptionProgram(value: CaptionProgram): void;
|
|
678
|
-
declare function assertCaptionProgramForDocument(value: CaptionProgram, document: CaptionDocument): void;
|
|
679
|
-
declare function resolveCaptionProgram(document: CaptionDocument, narrative: Narrative, id: string, defaultStyle: CaptionStyleIntent, applications: readonly CaptionStyleApplication[], mutes?: readonly CaptionMuteApplication[], wordApplications?: readonly CaptionWordStyleApplication[]): CaptionProgram;
|
|
680
569
|
|
|
681
570
|
type MediaRational = {
|
|
682
571
|
readonly numerator: number;
|
|
@@ -730,22 +619,156 @@ type SemanticTake = {
|
|
|
730
619
|
}[];
|
|
731
620
|
};
|
|
732
621
|
|
|
733
|
-
type
|
|
622
|
+
type TimelineItem = {
|
|
734
623
|
readonly take: SemanticTake;
|
|
624
|
+
readonly startFrame: number;
|
|
625
|
+
};
|
|
626
|
+
/** One complete film time range, with prepared material placed where it belongs. */
|
|
627
|
+
type Timeline = ProgramSpace & {
|
|
628
|
+
readonly narrativeId?: string;
|
|
629
|
+
readonly items: readonly TimelineItem[];
|
|
630
|
+
};
|
|
631
|
+
|
|
632
|
+
/** Exact author duration. Decimal source spelling is reduced before reaching this value. */
|
|
633
|
+
type TemporalDuration = {
|
|
634
|
+
readonly unit: "frames";
|
|
635
|
+
readonly value: number;
|
|
636
|
+
} | {
|
|
637
|
+
readonly unit: "milliseconds";
|
|
638
|
+
readonly value: number;
|
|
639
|
+
} | {
|
|
640
|
+
readonly unit: "seconds";
|
|
641
|
+
readonly numerator: number;
|
|
642
|
+
readonly denominator: number;
|
|
643
|
+
};
|
|
644
|
+
/** A single projected boundary before it is resolved into ProgramSpace. */
|
|
645
|
+
type TemporalInstantExpression = {
|
|
646
|
+
readonly ref: "program.start";
|
|
647
|
+
readonly offset?: TemporalDuration;
|
|
648
|
+
} | {
|
|
649
|
+
readonly ref: "program.end";
|
|
650
|
+
readonly offset?: TemporalDuration;
|
|
651
|
+
} | {
|
|
652
|
+
readonly ref: "selection.start";
|
|
653
|
+
readonly offset?: TemporalDuration;
|
|
654
|
+
} | {
|
|
655
|
+
readonly ref: "selection.end";
|
|
656
|
+
readonly offset?: TemporalDuration;
|
|
657
|
+
} | {
|
|
658
|
+
readonly ref: "segment.start";
|
|
659
|
+
readonly offset?: TemporalDuration;
|
|
660
|
+
} | {
|
|
661
|
+
readonly ref: "segment.end";
|
|
662
|
+
readonly offset?: TemporalDuration;
|
|
663
|
+
} | {
|
|
664
|
+
readonly ref: "moment.cue";
|
|
665
|
+
readonly offset?: TemporalDuration;
|
|
666
|
+
} | {
|
|
667
|
+
readonly ref: "absolute";
|
|
668
|
+
readonly at: TemporalDuration;
|
|
669
|
+
readonly offset?: TemporalDuration;
|
|
670
|
+
};
|
|
671
|
+
/** Runtime dependency used to resolve an Instant. This is not its authoring authority. */
|
|
672
|
+
type TemporalSource = {
|
|
673
|
+
readonly spaceId: string;
|
|
674
|
+
/** Present when the boundary originates in a Script. */
|
|
675
|
+
readonly narrativeId?: string;
|
|
676
|
+
readonly kind: "program" | "selection" | "segment" | "moment";
|
|
677
|
+
readonly id: string;
|
|
735
678
|
};
|
|
736
679
|
/**
|
|
737
|
-
* The
|
|
738
|
-
*
|
|
680
|
+
* The author-owned inverse of one projected Instant. Runtime dependencies and
|
|
681
|
+
* author authority are deliberately separate: an expression may read an
|
|
682
|
+
* anchor while remaining writable only at its author parameter.
|
|
739
683
|
*/
|
|
740
|
-
type
|
|
684
|
+
type TemporalInstantAuthority = {
|
|
685
|
+
readonly kind: "semantic";
|
|
686
|
+
readonly boundary: "start" | "end" | "cue";
|
|
687
|
+
} | {
|
|
688
|
+
readonly kind: "parameter";
|
|
689
|
+
readonly binding: string;
|
|
690
|
+
readonly relation: "direct" | "after-start" | "before-end";
|
|
691
|
+
} | {
|
|
692
|
+
readonly kind: "fixed";
|
|
693
|
+
};
|
|
694
|
+
type FrameSpan$1 = {
|
|
695
|
+
readonly startFrame: number;
|
|
696
|
+
readonly endFrameExclusive: number;
|
|
697
|
+
};
|
|
698
|
+
type ProjectedInstant = {
|
|
741
699
|
readonly id: string;
|
|
700
|
+
readonly subjectId: string;
|
|
701
|
+
readonly source: TemporalSource;
|
|
702
|
+
readonly projection: TemporalInstantExpression;
|
|
703
|
+
readonly authority: TemporalInstantAuthority;
|
|
704
|
+
readonly frame: number;
|
|
705
|
+
};
|
|
706
|
+
type ProjectedWindow = {
|
|
707
|
+
readonly id: string;
|
|
708
|
+
readonly subjectId: string;
|
|
709
|
+
readonly start: ProjectedInstant;
|
|
710
|
+
readonly end: ProjectedInstant;
|
|
711
|
+
readonly span: FrameSpan$1;
|
|
712
|
+
};
|
|
713
|
+
/** Public projection protocol composed from two independently traced Instants. */
|
|
714
|
+
type TemporalWindow = ProjectedWindow;
|
|
715
|
+
|
|
716
|
+
type CaptionStyleIntent = {
|
|
717
|
+
readonly id: string;
|
|
718
|
+
/** null selects no rendering; later Uses can select a visible Style again. */
|
|
719
|
+
readonly rendering: {
|
|
720
|
+
readonly family: string;
|
|
721
|
+
readonly parameters: CanonicalValue;
|
|
722
|
+
} | null;
|
|
723
|
+
};
|
|
724
|
+
/** Ordered, resolved Uses owned by a Caption Track, not a separate author element. */
|
|
725
|
+
type CaptionUse = {
|
|
726
|
+
readonly window: TemporalWindow;
|
|
727
|
+
readonly styleId: string;
|
|
728
|
+
readonly role?: string;
|
|
729
|
+
};
|
|
730
|
+
type CaptionProgram = {
|
|
731
|
+
readonly id: string;
|
|
732
|
+
readonly documentId: string;
|
|
733
|
+
readonly styles: readonly CaptionStyleIntent[];
|
|
734
|
+
readonly uses: readonly CaptionUse[];
|
|
735
|
+
};
|
|
736
|
+
type TimedCaptionUnit = {
|
|
737
|
+
readonly unitId: string;
|
|
738
|
+
readonly startFrame: number;
|
|
739
|
+
readonly endFrameExclusive: number;
|
|
740
|
+
};
|
|
741
|
+
type TimedCaptionCue = {
|
|
742
|
+
readonly id: string;
|
|
743
|
+
readonly startFrame: number;
|
|
744
|
+
readonly endFrameExclusive: number;
|
|
745
|
+
readonly units: readonly TimedCaptionUnit[];
|
|
746
|
+
};
|
|
747
|
+
type TimedCaptionProjection = {
|
|
748
|
+
/** Semantic Timeline from which every unit frame was measured. */
|
|
749
|
+
readonly spaceId: string;
|
|
742
750
|
readonly narrativeId: string;
|
|
743
|
-
readonly
|
|
751
|
+
readonly documentId: string;
|
|
752
|
+
readonly cues: readonly TimedCaptionCue[];
|
|
744
753
|
};
|
|
745
754
|
|
|
746
|
-
declare function
|
|
747
|
-
declare function
|
|
755
|
+
declare function sealCaptionStyle(value: CaptionStyleIntent): CaptionStyleIntent;
|
|
756
|
+
declare function assertCaptionStyle(value: CaptionStyleIntent): void;
|
|
757
|
+
declare function sealCaptionProgram(value: CaptionProgram): CaptionProgram;
|
|
758
|
+
declare function assertCaptionProgram(value: CaptionProgram): void;
|
|
759
|
+
declare function assertCaptionProgramForDocument(value: CaptionProgram, document: CaptionDocument): void;
|
|
760
|
+
declare function appendCaptionUse(program: CaptionProgram, window: TemporalWindow, style: CaptionStyleIntent, role?: string): CaptionProgram;
|
|
761
|
+
|
|
762
|
+
declare function temporalizeCaptionDocument(document: CaptionDocument, semantic: Timeline): TimedCaptionProjection;
|
|
748
763
|
declare function assertTimedCaptionProjection(projection: TimedCaptionProjection): void;
|
|
749
764
|
|
|
750
|
-
|
|
751
|
-
|
|
765
|
+
type FrameSpan = {
|
|
766
|
+
readonly startFrame: number;
|
|
767
|
+
readonly endFrameExclusive: number;
|
|
768
|
+
};
|
|
769
|
+
|
|
770
|
+
/** Later Uses replace this Cue's presentation inside their windows, including Hidden. */
|
|
771
|
+
declare function captionUseVisibility(program: CaptionProgram, index: number, role: string | undefined, envelope: FrameSpan): FrameSpan[];
|
|
772
|
+
|
|
773
|
+
export { CaptionTimingError, appendCaptionUse, assertCaptionDocument, assertCaptionProgram, assertCaptionProgramForDocument, assertCaptionStyle, assertCaptionUnitSubset, assertTimedCaptionProjection, captionComponent, captionManifest, captionMarkupSurfaces, captionModuleRef, captionProducers, captionProgramSchema, captionStyleSchema, captionTimingFragment, captionTypes, captionUnitsForRole, captionUnitsForSelection, captionUseVisibility, captionWordsForAttribute, decodeHiddenCaptionStyleSurface, sealCaptionProgram, sealCaptionStyle, temporalizeCaptionDocument, timedCaptionProjectionSchema };
|
|
774
|
+
export type { CaptionProgram, CaptionStyleIntent, CaptionUnitSubset, CaptionUse, TimedCaptionCue, TimedCaptionProjection, TimedCaptionUnit };
|
|
@@ -215,9 +215,29 @@ declare const visualSurfaceSchema: ValueSchema;
|
|
|
215
215
|
declare const visualProgramSchema: ValueSchema;
|
|
216
216
|
declare const visualElementSchema: ValueSchema;
|
|
217
217
|
declare const visualTrackSchema: ValueSchema;
|
|
218
|
+
declare const audioSampleSpanSchema: ValueSchema;
|
|
219
|
+
declare const audioGainEnvelopeSchema: ValueSchema;
|
|
218
220
|
declare const audioTrackSchema: ValueSchema;
|
|
219
221
|
declare const compositionSchema: ValueSchema;
|
|
220
222
|
|
|
223
|
+
/** Gain and audibility are measured on the complete 48 kHz program clock. */
|
|
224
|
+
type AudioSampleSpan = {
|
|
225
|
+
readonly startSample: number;
|
|
226
|
+
readonly endSampleExclusive: number;
|
|
227
|
+
};
|
|
228
|
+
type AudioGainPoint = {
|
|
229
|
+
readonly sample: number;
|
|
230
|
+
readonly gain: number;
|
|
231
|
+
};
|
|
232
|
+
type AudioPresentation = {
|
|
233
|
+
/** Linear interpolation; hold the first/last gain outside the supplied points. */
|
|
234
|
+
readonly gainEnvelope?: readonly AudioGainPoint[];
|
|
235
|
+
/** Half-open audible regions; omission means the complete target, [] means silence. */
|
|
236
|
+
readonly audibility?: readonly AudioSampleSpan[];
|
|
237
|
+
};
|
|
238
|
+
declare function assertAudioPresentation(value: AudioPresentation, target: AudioSampleSpan, totalSamples?: number): void;
|
|
239
|
+
declare function audioEnvelopeGainAt(points: readonly AudioGainPoint[] | undefined, sample: number): number;
|
|
240
|
+
|
|
221
241
|
/** Structural style vocabulary. Renderer programs own their richer layout and code formats. */
|
|
222
242
|
declare const VISUAL_IR_V1: "hypit.visual-ir@1";
|
|
223
243
|
|
|
@@ -598,6 +618,8 @@ type VisualPresent = {
|
|
|
598
618
|
/** Optional domain entity implemented by this renderer Present. */
|
|
599
619
|
readonly subjectId?: string;
|
|
600
620
|
readonly span: FrameSpan;
|
|
621
|
+
/** Optional visible subranges in program frames; span remains the animation and sampling origin. */
|
|
622
|
+
readonly visibility?: readonly FrameSpan[];
|
|
601
623
|
/** Absolute paint position for this Present, not for its authoring Track. */
|
|
602
624
|
readonly stacking: {
|
|
603
625
|
readonly order: number;
|
|
@@ -615,7 +637,7 @@ type VisualTrack = {
|
|
|
615
637
|
/** Author-owned contributions that Composition may interleave by absolute z. */
|
|
616
638
|
readonly presents: readonly VisualPresent[];
|
|
617
639
|
};
|
|
618
|
-
type AudioClip = {
|
|
640
|
+
type AudioClip = AudioPresentation & {
|
|
619
641
|
readonly id: string;
|
|
620
642
|
/** Optional domain entity implemented by this renderer Clip. */
|
|
621
643
|
readonly subjectId?: string;
|
|
@@ -668,5 +690,5 @@ declare function assertAudioTrackIdentity(track: AudioTrack, programSpace?: Prog
|
|
|
668
690
|
declare function sealComposition(value: Composition): Composition;
|
|
669
691
|
declare function assertCompositionIdentity(composition: Composition, programSpace?: ProgramSpace): void;
|
|
670
692
|
|
|
671
|
-
export { animatableLocalStyles, assertAudioTrackIdentity, assertCompositionIdentity, assertVisualTrackIdentity, audioTrackSchema, compositionComponent, compositionDependency, compositionManifest, compositionModuleRef, compositionSchema, compositionTypes, sealAudioTrack, sealComposition, sealVisualTrack, visualBoxSchema, visualColorPaintSchema, visualElementSchema, visualImageSchema, visualMaskSchema, visualPathCommandSchema, visualProgramSchema, visualSurfaceSchema, visualTextDocumentSchema, visualTextFlowSchema, visualTextPaintSchema, visualTextSchema, visualTextSequenceSchema, visualTextTypographySchema, visualTimedSamplingSchema, visualTrackSchema, visualVideoSchema };
|
|
672
|
-
export type { AudioClip, AudioTrack, Composition, FrameSpan, Track, VisualAnimation, VisualAttribute, VisualBoxElement, VisualColorPaint, VisualEasing, VisualElement, VisualElementBase, VisualKeyframe, VisualMaskElement, VisualMediaElement, VisualPathTextElement, VisualPresent, VisualProgramElement, VisualSamplingRational, VisualSamplingSegment, VisualStyleDeclaration, VisualSurfaceElement, VisualTextBoxDecoration, VisualTextDecoration, VisualTextDirection, VisualTextDocument, VisualTextElement, VisualTextFlow, VisualTextFlowElement, VisualTextInline, VisualTextPaintLayer, VisualTextPaintTarget, VisualTextRunStyle, VisualTextSequenceAnimation, VisualTextTypography, VisualTextWritingMode, VisualTimedSampling, VisualTrack, VisualVectorPathCommand };
|
|
693
|
+
export { animatableLocalStyles, assertAudioPresentation, assertAudioTrackIdentity, assertCompositionIdentity, assertVisualTrackIdentity, audioEnvelopeGainAt, audioGainEnvelopeSchema, audioSampleSpanSchema, audioTrackSchema, compositionComponent, compositionDependency, compositionManifest, compositionModuleRef, compositionSchema, compositionTypes, sealAudioTrack, sealComposition, sealVisualTrack, visualBoxSchema, visualColorPaintSchema, visualElementSchema, visualImageSchema, visualMaskSchema, visualPathCommandSchema, visualProgramSchema, visualSurfaceSchema, visualTextDocumentSchema, visualTextFlowSchema, visualTextPaintSchema, visualTextSchema, visualTextSequenceSchema, visualTextTypographySchema, visualTimedSamplingSchema, visualTrackSchema, visualVideoSchema };
|
|
694
|
+
export type { AudioClip, AudioGainPoint, AudioPresentation, AudioSampleSpan, AudioTrack, Composition, FrameSpan, Track, VisualAnimation, VisualAttribute, VisualBoxElement, VisualColorPaint, VisualEasing, VisualElement, VisualElementBase, VisualKeyframe, VisualMaskElement, VisualMediaElement, VisualPathTextElement, VisualPresent, VisualProgramElement, VisualSamplingRational, VisualSamplingSegment, VisualStyleDeclaration, VisualSurfaceElement, VisualTextBoxDecoration, VisualTextDecoration, VisualTextDirection, VisualTextDocument, VisualTextElement, VisualTextFlow, VisualTextFlowElement, VisualTextInline, VisualTextPaintLayer, VisualTextPaintTarget, VisualTextRunStyle, VisualTextSequenceAnimation, VisualTextTypography, VisualTextWritingMode, VisualTimedSampling, VisualTrack, VisualVectorPathCommand };
|
|
@@ -36,6 +36,8 @@ type StoredValue = {
|
|
|
36
36
|
readonly value: CanonicalValue;
|
|
37
37
|
} | BlobRef;
|
|
38
38
|
|
|
39
|
+
declare function canonicalize(value: unknown): CanonicalValue;
|
|
40
|
+
|
|
39
41
|
type Need = {
|
|
40
42
|
readonly id: NeedId;
|
|
41
43
|
readonly capability: CapabilityRef;
|
|
@@ -70,6 +72,7 @@ type CredentialAcquisition = {
|
|
|
70
72
|
/** Maximum duration of the service-owned token exchange after browser authorization returns. */
|
|
71
73
|
readonly requestTimeoutMs: number;
|
|
72
74
|
};
|
|
75
|
+
declare function credentialRef(store: string, key: string): CredentialRef;
|
|
73
76
|
|
|
74
77
|
/** A shared resource: occupancy when periodMs is absent, a replenishing rate budget otherwise. */
|
|
75
78
|
type CapacityResourceClaim = {
|
|
@@ -104,6 +107,13 @@ type OperationProgress = {
|
|
|
104
107
|
readonly unit?: string;
|
|
105
108
|
};
|
|
106
109
|
|
|
110
|
+
/** Provider-authored diagnostic text suitable for users; never credentials or request bodies. */
|
|
111
|
+
type ExecutionDiagnostic = {
|
|
112
|
+
readonly level: "info" | "warning" | "error";
|
|
113
|
+
readonly message: string;
|
|
114
|
+
readonly stream?: "stdout" | "stderr";
|
|
115
|
+
};
|
|
116
|
+
|
|
107
117
|
/** Build-local byte resources. Location, retention and transport are Runtime policy. */
|
|
108
118
|
type ResourceIOOptions = {
|
|
109
119
|
/** Cancel the transfer, close its streams and discard unfinished writes before rejecting.
|
|
@@ -121,6 +131,14 @@ type ResourceStore = {
|
|
|
121
131
|
/** Cheap presence query. */
|
|
122
132
|
has(resource: ResourceId, options?: ResourceIOOptions): Promise<boolean>;
|
|
123
133
|
};
|
|
134
|
+
/** Optional transfer capability. Core and components never require storage to expose it. */
|
|
135
|
+
type StreamingResourceStore = ResourceStore & {
|
|
136
|
+
putStream(chunks: AsyncIterable<Uint8Array>, mediaType: string, options?: ResourceIOOptions): Promise<BlobRef>;
|
|
137
|
+
writeStream(resource: BlobRef, chunks: AsyncIterable<Uint8Array>, options?: ResourceIOOptions): Promise<void>;
|
|
138
|
+
/** Stream bytes previously stored under this resource identity. */
|
|
139
|
+
open(resource: ResourceId, options?: ResourceIOOptions): Promise<AsyncIterable<Uint8Array> | undefined>;
|
|
140
|
+
};
|
|
141
|
+
declare function isStreamingResourceStore(value: ResourceStore): value is StreamingResourceStore;
|
|
124
142
|
|
|
125
143
|
type Awaitable<T> = T | Promise<T>;
|
|
126
144
|
type EndpointFulfillment = {
|
|
@@ -167,6 +185,10 @@ type EndpointInvocationContext = {
|
|
|
167
185
|
readonly resources: ResourceStore;
|
|
168
186
|
/** Only slots explicitly declared by this configured Endpoint instance are present. */
|
|
169
187
|
readonly credentials: Readonly<Record<string, EndpointCredential>>;
|
|
188
|
+
/** Explicit non-secret diagnostic output. The Provider owns its content, never its storage. */
|
|
189
|
+
readonly reportDiagnostic?: (diagnostic: ExecutionDiagnostic) => Promise<void>;
|
|
190
|
+
/** Report non-secret activity of a long local call without creating a remote Operation. */
|
|
191
|
+
readonly reportProgress?: (progress: OperationProgress) => Promise<void>;
|
|
170
192
|
};
|
|
171
193
|
type ImmediateEndpointHandler = (context: EndpointInvocationContext) => Awaitable<EndpointFulfillment>;
|
|
172
194
|
type EndpointCheckpoint = {
|
|
@@ -362,5 +384,5 @@ declare function wakeAfter(handle: CanonicalValue, delayMs: number, now?: number
|
|
|
362
384
|
readonly progress?: OperationProgress;
|
|
363
385
|
};
|
|
364
386
|
|
|
365
|
-
export { actionResourceClaims, defineEndpointPackage, endpointActions, endpointResourceClaims, verifyEndpointPricingDocument, wakeAfter };
|
|
366
|
-
export type { AsyncEndpoint, AsyncEndpointCapability, Awaitable, CanonicalValue, CapabilityRef, CapacityResourceClaim, CredentialAcquisition, CredentialRef, CredentialValue, DefineEndpointPackageOptions, EndpointAction, EndpointActionLimits, EndpointCancelOutcome, EndpointCapability, EndpointCheckpoint, EndpointCredential, EndpointCredentialDescription, EndpointFulfillment, EndpointInputSlot, EndpointInvocationContext, EndpointOffer, EndpointOutcome, EndpointPackage, EndpointPollContext, EndpointPricing, EndpointPricingDocument, EndpointPricingReader, EndpointPricingReaderContext, EndpointRegistrar, EndpointRegistrationOptions, EndpointRequest, EndpointScheduling, EndpointStartContext, EndpointSupport, ImmediateEndpointCapability, ImmediateEndpointHandler, ModuleRef, OperationFailure, OperationProgress, OperationReceipt, ResourceIOOptions, ResourceStore, StoredValue, TypeRef };
|
|
387
|
+
export { actionResourceClaims, canonicalize, credentialRef, defineEndpointPackage, endpointActions, endpointResourceClaims, isStreamingResourceStore, verifyEndpointPricingDocument, wakeAfter };
|
|
388
|
+
export type { AsyncEndpoint, AsyncEndpointCapability, Awaitable, BlobRef, CanonicalValue, CapabilityRef, CapacityResourceClaim, CredentialAcquisition, CredentialRef, CredentialValue, DefineEndpointPackageOptions, EndpointAction, EndpointActionLimits, EndpointCancelOutcome, EndpointCapability, EndpointCheckpoint, EndpointCredential, EndpointCredentialDescription, EndpointFulfillment, EndpointInputSlot, EndpointInvocationContext, EndpointOffer, EndpointOutcome, EndpointPackage, EndpointPollContext, EndpointPricing, EndpointPricingDocument, EndpointPricingReader, EndpointPricingReaderContext, EndpointRegistrar, EndpointRegistrationOptions, EndpointRequest, EndpointScheduling, EndpointStartContext, EndpointSupport, ImmediateEndpointCapability, ImmediateEndpointHandler, ModuleRef, OperationFailure, OperationProgress, OperationReceipt, ResourceIOOptions, ResourceId, ResourceStore, StoredValue, TypeRef };
|