alepha 0.10.6 → 0.10.7
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/api/files.d.ts +395 -171
- package/api/jobs.d.ts +208 -189
- package/api/notifications.cjs +8 -0
- package/api/notifications.d.ts +377 -0
- package/api/notifications.js +1 -0
- package/api/users.d.ts +1070 -254
- package/api/verifications.cjs +8 -0
- package/api/verifications.d.ts +1 -0
- package/api/verifications.js +1 -0
- package/batch.d.ts +8 -8
- package/bucket.d.ts +0 -194
- package/cache.d.ts +12 -12
- package/command.d.ts +11 -11
- package/core.d.ts +63 -42
- package/email.d.ts +41 -225
- package/lock.d.ts +8 -8
- package/logger.d.ts +0 -1
- package/package.json +69 -48
- package/postgres.d.ts +402 -378
- package/queue.d.ts +14 -14
- package/react/form.d.ts +17 -17
- package/react/i18n.d.ts +10 -7
- package/react.d.ts +48 -48
- package/retry.d.ts +8 -8
- package/scheduler.d.ts +11 -1
- package/security.d.ts +4 -4
- package/server/cache.d.ts +86 -11
- package/server/cookies.d.ts +10 -10
- package/server/links.d.ts +3 -3
- package/server/swagger.d.ts +2 -1
- package/server.d.ts +69 -56
- package/topic.d.ts +17 -17
- package/ui.cjs +8 -0
- package/ui.d.ts +300 -0
- package/ui.js +1 -0
- package/vite.d.ts +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alepha",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -15,55 +15,58 @@
|
|
|
15
15
|
"main": "./core.js",
|
|
16
16
|
"types": "./core.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@alepha/api-files": "0.10.
|
|
19
|
-
"@alepha/api-jobs": "0.10.
|
|
20
|
-
"@alepha/api-
|
|
21
|
-
"@alepha/
|
|
22
|
-
"@alepha/
|
|
23
|
-
"@alepha/
|
|
24
|
-
"@alepha/
|
|
25
|
-
"@alepha/
|
|
26
|
-
"@alepha/
|
|
27
|
-
"@alepha/
|
|
28
|
-
"@alepha/
|
|
29
|
-
"@alepha/
|
|
30
|
-
"@alepha/
|
|
31
|
-
"@alepha/
|
|
32
|
-
"@alepha/
|
|
33
|
-
"@alepha/
|
|
34
|
-
"@alepha/
|
|
35
|
-
"@alepha/
|
|
36
|
-
"@alepha/
|
|
37
|
-
"@alepha/
|
|
38
|
-
"@alepha/
|
|
39
|
-
"@alepha/react
|
|
40
|
-
"@alepha/react-
|
|
41
|
-
"@alepha/react-
|
|
42
|
-
"@alepha/
|
|
43
|
-
"@alepha/
|
|
44
|
-
"@alepha/
|
|
45
|
-
"@alepha/
|
|
46
|
-
"@alepha/
|
|
47
|
-
"@alepha/
|
|
48
|
-
"@alepha/
|
|
49
|
-
"@alepha/server
|
|
50
|
-
"@alepha/server-
|
|
51
|
-
"@alepha/server-
|
|
52
|
-
"@alepha/server-
|
|
53
|
-
"@alepha/server-
|
|
54
|
-
"@alepha/server-
|
|
55
|
-
"@alepha/server-
|
|
56
|
-
"@alepha/server-
|
|
57
|
-
"@alepha/server-
|
|
58
|
-
"@alepha/server-
|
|
59
|
-
"@alepha/server-
|
|
60
|
-
"@alepha/server-
|
|
61
|
-
"@alepha/
|
|
62
|
-
"@alepha/
|
|
63
|
-
"@alepha/
|
|
18
|
+
"@alepha/api-files": "0.10.7",
|
|
19
|
+
"@alepha/api-jobs": "0.10.7",
|
|
20
|
+
"@alepha/api-notifications": "0.10.7",
|
|
21
|
+
"@alepha/api-users": "0.10.7",
|
|
22
|
+
"@alepha/api-verifications": "0.10.7",
|
|
23
|
+
"@alepha/batch": "0.10.7",
|
|
24
|
+
"@alepha/bucket": "0.10.7",
|
|
25
|
+
"@alepha/cache": "0.10.7",
|
|
26
|
+
"@alepha/cache-redis": "0.10.7",
|
|
27
|
+
"@alepha/command": "0.10.7",
|
|
28
|
+
"@alepha/core": "0.10.7",
|
|
29
|
+
"@alepha/datetime": "0.10.7",
|
|
30
|
+
"@alepha/devtools": "0.10.7",
|
|
31
|
+
"@alepha/email": "0.10.7",
|
|
32
|
+
"@alepha/file": "0.10.7",
|
|
33
|
+
"@alepha/lock": "0.10.7",
|
|
34
|
+
"@alepha/lock-redis": "0.10.7",
|
|
35
|
+
"@alepha/logger": "0.10.7",
|
|
36
|
+
"@alepha/postgres": "0.10.7",
|
|
37
|
+
"@alepha/queue": "0.10.7",
|
|
38
|
+
"@alepha/queue-redis": "0.10.7",
|
|
39
|
+
"@alepha/react": "0.10.7",
|
|
40
|
+
"@alepha/react-auth": "0.10.7",
|
|
41
|
+
"@alepha/react-form": "0.10.7",
|
|
42
|
+
"@alepha/react-head": "0.10.7",
|
|
43
|
+
"@alepha/react-i18n": "0.10.7",
|
|
44
|
+
"@alepha/redis": "0.10.7",
|
|
45
|
+
"@alepha/retry": "0.10.7",
|
|
46
|
+
"@alepha/router": "0.10.7",
|
|
47
|
+
"@alepha/scheduler": "0.10.7",
|
|
48
|
+
"@alepha/security": "0.10.7",
|
|
49
|
+
"@alepha/server": "0.10.7",
|
|
50
|
+
"@alepha/server-cache": "0.10.7",
|
|
51
|
+
"@alepha/server-compress": "0.10.7",
|
|
52
|
+
"@alepha/server-cookies": "0.10.7",
|
|
53
|
+
"@alepha/server-cors": "0.10.7",
|
|
54
|
+
"@alepha/server-health": "0.10.7",
|
|
55
|
+
"@alepha/server-helmet": "0.10.7",
|
|
56
|
+
"@alepha/server-links": "0.10.7",
|
|
57
|
+
"@alepha/server-metrics": "0.10.7",
|
|
58
|
+
"@alepha/server-multipart": "0.10.7",
|
|
59
|
+
"@alepha/server-proxy": "0.10.7",
|
|
60
|
+
"@alepha/server-security": "0.10.7",
|
|
61
|
+
"@alepha/server-static": "0.10.7",
|
|
62
|
+
"@alepha/server-swagger": "0.10.7",
|
|
63
|
+
"@alepha/topic": "0.10.7",
|
|
64
|
+
"@alepha/topic-redis": "0.10.7",
|
|
65
|
+
"@alepha/ui": "0.10.7",
|
|
66
|
+
"@alepha/vite": "0.10.7"
|
|
64
67
|
},
|
|
65
68
|
"devDependencies": {
|
|
66
|
-
"tsdown": "^0.15.
|
|
69
|
+
"tsdown": "^0.15.9"
|
|
67
70
|
},
|
|
68
71
|
"scripts": {
|
|
69
72
|
"build": "node build.ts"
|
|
@@ -101,11 +104,21 @@
|
|
|
101
104
|
"require": "./api/jobs.cjs",
|
|
102
105
|
"types": "./api/jobs.d.ts"
|
|
103
106
|
},
|
|
107
|
+
"./api/notifications": {
|
|
108
|
+
"import": "./api/notifications.js",
|
|
109
|
+
"require": "./api/notifications.cjs",
|
|
110
|
+
"types": "./api/notifications.d.ts"
|
|
111
|
+
},
|
|
104
112
|
"./api/users": {
|
|
105
113
|
"import": "./api/users.js",
|
|
106
114
|
"require": "./api/users.cjs",
|
|
107
115
|
"types": "./api/users.d.ts"
|
|
108
116
|
},
|
|
117
|
+
"./api/verifications": {
|
|
118
|
+
"import": "./api/verifications.js",
|
|
119
|
+
"require": "./api/verifications.cjs",
|
|
120
|
+
"types": "./api/verifications.d.ts"
|
|
121
|
+
},
|
|
109
122
|
"./batch": {
|
|
110
123
|
"import": "./batch.js",
|
|
111
124
|
"require": "./batch.cjs",
|
|
@@ -316,6 +329,11 @@
|
|
|
316
329
|
"require": "./topic/redis.cjs",
|
|
317
330
|
"types": "./topic/redis.d.ts"
|
|
318
331
|
},
|
|
332
|
+
"./ui": {
|
|
333
|
+
"import": "./ui.js",
|
|
334
|
+
"require": "./ui.cjs",
|
|
335
|
+
"types": "./ui.d.ts"
|
|
336
|
+
},
|
|
319
337
|
"./vite": {
|
|
320
338
|
"import": "./vite.js",
|
|
321
339
|
"require": "./vite.cjs",
|
|
@@ -326,7 +344,9 @@
|
|
|
326
344
|
"alepha",
|
|
327
345
|
"api-files",
|
|
328
346
|
"api-jobs",
|
|
347
|
+
"api-notifications",
|
|
329
348
|
"api-users",
|
|
349
|
+
"api-verifications",
|
|
330
350
|
"batch",
|
|
331
351
|
"bucket",
|
|
332
352
|
"cache",
|
|
@@ -369,6 +389,7 @@
|
|
|
369
389
|
"server-swagger",
|
|
370
390
|
"topic",
|
|
371
391
|
"topic-redis",
|
|
392
|
+
"ui",
|
|
372
393
|
"vite"
|
|
373
394
|
]
|
|
374
395
|
}
|