@mano8/astro-prompt-m8 0.1.0-alpha.1
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/LICENSE +201 -0
- package/README.md +116 -0
- package/dist/src/integration.d.ts +42 -0
- package/dist/src/integration.d.ts.map +1 -0
- package/dist/src/integration.js +86 -0
- package/dist/src/integration.js.map +1 -0
- package/dist/src/lib/csp.d.ts +25 -0
- package/dist/src/lib/csp.d.ts.map +1 -0
- package/dist/src/lib/csp.js +53 -0
- package/dist/src/lib/csp.js.map +1 -0
- package/dist/src/middleware.d.ts +4 -0
- package/dist/src/middleware.d.ts.map +1 -0
- package/dist/src/middleware.js +24 -0
- package/dist/src/middleware.js.map +1 -0
- package/dist/src/runtime/api/admin.d.ts +15 -0
- package/dist/src/runtime/api/admin.d.ts.map +1 -0
- package/dist/src/runtime/api/admin.js +39 -0
- package/dist/src/runtime/api/admin.js.map +1 -0
- package/dist/src/runtime/api/blocks.d.ts +24 -0
- package/dist/src/runtime/api/blocks.d.ts.map +1 -0
- package/dist/src/runtime/api/blocks.js +74 -0
- package/dist/src/runtime/api/blocks.js.map +1 -0
- package/dist/src/runtime/api/categories.d.ts +7 -0
- package/dist/src/runtime/api/categories.d.ts.map +1 -0
- package/dist/src/runtime/api/categories.js +49 -0
- package/dist/src/runtime/api/categories.js.map +1 -0
- package/dist/src/runtime/api/dashboard.d.ts +6 -0
- package/dist/src/runtime/api/dashboard.d.ts.map +1 -0
- package/dist/src/runtime/api/dashboard.js +21 -0
- package/dist/src/runtime/api/dashboard.js.map +1 -0
- package/dist/src/runtime/api/index.d.ts +46 -0
- package/dist/src/runtime/api/index.d.ts.map +1 -0
- package/dist/src/runtime/api/index.js +48 -0
- package/dist/src/runtime/api/index.js.map +1 -0
- package/dist/src/runtime/api/internal.server.d.ts +18 -0
- package/dist/src/runtime/api/internal.server.d.ts.map +1 -0
- package/dist/src/runtime/api/internal.server.js +43 -0
- package/dist/src/runtime/api/internal.server.js.map +1 -0
- package/dist/src/runtime/api/templates.d.ts +14 -0
- package/dist/src/runtime/api/templates.d.ts.map +1 -0
- package/dist/src/runtime/api/templates.js +108 -0
- package/dist/src/runtime/api/templates.js.map +1 -0
- package/dist/src/runtime/authAdapter.d.ts +48 -0
- package/dist/src/runtime/authAdapter.d.ts.map +1 -0
- package/dist/src/runtime/authAdapter.js +62 -0
- package/dist/src/runtime/authAdapter.js.map +1 -0
- package/dist/src/runtime/client.d.ts +24 -0
- package/dist/src/runtime/client.d.ts.map +1 -0
- package/dist/src/runtime/client.js +85 -0
- package/dist/src/runtime/client.js.map +1 -0
- package/dist/src/runtime/compatibility.d.ts +32 -0
- package/dist/src/runtime/compatibility.d.ts.map +1 -0
- package/dist/src/runtime/compatibility.js +97 -0
- package/dist/src/runtime/compatibility.js.map +1 -0
- package/dist/src/runtime/config.d.ts +16 -0
- package/dist/src/runtime/config.d.ts.map +1 -0
- package/dist/src/runtime/config.js +22 -0
- package/dist/src/runtime/config.js.map +1 -0
- package/dist/src/runtime/errors.d.ts +23 -0
- package/dist/src/runtime/errors.d.ts.map +1 -0
- package/dist/src/runtime/errors.js +50 -0
- package/dist/src/runtime/errors.js.map +1 -0
- package/dist/src/runtime/hooks/index.d.ts +9 -0
- package/dist/src/runtime/hooks/index.d.ts.map +1 -0
- package/dist/src/runtime/hooks/index.js +9 -0
- package/dist/src/runtime/hooks/index.js.map +1 -0
- package/dist/src/runtime/hooks/useComposePrompt.d.ts +13 -0
- package/dist/src/runtime/hooks/useComposePrompt.d.ts.map +1 -0
- package/dist/src/runtime/hooks/useComposePrompt.js +17 -0
- package/dist/src/runtime/hooks/useComposePrompt.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptAdmin.d.ts +10 -0
- package/dist/src/runtime/hooks/usePromptAdmin.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptAdmin.js +33 -0
- package/dist/src/runtime/hooks/usePromptAdmin.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptBlock.d.ts +18 -0
- package/dist/src/runtime/hooks/usePromptBlock.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptBlock.js +25 -0
- package/dist/src/runtime/hooks/usePromptBlock.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptBlocks.d.ts +22 -0
- package/dist/src/runtime/hooks/usePromptBlocks.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptBlocks.js +53 -0
- package/dist/src/runtime/hooks/usePromptBlocks.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptCategories.d.ts +20 -0
- package/dist/src/runtime/hooks/usePromptCategories.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptCategories.js +53 -0
- package/dist/src/runtime/hooks/usePromptCategories.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptDashboard.d.ts +13 -0
- package/dist/src/runtime/hooks/usePromptDashboard.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptDashboard.js +11 -0
- package/dist/src/runtime/hooks/usePromptDashboard.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptTemplate.d.ts +33 -0
- package/dist/src/runtime/hooks/usePromptTemplate.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptTemplate.js +43 -0
- package/dist/src/runtime/hooks/usePromptTemplate.js.map +1 -0
- package/dist/src/runtime/hooks/usePromptTemplates.d.ts +37 -0
- package/dist/src/runtime/hooks/usePromptTemplates.d.ts.map +1 -0
- package/dist/src/runtime/hooks/usePromptTemplates.js +106 -0
- package/dist/src/runtime/hooks/usePromptTemplates.js.map +1 -0
- package/dist/src/runtime/listParams.d.ts +27 -0
- package/dist/src/runtime/listParams.d.ts.map +1 -0
- package/dist/src/runtime/listParams.js +67 -0
- package/dist/src/runtime/listParams.js.map +1 -0
- package/dist/src/runtime/queryKeys.d.ts +25 -0
- package/dist/src/runtime/queryKeys.d.ts.map +1 -0
- package/dist/src/runtime/queryKeys.js +29 -0
- package/dist/src/runtime/queryKeys.js.map +1 -0
- package/dist/src/runtime/react/AdminPromptPanel.d.ts +21 -0
- package/dist/src/runtime/react/AdminPromptPanel.d.ts.map +1 -0
- package/dist/src/runtime/react/AdminPromptPanel.js +53 -0
- package/dist/src/runtime/react/AdminPromptPanel.js.map +1 -0
- package/dist/src/runtime/react/PromptBlockLibrary.d.ts +36 -0
- package/dist/src/runtime/react/PromptBlockLibrary.d.ts.map +1 -0
- package/dist/src/runtime/react/PromptBlockLibrary.js +122 -0
- package/dist/src/runtime/react/PromptBlockLibrary.js.map +1 -0
- package/dist/src/runtime/react/PromptComposer.d.ts +24 -0
- package/dist/src/runtime/react/PromptComposer.d.ts.map +1 -0
- package/dist/src/runtime/react/PromptComposer.js +48 -0
- package/dist/src/runtime/react/PromptComposer.js.map +1 -0
- package/dist/src/runtime/react/PromptProvider.d.ts +16 -0
- package/dist/src/runtime/react/PromptProvider.d.ts.map +1 -0
- package/dist/src/runtime/react/PromptProvider.js +79 -0
- package/dist/src/runtime/react/PromptProvider.js.map +1 -0
- package/dist/src/runtime/react/PromptQueryProvider.d.ts +8 -0
- package/dist/src/runtime/react/PromptQueryProvider.d.ts.map +1 -0
- package/dist/src/runtime/react/PromptQueryProvider.js +11 -0
- package/dist/src/runtime/react/PromptQueryProvider.js.map +1 -0
- package/dist/src/runtime/react/PromptTemplateEditor.d.ts +36 -0
- package/dist/src/runtime/react/PromptTemplateEditor.d.ts.map +1 -0
- package/dist/src/runtime/react/PromptTemplateEditor.js +141 -0
- package/dist/src/runtime/react/PromptTemplateEditor.js.map +1 -0
- package/dist/src/runtime/react/RequireSuperuser.d.ts +7 -0
- package/dist/src/runtime/react/RequireSuperuser.d.ts.map +1 -0
- package/dist/src/runtime/react/RequireSuperuser.js +10 -0
- package/dist/src/runtime/react/RequireSuperuser.js.map +1 -0
- package/dist/src/runtime/react/default-ui/index.d.ts +17 -0
- package/dist/src/runtime/react/default-ui/index.d.ts.map +1 -0
- package/dist/src/runtime/react/default-ui/index.js +23 -0
- package/dist/src/runtime/react/default-ui/index.js.map +1 -0
- package/dist/src/runtime/react/index.d.ts +8 -0
- package/dist/src/runtime/react/index.d.ts.map +1 -0
- package/dist/src/runtime/react/index.js +8 -0
- package/dist/src/runtime/react/index.js.map +1 -0
- package/dist/src/runtime/routes.d.ts +17 -0
- package/dist/src/runtime/routes.d.ts.map +1 -0
- package/dist/src/runtime/routes.js +33 -0
- package/dist/src/runtime/routes.js.map +1 -0
- package/dist/src/runtime/schemas.d.ts +286 -0
- package/dist/src/runtime/schemas.d.ts.map +1 -0
- package/dist/src/runtime/schemas.js +172 -0
- package/dist/src/runtime/schemas.js.map +1 -0
- package/package.json +99 -0
- package/registry/r/admin-prompt-dashboard.json +23 -0
- package/registry/r/prompt-block-editor.json +20 -0
- package/registry/r/prompt-dashboard-overview.json +22 -0
- package/registry/r/prompt-maintenance-panel.json +23 -0
- package/registry/r/prompt-template-editor.json +20 -0
- package/registry/r/registry.json +37 -0
- package/registry.json +86 -0
- package/src/routes/admin/prompts.astro +11 -0
- package/src/routes/blocks.astro +11 -0
- package/src/routes/composer.astro +12 -0
- package/src/routes/templates.astro +11 -0
- package/src/scaffold/styles/prompt.css +9 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { usePromptBlocks } from "../hooks/usePromptBlocks.js";
|
|
4
|
+
import { usePromptTemplates } from "../hooks/usePromptTemplates.js";
|
|
5
|
+
import { useComposePrompt } from "../hooks/useComposePrompt.js";
|
|
6
|
+
const DEFAULT_LABELS = {
|
|
7
|
+
title: "Prompt templates",
|
|
8
|
+
subtitle: "Compose reusable templates from prompt blocks.",
|
|
9
|
+
create: "New template",
|
|
10
|
+
name: "Name",
|
|
11
|
+
description: "Description",
|
|
12
|
+
publicLabel: "Public",
|
|
13
|
+
save: "Save",
|
|
14
|
+
cancel: "Cancel",
|
|
15
|
+
loading: "Loading…",
|
|
16
|
+
empty: "No templates yet.",
|
|
17
|
+
error: "Could not load templates.",
|
|
18
|
+
edit: "Edit",
|
|
19
|
+
deleteLabel: "Delete",
|
|
20
|
+
confirmDelete: "Delete this template and its blocks?",
|
|
21
|
+
blocks: "Blocks",
|
|
22
|
+
addBlock: "Add block",
|
|
23
|
+
noBlocksAvailable: "All blocks already attached, or no blocks exist.",
|
|
24
|
+
removeBlock: "Remove",
|
|
25
|
+
moveUp: "Up",
|
|
26
|
+
moveDown: "Down",
|
|
27
|
+
compose: "Compose",
|
|
28
|
+
composeLabel: "Compose this template",
|
|
29
|
+
composed: "Composed prompt",
|
|
30
|
+
composing: "Composing…",
|
|
31
|
+
composingError: "Could not compose template.",
|
|
32
|
+
dynamicFor: "Dynamic content for",
|
|
33
|
+
dynamicPlaceholder: "Optional dynamic content for this block…",
|
|
34
|
+
noDynamic: "This template has no dynamic blocks."
|
|
35
|
+
};
|
|
36
|
+
const EMPTY_DRAFT = { name: "", description: "", is_public: false };
|
|
37
|
+
export function PromptTemplateEditor({ labels }) {
|
|
38
|
+
const t = { ...DEFAULT_LABELS, ...labels };
|
|
39
|
+
const templates = usePromptTemplates();
|
|
40
|
+
const blocks = usePromptBlocks();
|
|
41
|
+
const [draft, setDraft] = React.useState(null);
|
|
42
|
+
const [expandedId, setExpandedId] = React.useState(null);
|
|
43
|
+
const [composeError, setComposeError] = React.useState(null);
|
|
44
|
+
const [composerId, setComposerId] = React.useState(null);
|
|
45
|
+
const [composerDynamic, setComposerDynamic] = React.useState({});
|
|
46
|
+
const { compose, composeMutation } = useComposePrompt();
|
|
47
|
+
React.useEffect(() => {
|
|
48
|
+
void templates.refresh();
|
|
49
|
+
void blocks.refresh();
|
|
50
|
+
}, [templates.refresh, blocks.refresh]);
|
|
51
|
+
const selectedTemplate = templates.data?.data.find((tpl) => tpl.id === expandedId) ?? null;
|
|
52
|
+
const startCreate = () => {
|
|
53
|
+
setDraft({ ...EMPTY_DRAFT });
|
|
54
|
+
};
|
|
55
|
+
const startEdit = (template) => {
|
|
56
|
+
setDraft({
|
|
57
|
+
id: template.id,
|
|
58
|
+
name: template.name,
|
|
59
|
+
description: template.description ?? "",
|
|
60
|
+
is_public: template.is_public
|
|
61
|
+
});
|
|
62
|
+
setExpandedId(template.id);
|
|
63
|
+
};
|
|
64
|
+
const save = async () => {
|
|
65
|
+
if (!draft)
|
|
66
|
+
return;
|
|
67
|
+
const body = {
|
|
68
|
+
name: draft.name,
|
|
69
|
+
description: draft.description || null,
|
|
70
|
+
is_public: draft.is_public
|
|
71
|
+
};
|
|
72
|
+
if (draft.id !== undefined) {
|
|
73
|
+
await templates.updateMutation.mutateAsync({ templateId: draft.id, body });
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
await templates.createMutation.mutateAsync(body);
|
|
77
|
+
}
|
|
78
|
+
setDraft(null);
|
|
79
|
+
};
|
|
80
|
+
const remove = async (id) => {
|
|
81
|
+
if (!window.confirm(t.confirmDelete))
|
|
82
|
+
return;
|
|
83
|
+
await templates.deleteMutation.mutateAsync(id);
|
|
84
|
+
if (expandedId === id)
|
|
85
|
+
setExpandedId(null);
|
|
86
|
+
};
|
|
87
|
+
const availableToAdd = (templateId) => {
|
|
88
|
+
const tpl = templates.data?.data.find((item) => item.id === templateId);
|
|
89
|
+
const used = new Set((tpl?.blocks ?? []).map((b) => b.block_id));
|
|
90
|
+
return (blocks.data?.data ?? []).filter((b) => !used.has(b.id));
|
|
91
|
+
};
|
|
92
|
+
return (_jsxs("section", { className: "not-content space-y-6", children: [_jsxs("div", { className: "flex flex-wrap items-end justify-between gap-2", children: [_jsxs("div", { className: "space-y-1", children: [_jsx("h2", { className: "text-xl font-semibold tracking-tight", children: t.title }), _jsx("p", { className: "text-sm text-muted-foreground", children: t.subtitle })] }), _jsx("button", { type: "button", className: "rounded-md bg-primary px-4 py-2 text-sm font-medium text-primary-foreground", onClick: startCreate, children: t.create })] }), draft ? (_jsxs("form", { className: "space-y-3 rounded-md border bg-card p-4", onSubmit: (e) => {
|
|
93
|
+
e.preventDefault();
|
|
94
|
+
void save();
|
|
95
|
+
}, children: [_jsxs("label", { className: "block space-y-1 text-sm", children: [_jsx("span", { className: "font-medium", children: t.name }), _jsx("input", { className: "w-full rounded-md border bg-background px-3 py-2", value: draft.name, onChange: (e) => setDraft({ ...draft, name: e.target.value }), required: true })] }), _jsxs("label", { className: "block space-y-1 text-sm", children: [_jsx("span", { className: "font-medium", children: t.description }), _jsx("input", { className: "w-full rounded-md border bg-background px-3 py-2", value: draft.description, onChange: (e) => setDraft({ ...draft, description: e.target.value }) })] }), _jsxs("label", { className: "flex items-center gap-2 text-sm", children: [_jsx("input", { type: "checkbox", checked: draft.is_public, onChange: (e) => setDraft({ ...draft, is_public: e.target.checked }) }), _jsx("span", { className: "font-medium", children: t.publicLabel })] }), _jsxs("div", { className: "flex gap-2", children: [_jsx("button", { type: "submit", className: "rounded-md bg-primary px-4 py-2 text-sm font-medium text-primary-foreground disabled:opacity-50", disabled: templates.createMutation.isPending || templates.updateMutation.isPending, children: t.save }), _jsx("button", { type: "button", className: "rounded-md border px-4 py-2 text-sm font-medium", onClick: () => setDraft(null), children: t.cancel })] })] })) : null, templates.loading && !templates.data ? (_jsx("p", { className: "text-sm", children: t.loading })) : null, templates.error && !templates.data ? (_jsx("p", { role: "alert", className: "text-sm text-destructive", children: t.error })) : null, _jsxs("ul", { className: "divide-y rounded-md border", children: [(templates.data?.data ?? []).map((tpl) => {
|
|
96
|
+
const open = expandedId === tpl.id;
|
|
97
|
+
const canAdd = availableToAdd(tpl.id);
|
|
98
|
+
return (_jsxs("li", { className: "p-4", children: [_jsxs("div", { className: "flex flex-wrap items-baseline justify-between gap-2", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx("h3", { className: "text-sm font-semibold", children: tpl.name }), _jsxs("p", { className: "text-xs text-muted-foreground", children: [tpl.blocks.length, " \u00B7 ", tpl.is_public ? t.publicLabel : ""] })] }), _jsxs("div", { className: "flex gap-2", children: [_jsx("button", { type: "button", className: "rounded-md border px-3 py-1 text-xs font-medium", onClick: () => setExpandedId(open ? null : tpl.id), children: t.edit }), _jsx("button", { type: "button", className: "rounded-md border px-3 py-1 text-xs font-medium text-destructive", disabled: templates.deleteMutation.isPending, onClick: () => void remove(tpl.id), children: t.deleteLabel })] })] }), open ? (_jsxs("div", { className: "mt-4 space-y-4", children: [tpl.blocks.length > 0 ? (_jsx("ol", { className: "space-y-2", children: tpl.blocks.map((block, index) => (_jsxs("li", { className: "flex items-start gap-2 rounded-md border p-2", children: [_jsxs("div", { className: "flex flex-col gap-1", children: [_jsx("button", { type: "button", className: "rounded border px-2 py-0.5 text-xs disabled:opacity-50", disabled: index === 0 || templates.setPositionMutation.isPending, onClick: () => templates.setPositionMutation.mutate({
|
|
99
|
+
templateId: tpl.id,
|
|
100
|
+
blockId: block.block_id,
|
|
101
|
+
position: block.position - 1
|
|
102
|
+
}), children: t.moveUp }), _jsx("button", { type: "button", className: "rounded border px-2 py-0.5 text-xs disabled:opacity-50", disabled: index === tpl.blocks.length - 1 ||
|
|
103
|
+
templates.setPositionMutation.isPending, onClick: () => templates.setPositionMutation.mutate({
|
|
104
|
+
templateId: tpl.id,
|
|
105
|
+
blockId: block.block_id,
|
|
106
|
+
position: block.position + 1
|
|
107
|
+
}), children: t.moveDown })] }), _jsxs("div", { className: "flex-1 space-y-0.5", children: [_jsx("p", { className: "text-sm font-medium", children: block.name }), _jsxs("p", { className: "text-xs text-muted-foreground", children: [block.type, " \u00B7 position ", block.position] }), _jsx("pre", { className: "whitespace-pre-wrap text-xs text-muted-foreground", children: block.content })] }), _jsx("button", { type: "button", className: "rounded-md border px-2 py-1 text-xs font-medium text-destructive disabled:opacity-50", disabled: templates.removeBlockMutation.isPending, onClick: () => templates.removeBlockMutation.mutate({
|
|
108
|
+
templateId: tpl.id,
|
|
109
|
+
blockId: block.block_id
|
|
110
|
+
}), children: t.removeBlock })] }, block.id))) })) : (_jsx("p", { className: "text-xs text-muted-foreground", children: t.noBlocksAvailable })), _jsxs("div", { className: "space-y-2", children: [_jsx("h4", { className: "text-sm font-medium", children: t.addBlock }), canAdd.length ? (_jsx("ul", { className: "flex flex-wrap gap-2", children: canAdd.map((block) => (_jsx("li", { children: _jsxs("button", { type: "button", className: "rounded-md border px-3 py-1 text-xs font-medium disabled:opacity-50", disabled: templates.addBlockMutation.isPending, onClick: () => templates.addBlockMutation.mutate({
|
|
111
|
+
templateId: tpl.id,
|
|
112
|
+
blockId: block.id,
|
|
113
|
+
position: 0
|
|
114
|
+
}), children: ["+ ", block.name] }) }, block.id))) })) : (_jsx("p", { className: "text-xs text-muted-foreground", children: t.noBlocksAvailable }))] }), _jsxs("div", { className: "space-y-2 border-t pt-3", children: [_jsx("h4", { className: "text-sm font-medium", children: t.composeLabel }), _jsx(ComposeInline, { templateId: tpl.id, blocks: tpl.blocks, t: t, composing: composerId === tpl.id, onStart: () => {
|
|
115
|
+
setComposerId(tpl.id);
|
|
116
|
+
setComposeError(null);
|
|
117
|
+
setComposerDynamic({});
|
|
118
|
+
}, onField: (blockId, value) => setComposerDynamic((current) => ({ ...current, [blockId]: value })), fields: composerDynamic, onCompose: async () => {
|
|
119
|
+
try {
|
|
120
|
+
await compose(tpl.id, tpl.blocks
|
|
121
|
+
.filter((b) => b.is_dynamic && (composerDynamic[b.block_id] ?? "").trim() !== "")
|
|
122
|
+
.map((b) => ({
|
|
123
|
+
id: b.block_id,
|
|
124
|
+
content: composerDynamic[b.block_id] ?? ""
|
|
125
|
+
})));
|
|
126
|
+
}
|
|
127
|
+
catch {
|
|
128
|
+
setComposeError(t.composingError);
|
|
129
|
+
}
|
|
130
|
+
}, composeResult: composerId === tpl.id ? composeMutation.data?.content ?? null : null, error: composerId === tpl.id ? composeError : null, busy: composerId === tpl.id && composeMutation.isPending })] })] })) : null] }, tpl.id));
|
|
131
|
+
}), (templates.data?.data ?? []).length === 0 && !templates.loading && !templates.error ? (_jsx("li", { className: "p-6 text-center text-sm text-muted-foreground", children: t.empty })) : null] })] }));
|
|
132
|
+
}
|
|
133
|
+
function ComposeInline({ templateId, blocks, t, composing, onStart, onField, fields, onCompose, composeResult, error, busy }) {
|
|
134
|
+
const dynamic = blocks.filter((b) => b.is_dynamic);
|
|
135
|
+
void templateId;
|
|
136
|
+
if (!composing) {
|
|
137
|
+
return (_jsx("button", { type: "button", className: "rounded-md bg-primary px-3 py-1 text-sm font-medium text-primary-foreground", onClick: onStart, children: t.compose }));
|
|
138
|
+
}
|
|
139
|
+
return (_jsxs("div", { className: "space-y-3", children: [dynamic.length === 0 ? (_jsx("p", { className: "text-xs text-muted-foreground", children: t.noDynamic })) : (dynamic.map((b) => (_jsxs("label", { className: "block space-y-1 text-sm", children: [_jsxs("span", { className: "font-medium", children: [t.dynamicFor, ": ", b.name] }), _jsx("textarea", { className: "w-full rounded-md border bg-background px-3 py-2", rows: 2, value: fields[b.block_id] ?? "", placeholder: t.dynamicPlaceholder, onChange: (e) => onField(b.block_id, e.target.value) })] }, b.block_id)))), _jsx("button", { type: "button", className: "rounded-md bg-primary px-3 py-1 text-sm font-medium text-primary-foreground disabled:opacity-50", disabled: busy, onClick: onCompose, children: busy ? t.composing : t.compose }), error ? (_jsx("p", { role: "alert", className: "text-xs text-destructive", children: error })) : null, composeResult ? (_jsx("pre", { className: "whitespace-pre-wrap rounded-md border bg-muted/30 p-3 text-xs", children: composeResult })) : null] }));
|
|
140
|
+
}
|
|
141
|
+
//# sourceMappingURL=PromptTemplateEditor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptTemplateEditor.js","sourceRoot":"","sources":["../../../../src/runtime/react/PromptTemplateEditor.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
/** Render children only when the auth adapter reports a superuser. */
|
|
3
|
+
export declare function RequireSuperuser({ children, fallback }: {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
fallback?: ReactNode;
|
|
6
|
+
}): import("react").JSX.Element | null;
|
|
7
|
+
//# sourceMappingURL=RequireSuperuser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequireSuperuser.d.ts","sourceRoot":"","sources":["../../../../src/runtime/react/RequireSuperuser.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,sEAAsE;AACtE,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,QAAe,EAChB,EAAE;IACD,QAAQ,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,sCAIA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { usePromptContext } from "./PromptProvider.js";
|
|
3
|
+
/** Render children only when the auth adapter reports a superuser. */
|
|
4
|
+
export function RequireSuperuser({ children, fallback = null }) {
|
|
5
|
+
const { isSuperuser, loading } = usePromptContext();
|
|
6
|
+
if (loading)
|
|
7
|
+
return null;
|
|
8
|
+
return _jsx(_Fragment, { children: isSuperuser ? children : fallback });
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=RequireSuperuser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequireSuperuser.js","sourceRoot":"","sources":["../../../../src/runtime/react/RequireSuperuser.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,sEAAsE;AACtE,MAAM,UAAU,gBAAgB,CAAC,EAC/B,QAAQ,EACR,QAAQ,GAAG,IAAI,EAIhB;IACC,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,GAAG,gBAAgB,EAAE,CAAC;IACpD,IAAI,OAAO;QAAE,OAAO,IAAI,CAAC;IACzB,OAAO,4BAAG,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,GAAI,CAAC;AAClD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { PromptRuntimeConfig } from "../../config.js";
|
|
2
|
+
type ViewConfig = Partial<PromptRuntimeConfig>;
|
|
3
|
+
export declare function BlocksView({ config }: {
|
|
4
|
+
config?: ViewConfig;
|
|
5
|
+
}): import("react").JSX.Element;
|
|
6
|
+
export declare function TemplatesView({ config }: {
|
|
7
|
+
config?: ViewConfig;
|
|
8
|
+
}): import("react").JSX.Element;
|
|
9
|
+
export declare function ComposerView({ config, templateId }: {
|
|
10
|
+
config?: ViewConfig;
|
|
11
|
+
templateId?: number;
|
|
12
|
+
}): import("react").JSX.Element;
|
|
13
|
+
export declare function AdminPromptView({ config }: {
|
|
14
|
+
config?: ViewConfig;
|
|
15
|
+
}): import("react").JSX.Element;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/runtime/react/default-ui/index.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAE3D,KAAK,UAAU,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;AAU/C,wBAAgB,UAAU,CAAC,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,CAAC,EAAE,UAAU,CAAA;CAAE,+BAM7D;AAED,wBAAgB,aAAa,CAAC,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,CAAC,EAAE,UAAU,CAAA;CAAE,+BAMhE;AAED,wBAAgB,YAAY,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,EAAE;IAAE,MAAM,CAAC,EAAE,UAAU,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAA;CAAE,+BAMhG;AAED,wBAAgB,eAAe,CAAC,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,CAAC,EAAE,UAAU,CAAA;CAAE,+BAMlE"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { PromptProvider } from "../PromptProvider.js";
|
|
3
|
+
import { PromptQueryProvider } from "../PromptQueryProvider.js";
|
|
4
|
+
import { AdminPromptPanel } from "../AdminPromptPanel.js";
|
|
5
|
+
import { PromptBlockLibrary } from "../PromptBlockLibrary.js";
|
|
6
|
+
import { PromptTemplateEditor } from "../PromptTemplateEditor.js";
|
|
7
|
+
import { PromptComposer } from "../PromptComposer.js";
|
|
8
|
+
function Shell({ config, children }) {
|
|
9
|
+
return (_jsx(PromptQueryProvider, { children: _jsx(PromptProvider, { config: config, children: children }) }));
|
|
10
|
+
}
|
|
11
|
+
export function BlocksView({ config }) {
|
|
12
|
+
return (_jsx(Shell, { config: config, children: _jsx(PromptBlockLibrary, {}) }));
|
|
13
|
+
}
|
|
14
|
+
export function TemplatesView({ config }) {
|
|
15
|
+
return (_jsx(Shell, { config: config, children: _jsx(PromptTemplateEditor, {}) }));
|
|
16
|
+
}
|
|
17
|
+
export function ComposerView({ config, templateId }) {
|
|
18
|
+
return (_jsx(Shell, { config: config, children: _jsx(PromptComposer, { templateId: templateId }) }));
|
|
19
|
+
}
|
|
20
|
+
export function AdminPromptView({ config }) {
|
|
21
|
+
return (_jsx(Shell, { config: config, children: _jsx(AdminPromptPanel, {}) }));
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/runtime/react/default-ui/index.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAKtD,SAAS,KAAK,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAgD;IAC/E,OAAO,CACL,KAAC,mBAAmB,cAClB,KAAC,cAAc,IAAC,MAAM,EAAE,MAAM,YAAG,QAAQ,GAAkB,GACvC,CACvB,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,EAAE,MAAM,EAA2B;IAC5D,OAAO,CACL,KAAC,KAAK,IAAC,MAAM,EAAE,MAAM,YACnB,KAAC,kBAAkB,KAAG,GAChB,CACT,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,EAAE,MAAM,EAA2B;IAC/D,OAAO,CACL,KAAC,KAAK,IAAC,MAAM,EAAE,MAAM,YACnB,KAAC,oBAAoB,KAAG,GAClB,CACT,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,EAAE,MAAM,EAAE,UAAU,EAAgD;IAC/F,OAAO,CACL,KAAC,KAAK,IAAC,MAAM,EAAE,MAAM,YACnB,KAAC,cAAc,IAAC,UAAU,EAAE,UAAU,GAAI,GACpC,CACT,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,EAAE,MAAM,EAA2B;IACjE,OAAO,CACL,KAAC,KAAK,IAAC,MAAM,EAAE,MAAM,YACnB,KAAC,gBAAgB,KAAG,GACd,CACT,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { PromptQueryProvider, type PromptQueryProviderProps } from "./PromptQueryProvider.js";
|
|
2
|
+
export { PromptProvider, usePromptContext, type PromptContextValue } from "./PromptProvider.js";
|
|
3
|
+
export { RequireSuperuser } from "./RequireSuperuser.js";
|
|
4
|
+
export { PromptBlockLibrary } from "./PromptBlockLibrary.js";
|
|
5
|
+
export { PromptTemplateEditor } from "./PromptTemplateEditor.js";
|
|
6
|
+
export { PromptComposer } from "./PromptComposer.js";
|
|
7
|
+
export { AdminPromptPanel } from "./AdminPromptPanel.js";
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/runtime/react/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,KAAK,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAC9F,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,KAAK,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAChG,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { PromptQueryProvider } from "./PromptQueryProvider.js";
|
|
2
|
+
export { PromptProvider, usePromptContext } from "./PromptProvider.js";
|
|
3
|
+
export { RequireSuperuser } from "./RequireSuperuser.js";
|
|
4
|
+
export { PromptBlockLibrary } from "./PromptBlockLibrary.js";
|
|
5
|
+
export { PromptTemplateEditor } from "./PromptTemplateEditor.js";
|
|
6
|
+
export { PromptComposer } from "./PromptComposer.js";
|
|
7
|
+
export { AdminPromptPanel } from "./AdminPromptPanel.js";
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/runtime/react/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAiC,MAAM,0BAA0B,CAAC;AAC9F,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAA2B,MAAM,qBAAqB,CAAC;AAChG,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export type PromptRouteFragments = {
|
|
2
|
+
base?: string;
|
|
3
|
+
blocks?: string | false;
|
|
4
|
+
templates?: string | false;
|
|
5
|
+
composer?: string | false;
|
|
6
|
+
admin?: string | false;
|
|
7
|
+
};
|
|
8
|
+
export type BuiltPromptRoutes = {
|
|
9
|
+
blocks?: string;
|
|
10
|
+
templates?: string;
|
|
11
|
+
composer?: string;
|
|
12
|
+
admin?: string;
|
|
13
|
+
};
|
|
14
|
+
export declare function buildPromptRoutes(routes?: PromptRouteFragments): BuiltPromptRoutes;
|
|
15
|
+
export declare function routeForLocale(pattern: string, locale?: string): string;
|
|
16
|
+
export declare function promptRedirect(routes: BuiltPromptRoutes, page: keyof BuiltPromptRoutes, locale?: string): string;
|
|
17
|
+
//# sourceMappingURL=routes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/runtime/routes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAeF,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,oBAAyB,GAAG,iBAAiB,CAStF;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAIvE;AAED,wBAAgB,cAAc,CAC5B,MAAM,EAAE,iBAAiB,EACzB,IAAI,EAAE,MAAM,iBAAiB,EAC7B,MAAM,CAAC,EAAE,MAAM,GACd,MAAM,CAIR"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const DEFAULT_FRAGMENTS = {
|
|
2
|
+
base: "",
|
|
3
|
+
blocks: "/prompt/blocks",
|
|
4
|
+
templates: "/prompt/templates",
|
|
5
|
+
composer: "/prompt/composer",
|
|
6
|
+
admin: "/admin/prompts"
|
|
7
|
+
};
|
|
8
|
+
function joinRoute(base, fragment) {
|
|
9
|
+
const value = `/${[base, fragment].join("/")}`.replace(/\/+/g, "/");
|
|
10
|
+
return value === "/" ? "/" : value.replace(/\/$/, "");
|
|
11
|
+
}
|
|
12
|
+
export function buildPromptRoutes(routes = {}) {
|
|
13
|
+
const merged = { ...DEFAULT_FRAGMENTS, ...routes };
|
|
14
|
+
const base = merged.base ?? "";
|
|
15
|
+
return {
|
|
16
|
+
blocks: merged.blocks === false ? undefined : joinRoute(base, merged.blocks),
|
|
17
|
+
templates: merged.templates === false ? undefined : joinRoute(base, merged.templates),
|
|
18
|
+
composer: merged.composer === false ? undefined : joinRoute(base, merged.composer),
|
|
19
|
+
admin: merged.admin === false ? undefined : joinRoute(base, merged.admin)
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
export function routeForLocale(pattern, locale) {
|
|
23
|
+
return locale
|
|
24
|
+
? pattern.replace("[locale]", locale)
|
|
25
|
+
: pattern.replace("/:locale", "").replace("[locale]", "");
|
|
26
|
+
}
|
|
27
|
+
export function promptRedirect(routes, page, locale) {
|
|
28
|
+
const route = routes[page];
|
|
29
|
+
if (!route)
|
|
30
|
+
return "/";
|
|
31
|
+
return routeForLocale(route, locale);
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=routes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routes.js","sourceRoot":"","sources":["../../../src/runtime/routes.ts"],"names":[],"mappings":"AAeA,MAAM,iBAAiB,GAAoE;IACzF,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,gBAAgB;IACxB,SAAS,EAAE,mBAAmB;IAC9B,QAAQ,EAAE,kBAAkB;IAC5B,KAAK,EAAE,gBAAgB;CACxB,CAAC;AAEF,SAAS,SAAS,CAAC,IAAY,EAAE,QAAgB;IAC/C,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACpE,OAAO,KAAK,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;AACxD,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,SAA+B,EAAE;IACjE,MAAM,MAAM,GAAG,EAAE,GAAG,iBAAiB,EAAE,GAAG,MAAM,EAAE,CAAC;IACnD,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC;IAC/B,OAAO;QACL,MAAM,EAAE,MAAM,CAAC,MAAM,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;QAC5E,SAAS,EAAE,MAAM,CAAC,SAAS,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,SAAS,CAAC;QACrF,QAAQ,EAAE,MAAM,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,QAAQ,CAAC;QAClF,KAAK,EAAE,MAAM,CAAC,KAAK,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC;KAC1E,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,OAAe,EAAE,MAAe;IAC7D,OAAO,MAAM;QACX,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,EAAE,MAAM,CAAC;QACrC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;AAC9D,CAAC;AAED,MAAM,UAAU,cAAc,CAC5B,MAAyB,EACzB,IAA6B,EAC7B,MAAe;IAEf,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;IAC3B,IAAI,CAAC,KAAK;QAAE,OAAO,GAAG,CAAC;IACvB,OAAO,cAAc,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;AACvC,CAAC"}
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const PromptBlockTypeSchema: z.ZodEnum<{
|
|
3
|
+
format: "format";
|
|
4
|
+
role: "role";
|
|
5
|
+
task: "task";
|
|
6
|
+
context: "context";
|
|
7
|
+
instruction: "instruction";
|
|
8
|
+
example: "example";
|
|
9
|
+
}>;
|
|
10
|
+
export type PromptBlockType = z.infer<typeof PromptBlockTypeSchema>;
|
|
11
|
+
export declare const CategoryTypeSchema: z.ZodEnum<{
|
|
12
|
+
prompt_block: "prompt_block";
|
|
13
|
+
prompt_template: "prompt_template";
|
|
14
|
+
}>;
|
|
15
|
+
export type CategoryType = z.infer<typeof CategoryTypeSchema>;
|
|
16
|
+
export declare const ResponseMessageSchema: z.ZodObject<{
|
|
17
|
+
success: z.ZodBoolean;
|
|
18
|
+
msg: z.ZodString;
|
|
19
|
+
}, z.core.$strict>;
|
|
20
|
+
export type ResponseMessage = z.infer<typeof ResponseMessageSchema>;
|
|
21
|
+
export declare const ResponseModelBaseSchema: z.ZodObject<{
|
|
22
|
+
success: z.ZodBoolean;
|
|
23
|
+
data: z.ZodUnknown;
|
|
24
|
+
}, z.core.$strict>;
|
|
25
|
+
export type ResponseModelBase = z.infer<typeof ResponseModelBaseSchema>;
|
|
26
|
+
export declare const ResponseModelOrMessageSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
27
|
+
success: z.ZodBoolean;
|
|
28
|
+
data: z.ZodUnknown;
|
|
29
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
30
|
+
success: z.ZodBoolean;
|
|
31
|
+
msg: z.ZodString;
|
|
32
|
+
}, z.core.$strict>]>;
|
|
33
|
+
export type ResponseModelOrMessage = z.infer<typeof ResponseModelOrMessageSchema>;
|
|
34
|
+
export declare const PromptBlockPublicSchema: z.ZodObject<{
|
|
35
|
+
id: z.ZodNumber;
|
|
36
|
+
name: z.ZodString;
|
|
37
|
+
slug: z.ZodString;
|
|
38
|
+
description: z.ZodNullable<z.ZodString>;
|
|
39
|
+
content: z.ZodString;
|
|
40
|
+
type: z.ZodEnum<{
|
|
41
|
+
format: "format";
|
|
42
|
+
role: "role";
|
|
43
|
+
task: "task";
|
|
44
|
+
context: "context";
|
|
45
|
+
instruction: "instruction";
|
|
46
|
+
example: "example";
|
|
47
|
+
}>;
|
|
48
|
+
is_dynamic: z.ZodBoolean;
|
|
49
|
+
is_public: z.ZodBoolean;
|
|
50
|
+
owner_id: z.ZodString;
|
|
51
|
+
}, z.core.$strict>;
|
|
52
|
+
export type PromptBlockPublic = z.infer<typeof PromptBlockPublicSchema>;
|
|
53
|
+
export declare const PromptBlockCreateSchema: z.ZodObject<{
|
|
54
|
+
name: z.ZodString;
|
|
55
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
56
|
+
content: z.ZodString;
|
|
57
|
+
type: z.ZodEnum<{
|
|
58
|
+
format: "format";
|
|
59
|
+
role: "role";
|
|
60
|
+
task: "task";
|
|
61
|
+
context: "context";
|
|
62
|
+
instruction: "instruction";
|
|
63
|
+
example: "example";
|
|
64
|
+
}>;
|
|
65
|
+
is_dynamic: z.ZodOptional<z.ZodBoolean>;
|
|
66
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
67
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
|
+
}, z.core.$strict>;
|
|
69
|
+
export type PromptBlockCreate = z.infer<typeof PromptBlockCreateSchema>;
|
|
70
|
+
export declare const PromptBlockUpdateSchema: z.ZodObject<{
|
|
71
|
+
name: z.ZodString;
|
|
72
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
73
|
+
content: z.ZodString;
|
|
74
|
+
type: z.ZodEnum<{
|
|
75
|
+
format: "format";
|
|
76
|
+
role: "role";
|
|
77
|
+
task: "task";
|
|
78
|
+
context: "context";
|
|
79
|
+
instruction: "instruction";
|
|
80
|
+
example: "example";
|
|
81
|
+
}>;
|
|
82
|
+
is_dynamic: z.ZodOptional<z.ZodBoolean>;
|
|
83
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
84
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
85
|
+
}, z.core.$strict>;
|
|
86
|
+
export type PromptBlockUpdate = z.infer<typeof PromptBlockUpdateSchema>;
|
|
87
|
+
export declare const PromptBlocksPublicSchema: z.ZodObject<{
|
|
88
|
+
data: z.ZodArray<z.ZodObject<{
|
|
89
|
+
id: z.ZodNumber;
|
|
90
|
+
name: z.ZodString;
|
|
91
|
+
slug: z.ZodString;
|
|
92
|
+
description: z.ZodNullable<z.ZodString>;
|
|
93
|
+
content: z.ZodString;
|
|
94
|
+
type: z.ZodEnum<{
|
|
95
|
+
format: "format";
|
|
96
|
+
role: "role";
|
|
97
|
+
task: "task";
|
|
98
|
+
context: "context";
|
|
99
|
+
instruction: "instruction";
|
|
100
|
+
example: "example";
|
|
101
|
+
}>;
|
|
102
|
+
is_dynamic: z.ZodBoolean;
|
|
103
|
+
is_public: z.ZodBoolean;
|
|
104
|
+
owner_id: z.ZodString;
|
|
105
|
+
}, z.core.$strict>>;
|
|
106
|
+
count: z.ZodNumber;
|
|
107
|
+
}, z.core.$strict>;
|
|
108
|
+
export type PromptBlocksPublic = z.infer<typeof PromptBlocksPublicSchema>;
|
|
109
|
+
export declare const TemplateBlockPublicSchema: z.ZodObject<{
|
|
110
|
+
id: z.ZodNumber;
|
|
111
|
+
block_id: z.ZodNumber;
|
|
112
|
+
template_id: z.ZodNumber;
|
|
113
|
+
name: z.ZodString;
|
|
114
|
+
slug: z.ZodString;
|
|
115
|
+
description: z.ZodNullable<z.ZodString>;
|
|
116
|
+
content: z.ZodString;
|
|
117
|
+
type: z.ZodEnum<{
|
|
118
|
+
format: "format";
|
|
119
|
+
role: "role";
|
|
120
|
+
task: "task";
|
|
121
|
+
context: "context";
|
|
122
|
+
instruction: "instruction";
|
|
123
|
+
example: "example";
|
|
124
|
+
}>;
|
|
125
|
+
is_dynamic: z.ZodBoolean;
|
|
126
|
+
is_public: z.ZodBoolean;
|
|
127
|
+
position: z.ZodNumber;
|
|
128
|
+
}, z.core.$strict>;
|
|
129
|
+
export type TemplateBlockPublic = z.infer<typeof TemplateBlockPublicSchema>;
|
|
130
|
+
export declare const PromptTemplatePublicSchema: z.ZodObject<{
|
|
131
|
+
id: z.ZodNumber;
|
|
132
|
+
name: z.ZodString;
|
|
133
|
+
slug: z.ZodString;
|
|
134
|
+
description: z.ZodNullable<z.ZodString>;
|
|
135
|
+
is_public: z.ZodBoolean;
|
|
136
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
137
|
+
id: z.ZodNumber;
|
|
138
|
+
block_id: z.ZodNumber;
|
|
139
|
+
template_id: z.ZodNumber;
|
|
140
|
+
name: z.ZodString;
|
|
141
|
+
slug: z.ZodString;
|
|
142
|
+
description: z.ZodNullable<z.ZodString>;
|
|
143
|
+
content: z.ZodString;
|
|
144
|
+
type: z.ZodEnum<{
|
|
145
|
+
format: "format";
|
|
146
|
+
role: "role";
|
|
147
|
+
task: "task";
|
|
148
|
+
context: "context";
|
|
149
|
+
instruction: "instruction";
|
|
150
|
+
example: "example";
|
|
151
|
+
}>;
|
|
152
|
+
is_dynamic: z.ZodBoolean;
|
|
153
|
+
is_public: z.ZodBoolean;
|
|
154
|
+
position: z.ZodNumber;
|
|
155
|
+
}, z.core.$strict>>;
|
|
156
|
+
}, z.core.$strict>;
|
|
157
|
+
export type PromptTemplatePublic = z.infer<typeof PromptTemplatePublicSchema>;
|
|
158
|
+
export declare const PromptTemplateCreateSchema: z.ZodObject<{
|
|
159
|
+
name: z.ZodString;
|
|
160
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
161
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
162
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
163
|
+
}, z.core.$strict>;
|
|
164
|
+
export type PromptTemplateCreate = z.infer<typeof PromptTemplateCreateSchema>;
|
|
165
|
+
export declare const PromptTemplateUpdateSchema: z.ZodObject<{
|
|
166
|
+
name: z.ZodString;
|
|
167
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
168
|
+
is_public: z.ZodOptional<z.ZodBoolean>;
|
|
169
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
170
|
+
}, z.core.$strict>;
|
|
171
|
+
export type PromptTemplateUpdate = z.infer<typeof PromptTemplateUpdateSchema>;
|
|
172
|
+
export declare const PromptTemplatesPublicSchema: z.ZodObject<{
|
|
173
|
+
data: z.ZodArray<z.ZodObject<{
|
|
174
|
+
id: z.ZodNumber;
|
|
175
|
+
name: z.ZodString;
|
|
176
|
+
slug: z.ZodString;
|
|
177
|
+
description: z.ZodNullable<z.ZodString>;
|
|
178
|
+
is_public: z.ZodBoolean;
|
|
179
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
180
|
+
id: z.ZodNumber;
|
|
181
|
+
block_id: z.ZodNumber;
|
|
182
|
+
template_id: z.ZodNumber;
|
|
183
|
+
name: z.ZodString;
|
|
184
|
+
slug: z.ZodString;
|
|
185
|
+
description: z.ZodNullable<z.ZodString>;
|
|
186
|
+
content: z.ZodString;
|
|
187
|
+
type: z.ZodEnum<{
|
|
188
|
+
format: "format";
|
|
189
|
+
role: "role";
|
|
190
|
+
task: "task";
|
|
191
|
+
context: "context";
|
|
192
|
+
instruction: "instruction";
|
|
193
|
+
example: "example";
|
|
194
|
+
}>;
|
|
195
|
+
is_dynamic: z.ZodBoolean;
|
|
196
|
+
is_public: z.ZodBoolean;
|
|
197
|
+
position: z.ZodNumber;
|
|
198
|
+
}, z.core.$strict>>;
|
|
199
|
+
}, z.core.$strict>>;
|
|
200
|
+
count: z.ZodNumber;
|
|
201
|
+
}, z.core.$strict>;
|
|
202
|
+
export type PromptTemplatesPublic = z.infer<typeof PromptTemplatesPublicSchema>;
|
|
203
|
+
export declare const DynamicBlockSchema: z.ZodObject<{
|
|
204
|
+
id: z.ZodNumber;
|
|
205
|
+
content: z.ZodString;
|
|
206
|
+
}, z.core.$strict>;
|
|
207
|
+
export type DynamicBlock = z.infer<typeof DynamicBlockSchema>;
|
|
208
|
+
export declare const ComposedPromptSchema: z.ZodObject<{
|
|
209
|
+
content: z.ZodString;
|
|
210
|
+
}, z.core.$strict>;
|
|
211
|
+
export type ComposedPrompt = z.infer<typeof ComposedPromptSchema>;
|
|
212
|
+
export declare const CategoryPublicSchema: z.ZodObject<{
|
|
213
|
+
id: z.ZodNumber;
|
|
214
|
+
name: z.ZodString;
|
|
215
|
+
slug: z.ZodString;
|
|
216
|
+
type: z.ZodEnum<{
|
|
217
|
+
prompt_block: "prompt_block";
|
|
218
|
+
prompt_template: "prompt_template";
|
|
219
|
+
}>;
|
|
220
|
+
owner_id: z.ZodString;
|
|
221
|
+
}, z.core.$strict>;
|
|
222
|
+
export type CategoryPublic = z.infer<typeof CategoryPublicSchema>;
|
|
223
|
+
export declare const CategoriesPublicSchema: z.ZodObject<{
|
|
224
|
+
data: z.ZodArray<z.ZodObject<{
|
|
225
|
+
id: z.ZodNumber;
|
|
226
|
+
name: z.ZodString;
|
|
227
|
+
slug: z.ZodString;
|
|
228
|
+
type: z.ZodEnum<{
|
|
229
|
+
prompt_block: "prompt_block";
|
|
230
|
+
prompt_template: "prompt_template";
|
|
231
|
+
}>;
|
|
232
|
+
owner_id: z.ZodString;
|
|
233
|
+
}, z.core.$strict>>;
|
|
234
|
+
count: z.ZodNumber;
|
|
235
|
+
}, z.core.$strict>;
|
|
236
|
+
export type CategoriesPublic = z.infer<typeof CategoriesPublicSchema>;
|
|
237
|
+
export declare const CategoryCreateSchema: z.ZodObject<{
|
|
238
|
+
name: z.ZodString;
|
|
239
|
+
}, z.core.$strict>;
|
|
240
|
+
export type CategoryCreate = z.infer<typeof CategoryCreateSchema>;
|
|
241
|
+
export declare const CategoryUpdateSchema: z.ZodObject<{
|
|
242
|
+
name: z.ZodString;
|
|
243
|
+
}, z.core.$strict>;
|
|
244
|
+
export type CategoryUpdate = z.infer<typeof CategoryUpdateSchema>;
|
|
245
|
+
export declare const ActivityCounterSchema: z.ZodObject<{
|
|
246
|
+
model: z.ZodString;
|
|
247
|
+
updated: z.ZodNumber;
|
|
248
|
+
added: z.ZodNumber;
|
|
249
|
+
}, z.core.$strict>;
|
|
250
|
+
export type ActivityCounter = z.infer<typeof ActivityCounterSchema>;
|
|
251
|
+
export declare const ActivityStatsSchema: z.ZodObject<{
|
|
252
|
+
min: z.ZodNumber;
|
|
253
|
+
max: z.ZodNumber;
|
|
254
|
+
activity: z.ZodArray<z.ZodObject<{
|
|
255
|
+
model: z.ZodString;
|
|
256
|
+
updated: z.ZodNumber;
|
|
257
|
+
added: z.ZodNumber;
|
|
258
|
+
}, z.core.$strict>>;
|
|
259
|
+
}, z.core.$strict>;
|
|
260
|
+
export type ActivityStats = z.infer<typeof ActivityStatsSchema>;
|
|
261
|
+
export declare const UsersActivitySchema: z.ZodObject<{
|
|
262
|
+
nb_users: z.ZodNumber;
|
|
263
|
+
activity: z.ZodObject<{
|
|
264
|
+
min: z.ZodNumber;
|
|
265
|
+
max: z.ZodNumber;
|
|
266
|
+
activity: z.ZodArray<z.ZodObject<{
|
|
267
|
+
model: z.ZodString;
|
|
268
|
+
updated: z.ZodNumber;
|
|
269
|
+
added: z.ZodNumber;
|
|
270
|
+
}, z.core.$strict>>;
|
|
271
|
+
}, z.core.$strict>;
|
|
272
|
+
}, z.core.$strict>;
|
|
273
|
+
export type UsersActivity = z.infer<typeof UsersActivitySchema>;
|
|
274
|
+
export type PromptBlockListParams = {
|
|
275
|
+
skip?: number;
|
|
276
|
+
limit?: number;
|
|
277
|
+
};
|
|
278
|
+
export type PromptTemplateListParams = {
|
|
279
|
+
skip?: number;
|
|
280
|
+
limit?: number;
|
|
281
|
+
};
|
|
282
|
+
export type CategoryListParams = {
|
|
283
|
+
skip?: number;
|
|
284
|
+
limit?: number;
|
|
285
|
+
};
|
|
286
|
+
//# sourceMappingURL=schemas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/runtime/schemas.ts"],"names":[],"mappings":"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"}
|