@questpie/admin 3.2.2 → 3.2.3
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/blocks/block-renderer.d.mts +2 -2
- package/dist/client/components/admin-link.d.mts +2 -2
- package/dist/client/preview/block-scope-context.d.mts +2 -2
- package/dist/client/preview/preview-banner.d.mts +2 -2
- 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/login-form.d.mts +2 -2
- 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/reset-password-page.d.mts +2 -2
- package/dist/client/views/pages/setup-page.d.mts +2 -2
- package/dist/server/modules/admin/collections/admin-saved-views.d.mts +47 -47
- package/dist/server/modules/admin/collections/apikey.d.mts +68 -68
- package/dist/server/modules/admin/collections/assets.d.mts +34 -34
- package/dist/server/modules/admin/collections/session.d.mts +38 -38
- package/dist/server/modules/admin/collections/user.d.mts +53 -53
- package/dist/server/modules/admin/collections/verification.d.mts +32 -32
- package/dist/server/modules/admin/index.d.mts +1 -1
- package/dist/server/modules/admin/routes/admin-config.d.mts +2 -2
- 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/widget-data.d.mts +5 -5
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BlockContent } from "./types.mjs";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime19 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/client/blocks/block-renderer.d.ts
|
|
6
6
|
|
|
@@ -50,6 +50,6 @@ declare function BlockRenderer({
|
|
|
50
50
|
onBlockClick,
|
|
51
51
|
onBlockInsert,
|
|
52
52
|
className
|
|
53
|
-
}: BlockRendererProps):
|
|
53
|
+
}: BlockRendererProps): react_jsx_runtime19.JSX.Element | null;
|
|
54
54
|
//#endregion
|
|
55
55
|
export { BlockRenderer, BlockRendererProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CollectionNames, GlobalNames } from "../builder/index.mjs";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime12 from "react/jsx-runtime";
|
|
4
4
|
import { QuestpieApp } from "questpie/client";
|
|
5
5
|
|
|
6
6
|
//#region src/client/components/admin-link.d.ts
|
|
@@ -61,6 +61,6 @@ declare function AdminLink<TApp extends QuestpieApp>({
|
|
|
61
61
|
children,
|
|
62
62
|
onClick,
|
|
63
63
|
...rest
|
|
64
|
-
}: AdminLinkProps<TApp>):
|
|
64
|
+
}: AdminLinkProps<TApp>): react_jsx_runtime12.JSX.Element;
|
|
65
65
|
//#endregion
|
|
66
66
|
export { AdminLink };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime22 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/client/preview/block-scope-context.d.ts
|
|
5
5
|
|
|
@@ -35,7 +35,7 @@ declare function BlockScopeProvider({
|
|
|
35
35
|
blockId,
|
|
36
36
|
basePath,
|
|
37
37
|
children
|
|
38
|
-
}: BlockScopeProviderProps):
|
|
38
|
+
}: BlockScopeProviderProps): react_jsx_runtime22.JSX.Element;
|
|
39
39
|
/**
|
|
40
40
|
* Get current block scope context.
|
|
41
41
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime21 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/preview/preview-banner.d.ts
|
|
4
4
|
|
|
@@ -40,6 +40,6 @@ declare function PreviewBanner({
|
|
|
40
40
|
isPreviewMode,
|
|
41
41
|
className,
|
|
42
42
|
exitPreviewUrl
|
|
43
|
-
}: PreviewBannerProps):
|
|
43
|
+
}: PreviewBannerProps): react_jsx_runtime21.JSX.Element | null;
|
|
44
44
|
//#endregion
|
|
45
45
|
export { PreviewBanner, PreviewBannerProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 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_runtime0.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_runtime1 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_runtime1.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_runtime1.JSX.Element;
|
|
54
54
|
//#endregion
|
|
55
55
|
export { AuthDefaultLogo, AuthLayout, AuthLayoutProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/client/views/auth/login-form.d.ts
|
|
4
4
|
/**
|
|
@@ -70,6 +70,6 @@ declare function LoginForm({
|
|
|
70
70
|
className,
|
|
71
71
|
error,
|
|
72
72
|
minPasswordLength
|
|
73
|
-
}: LoginFormProps):
|
|
73
|
+
}: LoginFormProps): react_jsx_runtime4.JSX.Element;
|
|
74
74
|
//#endregion
|
|
75
75
|
export { LoginForm };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime5 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_runtime5.JSX.Element;
|
|
64
64
|
//#endregion
|
|
65
65
|
export { ResetPasswordForm };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime6 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_runtime6.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_runtime7 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_runtime7.JSX.Element;
|
|
65
65
|
//#endregion
|
|
66
66
|
export { AcceptInvitePage };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime8 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_runtime8.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_runtime9 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_runtime9.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_runtime14 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_runtime14.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_runtime15 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_runtime15.JSX.Element;
|
|
60
60
|
//#endregion
|
|
61
61
|
export { SetupPage, SetupPageProps };
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
1
|
+
import * as questpie_shared35 from "questpie/shared";
|
|
2
|
+
import * as questpie328 from "questpie";
|
|
3
|
+
import * as questpie_src_server_modules_core_fields_email_js7 from "questpie/src/server/modules/core/fields/email.js";
|
|
4
|
+
import * as questpie_src_server_modules_core_fields_json_js7 from "questpie/src/server/modules/core/fields/json.js";
|
|
5
|
+
import * as drizzle_orm_pg_core87 from "drizzle-orm/pg-core";
|
|
6
|
+
import * as drizzle_orm49 from "drizzle-orm";
|
|
7
7
|
|
|
8
8
|
//#region src/server/modules/admin/collections/admin-saved-views.d.ts
|
|
9
|
-
declare const _default:
|
|
10
|
-
readonly text: typeof
|
|
11
|
-
readonly textarea: typeof
|
|
12
|
-
readonly email: typeof
|
|
13
|
-
readonly url: typeof
|
|
14
|
-
readonly number: typeof
|
|
15
|
-
readonly boolean: typeof
|
|
16
|
-
readonly date: typeof
|
|
17
|
-
readonly datetime: typeof
|
|
18
|
-
readonly time: typeof
|
|
19
|
-
readonly select: typeof
|
|
20
|
-
readonly upload: typeof
|
|
21
|
-
readonly relation: typeof
|
|
22
|
-
readonly object: typeof
|
|
23
|
-
readonly json: typeof
|
|
24
|
-
readonly from: typeof
|
|
9
|
+
declare const _default: questpie328.CollectionBuilder<questpie_shared35.Override<questpie328.EmptyCollectionState<"admin_saved_views", undefined, {
|
|
10
|
+
readonly text: typeof questpie328.text;
|
|
11
|
+
readonly textarea: typeof questpie328.textarea;
|
|
12
|
+
readonly email: typeof questpie_src_server_modules_core_fields_email_js7.email;
|
|
13
|
+
readonly url: typeof questpie328.url;
|
|
14
|
+
readonly number: typeof questpie328.number;
|
|
15
|
+
readonly boolean: typeof questpie328.boolean;
|
|
16
|
+
readonly date: typeof questpie328.date;
|
|
17
|
+
readonly datetime: typeof questpie328.datetime;
|
|
18
|
+
readonly time: typeof questpie328.time;
|
|
19
|
+
readonly select: typeof questpie328.select;
|
|
20
|
+
readonly upload: typeof questpie328.upload;
|
|
21
|
+
readonly relation: typeof questpie328.relation;
|
|
22
|
+
readonly object: typeof questpie328.object;
|
|
23
|
+
readonly json: typeof questpie_src_server_modules_core_fields_json_js7.json;
|
|
24
|
+
readonly from: typeof questpie328.from;
|
|
25
25
|
}>, {
|
|
26
26
|
name: "admin_saved_views";
|
|
27
27
|
fields: Record<string, any> & {
|
|
28
|
-
readonly userId:
|
|
29
|
-
readonly collectionName:
|
|
30
|
-
readonly name:
|
|
31
|
-
readonly configuration:
|
|
32
|
-
readonly isDefault:
|
|
28
|
+
readonly userId: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
29
|
+
readonly collectionName: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
30
|
+
readonly name: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
31
|
+
readonly configuration: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgJsonbBuilder>;
|
|
32
|
+
readonly isDefault: drizzle_orm49.HasDefault<drizzle_orm_pg_core87.PgBooleanBuilder>;
|
|
33
33
|
};
|
|
34
34
|
virtuals: undefined;
|
|
35
|
-
relations: Record<string,
|
|
35
|
+
relations: Record<string, questpie328.RelationConfig>;
|
|
36
36
|
indexes: Record<string, any>;
|
|
37
37
|
title: undefined;
|
|
38
|
-
options:
|
|
38
|
+
options: questpie328.CollectionOptions & {
|
|
39
39
|
timestamps: true;
|
|
40
40
|
};
|
|
41
41
|
hooks: Record<string, any>;
|
|
42
42
|
access: Record<string, any>;
|
|
43
43
|
searchable: undefined;
|
|
44
44
|
fieldDefinitions: {
|
|
45
|
-
readonly userId:
|
|
45
|
+
readonly userId: questpie328.FieldWithMethods<Omit<questpie328.TextFieldState, "notNull" | "column"> & {
|
|
46
46
|
notNull: true;
|
|
47
|
-
column:
|
|
47
|
+
column: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
48
48
|
} & {
|
|
49
|
-
label:
|
|
50
|
-
},
|
|
51
|
-
readonly collectionName:
|
|
49
|
+
label: questpie_shared35.I18nText;
|
|
50
|
+
}, questpie328.TextFieldMethods>;
|
|
51
|
+
readonly collectionName: questpie328.FieldWithMethods<Omit<questpie328.TextFieldState, "notNull" | "column"> & {
|
|
52
52
|
notNull: true;
|
|
53
|
-
column:
|
|
53
|
+
column: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
54
54
|
} & {
|
|
55
|
-
label:
|
|
56
|
-
},
|
|
57
|
-
readonly name:
|
|
55
|
+
label: questpie_shared35.I18nText;
|
|
56
|
+
}, questpie328.TextFieldMethods>;
|
|
57
|
+
readonly name: questpie328.FieldWithMethods<Omit<questpie328.TextFieldState, "notNull" | "column"> & {
|
|
58
58
|
notNull: true;
|
|
59
|
-
column:
|
|
59
|
+
column: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgVarcharBuilder<[string, ...string[]]>>;
|
|
60
60
|
} & {
|
|
61
|
-
label:
|
|
62
|
-
},
|
|
63
|
-
readonly configuration:
|
|
61
|
+
label: questpie_shared35.I18nText;
|
|
62
|
+
}, questpie328.TextFieldMethods>;
|
|
63
|
+
readonly configuration: questpie328.Field<Omit<questpie328.JsonFieldState, "notNull" | "column"> & {
|
|
64
64
|
notNull: true;
|
|
65
|
-
column:
|
|
65
|
+
column: drizzle_orm49.NotNull<drizzle_orm_pg_core87.PgJsonbBuilder>;
|
|
66
66
|
} & {
|
|
67
|
-
label:
|
|
67
|
+
label: questpie_shared35.I18nText;
|
|
68
68
|
}>;
|
|
69
|
-
readonly isDefault:
|
|
69
|
+
readonly isDefault: questpie328.Field<Omit<questpie328.BooleanFieldState, "column" | "hasDefault"> & {
|
|
70
70
|
hasDefault: true;
|
|
71
|
-
column:
|
|
71
|
+
column: drizzle_orm49.HasDefault<drizzle_orm_pg_core87.PgBooleanBuilder>;
|
|
72
72
|
} & {
|
|
73
|
-
label:
|
|
73
|
+
label: questpie_shared35.I18nText;
|
|
74
74
|
}>;
|
|
75
75
|
};
|
|
76
76
|
upload: undefined;
|
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
1
|
+
import * as questpie_shared34 from "questpie/shared";
|
|
2
|
+
import * as questpie259 from "questpie";
|
|
3
|
+
import * as questpie_src_server_modules_core_fields_email_js6 from "questpie/src/server/modules/core/fields/email.js";
|
|
4
|
+
import * as questpie_src_server_modules_core_fields_json_js6 from "questpie/src/server/modules/core/fields/json.js";
|
|
5
|
+
import * as drizzle_orm_pg_core64 from "drizzle-orm/pg-core";
|
|
6
|
+
import * as drizzle_orm39 from "drizzle-orm";
|
|
7
7
|
|
|
8
8
|
//#region src/server/modules/admin/collections/apikey.d.ts
|
|
9
|
-
declare const _default:
|
|
10
|
-
readonly text: typeof
|
|
11
|
-
readonly textarea: typeof
|
|
12
|
-
readonly email: typeof
|
|
13
|
-
readonly url: typeof
|
|
14
|
-
readonly number: typeof
|
|
15
|
-
readonly boolean: typeof
|
|
16
|
-
readonly date: typeof
|
|
17
|
-
readonly datetime: typeof
|
|
18
|
-
readonly time: typeof
|
|
19
|
-
readonly select: typeof
|
|
20
|
-
readonly upload: typeof
|
|
21
|
-
readonly relation: typeof
|
|
22
|
-
readonly object: typeof
|
|
23
|
-
readonly json: typeof
|
|
24
|
-
readonly from: typeof
|
|
9
|
+
declare const _default: questpie259.CollectionBuilder<questpie_shared34.Override<questpie259.EmptyCollectionState<"apikey", undefined, {
|
|
10
|
+
readonly text: typeof questpie259.text;
|
|
11
|
+
readonly textarea: typeof questpie259.textarea;
|
|
12
|
+
readonly email: typeof questpie_src_server_modules_core_fields_email_js6.email;
|
|
13
|
+
readonly url: typeof questpie259.url;
|
|
14
|
+
readonly number: typeof questpie259.number;
|
|
15
|
+
readonly boolean: typeof questpie259.boolean;
|
|
16
|
+
readonly date: typeof questpie259.date;
|
|
17
|
+
readonly datetime: typeof questpie259.datetime;
|
|
18
|
+
readonly time: typeof questpie259.time;
|
|
19
|
+
readonly select: typeof questpie259.select;
|
|
20
|
+
readonly upload: typeof questpie259.upload;
|
|
21
|
+
readonly relation: typeof questpie259.relation;
|
|
22
|
+
readonly object: typeof questpie259.object;
|
|
23
|
+
readonly json: typeof questpie_src_server_modules_core_fields_json_js6.json;
|
|
24
|
+
readonly from: typeof questpie259.from;
|
|
25
25
|
}>, {
|
|
26
26
|
name: "apikey";
|
|
27
27
|
fields: Record<string, any> & {
|
|
28
|
-
readonly name:
|
|
29
|
-
readonly start:
|
|
30
|
-
readonly prefix:
|
|
31
|
-
readonly key:
|
|
32
|
-
readonly userId:
|
|
33
|
-
readonly refillInterval:
|
|
34
|
-
readonly refillAmount:
|
|
35
|
-
readonly lastRefillAt:
|
|
36
|
-
readonly enabled:
|
|
37
|
-
readonly rateLimitEnabled:
|
|
38
|
-
readonly rateLimitTimeWindow:
|
|
39
|
-
readonly rateLimitMax:
|
|
40
|
-
readonly requestCount:
|
|
41
|
-
readonly remaining:
|
|
42
|
-
readonly lastRequest:
|
|
43
|
-
readonly expiresAt:
|
|
44
|
-
readonly permissions:
|
|
45
|
-
readonly metadata:
|
|
28
|
+
readonly name: drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>;
|
|
29
|
+
readonly start: drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>;
|
|
30
|
+
readonly prefix: drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>;
|
|
31
|
+
readonly key: drizzle_orm39.NotNull<drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>>;
|
|
32
|
+
readonly userId: drizzle_orm39.NotNull<drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>>;
|
|
33
|
+
readonly refillInterval: drizzle_orm_pg_core64.PgIntegerBuilder;
|
|
34
|
+
readonly refillAmount: drizzle_orm_pg_core64.PgIntegerBuilder;
|
|
35
|
+
readonly lastRefillAt: drizzle_orm_pg_core64.PgTimestampBuilder;
|
|
36
|
+
readonly enabled: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgBooleanBuilder>;
|
|
37
|
+
readonly rateLimitEnabled: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgBooleanBuilder>;
|
|
38
|
+
readonly rateLimitTimeWindow: drizzle_orm_pg_core64.PgIntegerBuilder;
|
|
39
|
+
readonly rateLimitMax: drizzle_orm_pg_core64.PgIntegerBuilder;
|
|
40
|
+
readonly requestCount: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgIntegerBuilder>;
|
|
41
|
+
readonly remaining: drizzle_orm_pg_core64.PgIntegerBuilder;
|
|
42
|
+
readonly lastRequest: drizzle_orm_pg_core64.PgTimestampBuilder;
|
|
43
|
+
readonly expiresAt: drizzle_orm_pg_core64.PgTimestampBuilder;
|
|
44
|
+
readonly permissions: drizzle_orm_pg_core64.PgTextBuilder<[string, ...string[]]>;
|
|
45
|
+
readonly metadata: drizzle_orm_pg_core64.PgTextBuilder<[string, ...string[]]>;
|
|
46
46
|
};
|
|
47
47
|
virtuals: undefined;
|
|
48
|
-
relations: Record<string,
|
|
48
|
+
relations: Record<string, questpie259.RelationConfig>;
|
|
49
49
|
indexes: Record<string, any>;
|
|
50
50
|
title: "key";
|
|
51
|
-
options:
|
|
51
|
+
options: questpie259.CollectionOptions & {
|
|
52
52
|
timestamps: true;
|
|
53
53
|
};
|
|
54
54
|
hooks: Record<string, any>;
|
|
55
55
|
access: Record<string, any>;
|
|
56
56
|
searchable: undefined;
|
|
57
57
|
fieldDefinitions: {
|
|
58
|
-
readonly name:
|
|
59
|
-
readonly start:
|
|
60
|
-
readonly prefix:
|
|
61
|
-
readonly key:
|
|
58
|
+
readonly name: questpie259.FieldWithMethods<questpie259.TextFieldState, questpie259.TextFieldMethods>;
|
|
59
|
+
readonly start: questpie259.FieldWithMethods<questpie259.TextFieldState, questpie259.TextFieldMethods>;
|
|
60
|
+
readonly prefix: questpie259.FieldWithMethods<questpie259.TextFieldState, questpie259.TextFieldMethods>;
|
|
61
|
+
readonly key: questpie259.FieldWithMethods<Omit<questpie259.TextFieldState, "notNull" | "column"> & {
|
|
62
62
|
notNull: true;
|
|
63
|
-
column:
|
|
64
|
-
},
|
|
65
|
-
readonly userId:
|
|
63
|
+
column: drizzle_orm39.NotNull<drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>>;
|
|
64
|
+
}, questpie259.TextFieldMethods>;
|
|
65
|
+
readonly userId: questpie259.FieldWithMethods<Omit<questpie259.TextFieldState, "notNull" | "column"> & {
|
|
66
66
|
notNull: true;
|
|
67
|
-
column:
|
|
68
|
-
},
|
|
69
|
-
readonly refillInterval:
|
|
70
|
-
readonly refillAmount:
|
|
71
|
-
readonly lastRefillAt:
|
|
72
|
-
readonly enabled:
|
|
67
|
+
column: drizzle_orm39.NotNull<drizzle_orm_pg_core64.PgVarcharBuilder<[string, ...string[]]>>;
|
|
68
|
+
}, questpie259.TextFieldMethods>;
|
|
69
|
+
readonly refillInterval: questpie259.FieldWithMethods<questpie259.NumberFieldState, questpie259.NumberFieldMethods>;
|
|
70
|
+
readonly refillAmount: questpie259.FieldWithMethods<questpie259.NumberFieldState, questpie259.NumberFieldMethods>;
|
|
71
|
+
readonly lastRefillAt: questpie259.FieldWithMethods<questpie259.DatetimeFieldState, questpie259.DatetimeFieldMethods>;
|
|
72
|
+
readonly enabled: questpie259.Field<Omit<questpie259.BooleanFieldState, "column" | "hasDefault"> & {
|
|
73
73
|
hasDefault: true;
|
|
74
|
-
column:
|
|
74
|
+
column: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgBooleanBuilder>;
|
|
75
75
|
}>;
|
|
76
|
-
readonly rateLimitEnabled:
|
|
76
|
+
readonly rateLimitEnabled: questpie259.Field<Omit<questpie259.BooleanFieldState, "column" | "hasDefault"> & {
|
|
77
77
|
hasDefault: true;
|
|
78
|
-
column:
|
|
78
|
+
column: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgBooleanBuilder>;
|
|
79
79
|
}>;
|
|
80
|
-
readonly rateLimitTimeWindow:
|
|
81
|
-
readonly rateLimitMax:
|
|
82
|
-
readonly requestCount:
|
|
80
|
+
readonly rateLimitTimeWindow: questpie259.FieldWithMethods<questpie259.NumberFieldState, questpie259.NumberFieldMethods>;
|
|
81
|
+
readonly rateLimitMax: questpie259.FieldWithMethods<questpie259.NumberFieldState, questpie259.NumberFieldMethods>;
|
|
82
|
+
readonly requestCount: questpie259.FieldWithMethods<Omit<questpie259.NumberFieldState, "column" | "hasDefault"> & {
|
|
83
83
|
hasDefault: true;
|
|
84
|
-
column:
|
|
85
|
-
},
|
|
86
|
-
readonly remaining:
|
|
87
|
-
readonly lastRequest:
|
|
88
|
-
readonly expiresAt:
|
|
89
|
-
readonly permissions:
|
|
90
|
-
readonly metadata:
|
|
84
|
+
column: drizzle_orm39.HasDefault<drizzle_orm_pg_core64.PgIntegerBuilder>;
|
|
85
|
+
}, questpie259.NumberFieldMethods>;
|
|
86
|
+
readonly remaining: questpie259.FieldWithMethods<questpie259.NumberFieldState, questpie259.NumberFieldMethods>;
|
|
87
|
+
readonly lastRequest: questpie259.FieldWithMethods<questpie259.DatetimeFieldState, questpie259.DatetimeFieldMethods>;
|
|
88
|
+
readonly expiresAt: questpie259.FieldWithMethods<questpie259.DatetimeFieldState, questpie259.DatetimeFieldMethods>;
|
|
89
|
+
readonly permissions: questpie259.FieldWithMethods<questpie259.TextareaFieldState, questpie259.TextareaFieldMethods>;
|
|
90
|
+
readonly metadata: questpie259.FieldWithMethods<questpie259.TextareaFieldState, questpie259.TextareaFieldMethods>;
|
|
91
91
|
};
|
|
92
92
|
upload: undefined;
|
|
93
93
|
output: {};
|