@xpert-ai/plugin-motion 0.2.0 → 0.3.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/.xpertai-plugin/plugin.json +16 -6
- package/README.md +19 -5
- package/assets/upstream/UPSTREAM-BASELINE.md +27 -0
- package/assets/upstream/app/data/reicon-LICENSE.txt +21 -0
- package/dist/assets/upstream/UPSTREAM-BASELINE.md +27 -0
- package/dist/assets/upstream/app/data/reicon-LICENSE.txt +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/dist/lib/constants.d.ts +7 -1
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/constants.js +7 -0
- package/dist/lib/constants.js.map +1 -1
- package/dist/lib/entities/motion-export.entity.d.ts +13 -1
- package/dist/lib/entities/motion-export.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-export.entity.js +49 -1
- package/dist/lib/entities/motion-export.entity.js.map +1 -1
- package/dist/lib/entities/motion-project-version.entity.d.ts +3 -1
- package/dist/lib/entities/motion-project-version.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-project-version.entity.js +8 -0
- package/dist/lib/entities/motion-project-version.entity.js.map +1 -1
- package/dist/lib/entities/motion-project.entity.d.ts +4 -1
- package/dist/lib/entities/motion-project.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-project.entity.js +8 -0
- package/dist/lib/entities/motion-project.entity.js.map +1 -1
- package/dist/lib/hyperframes-composition.d.ts +16 -0
- package/dist/lib/hyperframes-composition.d.ts.map +1 -0
- package/dist/lib/hyperframes-composition.js +106 -0
- package/dist/lib/hyperframes-composition.js.map +1 -0
- package/dist/lib/motion-agent-response.d.ts +8 -0
- package/dist/lib/motion-agent-response.d.ts.map +1 -1
- package/dist/lib/motion-agent-response.js +13 -0
- package/dist/lib/motion-agent-response.js.map +1 -1
- package/dist/lib/motion-render.processor.d.ts +9 -0
- package/dist/lib/motion-render.processor.d.ts.map +1 -0
- package/dist/lib/motion-render.processor.js +25 -0
- package/dist/lib/motion-render.processor.js.map +1 -0
- package/dist/lib/motion-view.provider.d.ts.map +1 -1
- package/dist/lib/motion-view.provider.js +31 -2
- package/dist/lib/motion-view.provider.js.map +1 -1
- package/dist/lib/motion.middleware.d.ts.map +1 -1
- package/dist/lib/motion.middleware.js +20 -6
- package/dist/lib/motion.middleware.js.map +1 -1
- package/dist/lib/motion.plugin.d.ts.map +1 -1
- package/dist/lib/motion.plugin.js +2 -1
- package/dist/lib/motion.plugin.js.map +1 -1
- package/dist/lib/motion.service.d.ts +174 -3
- package/dist/lib/motion.service.d.ts.map +1 -1
- package/dist/lib/motion.service.js +376 -19
- package/dist/lib/motion.service.js.map +1 -1
- package/dist/lib/remote-components/motion-workbench/app.css +1 -1
- package/dist/lib/remote-components/motion-workbench/app.js +553 -38
- package/dist/lib/types.d.ts +26 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/types.js.map +1 -1
- package/dist/sandbox-actions/hyperframes-render/action.json +10 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runner.mjs +188 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/package.json +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/package.json +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/LICENSE +190 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/README.md +156 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/distributed.js +156122 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/hyperframe.manifest.json +22 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/hyperframe.runtime.iife.js +356 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/index.js +169375 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/public-server.js +167618 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/services/healthWorkerThread.js +53 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/services/shaderTransitionWorker.js +606 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/package.json +109 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/LICENSE.md +21 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/install.js +289 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/lib/main.js +2532 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/package.json +49 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/LICENSE +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/README.md +36 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.browser.cjs +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.browser.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.cjs +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.js +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.native.js +35 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/package.json +12 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/bin/nanoid.cjs +55 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.browser.cjs +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.browser.js +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.cjs +57 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.d.cts +91 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.js +62 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/nanoid.js +1 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/index.cjs +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/index.js +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/package.json +6 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/package.json +89 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/index.cjs +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/index.js +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/package.json +6 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/LICENSE +15 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/README.md +21 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/package.json +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/picocolors.browser.js +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/picocolors.js +75 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/LICENSE +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/README.md +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/at-rule.js +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/comment.js +13 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/container.js +447 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/css-syntax-error.js +133 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/declaration.js +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/document.js +33 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/fromJSON.js +68 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/input.js +276 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/lazy-result.js +563 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/list.js +58 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/map-generator.js +376 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/no-work-result.js +137 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/node.js +456 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/parse.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/parser.js +618 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.d.mts +66 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.js +101 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.mjs +30 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/previous-map.js +161 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/processor.js +67 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/result.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/root.js +61 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/rule.js +27 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/stringifier.js +374 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/stringify.js +11 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/symbols.js +5 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/terminal-highlight.js +70 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/tokenize.js +270 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/warn-once.js +13 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/warning.js +37 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/package.json +88 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/LICENSE +28 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/README.md +765 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/array-set.js +121 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/base64.js +67 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-node.js +413 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/util.js +594 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/package.json +71 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/source-map.js +8 -0
- package/dist/xpert-motion-assistant.yaml +240 -37
- package/package.json +17 -9
- package/skills/motion-agent-skill/SKILL.md +19 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xpert-ai/plugin-motion",
|
|
3
3
|
"version": "0.1.0",
|
|
4
|
-
"description": "Motion
|
|
4
|
+
"description": "Motion Agentic App with native HyperFrames composition, Player preview, Producer rendering, and Motion Anything-derived workflows.",
|
|
5
5
|
"author": "XpertAI",
|
|
6
6
|
"homepage": "https://github.com/xpert-ai/xpert-plugins/tree/main/xpertai/apps/motion",
|
|
7
7
|
"repository": "https://github.com/xpert-ai/xpert-plugins/tree/main/xpertai/apps/motion",
|
|
@@ -12,13 +12,17 @@
|
|
|
12
12
|
"agent-motion",
|
|
13
13
|
"workbench",
|
|
14
14
|
"video-composer",
|
|
15
|
+
"hyperframes",
|
|
16
|
+
"producer",
|
|
15
17
|
"animated-html"
|
|
16
18
|
],
|
|
17
19
|
"skills": "./skills/",
|
|
20
|
+
"artifactNamespace": "motion",
|
|
21
|
+
"sandboxActions": "./dist/sandbox-actions/hyperframes-render/action.json",
|
|
18
22
|
"interface": {
|
|
19
23
|
"displayName": "Motion",
|
|
20
24
|
"shortDescription": "Agentic animated HTML and launch video composer",
|
|
21
|
-
"longDescription": "Create, route, review, edit, version, and export Motion artifacts from natural-language intent.
|
|
25
|
+
"longDescription": "Create, route, review, edit, version, and export Motion artifacts from natural-language intent. Product workflows derive from Motion Anything. New video projects use native HyperFrames SDK + Player compositions and queued Producer rendering; Canvas/WebCodecs remains available for historical-project compatibility.",
|
|
22
26
|
"developerName": "XpertAI",
|
|
23
27
|
"category": "Productivity",
|
|
24
28
|
"capabilities": [
|
|
@@ -80,7 +84,7 @@
|
|
|
80
84
|
"type": "skill",
|
|
81
85
|
"name": "motion-agent-skill",
|
|
82
86
|
"displayName": "Motion Agent Skill",
|
|
83
|
-
"description": "Skill for
|
|
87
|
+
"description": "Skill for Motion recipe selection, HTML editing, native HyperFrames video composition, legacy compatibility, production rendering, versioning, and recovery.",
|
|
84
88
|
"tags": [
|
|
85
89
|
"skill",
|
|
86
90
|
"motion",
|
|
@@ -102,7 +106,7 @@
|
|
|
102
106
|
"type": "app",
|
|
103
107
|
"name": "motion",
|
|
104
108
|
"displayName": "Motion",
|
|
105
|
-
"description": "Use Motion Assistant with Workbench and Agent
|
|
109
|
+
"description": "Use Motion Assistant with Workbench and Agent tools for animated HTML and HyperFrames launch-video compositions.",
|
|
106
110
|
"operations": [
|
|
107
111
|
{
|
|
108
112
|
"name": "create-motion-projects",
|
|
@@ -116,6 +120,12 @@
|
|
|
116
120
|
"description": "Persist working artifacts, versions, styles, exports, and action logs.",
|
|
117
121
|
"access": "write"
|
|
118
122
|
},
|
|
123
|
+
{
|
|
124
|
+
"name": "render-motion-video",
|
|
125
|
+
"displayName": "Render Motion video",
|
|
126
|
+
"description": "Queue native HyperFrames production renders on the isolated platform video runtime.",
|
|
127
|
+
"access": "write"
|
|
128
|
+
},
|
|
119
129
|
{
|
|
120
130
|
"name": "review-motion-workbench",
|
|
121
131
|
"displayName": "Review Motion Workbench",
|
|
@@ -128,7 +138,7 @@
|
|
|
128
138
|
"type": "view",
|
|
129
139
|
"name": "motion_workbench",
|
|
130
140
|
"displayName": "Motion Workbench",
|
|
131
|
-
"description": "Workbench
|
|
141
|
+
"description": "Workbench for Motion recipes, HTML editing, HyperFrames SDK + Player video composition, legacy compatibility, versions, and production exports.",
|
|
132
142
|
"metadata": {
|
|
133
143
|
"app": "motion"
|
|
134
144
|
}
|
|
@@ -137,7 +147,7 @@
|
|
|
137
147
|
"type": "middleware",
|
|
138
148
|
"name": "MotionMiddleware",
|
|
139
149
|
"displayName": "Motion Agent Tools",
|
|
140
|
-
"description": "Assistant
|
|
150
|
+
"description": "Assistant tools for recipe search, project creation, HTML and HyperFrames persistence, queued production exports, versioning, and recovery.",
|
|
141
151
|
"metadata": {
|
|
142
152
|
"app": "motion"
|
|
143
153
|
}
|
package/README.md
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
# Motion
|
|
2
2
|
|
|
3
|
-
Motion is an Xpert-native Agentic App for turning natural-language intent into animated HTML and launch-video compositions.
|
|
3
|
+
Motion is an Xpert-native Agentic App for turning natural-language intent into animated HTML and launch-video compositions. Its product workflows and recipe intelligence continue to derive from [Motion Anything](https://github.com/nexu-io/motion-anything); native HyperFrames is the standard engine for new video projects.
|
|
4
4
|
|
|
5
5
|
It provides:
|
|
6
6
|
|
|
7
7
|
- Motion Assistant template for recipe routing and artifact creation.
|
|
8
8
|
- Motion middleware tools for recipe search, scoped project CRUD, versioning, exports, status updates, and failure reporting.
|
|
9
|
-
- Motion Workbench remote component with Projects, Motion Library, HTML Workbench, Video Composer, Versions, and Exports
|
|
10
|
-
-
|
|
11
|
-
-
|
|
9
|
+
- Motion Workbench remote component with Projects, Motion Library, HTML Workbench, native HyperFrames Composer, Legacy Video Composer, Versions, and Exports.
|
|
10
|
+
- HyperFrames SDK persistence/validation and Player preview, without embedding Studio.
|
|
11
|
+
- Managed Queue + Sandbox Jobs production rendering through HyperFrames Producer.
|
|
12
|
+
- Imported upstream recipe/spec/template assets under `assets/upstream`, pinned by `UPSTREAM-BASELINE.md` with attribution preserved.
|
|
13
|
+
- Canvas/WebCodecs local preview and browser MP4 export for historical JSON video projects only.
|
|
14
|
+
|
|
15
|
+
## Video engine policy
|
|
16
|
+
|
|
17
|
+
| Project | Composition | Preview | Render |
|
|
18
|
+
|---|---|---|---|
|
|
19
|
+
| New video | Native HyperFrames HTML | `@hyperframes/player` | queued `@hyperframes/producer` Sandbox Action |
|
|
20
|
+
| Historical video | Legacy Motion JSON | Canvas | local WebCodecs compatibility export |
|
|
21
|
+
|
|
22
|
+
The Workbench uses `@hyperframes/sdk` + `@hyperframes/player`; the isolated Action uses `@hyperframes/producer`. HyperFrames Studio is not included. A null engine discriminator on an existing video row is treated as `legacy_canvas`, so projects are never migrated from content guessing.
|
|
23
|
+
|
|
24
|
+
Production rendering requires the platform profile `browser/video-playwright-1.61/v1` (Node 22, Chromium, FFmpeg), registered Sandbox Jobs and Workspace Files capabilities, Managed Queue, and a healthy `sandbox-browser` worker. The UI exposes the capability state and will not queue renders until these dependencies are ready.
|
|
12
25
|
|
|
13
26
|
## Package
|
|
14
27
|
|
|
@@ -35,6 +48,7 @@ pnpm --dir /Users/xpertai/GitHub/os/xpert-plugins/xpertai/apps/motion test
|
|
|
35
48
|
- `motion_get_project`
|
|
36
49
|
- `motion_save_web_artifact`
|
|
37
50
|
- `motion_save_video_composition`
|
|
51
|
+
- `motion_save_hyperframes_composition`
|
|
38
52
|
- `motion_finalize_version`
|
|
39
53
|
- `motion_export_artifact`
|
|
40
54
|
- `motion_update_project_status`
|
|
@@ -48,4 +62,4 @@ pnpm --dir /Users/xpertai/GitHub/os/xpert-plugins/xpertai/apps/motion test
|
|
|
48
62
|
- `MotionExport`
|
|
49
63
|
- `MotionActionLog`
|
|
50
64
|
|
|
51
|
-
All records are scoped by tenant and organization.
|
|
65
|
+
All records are scoped by tenant and organization. Production exports are written through platform Workspace Files with input checksum, Action/runtime evidence, progress, and failure details. Roll out the platform video runtime and worker pool before enabling server HD render in production.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Motion Anything upstream baseline
|
|
2
|
+
|
|
3
|
+
- Repository: `https://github.com/nexu-io/motion-anything`
|
|
4
|
+
- Branch: `main`
|
|
5
|
+
- Verified commit: `b016900d9ee92fc2d3e4dc520359cc8999d2ed4e`
|
|
6
|
+
- Commit date: `2026-07-07T14:45:45+08:00`
|
|
7
|
+
- Verified by Xpert Motion: `2026-07-18`
|
|
8
|
+
- License: Apache-2.0; third-party attributions remain in `ATTRIBUTION.md` and the corresponding license files.
|
|
9
|
+
|
|
10
|
+
## Imported capability baseline
|
|
11
|
+
|
|
12
|
+
The vendored recipe tree and application data are byte-compared with the verified commit:
|
|
13
|
+
|
|
14
|
+
- 403 recipe records and 1,171 recipe files.
|
|
15
|
+
- 4 interaction triggers and 13 motion verbs.
|
|
16
|
+
- Six keyframe tracks: opacity, x, y, scale, rotate, and blur.
|
|
17
|
+
- 59 design-system packs, 58 HyperFrames video-template references, 112 HTML templates, 2,680 icons, and 230 portable skills reported by upstream.
|
|
18
|
+
- Latest legacy video engine, HTML capture, and WebCodecs export modules are retained as implementation references.
|
|
19
|
+
|
|
20
|
+
The upstream standalone video editor HTML and its vendored browser encoders are intentionally not copied. Xpert Motion has an existing typed Legacy Canvas/WebCodecs implementation for historical projects, and that path is compatibility-only. New video projects use native HyperFrames composition source with the public SDK, Player, and Producer.
|
|
21
|
+
|
|
22
|
+
## Product mapping
|
|
23
|
+
|
|
24
|
+
- Continue deriving Motion product workflows, recipe intelligence, component-level editing, restraint guidance, versioning, and agent routing from Motion Anything.
|
|
25
|
+
- Treat HyperFrames as the standard composition and production-render contract for newly created video projects.
|
|
26
|
+
- Do not embed HyperFrames Studio. The Workbench integrates the SDK and Player; the isolated platform video runtime invokes Producer.
|
|
27
|
+
- Re-check this baseline before adopting future Motion Anything features. Preserve attribution and classify changes as product/workflow, HyperFrames-native, or legacy-compatibility before implementation.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Dev Chauhan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Motion Anything upstream baseline
|
|
2
|
+
|
|
3
|
+
- Repository: `https://github.com/nexu-io/motion-anything`
|
|
4
|
+
- Branch: `main`
|
|
5
|
+
- Verified commit: `b016900d9ee92fc2d3e4dc520359cc8999d2ed4e`
|
|
6
|
+
- Commit date: `2026-07-07T14:45:45+08:00`
|
|
7
|
+
- Verified by Xpert Motion: `2026-07-18`
|
|
8
|
+
- License: Apache-2.0; third-party attributions remain in `ATTRIBUTION.md` and the corresponding license files.
|
|
9
|
+
|
|
10
|
+
## Imported capability baseline
|
|
11
|
+
|
|
12
|
+
The vendored recipe tree and application data are byte-compared with the verified commit:
|
|
13
|
+
|
|
14
|
+
- 403 recipe records and 1,171 recipe files.
|
|
15
|
+
- 4 interaction triggers and 13 motion verbs.
|
|
16
|
+
- Six keyframe tracks: opacity, x, y, scale, rotate, and blur.
|
|
17
|
+
- 59 design-system packs, 58 HyperFrames video-template references, 112 HTML templates, 2,680 icons, and 230 portable skills reported by upstream.
|
|
18
|
+
- Latest legacy video engine, HTML capture, and WebCodecs export modules are retained as implementation references.
|
|
19
|
+
|
|
20
|
+
The upstream standalone video editor HTML and its vendored browser encoders are intentionally not copied. Xpert Motion has an existing typed Legacy Canvas/WebCodecs implementation for historical projects, and that path is compatibility-only. New video projects use native HyperFrames composition source with the public SDK, Player, and Producer.
|
|
21
|
+
|
|
22
|
+
## Product mapping
|
|
23
|
+
|
|
24
|
+
- Continue deriving Motion product workflows, recipe intelligence, component-level editing, restraint guidance, versioning, and agent routing from Motion Anything.
|
|
25
|
+
- Treat HyperFrames as the standard composition and production-render contract for newly created video projects.
|
|
26
|
+
- Do not embed HyperFrames Studio. The Workbench integrates the SDK and Player; the isolated platform video runtime invokes Producer.
|
|
27
|
+
- Re-check this baseline before adopting future Motion Anything features. Preserve attribution and classify changes as product/workflow, HyperFrames-native, or legacy-compatibility before implementation.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Dev Chauhan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.d.ts
CHANGED
|
@@ -8,10 +8,12 @@ export * from './lib/types.js';
|
|
|
8
8
|
export * from './lib/entities/index.js';
|
|
9
9
|
export * from './lib/motion.plugin.js';
|
|
10
10
|
export * from './lib/motion.service.js';
|
|
11
|
+
export * from './lib/motion-render.processor.js';
|
|
11
12
|
export * from './lib/motion.middleware.js';
|
|
12
13
|
export * from './lib/motion-view.provider.js';
|
|
13
14
|
export * from './lib/motion.templates.js';
|
|
14
15
|
export * from './lib/recipe-library.js';
|
|
15
16
|
export * from './lib/html-motion.js';
|
|
16
17
|
export * from './lib/video-composition.js';
|
|
18
|
+
export * from './lib/hyperframes-composition.js';
|
|
17
19
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AACvB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AACvB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAyBvD,QAAA,MAAM,YAAY,gDAAe,CAAA;AA6BjC,QAAA,MAAM,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAuJrD,CAAA;AAED,eAAe,MAAM,CAAA;AACrB,cAAc,oBAAoB,CAAA;AAClC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,yBAAyB,CAAA;AACvC,cAAc,wBAAwB,CAAA;AACtC,cAAc,yBAAyB,CAAA;AACvC,cAAc,kCAAkC,CAAA;AAChD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2BAA2B,CAAA;AACzC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,kCAAkC,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { readFileSync } from 'node:fs';
|
|
|
2
2
|
import { dirname, join } from 'node:path';
|
|
3
3
|
import { fileURLToPath } from 'node:url';
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
-
import { MOTION_AGENT_CAPABILITY, MOTION_FEATURE, MOTION_ICON, MOTION_LIBRARY_CAPABILITY, MOTION_MIDDLEWARE_NAME, MOTION_PROVIDER_KEY, MOTION_TEMPLATE_CAPABILITY, MOTION_TEMPLATE_PROVIDER_KEY, MOTION_WORKBENCH_CAPABILITY, MOTION_WORKBENCH_VIEW_KEY } from './lib/constants.js';
|
|
5
|
+
import { MOTION_AGENT_CAPABILITY, MOTION_ARTIFACT_NAMESPACE, MOTION_FEATURE, MOTION_ICON, MOTION_LIBRARY_CAPABILITY, MOTION_MIDDLEWARE_NAME, MOTION_PROVIDER_KEY, MOTION_TEMPLATE_CAPABILITY, MOTION_TEMPLATE_PROVIDER_KEY, MOTION_WORKBENCH_CAPABILITY, MOTION_WORKBENCH_VIEW_KEY } from './lib/constants.js';
|
|
6
6
|
import { MotionPlugin } from './lib/motion.plugin.js';
|
|
7
7
|
import { motionTemplates } from './lib/motion.templates.js';
|
|
8
8
|
const moduleDir = dirname(fileURLToPath(import.meta.url));
|
|
@@ -12,7 +12,13 @@ const motionMarketplaceOperations = [
|
|
|
12
12
|
{
|
|
13
13
|
name: 'create-motion-projects',
|
|
14
14
|
displayName: 'Create Motion projects',
|
|
15
|
-
description: 'Create reviewable animated HTML and launch-video Motion projects.',
|
|
15
|
+
description: 'Create reviewable animated HTML and native HyperFrames launch-video Motion projects.',
|
|
16
|
+
access: 'write'
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'render-motion-video',
|
|
20
|
+
displayName: 'Render Motion video',
|
|
21
|
+
description: 'Queue native HyperFrames compositions on the isolated production video runtime.',
|
|
16
22
|
access: 'write'
|
|
17
23
|
},
|
|
18
24
|
{
|
|
@@ -32,6 +38,7 @@ const plugin = {
|
|
|
32
38
|
meta: {
|
|
33
39
|
name: packageJson.name,
|
|
34
40
|
version: packageJson.version,
|
|
41
|
+
artifactNamespace: MOTION_ARTIFACT_NAMESPACE,
|
|
35
42
|
level: 'system',
|
|
36
43
|
targetApps: ['data-xpert', 'xpert'],
|
|
37
44
|
targetAppMeta: {
|
|
@@ -50,7 +57,7 @@ const plugin = {
|
|
|
50
57
|
type: 'app',
|
|
51
58
|
name: 'motion',
|
|
52
59
|
displayName: 'Motion',
|
|
53
|
-
description: 'Use Motion Assistant to generate
|
|
60
|
+
description: 'Use Motion Assistant to generate animated HTML and native HyperFrames launch videos with production rendering.',
|
|
54
61
|
icon: {
|
|
55
62
|
type: 'svg',
|
|
56
63
|
value: MOTION_ICON,
|
|
@@ -62,7 +69,7 @@ const plugin = {
|
|
|
62
69
|
type: 'view',
|
|
63
70
|
name: MOTION_WORKBENCH_VIEW_KEY,
|
|
64
71
|
displayName: 'Motion Workbench',
|
|
65
|
-
description: 'Workbench
|
|
72
|
+
description: 'Workbench for recipes, animated HTML, HyperFrames SDK + Player composition, legacy compatibility, versions, and production exports.',
|
|
66
73
|
metadata: {
|
|
67
74
|
app: 'motion'
|
|
68
75
|
}
|
|
@@ -71,7 +78,7 @@ const plugin = {
|
|
|
71
78
|
type: 'middleware',
|
|
72
79
|
name: MOTION_MIDDLEWARE_NAME,
|
|
73
80
|
displayName: 'Motion Agent Tools',
|
|
74
|
-
description: 'Assistant
|
|
81
|
+
description: 'Assistant tools for recipes, HTML and HyperFrames persistence, production rendering, versioning, export, and recovery.',
|
|
75
82
|
metadata: {
|
|
76
83
|
app: 'motion'
|
|
77
84
|
}
|
|
@@ -108,7 +115,7 @@ const plugin = {
|
|
|
108
115
|
type: 'skill',
|
|
109
116
|
name: 'motion-agent-skill',
|
|
110
117
|
displayName: 'Motion Agent Skill',
|
|
111
|
-
description: 'Skill for Motion
|
|
118
|
+
description: 'Skill for Motion Anything-derived recipes, animated HTML, native HyperFrames composition, legacy compatibility, and production exports.',
|
|
112
119
|
tags: ['skill', 'motion', 'animation', 'agent-motion', 'middleware-tools']
|
|
113
120
|
},
|
|
114
121
|
{
|
|
@@ -124,7 +131,7 @@ const plugin = {
|
|
|
124
131
|
type: 'app',
|
|
125
132
|
name: 'motion',
|
|
126
133
|
displayName: 'Motion',
|
|
127
|
-
description: 'Use Motion Assistant with Workbench and Agent
|
|
134
|
+
description: 'Use Motion Assistant with Workbench and Agent tools for animated HTML and HyperFrames launch videos.',
|
|
128
135
|
operations: motionMarketplaceOperations
|
|
129
136
|
},
|
|
130
137
|
{
|
|
@@ -156,8 +163,8 @@ const plugin = {
|
|
|
156
163
|
color: '#2563eb'
|
|
157
164
|
},
|
|
158
165
|
displayName: 'Motion',
|
|
159
|
-
description: '
|
|
160
|
-
keywords: ['motion', 'animation', 'video', 'html', 'recipe-library', 'middleware', 'view-extension', 'assistant-template'],
|
|
166
|
+
description: 'Motion Agentic App with Motion Anything-derived workflows, HyperFrames composition, Player preview, and Producer rendering.',
|
|
167
|
+
keywords: ['motion', 'animation', 'video', 'html', 'hyperframes', 'producer', 'recipe-library', 'middleware', 'view-extension', 'assistant-template'],
|
|
161
168
|
author: 'XpertAI Team'
|
|
162
169
|
},
|
|
163
170
|
config: {
|
|
@@ -181,10 +188,12 @@ export * from './lib/types.js';
|
|
|
181
188
|
export * from './lib/entities/index.js';
|
|
182
189
|
export * from './lib/motion.plugin.js';
|
|
183
190
|
export * from './lib/motion.service.js';
|
|
191
|
+
export * from './lib/motion-render.processor.js';
|
|
184
192
|
export * from './lib/motion.middleware.js';
|
|
185
193
|
export * from './lib/motion-view.provider.js';
|
|
186
194
|
export * from './lib/motion.templates.js';
|
|
187
195
|
export * from './lib/recipe-library.js';
|
|
188
196
|
export * from './lib/html-motion.js';
|
|
189
197
|
export * from './lib/video-composition.js';
|
|
198
|
+
export * from './lib/hyperframes-composition.js';
|
|
190
199
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AACtC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AACxC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,uBAAuB,EACvB,cAAc,EACd,WAAW,EACX,yBAAyB,EACzB,sBAAsB,EAEtB,mBAAmB,EACnB,0BAA0B,EAC1B,4BAA4B,EAC5B,2BAA2B,EAC3B,yBAAyB,EAC1B,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE3D,MAAM,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;AAEzD,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,EAAE,iBAAiB,CAAC,EAAE,MAAM,CAAC,CAGtF,CAAA;AAED,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;AAEjC,MAAM,2BAA2B,GAAG;IAClC;QACE,IAAI,EAAE,wBAAwB;QAC9B,WAAW,EAAE,wBAAwB;QACrC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/lib/constants.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const MOTION_PLUGIN_NAME = "@xpert-ai/plugin-motion";
|
|
2
|
+
export declare const MOTION_ARTIFACT_NAMESPACE = "motion";
|
|
2
3
|
export declare const MOTION_PROVIDER_KEY = "motion";
|
|
3
4
|
export declare const MOTION_MIDDLEWARE_NAME = "MotionMiddleware";
|
|
4
5
|
export declare const MOTION_TEMPLATE_PROVIDER_KEY = "motionTemplates";
|
|
@@ -9,6 +10,10 @@ export declare const MOTION_LIBRARY_CAPABILITY = "motion-library";
|
|
|
9
10
|
export declare const MOTION_TEMPLATE_CAPABILITY = "motion-assistant-template";
|
|
10
11
|
export declare const MOTION_WORKBENCH_VIEW_KEY = "motion_workbench";
|
|
11
12
|
export declare const MOTION_REMOTE_ENTRY_KEY = "motion-workbench";
|
|
13
|
+
export declare const MOTION_RENDER_QUEUE = "motion.render";
|
|
14
|
+
export declare const MOTION_RENDER_JOB = "hyperframes-production";
|
|
15
|
+
export declare const MOTION_RENDER_SANDBOX_ACTION = "motion.hyperframes-render";
|
|
16
|
+
export declare const MOTION_RENDER_SANDBOX_ACTION_VERSION = "1.0.0";
|
|
12
17
|
export declare const AGENT_WORKBENCH_MAIN_SLOT = "agent.workbench.main";
|
|
13
18
|
export declare const AGENT_WORKBENCH_FIXED_SLOT = "agent.workbench.fixed";
|
|
14
19
|
export declare const ASSISTANT_CONTEXT_SET_COMMAND = "assistant.context.set";
|
|
@@ -19,10 +24,11 @@ export declare const MOTION_CREATE_PROJECT_TOOL_NAME = "motion_create_project";
|
|
|
19
24
|
export declare const MOTION_GET_PROJECT_TOOL_NAME = "motion_get_project";
|
|
20
25
|
export declare const MOTION_SAVE_WEB_ARTIFACT_TOOL_NAME = "motion_save_web_artifact";
|
|
21
26
|
export declare const MOTION_SAVE_VIDEO_COMPOSITION_TOOL_NAME = "motion_save_video_composition";
|
|
27
|
+
export declare const MOTION_SAVE_HYPERFRAMES_COMPOSITION_TOOL_NAME = "motion_save_hyperframes_composition";
|
|
22
28
|
export declare const MOTION_FINALIZE_VERSION_TOOL_NAME = "motion_finalize_version";
|
|
23
29
|
export declare const MOTION_EXPORT_ARTIFACT_TOOL_NAME = "motion_export_artifact";
|
|
24
30
|
export declare const MOTION_UPDATE_PROJECT_STATUS_TOOL_NAME = "motion_update_project_status";
|
|
25
31
|
export declare const MOTION_REPORT_FAILURE_TOOL_NAME = "motion_report_failure";
|
|
26
|
-
export declare const MOTION_MIDDLEWARE_TOOL_NAMES: readonly ["motion_search_recipes", "motion_get_recipe", "motion_create_project", "motion_get_project", "motion_save_web_artifact", "motion_save_video_composition", "motion_finalize_version", "motion_export_artifact", "motion_update_project_status", "motion_report_failure"];
|
|
32
|
+
export declare const MOTION_MIDDLEWARE_TOOL_NAMES: readonly ["motion_search_recipes", "motion_get_recipe", "motion_create_project", "motion_get_project", "motion_save_web_artifact", "motion_save_video_composition", "motion_save_hyperframes_composition", "motion_finalize_version", "motion_export_artifact", "motion_update_project_status", "motion_report_failure"];
|
|
27
33
|
export declare const MOTION_ICON = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"256\" height=\"256\" viewBox=\"0 0 256 256\" fill=\"none\">\n <rect width=\"256\" height=\"256\" rx=\"40\" fill=\"#F8FAFC\"/>\n <path d=\"M58 154C75 103 111 80 151 93C179 102 192 129 178 153C162 181 118 186 96 158\" stroke=\"#111827\" stroke-width=\"12\" stroke-linecap=\"round\"/>\n <path d=\"M64 171C92 204 151 208 188 169\" stroke=\"#2563EB\" stroke-width=\"12\" stroke-linecap=\"round\"/>\n <circle cx=\"153\" cy=\"93\" r=\"13\" fill=\"#7C3AED\"/>\n <circle cx=\"96\" cy=\"158\" r=\"11\" fill=\"#14B8A6\"/>\n <path d=\"M174 64L191 81L218 48\" stroke=\"#F59E0B\" stroke-width=\"12\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>";
|
|
28
34
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/lib/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,4BAA4B,CAAA;AAC3D,eAAO,MAAM,mBAAmB,WAAW,CAAA;AAC3C,eAAO,MAAM,sBAAsB,qBAAqB,CAAA;AACxD,eAAO,MAAM,4BAA4B,oBAAoB,CAAA;AAC7D,eAAO,MAAM,cAAc,WAAW,CAAA;AACtC,eAAO,MAAM,uBAAuB,iBAAiB,CAAA;AACrD,eAAO,MAAM,2BAA2B,qBAAqB,CAAA;AAC7D,eAAO,MAAM,yBAAyB,mBAAmB,CAAA;AACzD,eAAO,MAAM,0BAA0B,8BAA8B,CAAA;AACrE,eAAO,MAAM,yBAAyB,qBAAqB,CAAA;AAC3D,eAAO,MAAM,uBAAuB,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/lib/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,4BAA4B,CAAA;AAC3D,eAAO,MAAM,yBAAyB,WAAW,CAAA;AACjD,eAAO,MAAM,mBAAmB,WAAW,CAAA;AAC3C,eAAO,MAAM,sBAAsB,qBAAqB,CAAA;AACxD,eAAO,MAAM,4BAA4B,oBAAoB,CAAA;AAC7D,eAAO,MAAM,cAAc,WAAW,CAAA;AACtC,eAAO,MAAM,uBAAuB,iBAAiB,CAAA;AACrD,eAAO,MAAM,2BAA2B,qBAAqB,CAAA;AAC7D,eAAO,MAAM,yBAAyB,mBAAmB,CAAA;AACzD,eAAO,MAAM,0BAA0B,8BAA8B,CAAA;AACrE,eAAO,MAAM,yBAAyB,qBAAqB,CAAA;AAC3D,eAAO,MAAM,uBAAuB,qBAAqB,CAAA;AACzD,eAAO,MAAM,mBAAmB,kBAAkB,CAAA;AAClD,eAAO,MAAM,iBAAiB,2BAA2B,CAAA;AACzD,eAAO,MAAM,4BAA4B,8BAA8B,CAAA;AACvE,eAAO,MAAM,oCAAoC,UAAU,CAAA;AAE3D,eAAO,MAAM,yBAAyB,yBAAyB,CAAA;AAC/D,eAAO,MAAM,0BAA0B,0BAA0B,CAAA;AACjE,eAAO,MAAM,6BAA6B,0BAA0B,CAAA;AACpE,eAAO,MAAM,mCAAmC,gCAAgC,CAAA;AAEhF,eAAO,MAAM,+BAA+B,0BAA0B,CAAA;AACtE,eAAO,MAAM,2BAA2B,sBAAsB,CAAA;AAC9D,eAAO,MAAM,+BAA+B,0BAA0B,CAAA;AACtE,eAAO,MAAM,4BAA4B,uBAAuB,CAAA;AAChE,eAAO,MAAM,kCAAkC,6BAA6B,CAAA;AAC5E,eAAO,MAAM,uCAAuC,kCAAkC,CAAA;AACtF,eAAO,MAAM,6CAA6C,wCAAwC,CAAA;AAClG,eAAO,MAAM,iCAAiC,4BAA4B,CAAA;AAC1E,eAAO,MAAM,gCAAgC,2BAA2B,CAAA;AACxE,eAAO,MAAM,sCAAsC,iCAAiC,CAAA;AACpF,eAAO,MAAM,+BAA+B,0BAA0B,CAAA;AAEtE,eAAO,MAAM,4BAA4B,0TAY/B,CAAA;AAEV,eAAO,MAAM,WAAW,msBAOjB,CAAA"}
|
package/dist/lib/constants.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const MOTION_PLUGIN_NAME = '@xpert-ai/plugin-motion';
|
|
2
|
+
export const MOTION_ARTIFACT_NAMESPACE = 'motion';
|
|
2
3
|
export const MOTION_PROVIDER_KEY = 'motion';
|
|
3
4
|
export const MOTION_MIDDLEWARE_NAME = 'MotionMiddleware';
|
|
4
5
|
export const MOTION_TEMPLATE_PROVIDER_KEY = 'motionTemplates';
|
|
@@ -9,6 +10,10 @@ export const MOTION_LIBRARY_CAPABILITY = 'motion-library';
|
|
|
9
10
|
export const MOTION_TEMPLATE_CAPABILITY = 'motion-assistant-template';
|
|
10
11
|
export const MOTION_WORKBENCH_VIEW_KEY = 'motion_workbench';
|
|
11
12
|
export const MOTION_REMOTE_ENTRY_KEY = 'motion-workbench';
|
|
13
|
+
export const MOTION_RENDER_QUEUE = 'motion.render';
|
|
14
|
+
export const MOTION_RENDER_JOB = 'hyperframes-production';
|
|
15
|
+
export const MOTION_RENDER_SANDBOX_ACTION = 'motion.hyperframes-render';
|
|
16
|
+
export const MOTION_RENDER_SANDBOX_ACTION_VERSION = '1.0.0';
|
|
12
17
|
export const AGENT_WORKBENCH_MAIN_SLOT = 'agent.workbench.main';
|
|
13
18
|
export const AGENT_WORKBENCH_FIXED_SLOT = 'agent.workbench.fixed';
|
|
14
19
|
export const ASSISTANT_CONTEXT_SET_COMMAND = 'assistant.context.set';
|
|
@@ -19,6 +24,7 @@ export const MOTION_CREATE_PROJECT_TOOL_NAME = 'motion_create_project';
|
|
|
19
24
|
export const MOTION_GET_PROJECT_TOOL_NAME = 'motion_get_project';
|
|
20
25
|
export const MOTION_SAVE_WEB_ARTIFACT_TOOL_NAME = 'motion_save_web_artifact';
|
|
21
26
|
export const MOTION_SAVE_VIDEO_COMPOSITION_TOOL_NAME = 'motion_save_video_composition';
|
|
27
|
+
export const MOTION_SAVE_HYPERFRAMES_COMPOSITION_TOOL_NAME = 'motion_save_hyperframes_composition';
|
|
22
28
|
export const MOTION_FINALIZE_VERSION_TOOL_NAME = 'motion_finalize_version';
|
|
23
29
|
export const MOTION_EXPORT_ARTIFACT_TOOL_NAME = 'motion_export_artifact';
|
|
24
30
|
export const MOTION_UPDATE_PROJECT_STATUS_TOOL_NAME = 'motion_update_project_status';
|
|
@@ -30,6 +36,7 @@ export const MOTION_MIDDLEWARE_TOOL_NAMES = [
|
|
|
30
36
|
MOTION_GET_PROJECT_TOOL_NAME,
|
|
31
37
|
MOTION_SAVE_WEB_ARTIFACT_TOOL_NAME,
|
|
32
38
|
MOTION_SAVE_VIDEO_COMPOSITION_TOOL_NAME,
|
|
39
|
+
MOTION_SAVE_HYPERFRAMES_COMPOSITION_TOOL_NAME,
|
|
33
40
|
MOTION_FINALIZE_VERSION_TOOL_NAME,
|
|
34
41
|
MOTION_EXPORT_ARTIFACT_TOOL_NAME,
|
|
35
42
|
MOTION_UPDATE_PROJECT_STATUS_TOOL_NAME,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/lib/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG,yBAAyB,CAAA;AAC3D,MAAM,CAAC,MAAM,mBAAmB,GAAG,QAAQ,CAAA;AAC3C,MAAM,CAAC,MAAM,sBAAsB,GAAG,kBAAkB,CAAA;AACxD,MAAM,CAAC,MAAM,4BAA4B,GAAG,iBAAiB,CAAA;AAC7D,MAAM,CAAC,MAAM,cAAc,GAAG,QAAQ,CAAA;AACtC,MAAM,CAAC,MAAM,uBAAuB,GAAG,cAAc,CAAA;AACrD,MAAM,CAAC,MAAM,2BAA2B,GAAG,kBAAkB,CAAA;AAC7D,MAAM,CAAC,MAAM,yBAAyB,GAAG,gBAAgB,CAAA;AACzD,MAAM,CAAC,MAAM,0BAA0B,GAAG,2BAA2B,CAAA;AACrE,MAAM,CAAC,MAAM,yBAAyB,GAAG,kBAAkB,CAAA;AAC3D,MAAM,CAAC,MAAM,uBAAuB,GAAG,kBAAkB,CAAA;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/lib/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG,yBAAyB,CAAA;AAC3D,MAAM,CAAC,MAAM,yBAAyB,GAAG,QAAQ,CAAA;AACjD,MAAM,CAAC,MAAM,mBAAmB,GAAG,QAAQ,CAAA;AAC3C,MAAM,CAAC,MAAM,sBAAsB,GAAG,kBAAkB,CAAA;AACxD,MAAM,CAAC,MAAM,4BAA4B,GAAG,iBAAiB,CAAA;AAC7D,MAAM,CAAC,MAAM,cAAc,GAAG,QAAQ,CAAA;AACtC,MAAM,CAAC,MAAM,uBAAuB,GAAG,cAAc,CAAA;AACrD,MAAM,CAAC,MAAM,2BAA2B,GAAG,kBAAkB,CAAA;AAC7D,MAAM,CAAC,MAAM,yBAAyB,GAAG,gBAAgB,CAAA;AACzD,MAAM,CAAC,MAAM,0BAA0B,GAAG,2BAA2B,CAAA;AACrE,MAAM,CAAC,MAAM,yBAAyB,GAAG,kBAAkB,CAAA;AAC3D,MAAM,CAAC,MAAM,uBAAuB,GAAG,kBAAkB,CAAA;AACzD,MAAM,CAAC,MAAM,mBAAmB,GAAG,eAAe,CAAA;AAClD,MAAM,CAAC,MAAM,iBAAiB,GAAG,wBAAwB,CAAA;AACzD,MAAM,CAAC,MAAM,4BAA4B,GAAG,2BAA2B,CAAA;AACvE,MAAM,CAAC,MAAM,oCAAoC,GAAG,OAAO,CAAA;AAE3D,MAAM,CAAC,MAAM,yBAAyB,GAAG,sBAAsB,CAAA;AAC/D,MAAM,CAAC,MAAM,0BAA0B,GAAG,uBAAuB,CAAA;AACjE,MAAM,CAAC,MAAM,6BAA6B,GAAG,uBAAuB,CAAA;AACpE,MAAM,CAAC,MAAM,mCAAmC,GAAG,6BAA6B,CAAA;AAEhF,MAAM,CAAC,MAAM,+BAA+B,GAAG,uBAAuB,CAAA;AACtE,MAAM,CAAC,MAAM,2BAA2B,GAAG,mBAAmB,CAAA;AAC9D,MAAM,CAAC,MAAM,+BAA+B,GAAG,uBAAuB,CAAA;AACtE,MAAM,CAAC,MAAM,4BAA4B,GAAG,oBAAoB,CAAA;AAChE,MAAM,CAAC,MAAM,kCAAkC,GAAG,0BAA0B,CAAA;AAC5E,MAAM,CAAC,MAAM,uCAAuC,GAAG,+BAA+B,CAAA;AACtF,MAAM,CAAC,MAAM,6CAA6C,GAAG,qCAAqC,CAAA;AAClG,MAAM,CAAC,MAAM,iCAAiC,GAAG,yBAAyB,CAAA;AAC1E,MAAM,CAAC,MAAM,gCAAgC,GAAG,wBAAwB,CAAA;AACxE,MAAM,CAAC,MAAM,sCAAsC,GAAG,8BAA8B,CAAA;AACpF,MAAM,CAAC,MAAM,+BAA+B,GAAG,uBAAuB,CAAA;AAEtE,MAAM,CAAC,MAAM,4BAA4B,GAAG;IAC1C,+BAA+B;IAC/B,2BAA2B;IAC3B,+BAA+B;IAC/B,4BAA4B;IAC5B,kCAAkC;IAClC,uCAAuC;IACvC,6CAA6C;IAC7C,iCAAiC;IACjC,gCAAgC;IAChC,sCAAsC;IACtC,+BAA+B;CACvB,CAAA;AAEV,MAAM,CAAC,MAAM,WAAW,GAAG;;;;;;;OAOpB,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { MotionExportKind, MotionWorkspaceCatalog } from '../types.js';
|
|
1
|
+
import type { MotionExportKind, MotionJsonObject, MotionRenderStatus, MotionWorkspaceCatalog } from '../types.js';
|
|
2
2
|
export declare class MotionExport {
|
|
3
3
|
id?: string;
|
|
4
4
|
tenantId?: string;
|
|
@@ -8,11 +8,21 @@ export declare class MotionExport {
|
|
|
8
8
|
motionProjectId: string;
|
|
9
9
|
versionId?: string;
|
|
10
10
|
kind: MotionExportKind;
|
|
11
|
+
status?: MotionRenderStatus;
|
|
12
|
+
backend?: 'browser' | 'hyperframes' | null;
|
|
13
|
+
progress?: number;
|
|
14
|
+
stage?: string | null;
|
|
15
|
+
jobId?: string | null;
|
|
16
|
+
sandboxJobId?: string | null;
|
|
17
|
+
inputChecksum?: string | null;
|
|
11
18
|
filePath?: string;
|
|
19
|
+
fileReference?: MotionJsonObject | null;
|
|
12
20
|
fileUrl?: string;
|
|
13
21
|
mimeType?: string;
|
|
14
22
|
size?: number;
|
|
15
23
|
checksum?: string;
|
|
24
|
+
errorMessage?: string | null;
|
|
25
|
+
report?: MotionJsonObject | null;
|
|
16
26
|
workspaceCatalog?: MotionWorkspaceCatalog;
|
|
17
27
|
workspaceScopeId?: string;
|
|
18
28
|
changeSummary?: string;
|
|
@@ -20,5 +30,7 @@ export declare class MotionExport {
|
|
|
20
30
|
assistantId?: string;
|
|
21
31
|
conversationId?: string;
|
|
22
32
|
createdAt?: Date;
|
|
33
|
+
updatedAt?: Date;
|
|
34
|
+
completedAt?: Date | null;
|
|
23
35
|
}
|
|
24
36
|
//# sourceMappingURL=motion-export.entity.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"motion-export.entity.d.ts","sourceRoot":"","sources":["../../../src/lib/entities/motion-export.entity.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"motion-export.entity.d.ts","sourceRoot":"","sources":["../../../src/lib/entities/motion-export.entity.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEjH,qBAGa,YAAY;IAEvB,EAAE,CAAC,EAAE,MAAM,CAAA;IAIX,QAAQ,CAAC,EAAE,MAAM,CAAA;IAIjB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAIlB,eAAe,EAAG,MAAM,CAAA;IAGxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAGlB,IAAI,EAAG,gBAAgB,CAAA;IAGvB,MAAM,CAAC,EAAE,kBAAkB,CAAA;IAG3B,OAAO,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,IAAI,CAAA;IAG1C,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAGrB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAGrB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAG5B,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAG7B,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,aAAa,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAA;IAGvC,OAAO,CAAC,EAAE,MAAM,CAAA;IAGhB,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,IAAI,CAAC,EAAE,MAAM,CAAA;IAGb,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAG5B,MAAM,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAA;IAGhC,gBAAgB,CAAC,EAAE,sBAAsB,CAAA;IAGzC,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAGzB,aAAa,CAAC,EAAE,MAAM,CAAA;IAGtB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,SAAS,CAAC,EAAE,IAAI,CAAA;IAGhB,SAAS,CAAC,EAAE,IAAI,CAAA;IAGhB,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;CAC1B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { Column, CreateDateColumn, Entity, Index, PrimaryGeneratedColumn } from 'typeorm';
|
|
2
|
+
import { Column, CreateDateColumn, Entity, Index, PrimaryGeneratedColumn, UpdateDateColumn } from 'typeorm';
|
|
3
3
|
let MotionExport = class MotionExport {
|
|
4
4
|
};
|
|
5
5
|
__decorate([
|
|
@@ -37,10 +37,42 @@ __decorate([
|
|
|
37
37
|
Column({ type: 'varchar' }),
|
|
38
38
|
__metadata("design:type", String)
|
|
39
39
|
], MotionExport.prototype, "kind", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
Column({ type: 'varchar', default: 'succeeded' }),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], MotionExport.prototype, "status", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
Column({ type: 'varchar', nullable: true }),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], MotionExport.prototype, "backend", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
Column({ type: 'int', default: 100 }),
|
|
50
|
+
__metadata("design:type", Number)
|
|
51
|
+
], MotionExport.prototype, "progress", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
Column({ type: 'varchar', nullable: true }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], MotionExport.prototype, "stage", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
Column({ type: 'varchar', nullable: true }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], MotionExport.prototype, "jobId", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
Column({ type: 'varchar', nullable: true }),
|
|
62
|
+
__metadata("design:type", String)
|
|
63
|
+
], MotionExport.prototype, "sandboxJobId", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
Column({ type: 'varchar', length: 64, nullable: true }),
|
|
66
|
+
__metadata("design:type", String)
|
|
67
|
+
], MotionExport.prototype, "inputChecksum", void 0);
|
|
40
68
|
__decorate([
|
|
41
69
|
Column({ type: 'text', nullable: true }),
|
|
42
70
|
__metadata("design:type", String)
|
|
43
71
|
], MotionExport.prototype, "filePath", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
Column({ type: 'jsonb', nullable: true }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], MotionExport.prototype, "fileReference", void 0);
|
|
44
76
|
__decorate([
|
|
45
77
|
Column({ type: 'text', nullable: true }),
|
|
46
78
|
__metadata("design:type", String)
|
|
@@ -57,6 +89,14 @@ __decorate([
|
|
|
57
89
|
Column({ type: 'varchar', length: 64, nullable: true }),
|
|
58
90
|
__metadata("design:type", String)
|
|
59
91
|
], MotionExport.prototype, "checksum", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
Column({ type: 'text', nullable: true }),
|
|
94
|
+
__metadata("design:type", String)
|
|
95
|
+
], MotionExport.prototype, "errorMessage", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
Column({ type: 'jsonb', nullable: true }),
|
|
98
|
+
__metadata("design:type", Object)
|
|
99
|
+
], MotionExport.prototype, "report", void 0);
|
|
60
100
|
__decorate([
|
|
61
101
|
Column({ type: 'varchar', nullable: true }),
|
|
62
102
|
__metadata("design:type", String)
|
|
@@ -85,6 +125,14 @@ __decorate([
|
|
|
85
125
|
CreateDateColumn({ type: 'timestamptz' }),
|
|
86
126
|
__metadata("design:type", Date)
|
|
87
127
|
], MotionExport.prototype, "createdAt", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
UpdateDateColumn({ type: 'timestamptz' }),
|
|
130
|
+
__metadata("design:type", Date)
|
|
131
|
+
], MotionExport.prototype, "updatedAt", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
Column({ type: 'timestamptz', nullable: true }),
|
|
134
|
+
__metadata("design:type", Date)
|
|
135
|
+
], MotionExport.prototype, "completedAt", void 0);
|
|
88
136
|
MotionExport = __decorate([
|
|
89
137
|
Entity('plugin_motion_export'),
|
|
90
138
|
Index(['tenantId', 'organizationId', 'motionProjectId', 'createdAt']),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"motion-export.entity.js","sourceRoot":"","sources":["../../../src/lib/entities/motion-export.entity.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"motion-export.entity.js","sourceRoot":"","sources":["../../../src/lib/entities/motion-export.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { MotionJsonObject, MotionSurface, MotionVersionSource, MotionVideoComposition, MotionWorkspaceCatalog } from '../types.js';
|
|
1
|
+
import type { MotionJsonObject, MotionSurface, MotionVersionSource, MotionVideoEngine, MotionVideoComposition, MotionWorkspaceCatalog } from '../types.js';
|
|
2
2
|
export declare class MotionProjectVersion {
|
|
3
3
|
id?: string;
|
|
4
4
|
tenantId?: string;
|
|
@@ -11,6 +11,8 @@ export declare class MotionProjectVersion {
|
|
|
11
11
|
surface?: MotionSurface;
|
|
12
12
|
html?: string | null;
|
|
13
13
|
videoComposition?: MotionVideoComposition | null;
|
|
14
|
+
videoEngine?: MotionVideoEngine | null;
|
|
15
|
+
hyperframesHtml?: string | null;
|
|
14
16
|
selectedRecipeIds?: string[];
|
|
15
17
|
selectionSummary?: MotionJsonObject | null;
|
|
16
18
|
artifactChecksum?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"motion-project-version.entity.d.ts","sourceRoot":"","sources":["../../../src/lib/entities/motion-project-version.entity.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,gBAAgB,EAChB,aAAa,EACb,mBAAmB,EACnB,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,aAAa,CAAA;AAEpB,qBAGa,oBAAoB;IAE/B,EAAE,CAAC,EAAE,MAAM,CAAA;IAIX,QAAQ,CAAC,EAAE,MAAM,CAAA;IAIjB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAIlB,eAAe,EAAG,MAAM,CAAA;IAGxB,aAAa,EAAG,MAAM,CAAA;IAGtB,UAAU,CAAC,EAAE,mBAAmB,CAAA;IAGhC,OAAO,CAAC,EAAE,aAAa,CAAA;IAGvB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAGpB,gBAAgB,CAAC,EAAE,sBAAsB,GAAG,IAAI,CAAA;IAGhD,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAG5B,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAA;IAG1C,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAGzB,aAAa,CAAC,EAAE,MAAM,CAAA;IAGtB,gBAAgB,CAAC,EAAE,sBAAsB,CAAA;IAGzC,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAGzB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,SAAS,CAAC,EAAE,IAAI,CAAA;CACjB"}
|
|
1
|
+
{"version":3,"file":"motion-project-version.entity.d.ts","sourceRoot":"","sources":["../../../src/lib/entities/motion-project-version.entity.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,gBAAgB,EAChB,aAAa,EACb,mBAAmB,EACnB,iBAAiB,EACjB,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,aAAa,CAAA;AAEpB,qBAGa,oBAAoB;IAE/B,EAAE,CAAC,EAAE,MAAM,CAAA;IAIX,QAAQ,CAAC,EAAE,MAAM,CAAA;IAIjB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAIlB,eAAe,EAAG,MAAM,CAAA;IAGxB,aAAa,EAAG,MAAM,CAAA;IAGtB,UAAU,CAAC,EAAE,mBAAmB,CAAA;IAGhC,OAAO,CAAC,EAAE,aAAa,CAAA;IAGvB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAGpB,gBAAgB,CAAC,EAAE,sBAAsB,GAAG,IAAI,CAAA;IAGhD,WAAW,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAA;IAGtC,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAG/B,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAG5B,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAA;IAG1C,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAGzB,aAAa,CAAC,EAAE,MAAM,CAAA;IAGtB,gBAAgB,CAAC,EAAE,sBAAsB,CAAA;IAGzC,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAGzB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,WAAW,CAAC,EAAE,MAAM,CAAA;IAGpB,cAAc,CAAC,EAAE,MAAM,CAAA;IAGvB,SAAS,CAAC,EAAE,IAAI,CAAA;CACjB"}
|