alepha 0.15.3 → 0.15.4

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.
Files changed (90) hide show
  1. package/dist/api/audits/index.d.ts +332 -332
  2. package/dist/api/audits/index.d.ts.map +1 -1
  3. package/dist/api/audits/index.js +8 -0
  4. package/dist/api/audits/index.js.map +1 -1
  5. package/dist/api/files/index.js +1 -0
  6. package/dist/api/files/index.js.map +1 -1
  7. package/dist/api/jobs/index.d.ts +151 -151
  8. package/dist/api/jobs/index.d.ts.map +1 -1
  9. package/dist/api/jobs/index.js +3 -0
  10. package/dist/api/jobs/index.js.map +1 -1
  11. package/dist/api/keys/index.d.ts +195 -195
  12. package/dist/api/keys/index.d.ts.map +1 -1
  13. package/dist/api/notifications/index.browser.js +1 -0
  14. package/dist/api/notifications/index.browser.js.map +1 -1
  15. package/dist/api/notifications/index.js +1 -0
  16. package/dist/api/notifications/index.js.map +1 -1
  17. package/dist/api/parameters/index.d.ts +260 -260
  18. package/dist/api/parameters/index.d.ts.map +1 -1
  19. package/dist/api/parameters/index.js +10 -0
  20. package/dist/api/parameters/index.js.map +1 -1
  21. package/dist/api/users/index.d.ts +10 -10
  22. package/dist/api/users/index.d.ts.map +1 -1
  23. package/dist/api/users/index.js +11 -0
  24. package/dist/api/users/index.js.map +1 -1
  25. package/dist/api/verifications/index.d.ts +128 -128
  26. package/dist/api/verifications/index.d.ts.map +1 -1
  27. package/dist/batch/index.d.ts +4 -4
  28. package/dist/cli/index.d.ts +5 -0
  29. package/dist/cli/index.d.ts.map +1 -1
  30. package/dist/cli/index.js +19 -2
  31. package/dist/cli/index.js.map +1 -1
  32. package/dist/email/index.d.ts +13 -13
  33. package/dist/email/index.d.ts.map +1 -1
  34. package/dist/email/index.js +10554 -2
  35. package/dist/email/index.js.map +1 -1
  36. package/dist/lock/core/index.d.ts +6 -1
  37. package/dist/lock/core/index.d.ts.map +1 -1
  38. package/dist/lock/core/index.js +9 -1
  39. package/dist/lock/core/index.js.map +1 -1
  40. package/dist/react/auth/index.browser.js +2 -1
  41. package/dist/react/auth/index.browser.js.map +1 -1
  42. package/dist/react/auth/index.js +2 -1
  43. package/dist/react/auth/index.js.map +1 -1
  44. package/dist/react/core/index.d.ts +3 -3
  45. package/dist/react/router/index.d.ts +10 -0
  46. package/dist/react/router/index.d.ts.map +1 -1
  47. package/dist/react/router/index.js +16 -6
  48. package/dist/react/router/index.js.map +1 -1
  49. package/dist/redis/index.d.ts +19 -19
  50. package/dist/scheduler/index.d.ts +13 -1
  51. package/dist/scheduler/index.d.ts.map +1 -1
  52. package/dist/scheduler/index.js +42 -4
  53. package/dist/scheduler/index.js.map +1 -1
  54. package/dist/server/compress/index.d.ts.map +1 -1
  55. package/dist/server/compress/index.js +1 -0
  56. package/dist/server/compress/index.js.map +1 -1
  57. package/dist/server/core/index.d.ts +9 -9
  58. package/dist/server/links/index.js +1 -1
  59. package/dist/server/links/index.js.map +1 -1
  60. package/dist/vite/index.d.ts +2 -1
  61. package/dist/vite/index.d.ts.map +1 -1
  62. package/dist/vite/index.js +28 -2
  63. package/dist/vite/index.js.map +1 -1
  64. package/dist/websocket/index.d.ts +34 -34
  65. package/dist/websocket/index.d.ts.map +1 -1
  66. package/package.json +6 -3
  67. package/src/api/audits/controllers/AdminAuditController.ts +8 -0
  68. package/src/api/files/controllers/AdminFileStatsController.ts +1 -0
  69. package/src/api/jobs/controllers/AdminJobController.ts +3 -0
  70. package/src/api/notifications/controllers/AdminNotificationController.ts +1 -0
  71. package/src/api/parameters/controllers/AdminConfigController.ts +10 -0
  72. package/src/api/users/controllers/AdminIdentityController.ts +3 -0
  73. package/src/api/users/controllers/AdminSessionController.ts +3 -0
  74. package/src/api/users/controllers/AdminUserController.ts +5 -0
  75. package/src/cli/commands/build.ts +1 -0
  76. package/src/cli/providers/ViteDevServerProvider.ts +31 -0
  77. package/src/email/index.workerd.ts +36 -0
  78. package/src/email/providers/WorkermailerEmailProvider.ts +221 -0
  79. package/src/lock/core/primitives/$lock.ts +13 -1
  80. package/src/react/auth/services/ReactAuth.ts +3 -1
  81. package/src/react/router/atoms/ssrManifestAtom.ts +7 -0
  82. package/src/react/router/providers/ReactServerProvider.ts +14 -4
  83. package/src/react/router/providers/SSRManifestProvider.ts +7 -0
  84. package/src/scheduler/index.workerd.ts +43 -0
  85. package/src/scheduler/providers/CronProvider.ts +53 -6
  86. package/src/scheduler/providers/WorkerdCronProvider.ts +102 -0
  87. package/src/server/compress/providers/ServerCompressProvider.ts +6 -0
  88. package/src/server/links/providers/ServerLinksProvider.spec.ts +332 -0
  89. package/src/server/links/providers/ServerLinksProvider.ts +1 -1
  90. package/src/vite/tasks/generateCloudflare.ts +38 -2
@@ -1,29 +1,29 @@
1
- import * as alepha99 from "alepha";
1
+ import * as alepha166 from "alepha";
2
2
  import { Alepha, Static } from "alepha";
3
3
  import * as alepha_server0 from "alepha/server";
4
- import * as alepha_orm0 from "alepha/orm";
4
+ import * as alepha_orm50 from "alepha/orm";
5
5
  import * as alepha_cache0 from "alepha/cache";
6
6
  import { DateTimeProvider } from "alepha/datetime";
7
7
  import * as alepha_logger0 from "alepha/logger";
8
8
  import { IssuerResolver, UserInfo } from "alepha/security";
9
9
 
10
10
  //#region ../../src/api/keys/entities/apiKeyEntity.d.ts
11
- declare const apiKeyEntity: alepha_orm0.EntityPrimitive<alepha99.TObject<{
12
- id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
13
- createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
14
- updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
15
- userId: alepha99.TString;
16
- name: alepha99.TString;
17
- description: alepha99.TOptional<alepha99.TString>;
18
- tokenHash: alepha99.TString;
19
- tokenPrefix: alepha99.TString;
20
- tokenSuffix: alepha99.TString;
21
- roles: alepha_orm0.PgAttr<alepha99.TArray<alepha99.TString>, typeof alepha_orm0.PG_DEFAULT>;
22
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
23
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
24
- usageCount: alepha_orm0.PgAttr<alepha99.TInteger, typeof alepha_orm0.PG_DEFAULT>;
25
- expiresAt: alepha99.TOptional<alepha99.TString>;
26
- revokedAt: alepha99.TOptional<alepha99.TString>;
11
+ declare const apiKeyEntity: alepha_orm50.EntityPrimitive<alepha166.TObject<{
12
+ id: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_PRIMARY_KEY>, typeof alepha_orm50.PG_DEFAULT>;
13
+ createdAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_CREATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
14
+ updatedAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_UPDATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
15
+ userId: alepha166.TString;
16
+ name: alepha166.TString;
17
+ description: alepha166.TOptional<alepha166.TString>;
18
+ tokenHash: alepha166.TString;
19
+ tokenPrefix: alepha166.TString;
20
+ tokenSuffix: alepha166.TString;
21
+ roles: alepha_orm50.PgAttr<alepha166.TArray<alepha166.TString>, typeof alepha_orm50.PG_DEFAULT>;
22
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
23
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
24
+ usageCount: alepha_orm50.PgAttr<alepha166.TInteger, typeof alepha_orm50.PG_DEFAULT>;
25
+ expiresAt: alepha166.TOptional<alepha166.TString>;
26
+ revokedAt: alepha166.TOptional<alepha166.TString>;
27
27
  }>>;
28
28
  type ApiKeyEntity = Static<typeof apiKeyEntity.schema>;
29
29
  //#endregion
@@ -32,22 +32,22 @@ declare class ApiKeyService {
32
32
  protected readonly alepha: Alepha;
33
33
  protected readonly dateTimeProvider: DateTimeProvider;
34
34
  protected readonly log: alepha_logger0.Logger;
35
- protected readonly repo: alepha_orm0.Repository<alepha99.TObject<{
36
- id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
37
- createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
38
- updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
39
- userId: alepha99.TString;
40
- name: alepha99.TString;
41
- description: alepha99.TOptional<alepha99.TString>;
42
- tokenHash: alepha99.TString;
43
- tokenPrefix: alepha99.TString;
44
- tokenSuffix: alepha99.TString;
45
- roles: alepha_orm0.PgAttr<alepha99.TArray<alepha99.TString>, typeof alepha_orm0.PG_DEFAULT>;
46
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
47
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
48
- usageCount: alepha_orm0.PgAttr<alepha99.TInteger, typeof alepha_orm0.PG_DEFAULT>;
49
- expiresAt: alepha99.TOptional<alepha99.TString>;
50
- revokedAt: alepha99.TOptional<alepha99.TString>;
35
+ protected readonly repo: alepha_orm50.Repository<alepha166.TObject<{
36
+ id: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_PRIMARY_KEY>, typeof alepha_orm50.PG_DEFAULT>;
37
+ createdAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_CREATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
38
+ updatedAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_UPDATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
39
+ userId: alepha166.TString;
40
+ name: alepha166.TString;
41
+ description: alepha166.TOptional<alepha166.TString>;
42
+ tokenHash: alepha166.TString;
43
+ tokenPrefix: alepha166.TString;
44
+ tokenSuffix: alepha166.TString;
45
+ roles: alepha_orm50.PgAttr<alepha166.TArray<alepha166.TString>, typeof alepha_orm50.PG_DEFAULT>;
46
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
47
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
48
+ usageCount: alepha_orm50.PgAttr<alepha166.TInteger, typeof alepha_orm50.PG_DEFAULT>;
49
+ expiresAt: alepha166.TOptional<alepha166.TString>;
50
+ revokedAt: alepha166.TOptional<alepha166.TString>;
51
51
  }>>;
52
52
  /**
53
53
  * Cache validated API keys for 15 minutes.
@@ -58,16 +58,16 @@ declare class ApiKeyService {
58
58
  lastUsedIp?: string | undefined;
59
59
  expiresAt?: string | undefined;
60
60
  revokedAt?: string | undefined;
61
- userId: string;
62
61
  id: string;
62
+ createdAt: string;
63
+ updatedAt: string;
64
+ userId: string;
63
65
  name: string;
66
+ tokenHash: string;
64
67
  tokenPrefix: string;
65
68
  tokenSuffix: string;
66
69
  roles: string[];
67
- createdAt: string;
68
70
  usageCount: number;
69
- updatedAt: string;
70
- tokenHash: string;
71
71
  } | null, [string]>;
72
72
  /**
73
73
  * Create an issuer resolver for API key authentication.
@@ -108,38 +108,38 @@ declare class ApiKeyService {
108
108
  page?: number;
109
109
  size?: number;
110
110
  sort?: string;
111
- }): Promise<alepha99.Page<alepha_orm0.PgStatic<alepha99.TObject<{
112
- id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
113
- createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
114
- updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
115
- userId: alepha99.TString;
116
- name: alepha99.TString;
117
- description: alepha99.TOptional<alepha99.TString>;
118
- tokenHash: alepha99.TString;
119
- tokenPrefix: alepha99.TString;
120
- tokenSuffix: alepha99.TString;
121
- roles: alepha_orm0.PgAttr<alepha99.TArray<alepha99.TString>, typeof alepha_orm0.PG_DEFAULT>;
122
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
123
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
124
- usageCount: alepha_orm0.PgAttr<alepha99.TInteger, typeof alepha_orm0.PG_DEFAULT>;
125
- expiresAt: alepha99.TOptional<alepha99.TString>;
126
- revokedAt: alepha99.TOptional<alepha99.TString>;
127
- }>, alepha_orm0.PgRelationMap<alepha99.TObject<{
128
- id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
129
- createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
130
- updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha99.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
131
- userId: alepha99.TString;
132
- name: alepha99.TString;
133
- description: alepha99.TOptional<alepha99.TString>;
134
- tokenHash: alepha99.TString;
135
- tokenPrefix: alepha99.TString;
136
- tokenSuffix: alepha99.TString;
137
- roles: alepha_orm0.PgAttr<alepha99.TArray<alepha99.TString>, typeof alepha_orm0.PG_DEFAULT>;
138
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
139
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
140
- usageCount: alepha_orm0.PgAttr<alepha99.TInteger, typeof alepha_orm0.PG_DEFAULT>;
141
- expiresAt: alepha99.TOptional<alepha99.TString>;
142
- revokedAt: alepha99.TOptional<alepha99.TString>;
111
+ }): Promise<alepha166.Page<alepha_orm50.PgStatic<alepha166.TObject<{
112
+ id: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_PRIMARY_KEY>, typeof alepha_orm50.PG_DEFAULT>;
113
+ createdAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_CREATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
114
+ updatedAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_UPDATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
115
+ userId: alepha166.TString;
116
+ name: alepha166.TString;
117
+ description: alepha166.TOptional<alepha166.TString>;
118
+ tokenHash: alepha166.TString;
119
+ tokenPrefix: alepha166.TString;
120
+ tokenSuffix: alepha166.TString;
121
+ roles: alepha_orm50.PgAttr<alepha166.TArray<alepha166.TString>, typeof alepha_orm50.PG_DEFAULT>;
122
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
123
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
124
+ usageCount: alepha_orm50.PgAttr<alepha166.TInteger, typeof alepha_orm50.PG_DEFAULT>;
125
+ expiresAt: alepha166.TOptional<alepha166.TString>;
126
+ revokedAt: alepha166.TOptional<alepha166.TString>;
127
+ }>, alepha_orm50.PgRelationMap<alepha166.TObject<{
128
+ id: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_PRIMARY_KEY>, typeof alepha_orm50.PG_DEFAULT>;
129
+ createdAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_CREATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
130
+ updatedAt: alepha_orm50.PgAttr<alepha_orm50.PgAttr<alepha166.TString, typeof alepha_orm50.PG_UPDATED_AT>, typeof alepha_orm50.PG_DEFAULT>;
131
+ userId: alepha166.TString;
132
+ name: alepha166.TString;
133
+ description: alepha166.TOptional<alepha166.TString>;
134
+ tokenHash: alepha166.TString;
135
+ tokenPrefix: alepha166.TString;
136
+ tokenSuffix: alepha166.TString;
137
+ roles: alepha_orm50.PgAttr<alepha166.TArray<alepha166.TString>, typeof alepha_orm50.PG_DEFAULT>;
138
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
139
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
140
+ usageCount: alepha_orm50.PgAttr<alepha166.TInteger, typeof alepha_orm50.PG_DEFAULT>;
141
+ expiresAt: alepha166.TOptional<alepha166.TString>;
142
+ revokedAt: alepha166.TOptional<alepha166.TString>;
143
143
  }>>>>>;
144
144
  /**
145
145
  * Get an API key by ID (admin only).
@@ -180,63 +180,63 @@ declare class AdminApiKeyController {
180
180
  * Find all API keys with optional filtering.
181
181
  */
182
182
  readonly findApiKeys: alepha_server0.ActionPrimitiveFn<{
183
- query: alepha99.TObject<{
184
- page: alepha99.TOptional<alepha99.TInteger>;
185
- size: alepha99.TOptional<alepha99.TInteger>;
186
- sort: alepha99.TOptional<alepha99.TString>;
187
- userId: alepha99.TOptional<alepha99.TString>;
188
- includeRevoked: alepha99.TOptional<alepha99.TBoolean>;
183
+ query: alepha166.TObject<{
184
+ page: alepha166.TOptional<alepha166.TInteger>;
185
+ size: alepha166.TOptional<alepha166.TInteger>;
186
+ sort: alepha166.TOptional<alepha166.TString>;
187
+ userId: alepha166.TOptional<alepha166.TString>;
188
+ includeRevoked: alepha166.TOptional<alepha166.TBoolean>;
189
189
  }>;
190
- response: alepha99.TPage<alepha99.TObject<{
191
- id: alepha99.TString;
192
- userId: alepha99.TString;
193
- name: alepha99.TString;
194
- description: alepha99.TOptional<alepha99.TString>;
195
- tokenPrefix: alepha99.TString;
196
- tokenSuffix: alepha99.TString;
197
- roles: alepha99.TArray<alepha99.TString>;
198
- createdAt: alepha99.TString;
199
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
200
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
201
- expiresAt: alepha99.TOptional<alepha99.TString>;
202
- revokedAt: alepha99.TOptional<alepha99.TString>;
203
- usageCount: alepha99.TInteger;
190
+ response: alepha166.TPage<alepha166.TObject<{
191
+ id: alepha166.TString;
192
+ userId: alepha166.TString;
193
+ name: alepha166.TString;
194
+ description: alepha166.TOptional<alepha166.TString>;
195
+ tokenPrefix: alepha166.TString;
196
+ tokenSuffix: alepha166.TString;
197
+ roles: alepha166.TArray<alepha166.TString>;
198
+ createdAt: alepha166.TString;
199
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
200
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
201
+ expiresAt: alepha166.TOptional<alepha166.TString>;
202
+ revokedAt: alepha166.TOptional<alepha166.TString>;
203
+ usageCount: alepha166.TInteger;
204
204
  }>>;
205
205
  }>;
206
206
  /**
207
207
  * Get an API key by ID.
208
208
  */
209
209
  readonly getApiKey: alepha_server0.ActionPrimitiveFn<{
210
- params: alepha99.TObject<{
211
- id: alepha99.TString;
210
+ params: alepha166.TObject<{
211
+ id: alepha166.TString;
212
212
  }>;
213
- response: alepha99.TObject<{
214
- id: alepha99.TString;
215
- userId: alepha99.TString;
216
- name: alepha99.TString;
217
- description: alepha99.TOptional<alepha99.TString>;
218
- tokenPrefix: alepha99.TString;
219
- tokenSuffix: alepha99.TString;
220
- roles: alepha99.TArray<alepha99.TString>;
221
- createdAt: alepha99.TString;
222
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
223
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
224
- expiresAt: alepha99.TOptional<alepha99.TString>;
225
- revokedAt: alepha99.TOptional<alepha99.TString>;
226
- usageCount: alepha99.TInteger;
213
+ response: alepha166.TObject<{
214
+ id: alepha166.TString;
215
+ userId: alepha166.TString;
216
+ name: alepha166.TString;
217
+ description: alepha166.TOptional<alepha166.TString>;
218
+ tokenPrefix: alepha166.TString;
219
+ tokenSuffix: alepha166.TString;
220
+ roles: alepha166.TArray<alepha166.TString>;
221
+ createdAt: alepha166.TString;
222
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
223
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
224
+ expiresAt: alepha166.TOptional<alepha166.TString>;
225
+ revokedAt: alepha166.TOptional<alepha166.TString>;
226
+ usageCount: alepha166.TInteger;
227
227
  }>;
228
228
  }>;
229
229
  /**
230
230
  * Revoke any API key.
231
231
  */
232
232
  readonly revokeApiKey: alepha_server0.ActionPrimitiveFn<{
233
- params: alepha99.TObject<{
234
- id: alepha99.TString;
233
+ params: alepha166.TObject<{
234
+ id: alepha166.TString;
235
235
  }>;
236
- response: alepha99.TObject<{
237
- ok: alepha99.TBoolean;
238
- id: alepha99.TOptional<alepha99.TUnion<[alepha99.TString, alepha99.TInteger]>>;
239
- count: alepha99.TOptional<alepha99.TNumber>;
236
+ response: alepha166.TObject<{
237
+ ok: alepha166.TBoolean;
238
+ id: alepha166.TOptional<alepha166.TUnion<[alepha166.TString, alepha166.TInteger]>>;
239
+ count: alepha166.TOptional<alepha166.TNumber>;
240
240
  }>;
241
241
  }>;
242
242
  }
@@ -255,19 +255,19 @@ declare class ApiKeyController {
255
255
  * The token is only returned once upon creation.
256
256
  */
257
257
  readonly createApiKey: alepha_server0.ActionPrimitiveFn<{
258
- body: alepha99.TObject<{
259
- name: alepha99.TString;
260
- description: alepha99.TOptional<alepha99.TString>;
261
- expiresAt: alepha99.TOptional<alepha99.TString>;
258
+ body: alepha166.TObject<{
259
+ name: alepha166.TString;
260
+ description: alepha166.TOptional<alepha166.TString>;
261
+ expiresAt: alepha166.TOptional<alepha166.TString>;
262
262
  }>;
263
- response: alepha99.TObject<{
264
- id: alepha99.TString;
265
- name: alepha99.TString;
266
- token: alepha99.TString;
267
- tokenSuffix: alepha99.TString;
268
- roles: alepha99.TArray<alepha99.TString>;
269
- createdAt: alepha99.TString;
270
- expiresAt: alepha99.TOptional<alepha99.TString>;
263
+ response: alepha166.TObject<{
264
+ id: alepha166.TString;
265
+ name: alepha166.TString;
266
+ token: alepha166.TString;
267
+ tokenSuffix: alepha166.TString;
268
+ roles: alepha166.TArray<alepha166.TString>;
269
+ createdAt: alepha166.TString;
270
+ expiresAt: alepha166.TOptional<alepha166.TString>;
271
271
  }>;
272
272
  }>;
273
273
  /**
@@ -275,107 +275,107 @@ declare class ApiKeyController {
275
275
  * Does not return the actual tokens.
276
276
  */
277
277
  readonly listApiKeys: alepha_server0.ActionPrimitiveFn<{
278
- response: alepha99.TArray<alepha99.TObject<{
279
- id: alepha99.TString;
280
- name: alepha99.TString;
281
- tokenPrefix: alepha99.TString;
282
- tokenSuffix: alepha99.TString;
283
- roles: alepha99.TArray<alepha99.TString>;
284
- createdAt: alepha99.TString;
285
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
286
- expiresAt: alepha99.TOptional<alepha99.TString>;
287
- usageCount: alepha99.TInteger;
278
+ response: alepha166.TArray<alepha166.TObject<{
279
+ id: alepha166.TString;
280
+ name: alepha166.TString;
281
+ tokenPrefix: alepha166.TString;
282
+ tokenSuffix: alepha166.TString;
283
+ roles: alepha166.TArray<alepha166.TString>;
284
+ createdAt: alepha166.TString;
285
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
286
+ expiresAt: alepha166.TOptional<alepha166.TString>;
287
+ usageCount: alepha166.TInteger;
288
288
  }>>;
289
289
  }>;
290
290
  /**
291
291
  * Revoke an API key. Only the owner can revoke their own keys.
292
292
  */
293
293
  readonly revokeApiKey: alepha_server0.ActionPrimitiveFn<{
294
- params: alepha99.TObject<{
295
- id: alepha99.TString;
294
+ params: alepha166.TObject<{
295
+ id: alepha166.TString;
296
296
  }>;
297
- response: alepha99.TObject<{
298
- ok: alepha99.TBoolean;
297
+ response: alepha166.TObject<{
298
+ ok: alepha166.TBoolean;
299
299
  }>;
300
300
  }>;
301
301
  }
302
302
  //#endregion
303
303
  //#region ../../src/api/keys/schemas/adminApiKeyQuerySchema.d.ts
304
- declare const adminApiKeyQuerySchema: alepha99.TObject<{
305
- page: alepha99.TOptional<alepha99.TInteger>;
306
- size: alepha99.TOptional<alepha99.TInteger>;
307
- sort: alepha99.TOptional<alepha99.TString>;
308
- userId: alepha99.TOptional<alepha99.TString>;
309
- includeRevoked: alepha99.TOptional<alepha99.TBoolean>;
304
+ declare const adminApiKeyQuerySchema: alepha166.TObject<{
305
+ page: alepha166.TOptional<alepha166.TInteger>;
306
+ size: alepha166.TOptional<alepha166.TInteger>;
307
+ sort: alepha166.TOptional<alepha166.TString>;
308
+ userId: alepha166.TOptional<alepha166.TString>;
309
+ includeRevoked: alepha166.TOptional<alepha166.TBoolean>;
310
310
  }>;
311
311
  //#endregion
312
312
  //#region ../../src/api/keys/schemas/adminApiKeyResourceSchema.d.ts
313
- declare const adminApiKeyResourceSchema: alepha99.TObject<{
314
- id: alepha99.TString;
315
- userId: alepha99.TString;
316
- name: alepha99.TString;
317
- description: alepha99.TOptional<alepha99.TString>;
318
- tokenPrefix: alepha99.TString;
319
- tokenSuffix: alepha99.TString;
320
- roles: alepha99.TArray<alepha99.TString>;
321
- createdAt: alepha99.TString;
322
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
323
- lastUsedIp: alepha99.TOptional<alepha99.TString>;
324
- expiresAt: alepha99.TOptional<alepha99.TString>;
325
- revokedAt: alepha99.TOptional<alepha99.TString>;
326
- usageCount: alepha99.TInteger;
313
+ declare const adminApiKeyResourceSchema: alepha166.TObject<{
314
+ id: alepha166.TString;
315
+ userId: alepha166.TString;
316
+ name: alepha166.TString;
317
+ description: alepha166.TOptional<alepha166.TString>;
318
+ tokenPrefix: alepha166.TString;
319
+ tokenSuffix: alepha166.TString;
320
+ roles: alepha166.TArray<alepha166.TString>;
321
+ createdAt: alepha166.TString;
322
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
323
+ lastUsedIp: alepha166.TOptional<alepha166.TString>;
324
+ expiresAt: alepha166.TOptional<alepha166.TString>;
325
+ revokedAt: alepha166.TOptional<alepha166.TString>;
326
+ usageCount: alepha166.TInteger;
327
327
  }>;
328
328
  //#endregion
329
329
  //#region ../../src/api/keys/schemas/createApiKeyBodySchema.d.ts
330
- declare const createApiKeyBodySchema: alepha99.TObject<{
331
- name: alepha99.TString;
332
- description: alepha99.TOptional<alepha99.TString>;
333
- expiresAt: alepha99.TOptional<alepha99.TString>;
330
+ declare const createApiKeyBodySchema: alepha166.TObject<{
331
+ name: alepha166.TString;
332
+ description: alepha166.TOptional<alepha166.TString>;
333
+ expiresAt: alepha166.TOptional<alepha166.TString>;
334
334
  }>;
335
335
  //#endregion
336
336
  //#region ../../src/api/keys/schemas/createApiKeyResponseSchema.d.ts
337
- declare const createApiKeyResponseSchema: alepha99.TObject<{
338
- id: alepha99.TString;
339
- name: alepha99.TString;
340
- token: alepha99.TString;
341
- tokenSuffix: alepha99.TString;
342
- roles: alepha99.TArray<alepha99.TString>;
343
- createdAt: alepha99.TString;
344
- expiresAt: alepha99.TOptional<alepha99.TString>;
337
+ declare const createApiKeyResponseSchema: alepha166.TObject<{
338
+ id: alepha166.TString;
339
+ name: alepha166.TString;
340
+ token: alepha166.TString;
341
+ tokenSuffix: alepha166.TString;
342
+ roles: alepha166.TArray<alepha166.TString>;
343
+ createdAt: alepha166.TString;
344
+ expiresAt: alepha166.TOptional<alepha166.TString>;
345
345
  }>;
346
346
  //#endregion
347
347
  //#region ../../src/api/keys/schemas/listApiKeyResponseSchema.d.ts
348
- declare const listApiKeyItemSchema: alepha99.TObject<{
349
- id: alepha99.TString;
350
- name: alepha99.TString;
351
- tokenPrefix: alepha99.TString;
352
- tokenSuffix: alepha99.TString;
353
- roles: alepha99.TArray<alepha99.TString>;
354
- createdAt: alepha99.TString;
355
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
356
- expiresAt: alepha99.TOptional<alepha99.TString>;
357
- usageCount: alepha99.TInteger;
348
+ declare const listApiKeyItemSchema: alepha166.TObject<{
349
+ id: alepha166.TString;
350
+ name: alepha166.TString;
351
+ tokenPrefix: alepha166.TString;
352
+ tokenSuffix: alepha166.TString;
353
+ roles: alepha166.TArray<alepha166.TString>;
354
+ createdAt: alepha166.TString;
355
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
356
+ expiresAt: alepha166.TOptional<alepha166.TString>;
357
+ usageCount: alepha166.TInteger;
358
358
  }>;
359
- declare const listApiKeyResponseSchema: alepha99.TArray<alepha99.TObject<{
360
- id: alepha99.TString;
361
- name: alepha99.TString;
362
- tokenPrefix: alepha99.TString;
363
- tokenSuffix: alepha99.TString;
364
- roles: alepha99.TArray<alepha99.TString>;
365
- createdAt: alepha99.TString;
366
- lastUsedAt: alepha99.TOptional<alepha99.TString>;
367
- expiresAt: alepha99.TOptional<alepha99.TString>;
368
- usageCount: alepha99.TInteger;
359
+ declare const listApiKeyResponseSchema: alepha166.TArray<alepha166.TObject<{
360
+ id: alepha166.TString;
361
+ name: alepha166.TString;
362
+ tokenPrefix: alepha166.TString;
363
+ tokenSuffix: alepha166.TString;
364
+ roles: alepha166.TArray<alepha166.TString>;
365
+ createdAt: alepha166.TString;
366
+ lastUsedAt: alepha166.TOptional<alepha166.TString>;
367
+ expiresAt: alepha166.TOptional<alepha166.TString>;
368
+ usageCount: alepha166.TInteger;
369
369
  }>>;
370
370
  //#endregion
371
371
  //#region ../../src/api/keys/schemas/revokeApiKeyParamsSchema.d.ts
372
- declare const revokeApiKeyParamsSchema: alepha99.TObject<{
373
- id: alepha99.TString;
372
+ declare const revokeApiKeyParamsSchema: alepha166.TObject<{
373
+ id: alepha166.TString;
374
374
  }>;
375
375
  //#endregion
376
376
  //#region ../../src/api/keys/schemas/revokeApiKeyResponseSchema.d.ts
377
- declare const revokeApiKeyResponseSchema: alepha99.TObject<{
378
- ok: alepha99.TBoolean;
377
+ declare const revokeApiKeyResponseSchema: alepha166.TObject<{
378
+ ok: alepha166.TBoolean;
379
379
  }>;
380
380
  //#endregion
381
381
  //#region ../../src/api/keys/index.d.ts
@@ -407,7 +407,7 @@ declare const revokeApiKeyResponseSchema: alepha99.TObject<{
407
407
  *
408
408
  * @module alepha.api.keys
409
409
  */
410
- declare const AlephaApiKeys: alepha99.Service<alepha99.Module>;
410
+ declare const AlephaApiKeys: alepha166.Service<alepha166.Module>;
411
411
  //#endregion
412
412
  export { AdminApiKeyController, AlephaApiKeys, ApiKeyController, ApiKeyEntity, ApiKeyService, adminApiKeyQuerySchema, adminApiKeyResourceSchema, apiKeyEntity, createApiKeyBodySchema, createApiKeyResponseSchema, listApiKeyItemSchema, listApiKeyResponseSchema, revokeApiKeyParamsSchema, revokeApiKeyResponseSchema };
413
413
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/api/keys/entities/apiKeyEntity.ts","../../../src/api/keys/services/ApiKeyService.ts","../../../src/api/keys/controllers/AdminApiKeyController.ts","../../../src/api/keys/controllers/ApiKeyController.ts","../../../src/api/keys/schemas/adminApiKeyQuerySchema.ts","../../../src/api/keys/schemas/adminApiKeyResourceSchema.ts","../../../src/api/keys/schemas/createApiKeyBodySchema.ts","../../../src/api/keys/schemas/createApiKeyResponseSchema.ts","../../../src/api/keys/schemas/listApiKeyResponseSchema.ts","../../../src/api/keys/schemas/revokeApiKeyParamsSchema.ts","../../../src/api/keys/schemas/revokeApiKeyResponseSchema.ts","../../../src/api/keys/index.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/api/keys/entities/apiKeyEntity.ts","../../../src/api/keys/services/ApiKeyService.ts","../../../src/api/keys/controllers/AdminApiKeyController.ts","../../../src/api/keys/controllers/ApiKeyController.ts","../../../src/api/keys/schemas/adminApiKeyQuerySchema.ts","../../../src/api/keys/schemas/adminApiKeyResourceSchema.ts","../../../src/api/keys/schemas/createApiKeyBodySchema.ts","../../../src/api/keys/schemas/createApiKeyResponseSchema.ts","../../../src/api/keys/schemas/listApiKeyResponseSchema.ts","../../../src/api/keys/schemas/revokeApiKeyParamsSchema.ts","../../../src/api/keys/schemas/revokeApiKeyResponseSchema.ts","../../../src/api/keys/index.ts"],"mappings":"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"}
@@ -344,6 +344,7 @@ var AdminNotificationController = class {
344
344
  findNotifications = $action({
345
345
  path: this.url,
346
346
  group: this.group,
347
+ secure: true,
347
348
  description: "Find notifications with pagination and filtering",
348
349
  schema: {
349
350
  query: notificationQuerySchema,