camox 0.0.0 → 0.1.2-alpha.2
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.md +110 -0
- package/dist/components/AuthGate.d.ts +7 -0
- package/dist/components/AuthGate.d.ts.map +1 -0
- package/dist/core/components/AddBlockControlBar.d.ts +9 -0
- package/dist/core/components/AddBlockControlBar.d.ts.map +1 -0
- package/dist/core/components/AddBlockControlBar.js +65 -0
- package/dist/core/components/lexical/InlineContentEditable.d.ts +7 -0
- package/dist/core/components/lexical/InlineContentEditable.d.ts.map +1 -0
- package/dist/core/components/lexical/InlineContentEditable.js +40 -0
- package/dist/core/components/lexical/InlineLexicalEditor.d.ts +12 -0
- package/dist/core/components/lexical/InlineLexicalEditor.d.ts.map +1 -0
- package/dist/core/components/lexical/InlineLexicalEditor.js +133 -0
- package/dist/core/components/lexical/InlineParagraphNode.d.ts +10 -0
- package/dist/core/components/lexical/InlineParagraphNode.d.ts.map +1 -0
- package/dist/core/components/lexical/InlineParagraphNode.js +34 -0
- package/dist/core/components/lexical/SelectionBroadcaster.d.ts +6 -0
- package/dist/core/components/lexical/SelectionBroadcaster.d.ts.map +1 -0
- package/dist/core/components/lexical/SelectionBroadcaster.js +62 -0
- package/dist/core/components/lexical/SidebarLexicalEditor.d.ts +9 -0
- package/dist/core/components/lexical/SidebarLexicalEditor.d.ts.map +1 -0
- package/dist/core/components/lexical/editorConfig.d.ts +4 -0
- package/dist/core/components/lexical/editorConfig.d.ts.map +1 -0
- package/dist/core/components/lexical/editorConfig.js +24 -0
- package/dist/core/createApp.d.ts +373 -0
- package/dist/core/createApp.d.ts.map +1 -0
- package/dist/core/createApp.js +40 -0
- package/dist/core/createBlock.d.ts +947 -0
- package/dist/core/createBlock.d.ts.map +1 -0
- package/dist/core/createBlock.js +873 -0
- package/dist/core/createLayout.d.ts +78 -0
- package/dist/core/createLayout.d.ts.map +1 -0
- package/dist/core/createLayout.js +73 -0
- package/dist/core/hooks/useFieldSelection.d.ts +11 -0
- package/dist/core/hooks/useFieldSelection.d.ts.map +1 -0
- package/dist/core/hooks/useFieldSelection.js +25 -0
- package/dist/core/hooks/useIsEditable.d.ts +2 -0
- package/dist/core/hooks/useIsEditable.d.ts.map +1 -0
- package/dist/core/hooks/useIsEditable.js +12 -0
- package/dist/core/hooks/useOverlayMessage.d.ts +10 -0
- package/dist/core/hooks/useOverlayMessage.d.ts.map +1 -0
- package/dist/core/hooks/useOverlayMessage.js +37 -0
- package/dist/core/lib/contentType.d.ts +165 -0
- package/dist/core/lib/contentType.d.ts.map +1 -0
- package/dist/core/lib/contentType.js +148 -0
- package/dist/core/lib/fieldTypes.d.ts +85 -0
- package/dist/core/lib/fieldTypes.d.ts.map +1 -0
- package/dist/core/lib/lexicalReact.d.ts +3 -0
- package/dist/core/lib/lexicalReact.d.ts.map +1 -0
- package/dist/core/lib/lexicalReact.js +24 -0
- package/dist/core/lib/lexicalState.d.ts +10 -0
- package/dist/core/lib/lexicalState.d.ts.map +1 -0
- package/dist/core/lib/lexicalState.js +38 -0
- package/dist/core/lib/modifierFormats.d.ts +9 -0
- package/dist/core/lib/modifierFormats.d.ts.map +1 -0
- package/dist/core/lib/modifierFormats.js +8 -0
- package/dist/core/lib/modifiers.d.ts +12 -0
- package/dist/core/lib/modifiers.d.ts.map +1 -0
- package/dist/core/lib/modifiers.js +27 -0
- package/dist/features/content/CamoxContent.d.ts +2 -0
- package/dist/features/content/CamoxContent.d.ts.map +1 -0
- package/dist/features/content/CamoxContent.js +100 -0
- package/dist/features/content/components/AssetCard.d.ts +10 -0
- package/dist/features/content/components/AssetCard.d.ts.map +1 -0
- package/dist/features/content/components/AssetCard.js +41 -0
- package/dist/features/content/components/AssetCardSkeleton.d.ts +2 -0
- package/dist/features/content/components/AssetCardSkeleton.d.ts.map +1 -0
- package/dist/features/content/components/AssetCardSkeleton.js +11 -0
- package/dist/features/content/components/ContentSidebar.d.ts +2 -0
- package/dist/features/content/components/ContentSidebar.d.ts.map +1 -0
- package/dist/features/content/components/ContentSidebar.js +15 -0
- package/dist/features/content/components/UploadDropZone.d.ts +9 -0
- package/dist/features/content/components/UploadDropZone.d.ts.map +1 -0
- package/dist/features/content/components/UploadDropZone.js +51 -0
- package/dist/features/content/components/UploadProgressDrawer.d.ts +11 -0
- package/dist/features/content/components/UploadProgressDrawer.d.ts.map +1 -0
- package/dist/features/content/components/UploadProgressDrawer.js +72 -0
- package/dist/features/preview/CamoxPreview.d.ts +124 -0
- package/dist/features/preview/CamoxPreview.d.ts.map +1 -0
- package/dist/features/preview/CamoxPreview.js +253 -0
- package/dist/features/preview/components/AddBlockSheet.d.ts +3 -0
- package/dist/features/preview/components/AddBlockSheet.d.ts.map +1 -0
- package/dist/features/preview/components/AddBlockSheet.js +121 -0
- package/dist/features/preview/components/AgentChatSheet.d.ts +3 -0
- package/dist/features/preview/components/AgentChatSheet.d.ts.map +1 -0
- package/dist/features/preview/components/AgentChatSheet.js +24 -0
- package/dist/features/preview/components/AssetFieldEditor.d.ts +18 -0
- package/dist/features/preview/components/AssetFieldEditor.d.ts.map +1 -0
- package/dist/features/preview/components/AssetFieldEditor.js +139 -0
- package/dist/features/preview/components/AssetLightbox.d.ts +9 -0
- package/dist/features/preview/components/AssetLightbox.d.ts.map +1 -0
- package/dist/features/preview/components/AssetLightbox.js +421 -0
- package/dist/features/preview/components/AssetPickerGrid.d.ts +11 -0
- package/dist/features/preview/components/AssetPickerGrid.d.ts.map +1 -0
- package/dist/features/preview/components/AssetPickerGrid.js +92 -0
- package/dist/features/preview/components/BlockActionsPopover.d.ts +15 -0
- package/dist/features/preview/components/BlockActionsPopover.d.ts.map +1 -0
- package/dist/features/preview/components/BlockActionsPopover.js +506 -0
- package/dist/features/preview/components/CreatePageSheet.d.ts +3 -0
- package/dist/features/preview/components/CreatePageSheet.d.ts.map +1 -0
- package/dist/features/preview/components/CreatePageSheet.js +159 -0
- package/dist/features/preview/components/DebouncedFieldEditor.d.ts +10 -0
- package/dist/features/preview/components/DebouncedFieldEditor.d.ts.map +1 -0
- package/dist/features/preview/components/DebouncedFieldEditor.js +51 -0
- package/dist/features/preview/components/EditPageSheet.d.ts +3 -0
- package/dist/features/preview/components/EditPageSheet.d.ts.map +1 -0
- package/dist/features/preview/components/EditPageSheet.js +352 -0
- package/dist/features/preview/components/ItemFieldsEditor.d.ts +29 -0
- package/dist/features/preview/components/ItemFieldsEditor.d.ts.map +1 -0
- package/dist/features/preview/components/ItemFieldsEditor.js +308 -0
- package/dist/features/preview/components/LinkFieldEditor.d.ts +8 -0
- package/dist/features/preview/components/LinkFieldEditor.d.ts.map +1 -0
- package/dist/features/preview/components/LinkFieldEditor.js +190 -0
- package/dist/features/preview/components/MultipleAssetFieldEditor.d.ts +10 -0
- package/dist/features/preview/components/MultipleAssetFieldEditor.d.ts.map +1 -0
- package/dist/features/preview/components/MultipleAssetFieldEditor.js +232 -0
- package/dist/features/preview/components/OverlayTracker.d.ts +6 -0
- package/dist/features/preview/components/OverlayTracker.d.ts.map +1 -0
- package/dist/features/preview/components/OverlayTracker.js +41 -0
- package/dist/features/preview/components/Overlays.d.ts +6 -0
- package/dist/features/preview/components/Overlays.d.ts.map +1 -0
- package/dist/features/preview/components/Overlays.js +58 -0
- package/dist/features/preview/components/PageContentSheet.d.ts +3 -0
- package/dist/features/preview/components/PageContentSheet.d.ts.map +1 -0
- package/dist/features/preview/components/PageContentSheet.js +492 -0
- package/dist/features/preview/components/PageLocationFieldset.d.ts +14 -0
- package/dist/features/preview/components/PageLocationFieldset.d.ts.map +1 -0
- package/dist/features/preview/components/PageLocationFieldset.js +77 -0
- package/dist/features/preview/components/PagePicker.d.ts +3 -0
- package/dist/features/preview/components/PagePicker.d.ts.map +1 -0
- package/dist/features/preview/components/PagePicker.js +185 -0
- package/dist/features/preview/components/PageTree.d.ts +3 -0
- package/dist/features/preview/components/PageTree.d.ts.map +1 -0
- package/dist/features/preview/components/PageTree.js +410 -0
- package/dist/features/preview/components/PeekedBlock.d.ts +6 -0
- package/dist/features/preview/components/PeekedBlock.d.ts.map +1 -0
- package/dist/features/preview/components/PeekedBlock.js +95 -0
- package/dist/features/preview/components/PreviewPanel.d.ts +12 -0
- package/dist/features/preview/components/PreviewPanel.d.ts.map +1 -0
- package/dist/features/preview/components/PreviewPanel.js +192 -0
- package/dist/features/preview/components/PreviewSideSheet.d.ts +13 -0
- package/dist/features/preview/components/PreviewSideSheet.d.ts.map +1 -0
- package/dist/features/preview/components/PreviewSideSheet.js +28 -0
- package/dist/features/preview/components/PreviewToolbar.d.ts +2 -0
- package/dist/features/preview/components/PreviewToolbar.d.ts.map +1 -0
- package/dist/features/preview/components/PreviewToolbar.js +79 -0
- package/dist/features/preview/components/RepeatableItemsList.d.ts +14 -0
- package/dist/features/preview/components/RepeatableItemsList.d.ts.map +1 -0
- package/dist/features/preview/components/RepeatableItemsList.js +366 -0
- package/dist/features/preview/components/ShikiMarkdown.d.ts +4 -0
- package/dist/features/preview/components/ShikiMarkdown.d.ts.map +1 -0
- package/dist/features/preview/components/ShikiMarkdown.js +37 -0
- package/dist/features/preview/components/TextFormatToolbar.d.ts +2 -0
- package/dist/features/preview/components/TextFormatToolbar.d.ts.map +1 -0
- package/dist/features/preview/components/TextFormatToolbar.js +73 -0
- package/dist/features/preview/components/UnlinkAssetButton.d.ts +9 -0
- package/dist/features/preview/components/UnlinkAssetButton.d.ts.map +1 -0
- package/dist/features/preview/components/UnlinkAssetButton.js +55 -0
- package/dist/features/preview/overlayConstants.d.ts +19 -0
- package/dist/features/preview/overlayConstants.d.ts.map +1 -0
- package/dist/features/preview/overlayConstants.js +21 -0
- package/dist/features/preview/overlayMessages.d.ts +62 -0
- package/dist/features/preview/overlayMessages.d.ts.map +1 -0
- package/dist/features/preview/overlayMessages.js +9 -0
- package/dist/features/preview/previewConstants.d.ts +2 -0
- package/dist/features/preview/previewConstants.d.ts.map +1 -0
- package/dist/features/preview/previewStore.d.ts +116 -0
- package/dist/features/preview/previewStore.d.ts.map +1 -0
- package/dist/features/preview/previewStore.js +321 -0
- package/dist/features/provider/CamoxProvider.d.ts +11 -0
- package/dist/features/provider/CamoxProvider.d.ts.map +1 -0
- package/dist/features/provider/CamoxProvider.js +73 -0
- package/dist/features/provider/actionsStore.d.ts +39 -0
- package/dist/features/provider/actionsStore.d.ts.map +1 -0
- package/dist/features/provider/actionsStore.js +35 -0
- package/dist/features/provider/components/CamoxAppContext.d.ts +371 -0
- package/dist/features/provider/components/CamoxAppContext.d.ts.map +1 -0
- package/dist/features/provider/components/CamoxAppContext.js +17 -0
- package/dist/features/provider/components/CommandPalette.d.ts +3 -0
- package/dist/features/provider/components/CommandPalette.d.ts.map +1 -0
- package/dist/features/provider/components/CommandPalette.js +127 -0
- package/dist/features/provider/useAdminShortcuts.d.ts +5 -0
- package/dist/features/provider/useAdminShortcuts.d.ts.map +1 -0
- package/dist/features/provider/useAdminShortcuts.js +83 -0
- package/dist/features/routes/ogRoute.d.ts +7 -0
- package/dist/features/routes/ogRoute.d.ts.map +1 -0
- package/dist/features/routes/ogRoute.js +19 -0
- package/dist/features/routes/pageRoute.d.ts +135 -0
- package/dist/features/routes/pageRoute.d.ts.map +1 -0
- package/dist/features/routes/pageRoute.js +112 -0
- package/dist/features/studio/CamoxStudio.d.ts +7 -0
- package/dist/features/studio/CamoxStudio.d.ts.map +1 -0
- package/dist/features/studio/CamoxStudio.js +24 -0
- package/dist/features/studio/components/Navbar.d.ts +4 -0
- package/dist/features/studio/components/Navbar.d.ts.map +1 -0
- package/dist/features/studio/components/Navbar.js +95 -0
- package/dist/features/studio/components/ProjectMenu.d.ts +2 -0
- package/dist/features/studio/components/ProjectMenu.d.ts.map +1 -0
- package/dist/features/studio/components/ProjectMenu.js +132 -0
- package/dist/features/studio/components/UserButton.d.ts +2 -0
- package/dist/features/studio/components/UserButton.d.ts.map +1 -0
- package/dist/features/studio/components/UserButton.js +96 -0
- package/dist/features/studio/studioStore.d.ts +17 -0
- package/dist/features/studio/studioStore.d.ts.map +1 -0
- package/dist/features/studio/studioStore.js +44 -0
- package/dist/features/studio/useTheme.d.ts +9 -0
- package/dist/features/studio/useTheme.d.ts.map +1 -0
- package/dist/features/studio/useTheme.js +98 -0
- package/dist/features/vite/appGeneration.d.ts +4 -0
- package/dist/features/vite/appGeneration.d.ts.map +1 -0
- package/dist/features/vite/appGeneration.js +67 -0
- package/dist/features/vite/blockBoilerplate.d.ts +3 -0
- package/dist/features/vite/blockBoilerplate.d.ts.map +1 -0
- package/dist/features/vite/blockBoilerplate.js +59 -0
- package/dist/features/vite/convexSync.d.ts +6 -0
- package/dist/features/vite/convexSync.d.ts.map +1 -0
- package/dist/features/vite/convexSync.js +98 -0
- package/dist/features/vite/definitionsSync.d.ts +11 -0
- package/dist/features/vite/definitionsSync.d.ts.map +1 -0
- package/dist/features/vite/definitionsSync.js +157 -0
- package/dist/features/vite/routeGeneration.d.ts +4 -0
- package/dist/features/vite/routeGeneration.d.ts.map +1 -0
- package/dist/features/vite/routeGeneration.js +194 -0
- package/dist/features/vite/skillGeneration.d.ts +4 -0
- package/dist/features/vite/skillGeneration.d.ts.map +1 -0
- package/dist/features/vite/skillGeneration.js +69 -0
- package/dist/features/vite/utils.d.ts +2 -0
- package/dist/features/vite/utils.d.ts.map +1 -0
- package/dist/features/vite/utils.js +10 -0
- package/dist/features/vite/vite.d.ts +18 -0
- package/dist/features/vite/vite.d.ts.map +1 -0
- package/dist/features/vite/vite.js +77 -0
- package/dist/hooks/use-file-upload.d.ts +22 -0
- package/dist/hooks/use-file-upload.d.ts.map +1 -0
- package/dist/hooks/use-marquee-selection.d.ts +17 -0
- package/dist/hooks/use-marquee-selection.d.ts.map +1 -0
- package/dist/lib/analytics-client.d.ts +3 -0
- package/dist/lib/analytics-client.d.ts.map +1 -0
- package/dist/lib/analytics.d.ts +3 -0
- package/dist/lib/analytics.d.ts.map +1 -0
- package/dist/lib/analytics.js +24 -0
- package/dist/lib/auth.d.ts +3683 -0
- package/dist/lib/auth.d.ts.map +1 -0
- package/dist/lib/convex-site.d.ts +3 -0
- package/dist/lib/convex-site.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +40 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/studio.css +2 -0
- package/package.json +123 -10
- package/server/api.d.ts +1 -0
- package/server/api.js +1 -0
- package/server/dataModel.d.ts +1 -0
- package/server/dataModel.js +1 -0
- package/skills/camox-block/SKILL.md +357 -0
- package/skills/camox-layout/SKILL.md +181 -0
- package/index.js +0 -3
|
@@ -0,0 +1,947 @@
|
|
|
1
|
+
import { Type as TypeBoxType, TSchema, Static } from '@sinclair/typebox';
|
|
2
|
+
import { Id } from 'camox/server/dataModel';
|
|
3
|
+
import { Type, EmbedURL, LinkValue, ImageValue, FileValue, ExtractAllPlaceholders } from './lib/contentType.ts';
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
export { Type };
|
|
6
|
+
interface CreateBlockOptions<TSchemaShape extends Record<string, TSchema> = Record<string, TSchema>, TSettingsShape extends Record<string, TSchema> = Record<string, TSchema>, TMarkdown extends readonly string[] = readonly string[]> {
|
|
7
|
+
id: string;
|
|
8
|
+
/**
|
|
9
|
+
* Human-readable title for the block (JSON Schema `title`).
|
|
10
|
+
*/
|
|
11
|
+
title: string;
|
|
12
|
+
/**
|
|
13
|
+
* Description for AI agents on when and how to use this block (JSON Schema `description`).
|
|
14
|
+
* This should describe the block's purpose, typical use cases, and any important
|
|
15
|
+
* considerations for placement or configuration.
|
|
16
|
+
*/
|
|
17
|
+
description: string;
|
|
18
|
+
/**
|
|
19
|
+
* Schema defining the structure of the block's editable content.
|
|
20
|
+
* All fields must have default values.
|
|
21
|
+
* Use Type.String() and Type.RepeatableObject() to define the schema.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* content: {
|
|
25
|
+
* title: Type.String({ default: 'Hello' }),
|
|
26
|
+
* items: Type.RepeatableObject({
|
|
27
|
+
* name: Type.String({ default: 'Item' })
|
|
28
|
+
* }, { minItems: 1, maxItems: 10 })
|
|
29
|
+
* }
|
|
30
|
+
*/
|
|
31
|
+
content: TSchemaShape;
|
|
32
|
+
/**
|
|
33
|
+
* Template for rendering block content as markdown.
|
|
34
|
+
* Each line is joined with `\n\n`. Use `{{fieldName}}` placeholders for field values.
|
|
35
|
+
* Lines where all placeholders resolve to empty are omitted.
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* toMarkdown: ["# {{title}}", "{{description}}", "{{illustration}}", "{{cta}}"]
|
|
39
|
+
*/
|
|
40
|
+
toMarkdown: [ExtractAllPlaceholders<TMarkdown>] extends [Extract<keyof TSchemaShape, string>] ? TMarkdown : readonly [
|
|
41
|
+
`Invalid toMarkdown placeholder {{${Exclude<ExtractAllPlaceholders<TMarkdown>, Extract<keyof TSchemaShape, string>>}}}`
|
|
42
|
+
];
|
|
43
|
+
/**
|
|
44
|
+
* Optional schema defining block-level settings (e.g. layout variant, toggles).
|
|
45
|
+
* Settings are not inline-editable; they use Type.Enum() and Type.Boolean().
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* settings: {
|
|
49
|
+
* alignment: Type.Enum({ default: 'left', options: { left: 'Left', center: 'Center' } }),
|
|
50
|
+
* showBackground: Type.Boolean({ default: true })
|
|
51
|
+
* }
|
|
52
|
+
*/
|
|
53
|
+
settings?: TSettingsShape;
|
|
54
|
+
/**
|
|
55
|
+
* When true, this block can only be used inside layouts and won't appear in the AddBlockSheet
|
|
56
|
+
* or be available for AI page generation.
|
|
57
|
+
*/
|
|
58
|
+
layoutOnly?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* React component that renders the block.
|
|
61
|
+
* Must be defined as a separate function (not inline, not an arrow function).
|
|
62
|
+
* Should use the Field component returned by createBlock to render editable content.
|
|
63
|
+
*/
|
|
64
|
+
component: React.ComponentType<{
|
|
65
|
+
content: Static<ReturnType<typeof TypeBoxType.Object<TSchemaShape>>>;
|
|
66
|
+
}>;
|
|
67
|
+
}
|
|
68
|
+
interface BlockData<TContent> {
|
|
69
|
+
_id: Id<"blocks">;
|
|
70
|
+
type: string;
|
|
71
|
+
content: TContent;
|
|
72
|
+
settings?: Record<string, unknown>;
|
|
73
|
+
position: string;
|
|
74
|
+
}
|
|
75
|
+
export interface BlockComponentProps<TContent> {
|
|
76
|
+
blockData: BlockData<TContent>;
|
|
77
|
+
mode: "site" | "peek" | "layout";
|
|
78
|
+
isFirstBlock?: boolean;
|
|
79
|
+
showAddBlockTop?: boolean;
|
|
80
|
+
showAddBlockBottom?: boolean;
|
|
81
|
+
addBlockAfterPosition?: string | null;
|
|
82
|
+
}
|
|
83
|
+
export declare function createBlock<TSchemaShape extends Record<string, TSchema>, TSettingsShape extends Record<string, TSchema> = Record<string, never>, const TMarkdown extends readonly string[] = readonly string[]>(options: CreateBlockOptions<TSchemaShape, TSettingsShape, TMarkdown>): {
|
|
84
|
+
/**
|
|
85
|
+
* The react component to be used at the page level when mapping on blocks content.
|
|
86
|
+
* It exposes context that will be consumed by the Field component, and provides visual editing
|
|
87
|
+
* capabilities (e.g. delete and reorder blocks).
|
|
88
|
+
*/
|
|
89
|
+
Component: ({ blockData, mode, isFirstBlock, showAddBlockTop, showAddBlockBottom, addBlockAfterPosition, }: BlockComponentProps<import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
90
|
+
params: unknown[] & [];
|
|
91
|
+
})["static"]; }, { [K_1 in keyof TSchemaShape]: TSchemaShape[K_1] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_1] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_1]> ? K_1 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
92
|
+
params: unknown[] & [];
|
|
93
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? never : K_2 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
94
|
+
params: unknown[] & [];
|
|
95
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
96
|
+
params: unknown[] & [];
|
|
97
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_1 in keyof TSchemaShape]: TSchemaShape[K_1] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_1] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_1]> ? K_1 : never : never; }[keyof TSchemaShape] | { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? never : K_2 : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>>>>>) => import("react/jsx-runtime").JSX.Element;
|
|
98
|
+
Detached: ({ children }: {
|
|
99
|
+
children: React.ReactNode;
|
|
100
|
+
}) => React.JSX.Element;
|
|
101
|
+
Field: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
102
|
+
params: unknown[] & [];
|
|
103
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
104
|
+
params: unknown[] & [];
|
|
105
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
106
|
+
params: unknown[] & [];
|
|
107
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
108
|
+
params: unknown[] & [];
|
|
109
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
110
|
+
params: unknown[] & [];
|
|
111
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
112
|
+
params: unknown[] & [];
|
|
113
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
114
|
+
params: unknown[] & [];
|
|
115
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
116
|
+
params: unknown[] & [];
|
|
117
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends EmbedURL ? never : import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
118
|
+
params: unknown[] & [];
|
|
119
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
120
|
+
params: unknown[] & [];
|
|
121
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
122
|
+
params: unknown[] & [];
|
|
123
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
124
|
+
params: unknown[] & [];
|
|
125
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends string ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
126
|
+
params: unknown[] & [];
|
|
127
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
128
|
+
params: unknown[] & [];
|
|
129
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
130
|
+
params: unknown[] & [];
|
|
131
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
132
|
+
params: unknown[] & [];
|
|
133
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
134
|
+
name: K;
|
|
135
|
+
children: (content: React.ReactNode) => React.ReactNode;
|
|
136
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
137
|
+
Embed: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
138
|
+
params: unknown[] & [];
|
|
139
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
140
|
+
params: unknown[] & [];
|
|
141
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
142
|
+
params: unknown[] & [];
|
|
143
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
144
|
+
params: unknown[] & [];
|
|
145
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
146
|
+
params: unknown[] & [];
|
|
147
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
148
|
+
params: unknown[] & [];
|
|
149
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
150
|
+
params: unknown[] & [];
|
|
151
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
152
|
+
params: unknown[] & [];
|
|
153
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends EmbedURL ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
154
|
+
params: unknown[] & [];
|
|
155
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
156
|
+
params: unknown[] & [];
|
|
157
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
158
|
+
params: unknown[] & [];
|
|
159
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
160
|
+
params: unknown[] & [];
|
|
161
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
162
|
+
name: K;
|
|
163
|
+
children: (url: string) => React.ReactNode;
|
|
164
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
165
|
+
Link: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
166
|
+
params: unknown[] & [];
|
|
167
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
168
|
+
params: unknown[] & [];
|
|
169
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
170
|
+
params: unknown[] & [];
|
|
171
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
172
|
+
params: unknown[] & [];
|
|
173
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
174
|
+
params: unknown[] & [];
|
|
175
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
176
|
+
params: unknown[] & [];
|
|
177
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
178
|
+
params: unknown[] & [];
|
|
179
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
180
|
+
params: unknown[] & [];
|
|
181
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends LinkValue ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
182
|
+
params: unknown[] & [];
|
|
183
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
184
|
+
params: unknown[] & [];
|
|
185
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
186
|
+
params: unknown[] & [];
|
|
187
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
188
|
+
params: unknown[] & [];
|
|
189
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
190
|
+
name: K;
|
|
191
|
+
children: (link: {
|
|
192
|
+
text: string;
|
|
193
|
+
href: string;
|
|
194
|
+
newTab: boolean;
|
|
195
|
+
}) => React.ReactNode;
|
|
196
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
197
|
+
Image: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
198
|
+
params: unknown[] & [];
|
|
199
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
200
|
+
params: unknown[] & [];
|
|
201
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
202
|
+
params: unknown[] & [];
|
|
203
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
204
|
+
params: unknown[] & [];
|
|
205
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as ImageValue extends import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
206
|
+
params: unknown[] & [];
|
|
207
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
208
|
+
params: unknown[] & [];
|
|
209
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
210
|
+
params: unknown[] & [];
|
|
211
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
212
|
+
params: unknown[] & [];
|
|
213
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] ? import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
214
|
+
params: unknown[] & [];
|
|
215
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
216
|
+
params: unknown[] & [];
|
|
217
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
218
|
+
params: unknown[] & [];
|
|
219
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
220
|
+
params: unknown[] & [];
|
|
221
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends ImageValue ? K_5 : never : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
222
|
+
params: unknown[] & [];
|
|
223
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
224
|
+
params: unknown[] & [];
|
|
225
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
226
|
+
params: unknown[] & [];
|
|
227
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
228
|
+
params: unknown[] & [];
|
|
229
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
230
|
+
name: K;
|
|
231
|
+
children: (image: ImageValue) => React.ReactNode;
|
|
232
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
233
|
+
File: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
234
|
+
params: unknown[] & [];
|
|
235
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
236
|
+
params: unknown[] & [];
|
|
237
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
238
|
+
params: unknown[] & [];
|
|
239
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
240
|
+
params: unknown[] & [];
|
|
241
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as FileValue extends import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
242
|
+
params: unknown[] & [];
|
|
243
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
244
|
+
params: unknown[] & [];
|
|
245
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
246
|
+
params: unknown[] & [];
|
|
247
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
248
|
+
params: unknown[] & [];
|
|
249
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] ? import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
250
|
+
params: unknown[] & [];
|
|
251
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
252
|
+
params: unknown[] & [];
|
|
253
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
254
|
+
params: unknown[] & [];
|
|
255
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
256
|
+
params: unknown[] & [];
|
|
257
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends FileValue ? K_5 : never : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
258
|
+
params: unknown[] & [];
|
|
259
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
260
|
+
params: unknown[] & [];
|
|
261
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
262
|
+
params: unknown[] & [];
|
|
263
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
264
|
+
params: unknown[] & [];
|
|
265
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
266
|
+
name: K;
|
|
267
|
+
children: (file: FileValue) => React.ReactNode;
|
|
268
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
269
|
+
Repeater: <K extends keyof { [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
270
|
+
params: unknown[] & [];
|
|
271
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
272
|
+
params: unknown[] & [];
|
|
273
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
274
|
+
params: unknown[] & [];
|
|
275
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
276
|
+
params: unknown[] & [];
|
|
277
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
278
|
+
params: unknown[] & [];
|
|
279
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
280
|
+
params: unknown[] & [];
|
|
281
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
282
|
+
params: unknown[] & [];
|
|
283
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
284
|
+
params: unknown[] & [];
|
|
285
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
286
|
+
params: unknown[] & [];
|
|
287
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
288
|
+
params: unknown[] & [];
|
|
289
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
290
|
+
params: unknown[] & [];
|
|
291
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
292
|
+
params: unknown[] & [];
|
|
293
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }>({ name, children, }: {
|
|
294
|
+
name: K;
|
|
295
|
+
children: (item: {
|
|
296
|
+
Field: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
297
|
+
params: unknown[] & [];
|
|
298
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
299
|
+
params: unknown[] & [];
|
|
300
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
301
|
+
params: unknown[] & [];
|
|
302
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
303
|
+
params: unknown[] & [];
|
|
304
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
305
|
+
params: unknown[] & [];
|
|
306
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
307
|
+
params: unknown[] & [];
|
|
308
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
309
|
+
params: unknown[] & [];
|
|
310
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
311
|
+
params: unknown[] & [];
|
|
312
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
313
|
+
params: unknown[] & [];
|
|
314
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
315
|
+
params: unknown[] & [];
|
|
316
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
317
|
+
params: unknown[] & [];
|
|
318
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
319
|
+
params: unknown[] & [];
|
|
320
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
321
|
+
params: unknown[] & [];
|
|
322
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
323
|
+
params: unknown[] & [];
|
|
324
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
325
|
+
params: unknown[] & [];
|
|
326
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
327
|
+
params: unknown[] & [];
|
|
328
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
329
|
+
params: unknown[] & [];
|
|
330
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
331
|
+
params: unknown[] & [];
|
|
332
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
333
|
+
params: unknown[] & [];
|
|
334
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
335
|
+
params: unknown[] & [];
|
|
336
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
337
|
+
params: unknown[] & [];
|
|
338
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
339
|
+
params: unknown[] & [];
|
|
340
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
341
|
+
params: unknown[] & [];
|
|
342
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
343
|
+
params: unknown[] & [];
|
|
344
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends string ? F_1 : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
345
|
+
params: unknown[] & [];
|
|
346
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
347
|
+
params: unknown[] & [];
|
|
348
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
349
|
+
params: unknown[] & [];
|
|
350
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
351
|
+
params: unknown[] & [];
|
|
352
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
353
|
+
params: unknown[] & [];
|
|
354
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
355
|
+
params: unknown[] & [];
|
|
356
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
357
|
+
params: unknown[] & [];
|
|
358
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
359
|
+
params: unknown[] & [];
|
|
360
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
361
|
+
params: unknown[] & [];
|
|
362
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
363
|
+
params: unknown[] & [];
|
|
364
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
365
|
+
params: unknown[] & [];
|
|
366
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
367
|
+
params: unknown[] & [];
|
|
368
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
369
|
+
name: F;
|
|
370
|
+
children: (content: React.ReactNode) => React.ReactNode;
|
|
371
|
+
}) => React.ReactNode;
|
|
372
|
+
Link: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
373
|
+
params: unknown[] & [];
|
|
374
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
375
|
+
params: unknown[] & [];
|
|
376
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
377
|
+
params: unknown[] & [];
|
|
378
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
379
|
+
params: unknown[] & [];
|
|
380
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
381
|
+
params: unknown[] & [];
|
|
382
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
383
|
+
params: unknown[] & [];
|
|
384
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
385
|
+
params: unknown[] & [];
|
|
386
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
387
|
+
params: unknown[] & [];
|
|
388
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
389
|
+
params: unknown[] & [];
|
|
390
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
391
|
+
params: unknown[] & [];
|
|
392
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
393
|
+
params: unknown[] & [];
|
|
394
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
395
|
+
params: unknown[] & [];
|
|
396
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
397
|
+
params: unknown[] & [];
|
|
398
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
399
|
+
params: unknown[] & [];
|
|
400
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
401
|
+
params: unknown[] & [];
|
|
402
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
403
|
+
params: unknown[] & [];
|
|
404
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
405
|
+
params: unknown[] & [];
|
|
406
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
407
|
+
params: unknown[] & [];
|
|
408
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
409
|
+
params: unknown[] & [];
|
|
410
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
411
|
+
params: unknown[] & [];
|
|
412
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
413
|
+
params: unknown[] & [];
|
|
414
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
415
|
+
params: unknown[] & [];
|
|
416
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
417
|
+
params: unknown[] & [];
|
|
418
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
419
|
+
params: unknown[] & [];
|
|
420
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends LinkValue ? F_1 : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
421
|
+
params: unknown[] & [];
|
|
422
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
423
|
+
params: unknown[] & [];
|
|
424
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
425
|
+
params: unknown[] & [];
|
|
426
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
427
|
+
params: unknown[] & [];
|
|
428
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
429
|
+
params: unknown[] & [];
|
|
430
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
431
|
+
params: unknown[] & [];
|
|
432
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
433
|
+
params: unknown[] & [];
|
|
434
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
435
|
+
params: unknown[] & [];
|
|
436
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
437
|
+
params: unknown[] & [];
|
|
438
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
439
|
+
params: unknown[] & [];
|
|
440
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
441
|
+
params: unknown[] & [];
|
|
442
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
443
|
+
params: unknown[] & [];
|
|
444
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
445
|
+
name: F;
|
|
446
|
+
children: (link: {
|
|
447
|
+
text: string;
|
|
448
|
+
href: string;
|
|
449
|
+
newTab: boolean;
|
|
450
|
+
}) => React.ReactNode;
|
|
451
|
+
}) => React.ReactNode;
|
|
452
|
+
Embed: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
453
|
+
params: unknown[] & [];
|
|
454
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
455
|
+
params: unknown[] & [];
|
|
456
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
457
|
+
params: unknown[] & [];
|
|
458
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
459
|
+
params: unknown[] & [];
|
|
460
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
461
|
+
params: unknown[] & [];
|
|
462
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
463
|
+
params: unknown[] & [];
|
|
464
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
465
|
+
params: unknown[] & [];
|
|
466
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
467
|
+
params: unknown[] & [];
|
|
468
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
469
|
+
params: unknown[] & [];
|
|
470
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
471
|
+
params: unknown[] & [];
|
|
472
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
473
|
+
params: unknown[] & [];
|
|
474
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
475
|
+
params: unknown[] & [];
|
|
476
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
477
|
+
params: unknown[] & [];
|
|
478
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
479
|
+
params: unknown[] & [];
|
|
480
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
481
|
+
params: unknown[] & [];
|
|
482
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
483
|
+
params: unknown[] & [];
|
|
484
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
485
|
+
params: unknown[] & [];
|
|
486
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
487
|
+
params: unknown[] & [];
|
|
488
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
489
|
+
params: unknown[] & [];
|
|
490
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
491
|
+
params: unknown[] & [];
|
|
492
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
493
|
+
params: unknown[] & [];
|
|
494
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
495
|
+
params: unknown[] & [];
|
|
496
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
497
|
+
params: unknown[] & [];
|
|
498
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
499
|
+
params: unknown[] & [];
|
|
500
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends EmbedURL ? F_1 : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
501
|
+
params: unknown[] & [];
|
|
502
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
503
|
+
params: unknown[] & [];
|
|
504
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
505
|
+
params: unknown[] & [];
|
|
506
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
507
|
+
params: unknown[] & [];
|
|
508
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
509
|
+
params: unknown[] & [];
|
|
510
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
511
|
+
params: unknown[] & [];
|
|
512
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
513
|
+
params: unknown[] & [];
|
|
514
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
515
|
+
params: unknown[] & [];
|
|
516
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
517
|
+
params: unknown[] & [];
|
|
518
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
519
|
+
params: unknown[] & [];
|
|
520
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
521
|
+
params: unknown[] & [];
|
|
522
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
523
|
+
params: unknown[] & [];
|
|
524
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
525
|
+
name: F;
|
|
526
|
+
children: (url: string) => React.ReactNode;
|
|
527
|
+
}) => React.ReactNode;
|
|
528
|
+
Image: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
529
|
+
params: unknown[] & [];
|
|
530
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
531
|
+
params: unknown[] & [];
|
|
532
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
533
|
+
params: unknown[] & [];
|
|
534
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
535
|
+
params: unknown[] & [];
|
|
536
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
537
|
+
params: unknown[] & [];
|
|
538
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
539
|
+
params: unknown[] & [];
|
|
540
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
541
|
+
params: unknown[] & [];
|
|
542
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
543
|
+
params: unknown[] & [];
|
|
544
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
545
|
+
params: unknown[] & [];
|
|
546
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
547
|
+
params: unknown[] & [];
|
|
548
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
549
|
+
params: unknown[] & [];
|
|
550
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
551
|
+
params: unknown[] & [];
|
|
552
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as ImageValue extends ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
553
|
+
params: unknown[] & [];
|
|
554
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
555
|
+
params: unknown[] & [];
|
|
556
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
557
|
+
params: unknown[] & [];
|
|
558
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
559
|
+
params: unknown[] & [];
|
|
560
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
561
|
+
params: unknown[] & [];
|
|
562
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
563
|
+
params: unknown[] & [];
|
|
564
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
565
|
+
params: unknown[] & [];
|
|
566
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
567
|
+
params: unknown[] & [];
|
|
568
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
569
|
+
params: unknown[] & [];
|
|
570
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
571
|
+
params: unknown[] & [];
|
|
572
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
573
|
+
params: unknown[] & [];
|
|
574
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
575
|
+
params: unknown[] & [];
|
|
576
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] ? ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
577
|
+
params: unknown[] & [];
|
|
578
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
579
|
+
params: unknown[] & [];
|
|
580
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
581
|
+
params: unknown[] & [];
|
|
582
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
583
|
+
params: unknown[] & [];
|
|
584
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
585
|
+
params: unknown[] & [];
|
|
586
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
587
|
+
params: unknown[] & [];
|
|
588
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
589
|
+
params: unknown[] & [];
|
|
590
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
591
|
+
params: unknown[] & [];
|
|
592
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
593
|
+
params: unknown[] & [];
|
|
594
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
595
|
+
params: unknown[] & [];
|
|
596
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
597
|
+
params: unknown[] & [];
|
|
598
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
599
|
+
params: unknown[] & [];
|
|
600
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
601
|
+
params: unknown[] & [];
|
|
602
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
603
|
+
params: unknown[] & [];
|
|
604
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
605
|
+
params: unknown[] & [];
|
|
606
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
607
|
+
params: unknown[] & [];
|
|
608
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
609
|
+
params: unknown[] & [];
|
|
610
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
611
|
+
params: unknown[] & [];
|
|
612
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
613
|
+
params: unknown[] & [];
|
|
614
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
615
|
+
params: unknown[] & [];
|
|
616
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
617
|
+
params: unknown[] & [];
|
|
618
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
619
|
+
params: unknown[] & [];
|
|
620
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
621
|
+
params: unknown[] & [];
|
|
622
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
623
|
+
params: unknown[] & [];
|
|
624
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] & {
|
|
625
|
+
url: string;
|
|
626
|
+
alt: string;
|
|
627
|
+
filename: string;
|
|
628
|
+
mimeType: string;
|
|
629
|
+
_fileId?: string;
|
|
630
|
+
} & {
|
|
631
|
+
readonly __brand: "ImageValue";
|
|
632
|
+
} ? F_1 : never : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
633
|
+
params: unknown[] & [];
|
|
634
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
635
|
+
params: unknown[] & [];
|
|
636
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
637
|
+
params: unknown[] & [];
|
|
638
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
639
|
+
params: unknown[] & [];
|
|
640
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
641
|
+
params: unknown[] & [];
|
|
642
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
643
|
+
params: unknown[] & [];
|
|
644
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
645
|
+
params: unknown[] & [];
|
|
646
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
647
|
+
params: unknown[] & [];
|
|
648
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
649
|
+
params: unknown[] & [];
|
|
650
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
651
|
+
params: unknown[] & [];
|
|
652
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
653
|
+
params: unknown[] & [];
|
|
654
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
655
|
+
params: unknown[] & [];
|
|
656
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
657
|
+
name: F;
|
|
658
|
+
children: (image: ImageValue) => React.ReactNode;
|
|
659
|
+
}) => React.ReactNode;
|
|
660
|
+
File: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
661
|
+
params: unknown[] & [];
|
|
662
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
663
|
+
params: unknown[] & [];
|
|
664
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
665
|
+
params: unknown[] & [];
|
|
666
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
667
|
+
params: unknown[] & [];
|
|
668
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
669
|
+
params: unknown[] & [];
|
|
670
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
671
|
+
params: unknown[] & [];
|
|
672
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
673
|
+
params: unknown[] & [];
|
|
674
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
675
|
+
params: unknown[] & [];
|
|
676
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
677
|
+
params: unknown[] & [];
|
|
678
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
679
|
+
params: unknown[] & [];
|
|
680
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
681
|
+
params: unknown[] & [];
|
|
682
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
683
|
+
params: unknown[] & [];
|
|
684
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as FileValue extends ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
685
|
+
params: unknown[] & [];
|
|
686
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
687
|
+
params: unknown[] & [];
|
|
688
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
689
|
+
params: unknown[] & [];
|
|
690
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
691
|
+
params: unknown[] & [];
|
|
692
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
693
|
+
params: unknown[] & [];
|
|
694
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
695
|
+
params: unknown[] & [];
|
|
696
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
697
|
+
params: unknown[] & [];
|
|
698
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
699
|
+
params: unknown[] & [];
|
|
700
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
701
|
+
params: unknown[] & [];
|
|
702
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
703
|
+
params: unknown[] & [];
|
|
704
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
705
|
+
params: unknown[] & [];
|
|
706
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
707
|
+
params: unknown[] & [];
|
|
708
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] ? ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
709
|
+
params: unknown[] & [];
|
|
710
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
711
|
+
params: unknown[] & [];
|
|
712
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
713
|
+
params: unknown[] & [];
|
|
714
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
715
|
+
params: unknown[] & [];
|
|
716
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
717
|
+
params: unknown[] & [];
|
|
718
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
719
|
+
params: unknown[] & [];
|
|
720
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
721
|
+
params: unknown[] & [];
|
|
722
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
723
|
+
params: unknown[] & [];
|
|
724
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
725
|
+
params: unknown[] & [];
|
|
726
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
727
|
+
params: unknown[] & [];
|
|
728
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
729
|
+
params: unknown[] & [];
|
|
730
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
731
|
+
params: unknown[] & [];
|
|
732
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
733
|
+
params: unknown[] & [];
|
|
734
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
735
|
+
params: unknown[] & [];
|
|
736
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
737
|
+
params: unknown[] & [];
|
|
738
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
739
|
+
params: unknown[] & [];
|
|
740
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
741
|
+
params: unknown[] & [];
|
|
742
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
743
|
+
params: unknown[] & [];
|
|
744
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
745
|
+
params: unknown[] & [];
|
|
746
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
747
|
+
params: unknown[] & [];
|
|
748
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
749
|
+
params: unknown[] & [];
|
|
750
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
751
|
+
params: unknown[] & [];
|
|
752
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
753
|
+
params: unknown[] & [];
|
|
754
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
755
|
+
params: unknown[] & [];
|
|
756
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] & {
|
|
757
|
+
url: string;
|
|
758
|
+
alt: string;
|
|
759
|
+
filename: string;
|
|
760
|
+
mimeType: string;
|
|
761
|
+
_fileId?: string;
|
|
762
|
+
} & {
|
|
763
|
+
readonly __brand: "FileValue";
|
|
764
|
+
} ? F_1 : never : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
765
|
+
params: unknown[] & [];
|
|
766
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
767
|
+
params: unknown[] & [];
|
|
768
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
769
|
+
params: unknown[] & [];
|
|
770
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
771
|
+
params: unknown[] & [];
|
|
772
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
773
|
+
params: unknown[] & [];
|
|
774
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
775
|
+
params: unknown[] & [];
|
|
776
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
777
|
+
params: unknown[] & [];
|
|
778
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
779
|
+
params: unknown[] & [];
|
|
780
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
781
|
+
params: unknown[] & [];
|
|
782
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
783
|
+
params: unknown[] & [];
|
|
784
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
785
|
+
params: unknown[] & [];
|
|
786
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
787
|
+
params: unknown[] & [];
|
|
788
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
789
|
+
name: F;
|
|
790
|
+
children: (file: FileValue) => React.ReactNode;
|
|
791
|
+
}) => React.ReactNode;
|
|
792
|
+
Repeater: <F extends keyof { [F_1 in keyof ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
793
|
+
params: unknown[] & [];
|
|
794
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
795
|
+
params: unknown[] & [];
|
|
796
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
797
|
+
params: unknown[] & [];
|
|
798
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
799
|
+
params: unknown[] & [];
|
|
800
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
801
|
+
params: unknown[] & [];
|
|
802
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
803
|
+
params: unknown[] & [];
|
|
804
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
805
|
+
params: unknown[] & [];
|
|
806
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
807
|
+
params: unknown[] & [];
|
|
808
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
809
|
+
params: unknown[] & [];
|
|
810
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
811
|
+
params: unknown[] & [];
|
|
812
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
813
|
+
params: unknown[] & [];
|
|
814
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
815
|
+
params: unknown[] & [];
|
|
816
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never) as ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
817
|
+
params: unknown[] & [];
|
|
818
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
819
|
+
params: unknown[] & [];
|
|
820
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
821
|
+
params: unknown[] & [];
|
|
822
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
823
|
+
params: unknown[] & [];
|
|
824
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
825
|
+
params: unknown[] & [];
|
|
826
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
827
|
+
params: unknown[] & [];
|
|
828
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
829
|
+
params: unknown[] & [];
|
|
830
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
831
|
+
params: unknown[] & [];
|
|
832
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
833
|
+
params: unknown[] & [];
|
|
834
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
835
|
+
params: unknown[] & [];
|
|
836
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
837
|
+
params: unknown[] & [];
|
|
838
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
839
|
+
params: unknown[] & [];
|
|
840
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1] extends any[] ? F_1 : never]: ({ [K_5 in keyof import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
841
|
+
params: unknown[] & [];
|
|
842
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
843
|
+
params: unknown[] & [];
|
|
844
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
845
|
+
params: unknown[] & [];
|
|
846
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
847
|
+
params: unknown[] & [];
|
|
848
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>> as import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
849
|
+
params: unknown[] & [];
|
|
850
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
851
|
+
params: unknown[] & [];
|
|
852
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
853
|
+
params: unknown[] & [];
|
|
854
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
855
|
+
params: unknown[] & [];
|
|
856
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5] extends any[] ? K_5 : never]: import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
857
|
+
params: unknown[] & [];
|
|
858
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
859
|
+
params: unknown[] & [];
|
|
860
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
861
|
+
params: unknown[] & [];
|
|
862
|
+
})["static"]; }, { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K_1 in keyof TSchemaShape]: (TSchemaShape[K_1] & {
|
|
863
|
+
params: unknown[] & [];
|
|
864
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? K_2 : never : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape] | { [K_4 in keyof TSchemaShape]: TSchemaShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_4] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_4]> ? never : K_4 : never; }[keyof TSchemaShape]>>>>[K_5]; }[K] extends (infer U)[] ? U : never)[F_1]; }>(props: {
|
|
865
|
+
name: F;
|
|
866
|
+
children: (item: {
|
|
867
|
+
Field: (props: {
|
|
868
|
+
name: string;
|
|
869
|
+
children: (content: any) => React.ReactNode;
|
|
870
|
+
}) => React.ReactNode;
|
|
871
|
+
Link: (props: {
|
|
872
|
+
name: string;
|
|
873
|
+
children: (link: {
|
|
874
|
+
text: string;
|
|
875
|
+
href: string;
|
|
876
|
+
newTab: boolean;
|
|
877
|
+
}) => React.ReactNode;
|
|
878
|
+
}) => React.ReactNode;
|
|
879
|
+
Embed: (props: {
|
|
880
|
+
name: string;
|
|
881
|
+
children: (url: string) => React.ReactNode;
|
|
882
|
+
}) => React.ReactNode;
|
|
883
|
+
Image: (props: {
|
|
884
|
+
name: string;
|
|
885
|
+
children: (image: ImageValue) => React.ReactNode;
|
|
886
|
+
}) => React.ReactNode;
|
|
887
|
+
File: (props: {
|
|
888
|
+
name: string;
|
|
889
|
+
children: (file: FileValue) => React.ReactNode;
|
|
890
|
+
}) => React.ReactNode;
|
|
891
|
+
Repeater: (props: {
|
|
892
|
+
name: string;
|
|
893
|
+
children: (item: any, index: number) => React.ReactNode;
|
|
894
|
+
}) => React.ReactNode;
|
|
895
|
+
}, index: number) => React.ReactNode;
|
|
896
|
+
}) => React.ReactNode;
|
|
897
|
+
}, index: number) => React.ReactNode;
|
|
898
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
899
|
+
useSetting: <K extends keyof (TSettingsShape extends Record<string, never> ? Record<string, never> : import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
900
|
+
params: unknown[] & [];
|
|
901
|
+
})["static"]; }, { [K_2 in keyof TSettingsShape]: TSettingsShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_2] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_2]> ? K_2 : never : never; }[keyof TSettingsShape]>>> & Readonly<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
902
|
+
params: unknown[] & [];
|
|
903
|
+
})["static"]; }, { [K_3 in keyof TSettingsShape]: TSettingsShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_3] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_3]> ? never : K_3 : never; }[keyof TSettingsShape]>> & Partial<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
904
|
+
params: unknown[] & [];
|
|
905
|
+
})["static"]; }, { [K_4 in keyof TSettingsShape]: TSettingsShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSettingsShape[K_4] extends import('@sinclair/typebox').TReadonly<TSettingsShape[K_4]> ? never : K_4 : never; }[keyof TSettingsShape]>> & Required<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
906
|
+
params: unknown[] & [];
|
|
907
|
+
})["static"]; }, Exclude<keyof TSettingsShape, { [K_2 in keyof TSettingsShape]: TSettingsShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_2] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_2]> ? K_2 : never : never; }[keyof TSettingsShape] | { [K_3 in keyof TSettingsShape]: TSettingsShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_3] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_3]> ? never : K_3 : never; }[keyof TSettingsShape] | { [K_4 in keyof TSettingsShape]: TSettingsShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSettingsShape[K_4] extends import('@sinclair/typebox').TReadonly<TSettingsShape[K_4]> ? never : K_4 : never; }[keyof TSettingsShape]>>>>)>(name: K) => (TSettingsShape extends Record<string, never> ? Record<string, never> : import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
908
|
+
params: unknown[] & [];
|
|
909
|
+
})["static"]; }, { [K_2 in keyof TSettingsShape]: TSettingsShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_2] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_2]> ? K_2 : never : never; }[keyof TSettingsShape]>>> & Readonly<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
910
|
+
params: unknown[] & [];
|
|
911
|
+
})["static"]; }, { [K_3 in keyof TSettingsShape]: TSettingsShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_3] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_3]> ? never : K_3 : never; }[keyof TSettingsShape]>> & Partial<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
912
|
+
params: unknown[] & [];
|
|
913
|
+
})["static"]; }, { [K_4 in keyof TSettingsShape]: TSettingsShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSettingsShape[K_4] extends import('@sinclair/typebox').TReadonly<TSettingsShape[K_4]> ? never : K_4 : never; }[keyof TSettingsShape]>> & Required<Pick<{ [K_1 in keyof TSettingsShape]: (TSettingsShape[K_1] & {
|
|
914
|
+
params: unknown[] & [];
|
|
915
|
+
})["static"]; }, Exclude<keyof TSettingsShape, { [K_2 in keyof TSettingsShape]: TSettingsShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_2] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_2]> ? K_2 : never : never; }[keyof TSettingsShape] | { [K_3 in keyof TSettingsShape]: TSettingsShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSettingsShape[K_3] extends import('@sinclair/typebox').TOptional<TSettingsShape[K_3]> ? never : K_3 : never; }[keyof TSettingsShape] | { [K_4 in keyof TSettingsShape]: TSettingsShape[K_4] extends import('@sinclair/typebox').TOptional<TSchema> ? TSettingsShape[K_4] extends import('@sinclair/typebox').TReadonly<TSettingsShape[K_4]> ? never : K_4 : never; }[keyof TSettingsShape]>>>>)[K];
|
|
916
|
+
id: string;
|
|
917
|
+
title: string;
|
|
918
|
+
description: string;
|
|
919
|
+
contentSchema: {
|
|
920
|
+
type: "object";
|
|
921
|
+
title: string;
|
|
922
|
+
description: string;
|
|
923
|
+
properties: TSchemaShape;
|
|
924
|
+
required: string[];
|
|
925
|
+
toMarkdown: readonly string[];
|
|
926
|
+
};
|
|
927
|
+
settingsSchema: {
|
|
928
|
+
type: "object";
|
|
929
|
+
properties: TSettingsShape;
|
|
930
|
+
required: string[];
|
|
931
|
+
} | undefined;
|
|
932
|
+
getInitialContent: () => import('@sinclair/typebox').Evaluate<Readonly<Partial<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
933
|
+
params: unknown[] & [];
|
|
934
|
+
})["static"]; }, { [K_1 in keyof TSchemaShape]: TSchemaShape[K_1] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_1] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_1]> ? K_1 : never : never; }[keyof TSchemaShape]>>> & Readonly<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
935
|
+
params: unknown[] & [];
|
|
936
|
+
})["static"]; }, { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? never : K_2 : never; }[keyof TSchemaShape]>> & Partial<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
937
|
+
params: unknown[] & [];
|
|
938
|
+
})["static"]; }, { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>> & Required<Pick<{ [K in keyof TSchemaShape]: (TSchemaShape[K] & {
|
|
939
|
+
params: unknown[] & [];
|
|
940
|
+
})["static"]; }, Exclude<keyof TSchemaShape, { [K_1 in keyof TSchemaShape]: TSchemaShape[K_1] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_1] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_1]> ? K_1 : never : never; }[keyof TSchemaShape] | { [K_2 in keyof TSchemaShape]: TSchemaShape[K_2] extends import('@sinclair/typebox').TReadonly<TSchema> ? TSchemaShape[K_2] extends import('@sinclair/typebox').TOptional<TSchemaShape[K_2]> ? never : K_2 : never; }[keyof TSchemaShape] | { [K_3 in keyof TSchemaShape]: TSchemaShape[K_3] extends import('@sinclair/typebox').TOptional<TSchema> ? TSchemaShape[K_3] extends import('@sinclair/typebox').TReadonly<TSchemaShape[K_3]> ? never : K_3 : never; }[keyof TSchemaShape]>>>>;
|
|
941
|
+
getInitialSettings: () => {
|
|
942
|
+
[x: string]: unknown;
|
|
943
|
+
};
|
|
944
|
+
layoutOnly: boolean;
|
|
945
|
+
};
|
|
946
|
+
export type Block = ReturnType<typeof createBlock>;
|
|
947
|
+
//# sourceMappingURL=createBlock.d.ts.map
|