alepha 0.13.8 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/audits/index.d.ts +2 -1
- package/dist/api/audits/index.d.ts.map +1 -0
- package/dist/api/files/index.d.ts +2 -1
- package/dist/api/files/index.d.ts.map +1 -0
- package/dist/api/jobs/index.d.ts +158 -157
- package/dist/api/jobs/index.d.ts.map +1 -0
- package/dist/api/notifications/index.d.ts.map +1 -0
- package/dist/api/parameters/index.d.ts +4 -4
- package/dist/api/parameters/index.d.ts.map +1 -0
- package/dist/api/users/index.d.ts +132 -131
- package/dist/api/users/index.d.ts.map +1 -0
- package/dist/api/verifications/index.d.ts.map +1 -0
- package/dist/batch/index.d.ts.map +1 -0
- package/dist/bucket/index.d.ts.map +1 -0
- package/dist/cache/core/index.d.ts.map +1 -0
- package/dist/cache/redis/index.d.ts.map +1 -0
- package/dist/cli/index.d.ts +44 -32
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +380 -109
- package/dist/cli/index.js.map +1 -1
- package/dist/command/index.d.ts +11 -1
- package/dist/command/index.d.ts.map +1 -0
- package/dist/command/index.js +45 -6
- package/dist/command/index.js.map +1 -1
- package/dist/core/index.browser.js +1334 -1318
- package/dist/core/index.browser.js.map +1 -1
- package/dist/core/index.d.ts +75 -71
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +1337 -1321
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.native.js +1337 -1321
- package/dist/core/index.native.js.map +1 -1
- package/dist/datetime/index.d.ts.map +1 -0
- package/dist/email/index.d.ts.map +1 -0
- package/dist/fake/index.d.ts.map +1 -0
- package/dist/file/index.d.ts.map +1 -0
- package/dist/lock/core/index.d.ts.map +1 -0
- package/dist/lock/redis/index.d.ts.map +1 -0
- package/dist/logger/index.d.ts +1 -0
- package/dist/logger/index.d.ts.map +1 -0
- package/dist/mcp/index.d.ts +820 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/mcp/index.js +978 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/orm/index.d.ts +180 -107
- package/dist/orm/index.d.ts.map +1 -0
- package/dist/orm/index.js +260 -174
- package/dist/orm/index.js.map +1 -1
- package/dist/queue/core/index.d.ts +4 -4
- package/dist/queue/core/index.d.ts.map +1 -0
- package/dist/queue/redis/index.d.ts.map +1 -0
- package/dist/redis/index.d.ts.map +1 -0
- package/dist/retry/index.d.ts.map +1 -0
- package/dist/router/index.d.ts.map +1 -0
- package/dist/scheduler/index.d.ts.map +1 -0
- package/dist/security/index.d.ts.map +1 -0
- package/dist/server/auth/index.d.ts +155 -155
- package/dist/server/auth/index.d.ts.map +1 -0
- package/dist/server/cache/index.d.ts.map +1 -0
- package/dist/server/compress/index.d.ts.map +1 -0
- package/dist/server/cookies/index.d.ts.map +1 -0
- package/dist/server/core/index.d.ts.map +1 -0
- package/dist/server/cors/index.d.ts.map +1 -0
- package/dist/server/health/index.d.ts.map +1 -0
- package/dist/server/helmet/index.d.ts.map +1 -0
- package/dist/server/links/index.d.ts +33 -33
- package/dist/server/links/index.d.ts.map +1 -0
- package/dist/server/metrics/index.d.ts.map +1 -0
- package/dist/server/multipart/index.d.ts.map +1 -0
- package/dist/server/proxy/index.d.ts.map +1 -0
- package/dist/server/rate-limit/index.d.ts.map +1 -0
- package/dist/server/security/index.d.ts +9 -9
- package/dist/server/security/index.d.ts.map +1 -0
- package/dist/server/static/index.d.ts.map +1 -0
- package/dist/server/swagger/index.d.ts.map +1 -0
- package/dist/sms/index.d.ts.map +1 -0
- package/dist/thread/index.d.ts.map +1 -0
- package/dist/topic/core/index.d.ts.map +1 -0
- package/dist/topic/redis/index.d.ts.map +1 -0
- package/dist/vite/index.d.ts +10 -2
- package/dist/vite/index.d.ts.map +1 -0
- package/dist/vite/index.js +36 -14
- package/dist/vite/index.js.map +1 -1
- package/dist/websocket/index.d.ts.map +1 -0
- package/package.json +9 -4
- package/src/cli/apps/AlephaCli.ts +2 -0
- package/src/cli/apps/AlephaPackageBuilderCli.ts +12 -8
- package/src/cli/assets/mainTs.ts +9 -10
- package/src/cli/commands/ChangelogCommands.ts +389 -0
- package/src/cli/commands/DrizzleCommands.ts +204 -4
- package/src/cli/commands/ViteCommands.ts +26 -16
- package/src/cli/services/AlephaCliUtils.ts +23 -150
- package/src/command/providers/CliProvider.ts +76 -5
- package/src/core/providers/SchemaValidator.ts +23 -1
- package/src/mcp/errors/McpError.ts +72 -0
- package/src/mcp/helpers/jsonrpc.ts +163 -0
- package/src/mcp/index.ts +132 -0
- package/src/mcp/interfaces/McpTypes.ts +248 -0
- package/src/mcp/primitives/$prompt.ts +188 -0
- package/src/mcp/primitives/$resource.ts +171 -0
- package/src/mcp/primitives/$tool.ts +285 -0
- package/src/mcp/providers/McpServerProvider.ts +382 -0
- package/src/mcp/transports/SseMcpTransport.ts +172 -0
- package/src/mcp/transports/StdioMcpTransport.ts +126 -0
- package/src/orm/index.ts +12 -0
- package/src/orm/providers/drivers/CloudflareD1Provider.ts +164 -0
- package/src/orm/providers/drivers/NodeSqliteProvider.ts +3 -1
- package/src/vite/plugins/viteAlephaBuild.ts +8 -2
- package/src/vite/plugins/viteAlephaDev.ts +6 -2
- package/src/vite/tasks/buildServer.ts +1 -1
- package/src/vite/tasks/generateCloudflare.ts +43 -15
- package/src/vite/tasks/runAlepha.ts +1 -0
|
@@ -2,10 +2,10 @@ import * as alepha1 from "alepha";
|
|
|
2
2
|
import { Alepha, AlephaError, Page, PageQuery, Primitive, Static, StaticEncode, TNull, TObject, TOptional, TSchema, TUnion } from "alepha";
|
|
3
3
|
import * as alepha_api_notifications0 from "alepha/api/notifications";
|
|
4
4
|
import { VerificationController } from "alepha/api/verifications";
|
|
5
|
-
import * as
|
|
5
|
+
import * as alepha_orm204 from "alepha/orm";
|
|
6
6
|
import { Page as Page$1, Repository } from "alepha/orm";
|
|
7
7
|
import * as alepha_server0 from "alepha/server";
|
|
8
|
-
import * as
|
|
8
|
+
import * as alepha_logger1 from "alepha/logger";
|
|
9
9
|
import * as alepha_bucket0 from "alepha/bucket";
|
|
10
10
|
import * as alepha_cache0 from "alepha/cache";
|
|
11
11
|
import { DateTime, DateTimeProvider } from "alepha/datetime";
|
|
@@ -14,6 +14,7 @@ import * as alepha_server_links0 from "alepha/server/links";
|
|
|
14
14
|
import { OAuth2Profile, ServerAuthProvider, WithLinkFn, WithLoginFn } from "alepha/server/auth";
|
|
15
15
|
import { FileSystemProvider } from "alepha/file";
|
|
16
16
|
import { FileController } from "alepha/api/files";
|
|
17
|
+
import "drizzle-orm/d1";
|
|
17
18
|
import * as drizzle_orm0 from "drizzle-orm";
|
|
18
19
|
import { BuildExtraConfigColumns, SQL, SQLWrapper } from "drizzle-orm";
|
|
19
20
|
import * as drizzle_orm_pg_core0 from "drizzle-orm/pg-core";
|
|
@@ -21,10 +22,10 @@ import { LockConfig, LockStrength, PgColumn, PgColumnBuilderBase, PgDatabase, Pg
|
|
|
21
22
|
import { PgTransactionConfig } from "drizzle-orm/pg-core/session";
|
|
22
23
|
import * as DrizzleKit from "drizzle-kit/api";
|
|
23
24
|
import "alepha/retry";
|
|
25
|
+
import "drizzle-orm/sqlite-core";
|
|
24
26
|
import "alepha/lock";
|
|
25
27
|
import "drizzle-orm/postgres-js";
|
|
26
28
|
import "postgres";
|
|
27
|
-
import "drizzle-orm/sqlite-core";
|
|
28
29
|
|
|
29
30
|
//#region ../../src/api/users/atoms/realmAuthSettingsAtom.d.ts
|
|
30
31
|
declare const realmAuthSettingsAtom: alepha1.Atom<alepha1.TObject<{
|
|
@@ -54,12 +55,12 @@ declare const realmAuthSettingsAtom: alepha1.Atom<alepha1.TObject<{
|
|
|
54
55
|
type RealmAuthSettings = Static<typeof realmAuthSettingsAtom.schema>;
|
|
55
56
|
//#endregion
|
|
56
57
|
//#region ../../src/api/users/entities/identities.d.ts
|
|
57
|
-
declare const identities:
|
|
58
|
-
id:
|
|
59
|
-
version:
|
|
60
|
-
createdAt:
|
|
61
|
-
updatedAt:
|
|
62
|
-
userId:
|
|
58
|
+
declare const identities: alepha_orm204.EntityPrimitive<alepha1.TObject<{
|
|
59
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
60
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
61
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
62
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
63
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
63
64
|
password: alepha1.TOptional<alepha1.TString>;
|
|
64
65
|
provider: alepha1.TString;
|
|
65
66
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
@@ -68,13 +69,13 @@ declare const identities: alepha_orm179.EntityPrimitive<alepha1.TObject<{
|
|
|
68
69
|
type IdentityEntity = Static<typeof identities.schema>;
|
|
69
70
|
//#endregion
|
|
70
71
|
//#region ../../src/api/users/entities/sessions.d.ts
|
|
71
|
-
declare const sessions:
|
|
72
|
-
id:
|
|
73
|
-
version:
|
|
74
|
-
createdAt:
|
|
75
|
-
updatedAt:
|
|
72
|
+
declare const sessions: alepha_orm204.EntityPrimitive<alepha1.TObject<{
|
|
73
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
74
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
75
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
76
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
76
77
|
refreshToken: alepha1.TString;
|
|
77
|
-
userId:
|
|
78
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
78
79
|
expiresAt: alepha1.TString;
|
|
79
80
|
ip: alepha1.TOptional<alepha1.TString>;
|
|
80
81
|
userAgent: alepha1.TOptional<alepha1.TObject<{
|
|
@@ -87,21 +88,21 @@ type SessionEntity = Static<typeof sessions.schema>;
|
|
|
87
88
|
//#endregion
|
|
88
89
|
//#region ../../src/api/users/entities/users.d.ts
|
|
89
90
|
declare const DEFAULT_USER_REALM_NAME = "default";
|
|
90
|
-
declare const users:
|
|
91
|
-
id:
|
|
92
|
-
version:
|
|
93
|
-
createdAt:
|
|
94
|
-
updatedAt:
|
|
95
|
-
realm:
|
|
91
|
+
declare const users: alepha_orm204.EntityPrimitive<alepha1.TObject<{
|
|
92
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
93
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
94
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
95
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
96
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
96
97
|
username: alepha1.TOptional<alepha1.TString>;
|
|
97
98
|
email: alepha1.TOptional<alepha1.TString>;
|
|
98
99
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
99
|
-
roles:
|
|
100
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
100
101
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
101
102
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
102
103
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
103
|
-
enabled:
|
|
104
|
-
emailVerified:
|
|
104
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
105
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
105
106
|
}>>;
|
|
106
107
|
type UserEntity = Static<typeof users.schema>;
|
|
107
108
|
//#endregion
|
|
@@ -169,23 +170,23 @@ interface UserRealm {
|
|
|
169
170
|
declare class UserRealmProvider {
|
|
170
171
|
protected readonly alepha: Alepha;
|
|
171
172
|
protected readonly defaultIdentities: Repository<alepha1.TObject<{
|
|
172
|
-
id:
|
|
173
|
-
version:
|
|
174
|
-
createdAt:
|
|
175
|
-
updatedAt:
|
|
176
|
-
userId:
|
|
173
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
174
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
175
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
176
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
177
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
177
178
|
password: alepha1.TOptional<alepha1.TString>;
|
|
178
179
|
provider: alepha1.TString;
|
|
179
180
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
180
181
|
providerData: alepha1.TOptional<alepha1.TRecord<string, alepha1.TAny>>;
|
|
181
182
|
}>>;
|
|
182
183
|
protected readonly defaultSessions: Repository<alepha1.TObject<{
|
|
183
|
-
id:
|
|
184
|
-
version:
|
|
185
|
-
createdAt:
|
|
186
|
-
updatedAt:
|
|
184
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
185
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
186
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
187
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
187
188
|
refreshToken: alepha1.TString;
|
|
188
|
-
userId:
|
|
189
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
189
190
|
expiresAt: alepha1.TString;
|
|
190
191
|
ip: alepha1.TOptional<alepha1.TString>;
|
|
191
192
|
userAgent: alepha1.TOptional<alepha1.TObject<{
|
|
@@ -195,20 +196,20 @@ declare class UserRealmProvider {
|
|
|
195
196
|
}>>;
|
|
196
197
|
}>>;
|
|
197
198
|
protected readonly defaultUsers: Repository<alepha1.TObject<{
|
|
198
|
-
id:
|
|
199
|
-
version:
|
|
200
|
-
createdAt:
|
|
201
|
-
updatedAt:
|
|
202
|
-
realm:
|
|
199
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
200
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
201
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
202
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
203
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
203
204
|
username: alepha1.TOptional<alepha1.TString>;
|
|
204
205
|
email: alepha1.TOptional<alepha1.TString>;
|
|
205
206
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
206
|
-
roles:
|
|
207
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
207
208
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
208
209
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
209
210
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
210
|
-
enabled:
|
|
211
|
-
emailVerified:
|
|
211
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
212
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
212
213
|
}>>;
|
|
213
214
|
protected realms: Map<string, UserRealm>;
|
|
214
215
|
avatars: alepha_bucket0.BucketPrimitive;
|
|
@@ -235,14 +236,14 @@ type IdentityQuery = Static<typeof identityQuerySchema>;
|
|
|
235
236
|
//#endregion
|
|
236
237
|
//#region ../../src/api/users/services/IdentityService.d.ts
|
|
237
238
|
declare class IdentityService {
|
|
238
|
-
protected readonly log:
|
|
239
|
+
protected readonly log: alepha_logger1.Logger;
|
|
239
240
|
protected readonly userRealmProvider: UserRealmProvider;
|
|
240
|
-
identities(userRealmName?: string):
|
|
241
|
-
id:
|
|
242
|
-
version:
|
|
243
|
-
createdAt:
|
|
244
|
-
updatedAt:
|
|
245
|
-
userId:
|
|
241
|
+
identities(userRealmName?: string): alepha_orm204.Repository<alepha1.TObject<{
|
|
242
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
243
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
244
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
245
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
246
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
246
247
|
password: alepha1.TOptional<alepha1.TString>;
|
|
247
248
|
provider: alepha1.TString;
|
|
248
249
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
@@ -280,12 +281,12 @@ declare class IdentityController {
|
|
|
280
281
|
userRealmName: alepha1.TOptional<alepha1.TString>;
|
|
281
282
|
}>;
|
|
282
283
|
response: alepha1.TPage<alepha1.TObject<{
|
|
283
|
-
|
|
284
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
285
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
286
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
287
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
288
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
284
289
|
provider: alepha1.TString;
|
|
285
|
-
id: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_PRIMARY_KEY>, typeof alepha_orm179.PG_DEFAULT>;
|
|
286
|
-
version: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TInteger, typeof alepha_orm179.PG_VERSION>, typeof alepha_orm179.PG_DEFAULT>;
|
|
287
|
-
createdAt: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_CREATED_AT>, typeof alepha_orm179.PG_DEFAULT>;
|
|
288
|
-
updatedAt: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_UPDATED_AT>, typeof alepha_orm179.PG_DEFAULT>;
|
|
289
290
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
290
291
|
providerData: alepha1.TOptional<alepha1.TRecord<string, alepha1.TAny>>;
|
|
291
292
|
}>>;
|
|
@@ -301,12 +302,12 @@ declare class IdentityController {
|
|
|
301
302
|
userRealmName: alepha1.TOptional<alepha1.TString>;
|
|
302
303
|
}>;
|
|
303
304
|
response: alepha1.TObject<{
|
|
304
|
-
|
|
305
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
306
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
307
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
308
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
309
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
305
310
|
provider: alepha1.TString;
|
|
306
|
-
id: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_PRIMARY_KEY>, typeof alepha_orm179.PG_DEFAULT>;
|
|
307
|
-
version: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TInteger, typeof alepha_orm179.PG_VERSION>, typeof alepha_orm179.PG_DEFAULT>;
|
|
308
|
-
createdAt: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_CREATED_AT>, typeof alepha_orm179.PG_DEFAULT>;
|
|
309
|
-
updatedAt: alepha_orm179.PgAttr<alepha_orm179.PgAttr<alepha1.TString, typeof alepha_orm179.PG_UPDATED_AT>, typeof alepha_orm179.PG_DEFAULT>;
|
|
310
311
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
311
312
|
providerData: alepha1.TOptional<alepha1.TRecord<string, alepha1.TAny>>;
|
|
312
313
|
}>;
|
|
@@ -340,15 +341,15 @@ type SessionQuery = Static<typeof sessionQuerySchema>;
|
|
|
340
341
|
//#endregion
|
|
341
342
|
//#region ../../src/api/users/services/SessionCrudService.d.ts
|
|
342
343
|
declare class SessionCrudService {
|
|
343
|
-
protected readonly log:
|
|
344
|
+
protected readonly log: alepha_logger1.Logger;
|
|
344
345
|
protected readonly userRealmProvider: UserRealmProvider;
|
|
345
|
-
sessions(userRealmName?: string):
|
|
346
|
-
id:
|
|
347
|
-
version:
|
|
348
|
-
createdAt:
|
|
349
|
-
updatedAt:
|
|
346
|
+
sessions(userRealmName?: string): alepha_orm204.Repository<alepha1.TObject<{
|
|
347
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
348
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
349
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
350
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
350
351
|
refreshToken: alepha1.TString;
|
|
351
|
-
userId:
|
|
352
|
+
userId: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_REF>;
|
|
352
353
|
expiresAt: alepha1.TString;
|
|
353
354
|
ip: alepha1.TOptional<alepha1.TString>;
|
|
354
355
|
userAgent: alepha1.TOptional<alepha1.TObject<{
|
|
@@ -1302,7 +1303,7 @@ declare abstract class ModelBuilder {
|
|
|
1302
1303
|
//#endregion
|
|
1303
1304
|
//#region ../../src/orm/providers/DrizzleKitProvider.d.ts
|
|
1304
1305
|
declare class DrizzleKitProvider {
|
|
1305
|
-
protected readonly log:
|
|
1306
|
+
protected readonly log: alepha_logger1.Logger;
|
|
1306
1307
|
protected readonly alepha: Alepha;
|
|
1307
1308
|
/**
|
|
1308
1309
|
* Synchronize database with current schema definitions.
|
|
@@ -1350,7 +1351,7 @@ type DevMigrations = Static<typeof devMigrationsSchema>;
|
|
|
1350
1351
|
type SQLLike = SQLWrapper | string;
|
|
1351
1352
|
declare abstract class DatabaseProvider {
|
|
1352
1353
|
protected readonly alepha: Alepha;
|
|
1353
|
-
protected readonly log:
|
|
1354
|
+
protected readonly log: alepha_logger1.Logger;
|
|
1354
1355
|
protected abstract readonly builder: ModelBuilder;
|
|
1355
1356
|
protected abstract readonly kit: DrizzleKitProvider;
|
|
1356
1357
|
abstract readonly db: PgDatabase<any>;
|
|
@@ -2024,7 +2025,7 @@ interface PasswordResetIntent {
|
|
|
2024
2025
|
expiresAt: string;
|
|
2025
2026
|
}
|
|
2026
2027
|
declare class CredentialService {
|
|
2027
|
-
protected readonly log:
|
|
2028
|
+
protected readonly log: alepha_logger1.Logger;
|
|
2028
2029
|
protected readonly cryptoProvider: CryptoProvider;
|
|
2029
2030
|
protected readonly dateTimeProvider: DateTimeProvider;
|
|
2030
2031
|
protected readonly verificationController: alepha_server_links0.HttpVirtualClient<VerificationController>;
|
|
@@ -2165,7 +2166,7 @@ interface RegistrationIntent {
|
|
|
2165
2166
|
expiresAt: string;
|
|
2166
2167
|
}
|
|
2167
2168
|
declare class RegistrationService {
|
|
2168
|
-
protected readonly log:
|
|
2169
|
+
protected readonly log: alepha_logger1.Logger;
|
|
2169
2170
|
protected readonly dateTimeProvider: DateTimeProvider;
|
|
2170
2171
|
protected readonly cryptoProvider: CryptoProvider;
|
|
2171
2172
|
protected readonly verificationController: alepha_server_links0.HttpVirtualClient<VerificationController>;
|
|
@@ -2254,25 +2255,25 @@ type UserQuery = Static<typeof userQuerySchema>;
|
|
|
2254
2255
|
//#endregion
|
|
2255
2256
|
//#region ../../src/api/users/services/UserService.d.ts
|
|
2256
2257
|
declare class UserService {
|
|
2257
|
-
protected readonly log:
|
|
2258
|
+
protected readonly log: alepha_logger1.Logger;
|
|
2258
2259
|
protected readonly verificationController: alepha_server_links0.HttpVirtualClient<VerificationController>;
|
|
2259
2260
|
protected readonly userNotifications: UserNotifications;
|
|
2260
2261
|
protected readonly userRealmProvider: UserRealmProvider;
|
|
2261
|
-
users(userRealmName?: string):
|
|
2262
|
-
id:
|
|
2263
|
-
version:
|
|
2264
|
-
createdAt:
|
|
2265
|
-
updatedAt:
|
|
2266
|
-
realm:
|
|
2262
|
+
users(userRealmName?: string): alepha_orm204.Repository<alepha1.TObject<{
|
|
2263
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2264
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2265
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2266
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2267
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2267
2268
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2268
2269
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2269
2270
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2270
|
-
roles:
|
|
2271
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2271
2272
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2272
2273
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2273
2274
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2274
|
-
enabled:
|
|
2275
|
-
emailVerified:
|
|
2275
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2276
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2276
2277
|
}>>;
|
|
2277
2278
|
/**
|
|
2278
2279
|
* Request email verification for a user.
|
|
@@ -2361,20 +2362,20 @@ declare class UserController {
|
|
|
2361
2362
|
userRealmName: alepha1.TOptional<alepha1.TString>;
|
|
2362
2363
|
}>;
|
|
2363
2364
|
response: alepha1.TPage<alepha1.TObject<{
|
|
2364
|
-
id:
|
|
2365
|
-
version:
|
|
2366
|
-
createdAt:
|
|
2367
|
-
updatedAt:
|
|
2368
|
-
realm:
|
|
2365
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2366
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2367
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2368
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2369
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2369
2370
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2370
2371
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2371
2372
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2372
|
-
roles:
|
|
2373
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2373
2374
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2374
2375
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2375
2376
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2376
|
-
enabled:
|
|
2377
|
-
emailVerified:
|
|
2377
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2378
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2378
2379
|
}>>;
|
|
2379
2380
|
}>;
|
|
2380
2381
|
/**
|
|
@@ -2388,20 +2389,20 @@ declare class UserController {
|
|
|
2388
2389
|
userRealmName: alepha1.TOptional<alepha1.TString>;
|
|
2389
2390
|
}>;
|
|
2390
2391
|
response: alepha1.TObject<{
|
|
2391
|
-
id:
|
|
2392
|
-
version:
|
|
2393
|
-
createdAt:
|
|
2394
|
-
updatedAt:
|
|
2395
|
-
realm:
|
|
2392
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2393
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2394
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2395
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2396
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2396
2397
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2397
2398
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2398
2399
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2399
|
-
roles:
|
|
2400
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2400
2401
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2401
2402
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2402
2403
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2403
|
-
enabled:
|
|
2404
|
-
emailVerified:
|
|
2404
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2405
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2405
2406
|
}>;
|
|
2406
2407
|
}>;
|
|
2407
2408
|
/**
|
|
@@ -2412,35 +2413,35 @@ declare class UserController {
|
|
|
2412
2413
|
userRealmName: alepha1.TOptional<alepha1.TString>;
|
|
2413
2414
|
}>;
|
|
2414
2415
|
body: alepha1.TObject<{
|
|
2415
|
-
id: alepha1.TOptional<
|
|
2416
|
-
version: alepha1.TOptional<
|
|
2416
|
+
id: alepha1.TOptional<alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2417
|
+
version: alepha1.TOptional<alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2417
2418
|
email: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2418
|
-
createdAt: alepha1.TOptional<
|
|
2419
|
-
updatedAt: alepha1.TOptional<
|
|
2419
|
+
createdAt: alepha1.TOptional<alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2420
|
+
updatedAt: alepha1.TOptional<alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2420
2421
|
username: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2421
2422
|
phoneNumber: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2422
2423
|
roles: alepha1.TOptional<alepha1.TArray<alepha1.TString>>;
|
|
2423
2424
|
firstName: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2424
2425
|
lastName: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2425
2426
|
picture: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2426
|
-
enabled: alepha1.TOptional<
|
|
2427
|
-
emailVerified: alepha1.TOptional<
|
|
2427
|
+
enabled: alepha1.TOptional<alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2428
|
+
emailVerified: alepha1.TOptional<alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2428
2429
|
}>;
|
|
2429
2430
|
response: alepha1.TObject<{
|
|
2430
|
-
id:
|
|
2431
|
-
version:
|
|
2432
|
-
createdAt:
|
|
2433
|
-
updatedAt:
|
|
2434
|
-
realm:
|
|
2431
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2432
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2433
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2434
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2435
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2435
2436
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2436
2437
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2437
2438
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2438
|
-
roles:
|
|
2439
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2439
2440
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2440
2441
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2441
2442
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2442
|
-
enabled:
|
|
2443
|
-
emailVerified:
|
|
2443
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2444
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2444
2445
|
}>;
|
|
2445
2446
|
}>;
|
|
2446
2447
|
/**
|
|
@@ -2455,20 +2456,20 @@ declare class UserController {
|
|
|
2455
2456
|
captchaToken: alepha1.TOptional<alepha1.TString>;
|
|
2456
2457
|
}>;
|
|
2457
2458
|
response: alepha1.TObject<{
|
|
2458
|
-
id:
|
|
2459
|
-
version:
|
|
2460
|
-
createdAt:
|
|
2461
|
-
updatedAt:
|
|
2462
|
-
realm:
|
|
2459
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2460
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2461
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2462
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2463
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2463
2464
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2464
2465
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2465
2466
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2466
|
-
roles:
|
|
2467
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2467
2468
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2468
2469
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2469
2470
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2470
|
-
enabled:
|
|
2471
|
-
emailVerified:
|
|
2471
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2472
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2472
2473
|
}>;
|
|
2473
2474
|
}>;
|
|
2474
2475
|
/**
|
|
@@ -2483,29 +2484,29 @@ declare class UserController {
|
|
|
2483
2484
|
}>;
|
|
2484
2485
|
body: alepha1.TObject<{
|
|
2485
2486
|
email: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2486
|
-
realm: alepha1.TOptional<
|
|
2487
|
+
realm: alepha1.TOptional<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2487
2488
|
phoneNumber: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2488
2489
|
roles: alepha1.TOptional<alepha1.TArray<alepha1.TString>>;
|
|
2489
2490
|
firstName: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2490
2491
|
lastName: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2491
2492
|
picture: alepha1.TOptional<alepha1.TOptional<alepha1.TString>>;
|
|
2492
|
-
enabled: alepha1.TOptional<
|
|
2493
|
+
enabled: alepha1.TOptional<alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>>;
|
|
2493
2494
|
}>;
|
|
2494
2495
|
response: alepha1.TObject<{
|
|
2495
|
-
id:
|
|
2496
|
-
version:
|
|
2497
|
-
createdAt:
|
|
2498
|
-
updatedAt:
|
|
2499
|
-
realm:
|
|
2496
|
+
id: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_PRIMARY_KEY>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2497
|
+
version: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TInteger, typeof alepha_orm204.PG_VERSION>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2498
|
+
createdAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_CREATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2499
|
+
updatedAt: alepha_orm204.PgAttr<alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_UPDATED_AT>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2500
|
+
realm: alepha_orm204.PgAttr<alepha1.TString, typeof alepha_orm204.PG_DEFAULT>;
|
|
2500
2501
|
username: alepha1.TOptional<alepha1.TString>;
|
|
2501
2502
|
email: alepha1.TOptional<alepha1.TString>;
|
|
2502
2503
|
phoneNumber: alepha1.TOptional<alepha1.TString>;
|
|
2503
|
-
roles:
|
|
2504
|
+
roles: alepha_orm204.PgAttr<alepha1.TArray<alepha1.TString>, typeof alepha_orm204.PG_DEFAULT>;
|
|
2504
2505
|
firstName: alepha1.TOptional<alepha1.TString>;
|
|
2505
2506
|
lastName: alepha1.TOptional<alepha1.TString>;
|
|
2506
2507
|
picture: alepha1.TOptional<alepha1.TString>;
|
|
2507
|
-
enabled:
|
|
2508
|
-
emailVerified:
|
|
2508
|
+
enabled: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2509
|
+
emailVerified: alepha_orm204.PgAttr<alepha1.TBoolean, typeof alepha_orm204.PG_DEFAULT>;
|
|
2509
2510
|
}>;
|
|
2510
2511
|
}>;
|
|
2511
2512
|
/**
|
|
@@ -2717,12 +2718,12 @@ declare class UserRealmController {
|
|
|
2717
2718
|
//#endregion
|
|
2718
2719
|
//#region ../../src/api/users/schemas/identityResourceSchema.d.ts
|
|
2719
2720
|
declare const identityResourceSchema: alepha1.TObject<{
|
|
2720
|
-
userId: PgAttr<alepha1.TString, typeof PG_REF>;
|
|
2721
|
-
provider: alepha1.TString;
|
|
2722
2721
|
id: PgAttr<PgAttr<alepha1.TString, typeof PG_PRIMARY_KEY>, typeof PG_DEFAULT>;
|
|
2723
2722
|
version: PgAttr<PgAttr<alepha1.TInteger, typeof PG_VERSION>, typeof PG_DEFAULT>;
|
|
2724
2723
|
createdAt: PgAttr<PgAttr<alepha1.TString, typeof PG_CREATED_AT>, typeof PG_DEFAULT>;
|
|
2725
2724
|
updatedAt: PgAttr<PgAttr<alepha1.TString, typeof PG_UPDATED_AT>, typeof PG_DEFAULT>;
|
|
2725
|
+
userId: PgAttr<alepha1.TString, typeof PG_REF>;
|
|
2726
|
+
provider: alepha1.TString;
|
|
2726
2727
|
providerUserId: alepha1.TOptional<alepha1.TString>;
|
|
2727
2728
|
providerData: alepha1.TOptional<alepha1.TRecord<string, alepha1.TAny>>;
|
|
2728
2729
|
}>;
|
|
@@ -2835,7 +2836,7 @@ declare class SessionService {
|
|
|
2835
2836
|
protected readonly fsp: FileSystemProvider;
|
|
2836
2837
|
protected readonly dateTimeProvider: DateTimeProvider;
|
|
2837
2838
|
protected readonly cryptoProvider: CryptoProvider;
|
|
2838
|
-
protected readonly log:
|
|
2839
|
+
protected readonly log: alepha_logger1.Logger;
|
|
2839
2840
|
protected readonly userRealmProvider: UserRealmProvider;
|
|
2840
2841
|
protected readonly fileController: alepha_server_links0.HttpVirtualClient<FileController>;
|
|
2841
2842
|
users(userRealmName?: string): Repository$1<alepha1.TObject<{
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/api/users/atoms/realmAuthSettingsAtom.ts","../../../src/api/users/entities/identities.ts","../../../src/api/users/entities/sessions.ts","../../../src/api/users/entities/users.ts","../../../src/api/users/primitives/$userRealm.ts","../../../src/api/users/providers/UserRealmProvider.ts","../../../src/api/users/schemas/identityQuerySchema.ts","../../../src/api/users/services/IdentityService.ts","../../../src/api/users/controllers/IdentityController.ts","../../../src/api/users/schemas/sessionQuerySchema.ts","../../../src/api/users/services/SessionCrudService.ts","../../../src/api/users/controllers/SessionController.ts","../../../src/orm/schemas/insertSchema.ts","../../../src/orm/schemas/updateSchema.ts","../../../src/orm/primitives/$entity.ts","../../../src/orm/constants/PG_SYMBOLS.ts","../../../src/orm/errors/DbError.ts","../../../src/orm/interfaces/FilterOperators.ts","../../../src/orm/interfaces/PgQuery.ts","../../../src/orm/interfaces/PgQueryWhere.ts","../../../src/orm/helpers/pgAttr.ts","../../../src/orm/primitives/$sequence.ts","../../../src/orm/services/ModelBuilder.ts","../../../src/orm/providers/DrizzleKitProvider.ts","../../../src/orm/providers/drivers/DatabaseProvider.ts","../../../src/orm/services/PgJsonQueryManager.ts","../../../src/orm/services/QueryManager.ts","../../../src/orm/services/PgRelationManager.ts","../../../src/orm/services/Repository.ts","../../../src/orm/providers/drivers/NodePostgresProvider.ts","../../../src/orm/providers/drivers/NodeSqliteProvider.ts","../../../src/orm/index.ts","../../../src/api/users/notifications/UserNotifications.ts","../../../src/api/users/schemas/completePasswordResetRequestSchema.ts","../../../src/api/users/schemas/passwordResetIntentResponseSchema.ts","../../../src/api/users/services/CredentialService.ts","../../../src/api/users/schemas/completeRegistrationRequestSchema.ts","../../../src/api/users/schemas/registerRequestSchema.ts","../../../src/api/users/schemas/registrationIntentResponseSchema.ts","../../../src/api/users/services/RegistrationService.ts","../../../src/api/users/schemas/createUserSchema.ts","../../../src/api/users/schemas/updateUserSchema.ts","../../../src/api/users/schemas/userQuerySchema.ts","../../../src/api/users/services/UserService.ts","../../../src/api/users/controllers/UserController.ts","../../../src/api/users/controllers/UserRealmController.ts","../../../src/api/users/schemas/identityResourceSchema.ts","../../../src/api/users/schemas/loginSchema.ts","../../../src/api/users/schemas/registerSchema.ts","../../../src/api/users/schemas/resetPasswordSchema.ts","../../../src/api/users/schemas/sessionResourceSchema.ts","../../../src/api/users/schemas/userRealmConfigSchema.ts","../../../src/api/users/schemas/userResourceSchema.ts","../../../src/api/users/services/SessionService.ts","../../../src/api/users/index.ts"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/api/verifications/entities/verifications.ts","../../../src/api/verifications/schemas/verificationSettingsSchema.ts","../../../src/api/verifications/parameters/VerificationParameters.ts","../../../src/api/verifications/schemas/requestVerificationCodeResponseSchema.ts","../../../src/api/verifications/schemas/validateVerificationCodeResponseSchema.ts","../../../src/api/verifications/schemas/verificationTypeEnumSchema.ts","../../../src/api/verifications/services/VerificationService.ts","../../../src/api/verifications/controllers/VerificationController.ts","../../../src/api/verifications/jobs/VerificationJobs.ts","../../../src/api/verifications/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;cAKa,eAAa,WAAA,CAAA,yBAAA;4CAwCxB,QAAA,CAAA,OAAA;;;;;;;EAxCW,UAAA,oBAwCX,kBAAA;EAAA,QAAA,oBAAA,oBAAA,6BAAA,CAAA;;cAEW,mCAAwB;4CAAuB,QAAA,CAAA,OAAA;;;;;;;;;;cAC/C,gCAA8B,WAAA,CAAA,uBAAA;4CAA6B,QAAA,CAAA,OAAA;;;;;;;;;;KAC5D,kBAAA,GAAqB,cAAc,aAAA,CAAc;;;cC9ChD,qCAA0B;;iBAsErC,QAAA,CAAA;;;;;;EDpEW,IAAA,kBAwCX,CAAA;IAAA,WAAA,mBAAA;;;;;;;KC8BU,oBAAA,GAAuB,cAAc;;;;;;cChEpC,qBAAmB,QAAA,CAAA,cAAA;;iBAmB9B,QAAA,CAAA;;IFzBW,cAwCX,mBAAA;IAAA,oBAAA,mBAAA;;;;;;;;;;;KEbU,mBAAA,GAAsB,cAAc,mBAAA,CAAoB;;;KAI/D,mBAAA,CAAoB,GAAA,GAAM;;;cAMlB,sBAAA;8BACe;;;;;;;;;;MFtCF,oBAAA,EAAA,MAAA;MAAA,WAAA,EAAA,MAAA;MAAA,WAAA,EAAA,MAAA;IA0Cb,CAAA;IAA+C,SAAA,EAAA,MAAA;;sBEF/B,2BACpB,IACJ,qBAAqB;;;;cC5Cb,gDAAqC;SAgBhD,QAAA,CAAA;;;;;KAEU,2BAAA,GAA8B,cACjC;;;cCnBI,iDAAsC;MASjD,QAAA,CAAA;;;KAEU,gCAAA,GAAmC,cACtC;;;cCZI,4BAAqD,QAAA,CAA3B;KAC3B,oBAAA,GAAuB,cAAc;;;cCWpC,mBAAA;0BAAmB,cAAA,CACR;uCACa;ENZxB,mBAwCX,sBAAA,EM3ByC,sBN2BzC;EAAA,mBAAA,sBAAA,EM1ByC,WAAA,CAAA,UN0BzC,UM1ByC,ON0BzC,CAAA;8CM3ByC,QAAA,CAAA,OAAA;;;;;;;;;;qBAIhC,oBACN,QAAQ;4BAmCsB,oBAAiB,oBAAA,kBAAA;8CAAA,QAAA,CAAA,OAAA;;;;;;;;;;8CAAA,QAAA,CAAA,OAAA;;;;;UNrD1B,kBAAA;IAAA,IAAA,kBAAA;IAAA,UAAA,oBAAA,kBAAA;IA0Cb,QAAA,oBAA+C,oBAAA,6BAAA,CAAA;EAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA;;;;;;4BMsCjD,oBACN,QAAQ;oBAoEF,kCAEN,QAAQ;;sBAmFgB;;UAcZ,iBAAA;QACT;;;;;cCvPK,sBAAA;0CAC2B;;;mDAKC;;YALD,QAAA,CAAA;;IPH3B,IAAA,kBAwCX,CAAA;MAAA,MAAA,kBAAA;;;;;;;;;oDOXwC;;YArBD,QAAA,CAAA;;;;;;;;;;;;;;cCN5B,gBAAA;6CAC8B,WAAA,CAAA,oBAAA;8CADd,QAAA,CAAA,OAAA;;;;;IRFhB,MAAA,kBAwCX;IAAA,IAAA,kBAAA;;;;6CQpCyC;uCACN;yBAAA,iBAAA,CAEP;;;;;ARP9B;;;;;;;;cSuBa,uBAAqB,QAAA,CAAA,QAQhC,QAAA,CARgC,MAAA"}
|