@questpie/admin 3.5.4 → 3.5.6
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/dist/client/components/primitives/dropzone.d.mts +2 -2
- package/dist/client/components/ui/button.d.mts +2 -2
- package/dist/client/components/ui/dropdown-menu.d.mts +9 -9
- package/dist/client/components/ui/sheet.d.mts +7 -7
- package/dist/client/components/ui/table.d.mts +8 -8
- package/dist/client/components/ui/tooltip.d.mts +4 -4
- package/dist/client/i18n/hooks.d.mts +0 -1
- package/dist/client/views/auth/accept-invite-form.d.mts +2 -2
- package/dist/client/views/auth/auth-layout.d.mts +3 -3
- package/dist/client/views/auth/reset-password-form.d.mts +2 -2
- package/dist/client/views/auth/setup-form.d.mts +2 -2
- package/dist/client/views/pages/accept-invite-page.d.mts +2 -2
- package/dist/client/views/pages/dashboard-page.d.mts +2 -2
- package/dist/client/views/pages/forgot-password-page.d.mts +2 -2
- package/dist/client/views/pages/invite-page.d.mts +2 -2
- package/dist/client/views/pages/login-page.d.mts +2 -2
- package/dist/client/views/pages/reset-password-page.d.mts +2 -2
- package/dist/client/views/pages/setup-page.d.mts +2 -2
- package/dist/factories.d.mts +0 -2
- package/dist/server/adapters/nextjs.d.mts +0 -1
- package/dist/server/modules/admin/collections/account.d.mts +30 -30
- package/dist/server/modules/admin/collections/admin-locks.d.mts +29 -29
- package/dist/server/modules/admin/collections/admin-preferences.d.mts +22 -22
- package/dist/server/modules/admin/collections/admin-saved-views.d.mts +25 -25
- package/dist/server/modules/admin/collections/apikey.d.mts +40 -40
- package/dist/server/modules/admin/collections/assets.d.mts +10 -10
- package/dist/server/modules/admin/collections/session.d.mts +26 -26
- package/dist/server/modules/admin/collections/user.d.mts +14 -14
- package/dist/server/modules/admin/collections/verification.d.mts +23 -23
- package/dist/server/modules/admin/index.d.mts +1 -1
- package/dist/server/modules/admin/routes/admin-config.d.mts +3 -4
- package/dist/server/modules/admin/routes/execute-action.d.mts +9 -9
- package/dist/server/modules/admin/routes/locales.d.mts +2 -2
- package/dist/server/modules/admin/routes/preview.d.mts +11 -11
- package/dist/server/modules/admin/routes/reactive.d.mts +9 -9
- package/dist/server/modules/admin/routes/setup.d.mts +7 -7
- package/dist/server/modules/admin/routes/translations.d.mts +4 -4
- package/dist/server/modules/admin/routes/widget-data.d.mts +5 -5
- package/dist/server/modules/admin-preferences/collections/saved-views.d.mts +45 -45
- package/dist/server/modules/audit/.generated/module.d.mts +6 -6
- package/dist/server/modules/audit/collections/audit-log.d.mts +78 -78
- package/dist/server/modules/audit/jobs/audit-cleanup.d.mts +2 -2
- package/dist/server.d.mts +0 -2
- package/package.json +3 -3
- package/dist/server/adapters/index.d.mts +0 -2
- package/dist/server/auth-helpers.d.mts +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime11 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/components/primitives/dropzone.d.ts
|
|
5
5
|
|
|
@@ -95,6 +95,6 @@ declare function Dropzone({
|
|
|
95
95
|
children,
|
|
96
96
|
action,
|
|
97
97
|
onValidationError
|
|
98
|
-
}: DropzoneProps):
|
|
98
|
+
}: DropzoneProps): react_jsx_runtime11.JSX.Element;
|
|
99
99
|
//#endregion
|
|
100
100
|
export { Dropzone };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { Button } from "@base-ui/react/button";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
4
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
@@ -18,6 +18,6 @@ declare function Button$1({
|
|
|
18
18
|
size,
|
|
19
19
|
static: staticPress,
|
|
20
20
|
...props
|
|
21
|
-
}: ButtonProps):
|
|
21
|
+
}: ButtonProps): react_jsx_runtime0.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { Button$1 as Button };
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime18 from "react/jsx-runtime";
|
|
3
3
|
import { Menu } from "@base-ui/react/menu";
|
|
4
4
|
|
|
5
5
|
//#region src/client/components/ui/dropdown-menu.d.ts
|
|
6
6
|
declare function DropdownMenu({
|
|
7
7
|
...props
|
|
8
|
-
}: Menu.Root.Props):
|
|
8
|
+
}: Menu.Root.Props): react_jsx_runtime18.JSX.Element;
|
|
9
9
|
declare function DropdownMenuTrigger({
|
|
10
10
|
type,
|
|
11
11
|
...props
|
|
12
|
-
}: Menu.Trigger.Props):
|
|
12
|
+
}: Menu.Trigger.Props): react_jsx_runtime18.JSX.Element;
|
|
13
13
|
declare function DropdownMenuContent({
|
|
14
14
|
align,
|
|
15
15
|
alignOffset,
|
|
@@ -17,17 +17,17 @@ declare function DropdownMenuContent({
|
|
|
17
17
|
sideOffset,
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
|
-
}: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">):
|
|
20
|
+
}: Menu.Popup.Props & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime18.JSX.Element;
|
|
21
21
|
declare function DropdownMenuGroup({
|
|
22
22
|
...props
|
|
23
|
-
}: Menu.Group.Props):
|
|
23
|
+
}: Menu.Group.Props): react_jsx_runtime18.JSX.Element;
|
|
24
24
|
declare function DropdownMenuLabel({
|
|
25
25
|
className,
|
|
26
26
|
inset,
|
|
27
27
|
...props
|
|
28
28
|
}: React.ComponentProps<"div"> & {
|
|
29
29
|
inset?: boolean;
|
|
30
|
-
}):
|
|
30
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
31
31
|
declare function DropdownMenuItem({
|
|
32
32
|
className,
|
|
33
33
|
inset,
|
|
@@ -36,14 +36,14 @@ declare function DropdownMenuItem({
|
|
|
36
36
|
}: Menu.Item.Props & {
|
|
37
37
|
inset?: boolean;
|
|
38
38
|
variant?: "default" | "destructive";
|
|
39
|
-
}):
|
|
39
|
+
}): react_jsx_runtime18.JSX.Element;
|
|
40
40
|
declare function DropdownMenuSeparator({
|
|
41
41
|
className,
|
|
42
42
|
...props
|
|
43
|
-
}: Menu.Separator.Props):
|
|
43
|
+
}: Menu.Separator.Props): react_jsx_runtime18.JSX.Element;
|
|
44
44
|
declare function DropdownMenuShortcut({
|
|
45
45
|
className,
|
|
46
46
|
...props
|
|
47
|
-
}: React.ComponentProps<"span">):
|
|
47
|
+
}: React.ComponentProps<"span">): react_jsx_runtime18.JSX.Element;
|
|
48
48
|
//#endregion
|
|
49
49
|
export { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime12 from "react/jsx-runtime";
|
|
3
3
|
import { Dialog } from "@base-ui/react/dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/client/components/ui/sheet.d.ts
|
|
6
6
|
declare function Sheet({
|
|
7
7
|
...props
|
|
8
|
-
}: Dialog.Root.Props):
|
|
8
|
+
}: Dialog.Root.Props): react_jsx_runtime12.JSX.Element;
|
|
9
9
|
declare function SheetContent({
|
|
10
10
|
className,
|
|
11
11
|
children,
|
|
@@ -19,22 +19,22 @@ declare function SheetContent({
|
|
|
19
19
|
showCloseButton?: boolean;
|
|
20
20
|
animated?: boolean;
|
|
21
21
|
showOverlay?: boolean;
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime12.JSX.Element;
|
|
23
23
|
declare function SheetHeader({
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: React.ComponentProps<"div">):
|
|
26
|
+
}: React.ComponentProps<"div">): react_jsx_runtime12.JSX.Element;
|
|
27
27
|
declare function SheetFooter({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: React.ComponentProps<"div">):
|
|
30
|
+
}: React.ComponentProps<"div">): react_jsx_runtime12.JSX.Element;
|
|
31
31
|
declare function SheetTitle({
|
|
32
32
|
className,
|
|
33
33
|
...props
|
|
34
|
-
}: Dialog.Title.Props):
|
|
34
|
+
}: Dialog.Title.Props): react_jsx_runtime12.JSX.Element;
|
|
35
35
|
declare function SheetDescription({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: Dialog.Description.Props):
|
|
38
|
+
}: Dialog.Description.Props): react_jsx_runtime12.JSX.Element;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { Sheet, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle };
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/components/ui/table.d.ts
|
|
5
5
|
declare function Table({
|
|
6
6
|
className,
|
|
7
7
|
...props
|
|
8
|
-
}: React.ComponentProps<"table">):
|
|
8
|
+
}: React.ComponentProps<"table">): react_jsx_runtime1.JSX.Element;
|
|
9
9
|
declare function TableHeader({
|
|
10
10
|
className,
|
|
11
11
|
...props
|
|
12
|
-
}: React.ComponentProps<"thead">):
|
|
12
|
+
}: React.ComponentProps<"thead">): react_jsx_runtime1.JSX.Element;
|
|
13
13
|
declare function TableBody({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: React.ComponentProps<"tbody">):
|
|
16
|
+
}: React.ComponentProps<"tbody">): react_jsx_runtime1.JSX.Element;
|
|
17
17
|
declare function TableFooter({
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
|
-
}: React.ComponentProps<"tfoot">):
|
|
20
|
+
}: React.ComponentProps<"tfoot">): react_jsx_runtime1.JSX.Element;
|
|
21
21
|
declare const TableRow: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React.RefAttributes<HTMLTableRowElement>>;
|
|
22
22
|
interface TableHeadProps extends React.ComponentProps<"th"> {
|
|
23
23
|
stickyLeft?: number;
|
|
@@ -29,7 +29,7 @@ declare function TableHead({
|
|
|
29
29
|
showStickyBorder,
|
|
30
30
|
style,
|
|
31
31
|
...props
|
|
32
|
-
}: TableHeadProps):
|
|
32
|
+
}: TableHeadProps): react_jsx_runtime1.JSX.Element;
|
|
33
33
|
interface TableCellProps extends React.ComponentProps<"td"> {
|
|
34
34
|
stickyLeft?: number;
|
|
35
35
|
showStickyBorder?: boolean;
|
|
@@ -40,10 +40,10 @@ declare function TableCell({
|
|
|
40
40
|
showStickyBorder,
|
|
41
41
|
style,
|
|
42
42
|
...props
|
|
43
|
-
}: TableCellProps):
|
|
43
|
+
}: TableCellProps): react_jsx_runtime1.JSX.Element;
|
|
44
44
|
declare function TableCaption({
|
|
45
45
|
className,
|
|
46
46
|
...props
|
|
47
|
-
}: React.ComponentProps<"caption">):
|
|
47
|
+
}: React.ComponentProps<"caption">): react_jsx_runtime1.JSX.Element;
|
|
48
48
|
//#endregion
|
|
49
49
|
export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime8 from "react/jsx-runtime";
|
|
2
2
|
import { Tooltip } from "@base-ui/react/tooltip";
|
|
3
3
|
|
|
4
4
|
//#region src/client/components/ui/tooltip.d.ts
|
|
5
5
|
declare function Tooltip$1({
|
|
6
6
|
...props
|
|
7
|
-
}: Tooltip.Root.Props):
|
|
7
|
+
}: Tooltip.Root.Props): react_jsx_runtime8.JSX.Element;
|
|
8
8
|
declare function TooltipTrigger({
|
|
9
9
|
...props
|
|
10
|
-
}: Tooltip.Trigger.Props):
|
|
10
|
+
}: Tooltip.Trigger.Props): react_jsx_runtime8.JSX.Element;
|
|
11
11
|
declare function TooltipContent({
|
|
12
12
|
className,
|
|
13
13
|
side,
|
|
@@ -16,6 +16,6 @@ declare function TooltipContent({
|
|
|
16
16
|
alignOffset,
|
|
17
17
|
children,
|
|
18
18
|
...props
|
|
19
|
-
}: Tooltip.Popup.Props & Pick<Tooltip.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">):
|
|
19
|
+
}: Tooltip.Popup.Props & Pick<Tooltip.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): react_jsx_runtime8.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { Tooltip$1 as Tooltip, TooltipContent, TooltipTrigger };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime34 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/views/auth/accept-invite-form.d.ts
|
|
4
4
|
/**
|
|
@@ -67,6 +67,6 @@ declare function AcceptInviteForm({
|
|
|
67
67
|
className,
|
|
68
68
|
error,
|
|
69
69
|
minPasswordLength
|
|
70
|
-
}: AcceptInviteFormProps):
|
|
70
|
+
}: AcceptInviteFormProps): react_jsx_runtime34.JSX.Element;
|
|
71
71
|
//#endregion
|
|
72
72
|
export { AcceptInviteForm };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime35 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/auth/auth-layout.d.ts
|
|
5
5
|
|
|
@@ -26,7 +26,7 @@ declare function AuthDefaultLogo({
|
|
|
26
26
|
brandName
|
|
27
27
|
}: {
|
|
28
28
|
brandName: string;
|
|
29
|
-
}):
|
|
29
|
+
}): react_jsx_runtime35.JSX.Element;
|
|
30
30
|
/**
|
|
31
31
|
* Minimal split layout for authentication pages (login, register, forgot password, etc.)
|
|
32
32
|
*
|
|
@@ -50,6 +50,6 @@ declare function AuthDefaultLogo({
|
|
|
50
50
|
* </AuthLayout>
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
53
|
-
declare function AuthLayout(props: AuthLayoutProps):
|
|
53
|
+
declare function AuthLayout(props: AuthLayoutProps): react_jsx_runtime35.JSX.Element;
|
|
54
54
|
//#endregion
|
|
55
55
|
export { AuthDefaultLogo, AuthLayout, AuthLayoutProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime39 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/views/auth/reset-password-form.d.ts
|
|
4
4
|
/**
|
|
@@ -60,6 +60,6 @@ declare function ResetPasswordForm({
|
|
|
60
60
|
minPasswordLength,
|
|
61
61
|
className,
|
|
62
62
|
error
|
|
63
|
-
}: ResetPasswordFormProps):
|
|
63
|
+
}: ResetPasswordFormProps): react_jsx_runtime39.JSX.Element;
|
|
64
64
|
//#endregion
|
|
65
65
|
export { ResetPasswordForm };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime40 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/views/auth/setup-form.d.ts
|
|
4
4
|
/**
|
|
@@ -55,6 +55,6 @@ declare function SetupForm({
|
|
|
55
55
|
className,
|
|
56
56
|
error,
|
|
57
57
|
minPasswordLength
|
|
58
|
-
}: SetupFormProps):
|
|
58
|
+
}: SetupFormProps): react_jsx_runtime40.JSX.Element;
|
|
59
59
|
//#endregion
|
|
60
60
|
export { SetupForm, SetupFormValues };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime41 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/accept-invite-page.d.ts
|
|
5
5
|
|
|
@@ -61,6 +61,6 @@ declare function AcceptInvitePage({
|
|
|
61
61
|
redirectTo,
|
|
62
62
|
loginPath,
|
|
63
63
|
minPasswordLength
|
|
64
|
-
}: AcceptInvitePageProps):
|
|
64
|
+
}: AcceptInvitePageProps): react_jsx_runtime41.JSX.Element;
|
|
65
65
|
//#endregion
|
|
66
66
|
export { AcceptInvitePage };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime42 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/views/pages/dashboard-page.d.ts
|
|
4
4
|
|
|
@@ -38,6 +38,6 @@ declare function DashboardPage({
|
|
|
38
38
|
title,
|
|
39
39
|
description,
|
|
40
40
|
className
|
|
41
|
-
}: DashboardPageProps):
|
|
41
|
+
}: DashboardPageProps): react_jsx_runtime42.JSX.Element;
|
|
42
42
|
//#endregion
|
|
43
43
|
export { DashboardPage };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime43 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/forgot-password-page.d.ts
|
|
5
5
|
|
|
@@ -51,6 +51,6 @@ declare function ForgotPasswordPage({
|
|
|
51
51
|
logo,
|
|
52
52
|
loginPath,
|
|
53
53
|
resetPasswordRedirectUrl
|
|
54
|
-
}: ForgotPasswordPageProps):
|
|
54
|
+
}: ForgotPasswordPageProps): react_jsx_runtime43.JSX.Element;
|
|
55
55
|
//#endregion
|
|
56
56
|
export { ForgotPasswordPage };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime44 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/invite-page.d.ts
|
|
5
5
|
|
|
@@ -65,6 +65,6 @@ declare function InvitePage({
|
|
|
65
65
|
defaultRole,
|
|
66
66
|
showMessage,
|
|
67
67
|
onSuccess
|
|
68
|
-
}: InvitePageProps):
|
|
68
|
+
}: InvitePageProps): react_jsx_runtime44.JSX.Element;
|
|
69
69
|
//#endregion
|
|
70
70
|
export { InvitePage };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime45 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/login-page.d.ts
|
|
5
5
|
|
|
@@ -64,6 +64,6 @@ declare function LoginPage({
|
|
|
64
64
|
signUpPath,
|
|
65
65
|
showForgotPassword,
|
|
66
66
|
showSignUp
|
|
67
|
-
}: LoginPageProps):
|
|
67
|
+
}: LoginPageProps): react_jsx_runtime45.JSX.Element;
|
|
68
68
|
//#endregion
|
|
69
69
|
export { LoginPage };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime46 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/reset-password-page.d.ts
|
|
5
5
|
|
|
@@ -58,6 +58,6 @@ declare function ResetPasswordPage({
|
|
|
58
58
|
loginPath,
|
|
59
59
|
minPasswordLength,
|
|
60
60
|
getToken
|
|
61
|
-
}: ResetPasswordPageProps):
|
|
61
|
+
}: ResetPasswordPageProps): react_jsx_runtime46.JSX.Element;
|
|
62
62
|
//#endregion
|
|
63
63
|
export { ResetPasswordPage };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime47 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/views/pages/setup-page.d.ts
|
|
5
5
|
|
|
@@ -56,6 +56,6 @@ declare function SetupPage({
|
|
|
56
56
|
redirectTo,
|
|
57
57
|
loginPath,
|
|
58
58
|
showLoginLink
|
|
59
|
-
}: SetupPageProps):
|
|
59
|
+
}: SetupPageProps): react_jsx_runtime47.JSX.Element;
|
|
60
60
|
//#endregion
|
|
61
61
|
export { SetupPage, SetupPageProps };
|
package/dist/factories.d.mts
CHANGED
|
@@ -14,8 +14,6 @@ import "./server/block/index.mjs";
|
|
|
14
14
|
import { component, editView, filterViewsByKind, listView, view } from "./server/registry-helpers.mjs";
|
|
15
15
|
import { createActionCallbackProxy, createActionFieldBuilderProxy, createActionProxy, createComponentCallbackProxy, createComponentProxy, createDashboardCallbackContext, createDashboardContributionProxy, createFieldProxy, createSidebarCallbackContext, createSidebarContributionProxy, createViewCallbackProxy, createViewProxy, resolveDashboardCallback, resolveSidebarCallback } from "./server/proxy-factories.mjs";
|
|
16
16
|
import { AuthSession, GetAdminSessionOptions, RequireAdminAuthOptions, getAdminSession, isAdminUser, requireAdminAuth } from "./server/modules/admin/auth-helpers.mjs";
|
|
17
|
-
import "./server/auth-helpers.mjs";
|
|
18
17
|
import { NextAuthMiddlewareOptions, createNextAuthMiddleware, getNextAdminSession } from "./server/adapters/nextjs.mjs";
|
|
19
18
|
import { BeforeLoadContext, TanStackAuthGuardOptions, createTanStackAuthGuard, createTanStackSessionLoader } from "./server/adapters/tanstack.mjs";
|
|
20
|
-
import "./server/adapters/index.mjs";
|
|
21
19
|
export { type ActionReference, type ActionsConfigContext, type AdminBlockConfig, type AdminCollectionConfig, type AdminConfigContext, type AdminConfigInput, type AdminGlobalConfig, type AdminLocaleConfig, type AdminShellRailPlacement, type AdminShellRouteRules, type AnyBlockBuilder, type AnyBlockDefinition, type AuthSession, BeforeLoadContext, BlockBuilder, type BlockBuilderState, type BlockCategoryConfig, type BlockDefinition, type BlockPrefetchContext, type BlockPrefetchFn, type BlockPrefetchWith, type BlockPrefetchWithOptions, type BlockSchema, type BlocksPrefetchContext, type BuiltinActionType, type ComponentDefinition, type ComponentFactory, type ComponentReference, type ComponentType, type ComponentTypeRegistry, type DashboardActionFactory, type DashboardActionProxy, type DashboardCallback, type DashboardCallbackContext, type DashboardConfigContext, type DashboardContribution, type DashboardItemDef, type DashboardProxy, type DashboardSectionDef, type EditViewDefinition, type EditViewFactory, type ExpandWithResult, type ExpandedRecord, type FieldLayoutItem, type FilterViewsByKind, type FormFieldLayoutItem, type FormReactiveConfig, type FormReactiveContext, type FormSectionLayout, type FormSidebarConfig, type FormTabConfig, type FormTabsLayout, type FormViewConfig, type FormViewConfigContext, type GetAdminSessionOptions, type InferBlockData, type InferBlockValues, type ListViewConfig, type ListViewConfigContext, type ListViewDefinition, type ListViewFactory, NextAuthMiddlewareOptions, type PreviewConfig, type RequireAdminAuthOptions, type ServerActionContext, type ServerActionDefinition, type ServerActionDownload, type ServerActionEffects, type ServerActionError, type ServerActionForm, type ServerActionFormField, type ServerActionHandler, type ServerActionRedirect, type ServerActionResult, type ServerActionSuccess, type ServerActionsConfig, type ServerAdminShellConfig, type ServerAdminShellRailConfig, type ServerBrandingConfig, type ServerChartWidget, type ServerCustomWidget, type ServerDashboardAction, type ServerDashboardConfig, type ServerDashboardItem, type ServerDashboardSection, type ServerDashboardTab, type ServerDashboardTabs, type ServerDashboardWidget, type ServerProgressWidget, type ServerQuickAction, type ServerQuickActionsWidget, type ServerRecentItemsWidget, type ServerSidebarCollectionItem, type ServerSidebarConfig, type ServerSidebarDividerItem, type ServerSidebarGlobalItem, type ServerSidebarItem, type ServerSidebarLinkItem, type ServerSidebarPageItem, type ServerSidebarSection, type ServerStatsWidget, type ServerTableWidget, type ServerTimelineWidget, type ServerValueWidget, type SidebarCallback, type SidebarCallbackContext, type SidebarConfigContext, type SidebarContribution, type SidebarItemDef, type SidebarProxy, type SidebarSectionDef, TanStackAuthGuardOptions, type ViewDefinition, type ViewKind, type ViewKindRegistry, type WidgetAccessRule, type WidgetFetchContext, adminConfig, block, component, createActionCallbackProxy, createActionFieldBuilderProxy, createActionProxy, createBlocksPrefetchHook, createComponentCallbackProxy, createComponentProxy, createDashboardCallbackContext, createDashboardContributionProxy, createFieldProxy, createNextAuthMiddleware, createSidebarCallbackContext, createSidebarContributionProxy, createTanStackAuthGuard, createTanStackSessionLoader, createViewCallbackProxy, createViewProxy, editView, filterViewsByKind, getAdminSession, getBlocksByCategory, getNextAdminSession, introspectBlock, introspectBlocks, isAdminUser, listView, processBlocksDocument, processDocumentBlocksPrefetch, requireAdminAuth, resolveDashboardCallback, resolveSidebarCallback, view };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as questpie_shared23 from "questpie/shared";
|
|
2
|
-
import * as
|
|
2
|
+
import * as questpie152 from "questpie";
|
|
3
3
|
import * as questpie_src_server_modules_core_fields_email_js3 from "questpie/src/server/modules/core/fields/email.js";
|
|
4
4
|
import * as questpie_src_server_modules_core_fields_json_js3 from "questpie/src/server/modules/core/fields/json.js";
|
|
5
5
|
import * as drizzle_orm_pg_core32 from "drizzle-orm/pg-core";
|
|
@@ -7,22 +7,22 @@ import * as drizzle_orm15 from "drizzle-orm";
|
|
|
7
7
|
import * as questpie_src_server_collection_builder_types_js1 from "questpie/src/server/collection/builder/types.js";
|
|
8
8
|
|
|
9
9
|
//#region src/server/modules/admin/collections/account.d.ts
|
|
10
|
-
declare const _default:
|
|
11
|
-
readonly text: typeof
|
|
12
|
-
readonly textarea: typeof
|
|
10
|
+
declare const _default: questpie152.CollectionBuilder<questpie_shared23.Override<questpie152.EmptyCollectionState<"account", undefined, {
|
|
11
|
+
readonly text: typeof questpie152.text;
|
|
12
|
+
readonly textarea: typeof questpie152.textarea;
|
|
13
13
|
readonly email: typeof questpie_src_server_modules_core_fields_email_js3.email;
|
|
14
|
-
readonly url: typeof
|
|
15
|
-
readonly number: typeof
|
|
16
|
-
readonly boolean: typeof
|
|
17
|
-
readonly date: typeof
|
|
18
|
-
readonly datetime: typeof
|
|
19
|
-
readonly time: typeof
|
|
20
|
-
readonly select: typeof
|
|
21
|
-
readonly upload: typeof
|
|
22
|
-
readonly relation: typeof
|
|
23
|
-
readonly object: typeof
|
|
14
|
+
readonly url: typeof questpie152.url;
|
|
15
|
+
readonly number: typeof questpie152.number;
|
|
16
|
+
readonly boolean: typeof questpie152.boolean;
|
|
17
|
+
readonly date: typeof questpie152.date;
|
|
18
|
+
readonly datetime: typeof questpie152.datetime;
|
|
19
|
+
readonly time: typeof questpie152.time;
|
|
20
|
+
readonly select: typeof questpie152.select;
|
|
21
|
+
readonly upload: typeof questpie152.upload;
|
|
22
|
+
readonly relation: typeof questpie152.relation;
|
|
23
|
+
readonly object: typeof questpie152.object;
|
|
24
24
|
readonly json: typeof questpie_src_server_modules_core_fields_json_js3.json;
|
|
25
|
-
readonly from: typeof
|
|
25
|
+
readonly from: typeof questpie152.from;
|
|
26
26
|
}>, {
|
|
27
27
|
name: "account";
|
|
28
28
|
fields: Record<string, any> & {
|
|
@@ -38,35 +38,35 @@ declare const _default: questpie151.CollectionBuilder<questpie_shared23.Override
|
|
|
38
38
|
readonly password: drizzle_orm_pg_core32.PgVarcharBuilder<[string, ...string[]]>;
|
|
39
39
|
};
|
|
40
40
|
virtuals: undefined;
|
|
41
|
-
relations: Record<string,
|
|
41
|
+
relations: Record<string, questpie152.RelationConfig>;
|
|
42
42
|
indexes: Record<string, any>;
|
|
43
43
|
title: "providerId";
|
|
44
|
-
options:
|
|
44
|
+
options: questpie152.CollectionOptions & {
|
|
45
45
|
timestamps: true;
|
|
46
46
|
};
|
|
47
47
|
hooks: questpie_src_server_collection_builder_types_js1.CollectionHooksStorage;
|
|
48
48
|
access: questpie_src_server_collection_builder_types_js1.CollectionAccessStorage;
|
|
49
49
|
searchable: undefined;
|
|
50
50
|
fieldDefinitions: {
|
|
51
|
-
readonly userId:
|
|
51
|
+
readonly userId: questpie152.FieldWithMethods<Omit<questpie152.TextFieldState, "notNull" | "column"> & {
|
|
52
52
|
notNull: true;
|
|
53
53
|
column: drizzle_orm15.NotNull<drizzle_orm_pg_core32.PgVarcharBuilder<[string, ...string[]]>>;
|
|
54
|
-
},
|
|
55
|
-
readonly accountId:
|
|
54
|
+
}, questpie152.TextFieldMethods>;
|
|
55
|
+
readonly accountId: questpie152.FieldWithMethods<Omit<questpie152.TextFieldState, "notNull" | "column"> & {
|
|
56
56
|
notNull: true;
|
|
57
57
|
column: drizzle_orm15.NotNull<drizzle_orm_pg_core32.PgVarcharBuilder<[string, ...string[]]>>;
|
|
58
|
-
},
|
|
59
|
-
readonly providerId:
|
|
58
|
+
}, questpie152.TextFieldMethods>;
|
|
59
|
+
readonly providerId: questpie152.FieldWithMethods<Omit<questpie152.TextFieldState, "notNull" | "column"> & {
|
|
60
60
|
notNull: true;
|
|
61
61
|
column: drizzle_orm15.NotNull<drizzle_orm_pg_core32.PgVarcharBuilder<[string, ...string[]]>>;
|
|
62
|
-
},
|
|
63
|
-
readonly accessToken:
|
|
64
|
-
readonly refreshToken:
|
|
65
|
-
readonly accessTokenExpiresAt:
|
|
66
|
-
readonly refreshTokenExpiresAt:
|
|
67
|
-
readonly scope:
|
|
68
|
-
readonly idToken:
|
|
69
|
-
readonly password:
|
|
62
|
+
}, questpie152.TextFieldMethods>;
|
|
63
|
+
readonly accessToken: questpie152.FieldWithMethods<questpie152.TextFieldState, questpie152.TextFieldMethods>;
|
|
64
|
+
readonly refreshToken: questpie152.FieldWithMethods<questpie152.TextFieldState, questpie152.TextFieldMethods>;
|
|
65
|
+
readonly accessTokenExpiresAt: questpie152.FieldWithMethods<questpie152.DatetimeFieldState, questpie152.DatetimeFieldMethods>;
|
|
66
|
+
readonly refreshTokenExpiresAt: questpie152.FieldWithMethods<questpie152.DatetimeFieldState, questpie152.DatetimeFieldMethods>;
|
|
67
|
+
readonly scope: questpie152.FieldWithMethods<questpie152.TextFieldState, questpie152.TextFieldMethods>;
|
|
68
|
+
readonly idToken: questpie152.FieldWithMethods<questpie152.TextFieldState, questpie152.TextFieldMethods>;
|
|
69
|
+
readonly password: questpie152.FieldWithMethods<questpie152.TextFieldState, questpie152.TextFieldMethods>;
|
|
70
70
|
};
|
|
71
71
|
upload: undefined;
|
|
72
72
|
output: {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as questpie_shared24 from "questpie/shared";
|
|
2
|
-
import * as
|
|
2
|
+
import * as questpie199 from "questpie";
|
|
3
3
|
import * as questpie_src_server_modules_core_fields_email_js4 from "questpie/src/server/modules/core/fields/email.js";
|
|
4
4
|
import * as questpie_src_server_modules_core_fields_json_js4 from "questpie/src/server/modules/core/fields/json.js";
|
|
5
5
|
import * as drizzle_orm_pg_core45 from "drizzle-orm/pg-core";
|
|
@@ -7,22 +7,22 @@ import * as drizzle_orm21 from "drizzle-orm";
|
|
|
7
7
|
import * as questpie_src_server_collection_builder_types_js3 from "questpie/src/server/collection/builder/types.js";
|
|
8
8
|
|
|
9
9
|
//#region src/server/modules/admin/collections/admin-locks.d.ts
|
|
10
|
-
declare const _default:
|
|
11
|
-
readonly text: typeof
|
|
12
|
-
readonly textarea: typeof
|
|
10
|
+
declare const _default: questpie199.CollectionBuilder<questpie_shared24.Override<questpie199.EmptyCollectionState<"admin_locks", undefined, {
|
|
11
|
+
readonly text: typeof questpie199.text;
|
|
12
|
+
readonly textarea: typeof questpie199.textarea;
|
|
13
13
|
readonly email: typeof questpie_src_server_modules_core_fields_email_js4.email;
|
|
14
|
-
readonly url: typeof
|
|
15
|
-
readonly number: typeof
|
|
16
|
-
readonly boolean: typeof
|
|
17
|
-
readonly date: typeof
|
|
18
|
-
readonly datetime: typeof
|
|
19
|
-
readonly time: typeof
|
|
20
|
-
readonly select: typeof
|
|
21
|
-
readonly upload: typeof
|
|
22
|
-
readonly relation: typeof
|
|
23
|
-
readonly object: typeof
|
|
14
|
+
readonly url: typeof questpie199.url;
|
|
15
|
+
readonly number: typeof questpie199.number;
|
|
16
|
+
readonly boolean: typeof questpie199.boolean;
|
|
17
|
+
readonly date: typeof questpie199.date;
|
|
18
|
+
readonly datetime: typeof questpie199.datetime;
|
|
19
|
+
readonly time: typeof questpie199.time;
|
|
20
|
+
readonly select: typeof questpie199.select;
|
|
21
|
+
readonly upload: typeof questpie199.upload;
|
|
22
|
+
readonly relation: typeof questpie199.relation;
|
|
23
|
+
readonly object: typeof questpie199.object;
|
|
24
24
|
readonly json: typeof questpie_src_server_modules_core_fields_json_js4.json;
|
|
25
|
-
readonly from: typeof
|
|
25
|
+
readonly from: typeof questpie199.from;
|
|
26
26
|
}>, {
|
|
27
27
|
name: "admin_locks";
|
|
28
28
|
fields: Record<string, any> & {
|
|
@@ -34,52 +34,52 @@ declare const _default: questpie198.CollectionBuilder<questpie_shared24.Override
|
|
|
34
34
|
readonly expiresAt: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgDateStringBuilder>;
|
|
35
35
|
};
|
|
36
36
|
virtuals: undefined;
|
|
37
|
-
relations: Record<string,
|
|
37
|
+
relations: Record<string, questpie199.RelationConfig>;
|
|
38
38
|
indexes: Record<string, any>;
|
|
39
39
|
title: undefined;
|
|
40
|
-
options:
|
|
40
|
+
options: questpie199.CollectionOptions & {
|
|
41
41
|
timestamps: true;
|
|
42
42
|
};
|
|
43
43
|
hooks: questpie_src_server_collection_builder_types_js3.CollectionHooksStorage;
|
|
44
44
|
access: questpie_src_server_collection_builder_types_js3.CollectionAccessStorage;
|
|
45
45
|
searchable: undefined;
|
|
46
46
|
fieldDefinitions: {
|
|
47
|
-
readonly resourceType:
|
|
47
|
+
readonly resourceType: questpie199.FieldWithMethods<Omit<questpie199.SelectFieldState<"collection" | "global">, "notNull" | "column"> & {
|
|
48
48
|
notNull: true;
|
|
49
49
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgVarcharBuilder<[string, ...string[]]>>;
|
|
50
50
|
} & {
|
|
51
51
|
label: questpie_shared24.I18nText;
|
|
52
|
-
},
|
|
53
|
-
readonly resource:
|
|
52
|
+
}, questpie199.SelectFieldMethods>;
|
|
53
|
+
readonly resource: questpie199.FieldWithMethods<Omit<questpie199.TextFieldState, "notNull" | "column"> & {
|
|
54
54
|
notNull: true;
|
|
55
55
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgVarcharBuilder<[string, ...string[]]>>;
|
|
56
56
|
} & {
|
|
57
57
|
label: questpie_shared24.I18nText;
|
|
58
|
-
},
|
|
59
|
-
readonly resourceId:
|
|
58
|
+
}, questpie199.TextFieldMethods>;
|
|
59
|
+
readonly resourceId: questpie199.FieldWithMethods<Omit<questpie199.TextFieldState, "notNull" | "column"> & {
|
|
60
60
|
notNull: true;
|
|
61
61
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgVarcharBuilder<[string, ...string[]]>>;
|
|
62
62
|
} & {
|
|
63
63
|
label: questpie_shared24.I18nText;
|
|
64
|
-
},
|
|
65
|
-
readonly user:
|
|
64
|
+
}, questpie199.TextFieldMethods>;
|
|
65
|
+
readonly user: questpie199.FieldWithMethods<Omit<questpie199.RelationFieldState<"user">, "notNull" | "column"> & {
|
|
66
66
|
notNull: true;
|
|
67
67
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgVarcharBuilder<[string, ...string[]]>>;
|
|
68
68
|
} & {
|
|
69
69
|
label: questpie_shared24.I18nText;
|
|
70
|
-
},
|
|
71
|
-
readonly sessionId:
|
|
70
|
+
}, questpie199.RelationFieldMethods>;
|
|
71
|
+
readonly sessionId: questpie199.FieldWithMethods<Omit<questpie199.TextFieldState, "notNull" | "column"> & {
|
|
72
72
|
notNull: true;
|
|
73
73
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgVarcharBuilder<[string, ...string[]]>>;
|
|
74
74
|
} & {
|
|
75
75
|
label: questpie_shared24.I18nText;
|
|
76
|
-
},
|
|
77
|
-
readonly expiresAt:
|
|
76
|
+
}, questpie199.TextFieldMethods>;
|
|
77
|
+
readonly expiresAt: questpie199.FieldWithMethods<Omit<questpie199.DateFieldState, "notNull" | "column"> & {
|
|
78
78
|
notNull: true;
|
|
79
79
|
column: drizzle_orm21.NotNull<drizzle_orm_pg_core45.PgDateStringBuilder>;
|
|
80
80
|
} & {
|
|
81
81
|
label: questpie_shared24.I18nText;
|
|
82
|
-
},
|
|
82
|
+
}, questpie199.DateFieldMethods>;
|
|
83
83
|
};
|
|
84
84
|
upload: undefined;
|
|
85
85
|
output: {};
|