@mevdragon/vidfarm-devcli 0.5.3 → 0.6.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/README.md +3 -3
- package/demo/README.md +28 -0
- package/demo/dist/app.css +1 -0
- package/demo/dist/app.js +1184 -0
- package/demo/dist/chunks/chunk-DXB73IDG.js +1 -0
- package/demo/dist/chunks/chunk-S7OWAJDS.js +36 -0
- package/demo/dist/chunks/chunk-VTIBZ6AN.js +1 -0
- package/demo/dist/chunks/dist-ADSJKBVE.js +332 -0
- package/demo/dist/chunks/domEditingLayers-VZMLL4AP-SGHWPND4.js +1 -0
- package/demo/dist/chunks/hyperframes-player-XB65TCD6.js +425 -0
- package/demo/dist/chunks/lib-XAQ37YOE.js +1 -0
- package/demo/dist/chunks/src-TJ2QYA4U.js +207 -0
- package/demo/dist/favicon.ico +0 -0
- package/demo/dist/icons/timeline/audio.svg +7 -0
- package/demo/dist/icons/timeline/captions.svg +5 -0
- package/demo/dist/icons/timeline/composition.svg +12 -0
- package/demo/dist/icons/timeline/image.svg +18 -0
- package/demo/dist/icons/timeline/music.svg +10 -0
- package/demo/dist/icons/timeline/text.svg +3 -0
- package/demo/dist/index.html +15 -0
- package/dist/src/account-pages-legacy.js +9396 -0
- package/dist/src/account-pages.js +61 -0
- package/dist/src/app.js +14378 -0
- package/dist/src/cli.js +1 -1
- package/dist/src/composition-runtime.js +613 -0
- package/dist/src/config.js +166 -0
- package/dist/src/context.js +447 -0
- package/dist/src/dev-app-legacy.js +739 -0
- package/dist/src/dev-app.js +6 -0
- package/dist/src/domain.js +2 -0
- package/dist/src/editor-chat-history.js +82 -0
- package/dist/src/editor-chat.js +449 -0
- package/dist/src/editor-dark-theme.js +1128 -0
- package/dist/src/frontend/debug.js +71 -0
- package/dist/src/frontend/flockposter-cache-store.js +124 -0
- package/dist/src/frontend/homepage-client.js +182 -0
- package/dist/src/frontend/homepage-shared.js +4 -0
- package/dist/src/frontend/homepage-store.js +28 -0
- package/dist/src/frontend/homepage-view.js +547 -0
- package/dist/src/frontend/page-runtime-client.js +132 -0
- package/dist/src/frontend/page-runtime-store.js +9 -0
- package/dist/src/frontend/sentry.js +42 -0
- package/dist/src/frontend/template-editor-chat.js +3960 -0
- package/dist/src/help-page.js +346 -0
- package/dist/src/homepage.js +1235 -0
- package/dist/src/hyperframes/composition.js +180 -0
- package/dist/src/index.js +16 -0
- package/dist/src/instrument.js +30 -0
- package/dist/src/lib/crypto.js +45 -0
- package/dist/src/lib/dev-log.js +54 -0
- package/dist/src/lib/display-name.js +11 -0
- package/dist/src/lib/ids.js +24 -0
- package/dist/src/lib/images.js +19 -0
- package/dist/src/lib/json.js +15 -0
- package/dist/src/lib/package-root.js +47 -0
- package/dist/src/lib/template-paths.js +28 -0
- package/dist/src/lib/time.js +7 -0
- package/dist/src/lib/url-clean.js +85 -0
- package/dist/src/page-runtime.js +2 -0
- package/dist/src/page-shell.js +1381 -0
- package/dist/src/primitive-context.js +357 -0
- package/dist/src/primitive-registry.js +2436 -0
- package/dist/src/primitive-sdk.js +4 -0
- package/dist/src/primitives/hyperframes-media.js +108 -0
- package/dist/src/react-page-shell.js +35 -0
- package/dist/src/ready-post-schedule-component.js +1540 -0
- package/dist/src/registry.js +296 -0
- package/dist/src/runtime.js +35 -0
- package/dist/src/services/api-call-history.js +249 -0
- package/dist/src/services/auth.js +152 -0
- package/dist/src/services/billing-pricing.js +39 -0
- package/dist/src/services/billing.js +228 -0
- package/dist/src/services/cast.js +127 -0
- package/dist/src/services/chat-threads.js +92 -0
- package/dist/src/services/composition-sanitize.js +124 -0
- package/dist/src/services/composition-watch.js +79 -0
- package/dist/src/services/fork-access.js +93 -0
- package/dist/src/services/fork-manifest.js +42 -0
- package/dist/src/services/ghostcut.js +179 -0
- package/dist/src/services/hyperframes.js +2307 -0
- package/dist/src/services/job-capacity.js +14 -0
- package/dist/src/services/job-logs.js +197 -0
- package/dist/src/services/jobs.js +136 -0
- package/dist/src/services/local-dynamo.js +0 -0
- package/dist/src/services/media-processing.js +766 -0
- package/dist/src/services/primitive-media-lambda.js +280 -0
- package/dist/src/services/providers.js +2926 -0
- package/dist/src/services/rate-limits.js +262 -0
- package/dist/src/services/serverless-auth.js +382 -0
- package/dist/src/services/serverless-jobs.js +1082 -0
- package/dist/src/services/serverless-provider-keys.js +409 -0
- package/dist/src/services/serverless-records.js +1385 -0
- package/dist/src/services/serverless-template-configs.js +75 -0
- package/dist/src/services/storage.js +383 -0
- package/dist/src/services/template-certification.js +413 -0
- package/dist/src/services/template-loader.js +99 -0
- package/dist/src/services/template-runtime-bundles.js +217 -0
- package/dist/src/services/template-sources.js +1017 -0
- package/dist/src/services/video-normalization.js +2 -0
- package/dist/src/services/webhooks.js +62 -0
- package/dist/src/template-editor-pages.js +2576 -0
- package/dist/src/template-editor-shell.js +2840 -0
- package/dist/src/template-sdk.js +4 -0
- package/dist/src/worker.js +17 -0
- package/package.json +6 -4
- package/public/assets/homepage-app.js +54 -0
- package/public/assets/homepage-client-app.js +80 -0
- package/public/assets/page-runtime-client-app.js +94 -0
- package/src/assets/SELLING_AWARENESS_STAGES.md +579 -0
- package/src/assets/SELLING_WITH_HOOKS.md +377 -0
- package/src/assets/SELLING_WITH_VSLS.md +606 -0
- package/src/assets/favicon.ico +0 -0
- package/src/assets/logo-vidfarm.png +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { renderAgencyPage as renderAgencyPageLegacy, renderCalendarPage as renderCalendarPageLegacy, renderChatPage as renderChatPageLegacy, renderJobRunsPage as renderJobRunsPageLegacy, renderLibraryPage as renderLibraryPageLegacy, renderLoginPage as renderLoginPageLegacy, renderPricingPage as renderPricingPageLegacy, renderSettingsPage as renderSettingsPageLegacy } from "./account-pages-legacy.js";
|
|
2
|
+
import { resolveAccountDisplayName } from "./page-shell.js";
|
|
3
|
+
import { renderLegacyPageAsReact } from "./react-page-shell.js";
|
|
4
|
+
export function renderLoginPage(...args) {
|
|
5
|
+
return renderLegacyPageAsReact(renderLoginPageLegacy(...args));
|
|
6
|
+
}
|
|
7
|
+
export function renderAgencyPage(...args) {
|
|
8
|
+
const [input] = args;
|
|
9
|
+
return renderLegacyPageAsReact(renderAgencyPageLegacy(...args), {
|
|
10
|
+
pageKind: "legacy",
|
|
11
|
+
title: "Agency",
|
|
12
|
+
userId: input.userId ?? null
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export function renderPricingPage(...args) {
|
|
16
|
+
return renderLegacyPageAsReact(renderPricingPageLegacy(...args));
|
|
17
|
+
}
|
|
18
|
+
export function renderSettingsPage(...args) {
|
|
19
|
+
const [input] = args;
|
|
20
|
+
return renderLegacyPageAsReact(renderSettingsPageLegacy(...args), {
|
|
21
|
+
pageKind: "legacy",
|
|
22
|
+
title: resolveAccountDisplayName({ displayName: input.name, email: input.email }) || "Settings",
|
|
23
|
+
userId: input.userId
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
export function renderJobRunsPage(...args) {
|
|
27
|
+
const [input] = args;
|
|
28
|
+
return renderLegacyPageAsReact(renderJobRunsPageLegacy(...args), {
|
|
29
|
+
pageKind: "legacy",
|
|
30
|
+
title: "Render runs",
|
|
31
|
+
userId: input.userId,
|
|
32
|
+
editorChat: input.editorChat ?? null
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
export function renderLibraryPage(...args) {
|
|
36
|
+
const [input] = args;
|
|
37
|
+
return renderLegacyPageAsReact(renderLibraryPageLegacy(...args), {
|
|
38
|
+
pageKind: "legacy",
|
|
39
|
+
title: "Published renders",
|
|
40
|
+
userId: input.userId,
|
|
41
|
+
editorChat: input.editorChat ?? null
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
export function renderChatPage(...args) {
|
|
45
|
+
const [input] = args;
|
|
46
|
+
return renderLegacyPageAsReact(renderChatPageLegacy(...args), {
|
|
47
|
+
pageKind: "legacy",
|
|
48
|
+
title: "Chat",
|
|
49
|
+
userId: input.userId,
|
|
50
|
+
editorChat: input.editorChat ?? null
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
export function renderCalendarPage(...args) {
|
|
54
|
+
const [input] = args;
|
|
55
|
+
return renderLegacyPageAsReact(renderCalendarPageLegacy(...args), {
|
|
56
|
+
pageKind: "legacy",
|
|
57
|
+
title: "Calendar",
|
|
58
|
+
userId: input.userId
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=account-pages.js.map
|