alepha 0.16.0 → 0.16.1

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 (58) hide show
  1. package/dist/api/jobs/index.d.ts +152 -152
  2. package/dist/api/jobs/index.d.ts.map +1 -1
  3. package/dist/api/keys/index.d.ts +191 -191
  4. package/dist/api/keys/index.d.ts.map +1 -1
  5. package/dist/api/users/index.d.ts +74 -372
  6. package/dist/api/users/index.d.ts.map +1 -1
  7. package/dist/api/users/index.js +2 -1909
  8. package/dist/api/users/index.js.map +1 -1
  9. package/dist/api/verifications/index.d.ts +128 -128
  10. package/dist/api/verifications/index.d.ts.map +1 -1
  11. package/dist/batch/index.d.ts +4 -4
  12. package/dist/bucket/index.d.ts +2 -427
  13. package/dist/bucket/index.d.ts.map +1 -1
  14. package/dist/bucket/index.js +6 -1910
  15. package/dist/bucket/index.js.map +1 -1
  16. package/dist/cli/index.d.ts +1263 -1329
  17. package/dist/cli/index.d.ts.map +1 -1
  18. package/dist/cli/index.js +229 -213
  19. package/dist/cli/index.js.map +1 -1
  20. package/dist/command/index.d.ts +7 -74
  21. package/dist/command/index.d.ts.map +1 -1
  22. package/dist/command/index.js +4 -1909
  23. package/dist/command/index.js.map +1 -1
  24. package/dist/email/index.d.ts +2 -300
  25. package/dist/email/index.d.ts.map +1 -1
  26. package/dist/email/index.js +19 -1926
  27. package/dist/email/index.js.map +1 -1
  28. package/dist/email/index.workerd.js +713 -0
  29. package/dist/email/index.workerd.js.map +1 -0
  30. package/dist/orm/index.d.ts +14 -14
  31. package/dist/queue/core/index.d.ts +4 -4
  32. package/dist/react/router/index.d.ts +2 -300
  33. package/dist/react/router/index.d.ts.map +1 -1
  34. package/dist/react/router/index.js +3 -1909
  35. package/dist/react/router/index.js.map +1 -1
  36. package/dist/redis/index.d.ts +19 -19
  37. package/dist/scheduler/index.workerd.js +677 -0
  38. package/dist/scheduler/index.workerd.js.map +1 -0
  39. package/dist/server/auth/index.d.ts +167 -167
  40. package/dist/server/static/index.d.ts +2 -129
  41. package/dist/server/static/index.d.ts.map +1 -1
  42. package/dist/server/static/index.js +3 -1907
  43. package/dist/server/static/index.js.map +1 -1
  44. package/dist/server/swagger/index.d.ts +2 -300
  45. package/dist/server/swagger/index.d.ts.map +1 -1
  46. package/dist/server/swagger/index.js +3 -1908
  47. package/dist/server/swagger/index.js.map +1 -1
  48. package/dist/sms/index.d.ts +2 -300
  49. package/dist/sms/index.d.ts.map +1 -1
  50. package/dist/sms/index.js +2 -1909
  51. package/dist/sms/index.js.map +1 -1
  52. package/dist/system/index.workerd.js +1232 -0
  53. package/dist/system/index.workerd.js.map +1 -0
  54. package/dist/vite/index.d.ts.map +1 -1
  55. package/dist/websocket/index.d.ts +34 -34
  56. package/dist/websocket/index.d.ts.map +1 -1
  57. package/package.json +4 -4
  58. package/src/cli/apps/AlephaPackageBuilderCli.ts +21 -0
@@ -1,9 +1,9 @@
1
- import * as alepha54 from "alepha";
1
+ import * as alepha179 from "alepha";
2
2
  import { Alepha, Async, KIND, Primitive, Static, TNull, TObject, TOptional, TSchema, TUnion } from "alepha";
3
3
  import * as alepha_api_audits0 from "alepha/api/audits";
4
4
  import { AuditLogOptions } from "alepha/api/audits";
5
5
  import * as alepha_server0 from "alepha/server";
6
- import * as alepha_orm33 from "alepha/orm";
6
+ import * as alepha_orm0 from "alepha/orm";
7
7
  import "alepha/logger";
8
8
  import { DateTime, DateTimeProvider } from "alepha/datetime";
9
9
  import { LockPrimitive } from "alepha/lock";
@@ -231,76 +231,76 @@ interface PgRefOptions {
231
231
  type PgAttr<T extends TSchema, TAttr extends PgSymbolKeys> = T & { [K in TAttr]: PgSymbols[K] };
232
232
  //#endregion
233
233
  //#region ../../src/api/jobs/schemas/jobExecutionQuerySchema.d.ts
234
- declare const jobExecutionQuerySchema: alepha54.TObject<{
235
- page: alepha54.TOptional<alepha54.TInteger>;
236
- size: alepha54.TOptional<alepha54.TInteger>;
237
- sort: alepha54.TOptional<alepha54.TString>;
238
- status: alepha54.TOptional<alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
239
- job: alepha54.TOptional<alepha54.TString>;
234
+ declare const jobExecutionQuerySchema: alepha179.TObject<{
235
+ page: alepha179.TOptional<alepha179.TInteger>;
236
+ size: alepha179.TOptional<alepha179.TInteger>;
237
+ sort: alepha179.TOptional<alepha179.TString>;
238
+ status: alepha179.TOptional<alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
239
+ job: alepha179.TOptional<alepha179.TString>;
240
240
  }>;
241
241
  type JobExecutionQuery = Static<typeof jobExecutionQuerySchema>;
242
242
  //#endregion
243
243
  //#region ../../src/api/jobs/services/JobService.d.ts
244
244
  declare class JobService {
245
245
  protected readonly alepha: Alepha;
246
- protected readonly executionRepository: alepha_orm33.Repository<alepha54.TObject<{
247
- id: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_PRIMARY_KEY>, typeof alepha_orm33.PG_DEFAULT>;
248
- version: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TInteger, typeof alepha_orm33.PG_VERSION>, typeof alepha_orm33.PG_DEFAULT>;
249
- createdAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_CREATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
250
- updatedAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_UPDATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
251
- finishedAt: alepha54.TOptional<alepha54.TString>;
252
- job: alepha54.TString;
253
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
254
- error: alepha54.TOptional<alepha54.TString>;
255
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
256
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
257
- message: alepha54.TString;
258
- service: alepha54.TString;
259
- module: alepha54.TString;
260
- context: alepha54.TOptional<alepha54.TString>;
261
- app: alepha54.TOptional<alepha54.TString>;
262
- data: alepha54.TOptional<alepha54.TAny>;
263
- timestamp: alepha54.TNumber;
246
+ protected readonly executionRepository: alepha_orm0.Repository<alepha179.TObject<{
247
+ id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
248
+ version: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TInteger, typeof alepha_orm0.PG_VERSION>, typeof alepha_orm0.PG_DEFAULT>;
249
+ createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
250
+ updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
251
+ finishedAt: alepha179.TOptional<alepha179.TString>;
252
+ job: alepha179.TString;
253
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
254
+ error: alepha179.TOptional<alepha179.TString>;
255
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
256
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
257
+ message: alepha179.TString;
258
+ service: alepha179.TString;
259
+ module: alepha179.TString;
260
+ context: alepha179.TOptional<alepha179.TString>;
261
+ app: alepha179.TOptional<alepha179.TString>;
262
+ data: alepha179.TOptional<alepha179.TAny>;
263
+ timestamp: alepha179.TNumber;
264
264
  }>>>;
265
265
  }>>;
266
266
  getJobs(): Promise<string[]>;
267
- getJobExecutions(query?: JobExecutionQuery): Promise<alepha54.Page<alepha_orm33.PgStatic<alepha54.TObject<{
268
- id: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_PRIMARY_KEY>, typeof alepha_orm33.PG_DEFAULT>;
269
- version: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TInteger, typeof alepha_orm33.PG_VERSION>, typeof alepha_orm33.PG_DEFAULT>;
270
- createdAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_CREATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
271
- updatedAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_UPDATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
272
- finishedAt: alepha54.TOptional<alepha54.TString>;
273
- job: alepha54.TString;
274
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
275
- error: alepha54.TOptional<alepha54.TString>;
276
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
277
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
278
- message: alepha54.TString;
279
- service: alepha54.TString;
280
- module: alepha54.TString;
281
- context: alepha54.TOptional<alepha54.TString>;
282
- app: alepha54.TOptional<alepha54.TString>;
283
- data: alepha54.TOptional<alepha54.TAny>;
284
- timestamp: alepha54.TNumber;
267
+ getJobExecutions(query?: JobExecutionQuery): Promise<alepha179.Page<alepha_orm0.PgStatic<alepha179.TObject<{
268
+ id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
269
+ version: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TInteger, typeof alepha_orm0.PG_VERSION>, typeof alepha_orm0.PG_DEFAULT>;
270
+ createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
271
+ updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
272
+ finishedAt: alepha179.TOptional<alepha179.TString>;
273
+ job: alepha179.TString;
274
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
275
+ error: alepha179.TOptional<alepha179.TString>;
276
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
277
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
278
+ message: alepha179.TString;
279
+ service: alepha179.TString;
280
+ module: alepha179.TString;
281
+ context: alepha179.TOptional<alepha179.TString>;
282
+ app: alepha179.TOptional<alepha179.TString>;
283
+ data: alepha179.TOptional<alepha179.TAny>;
284
+ timestamp: alepha179.TNumber;
285
285
  }>>>;
286
- }>, alepha_orm33.PgRelationMap<alepha54.TObject<{
287
- id: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_PRIMARY_KEY>, typeof alepha_orm33.PG_DEFAULT>;
288
- version: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TInteger, typeof alepha_orm33.PG_VERSION>, typeof alepha_orm33.PG_DEFAULT>;
289
- createdAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_CREATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
290
- updatedAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_UPDATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
291
- finishedAt: alepha54.TOptional<alepha54.TString>;
292
- job: alepha54.TString;
293
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
294
- error: alepha54.TOptional<alepha54.TString>;
295
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
296
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
297
- message: alepha54.TString;
298
- service: alepha54.TString;
299
- module: alepha54.TString;
300
- context: alepha54.TOptional<alepha54.TString>;
301
- app: alepha54.TOptional<alepha54.TString>;
302
- data: alepha54.TOptional<alepha54.TAny>;
303
- timestamp: alepha54.TNumber;
286
+ }>, alepha_orm0.PgRelationMap<alepha179.TObject<{
287
+ id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
288
+ version: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TInteger, typeof alepha_orm0.PG_VERSION>, typeof alepha_orm0.PG_DEFAULT>;
289
+ createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
290
+ updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
291
+ finishedAt: alepha179.TOptional<alepha179.TString>;
292
+ job: alepha179.TString;
293
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
294
+ error: alepha179.TOptional<alepha179.TString>;
295
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
296
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
297
+ message: alepha179.TString;
298
+ service: alepha179.TString;
299
+ module: alepha179.TString;
300
+ context: alepha179.TOptional<alepha179.TString>;
301
+ app: alepha179.TOptional<alepha179.TString>;
302
+ data: alepha179.TOptional<alepha179.TAny>;
303
+ timestamp: alepha179.TNumber;
304
304
  }>>>;
305
305
  }>>>>>;
306
306
  triggerJob(name: string): Promise<{
@@ -315,75 +315,75 @@ declare class AdminJobController {
315
315
  protected readonly alepha: Alepha;
316
316
  protected readonly jobService: JobService;
317
317
  readonly getJobs: alepha_server0.ActionPrimitiveFn<{
318
- response: alepha54.TArray<alepha54.TString>;
318
+ response: alepha179.TArray<alepha179.TString>;
319
319
  }>;
320
320
  readonly getJobExecutions: alepha_server0.ActionPrimitiveFn<{
321
- query: alepha54.TObject<{
322
- page: alepha54.TOptional<alepha54.TInteger>;
323
- size: alepha54.TOptional<alepha54.TInteger>;
324
- sort: alepha54.TOptional<alepha54.TString>;
325
- status: alepha54.TOptional<alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
326
- job: alepha54.TOptional<alepha54.TString>;
321
+ query: alepha179.TObject<{
322
+ page: alepha179.TOptional<alepha179.TInteger>;
323
+ size: alepha179.TOptional<alepha179.TInteger>;
324
+ sort: alepha179.TOptional<alepha179.TString>;
325
+ status: alepha179.TOptional<alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">>;
326
+ job: alepha179.TOptional<alepha179.TString>;
327
327
  }>;
328
- response: alepha54.TPage<alepha54.TObject<{
329
- id: PgAttr<PgAttr<alepha54.TString, typeof PG_PRIMARY_KEY>, typeof PG_DEFAULT>;
330
- version: PgAttr<PgAttr<alepha54.TInteger, typeof PG_VERSION>, typeof PG_DEFAULT>;
331
- createdAt: PgAttr<PgAttr<alepha54.TString, typeof PG_CREATED_AT>, typeof PG_DEFAULT>;
332
- updatedAt: PgAttr<PgAttr<alepha54.TString, typeof PG_UPDATED_AT>, typeof PG_DEFAULT>;
333
- finishedAt: alepha54.TOptional<alepha54.TString>;
334
- job: alepha54.TString;
335
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
336
- error: alepha54.TOptional<alepha54.TString>;
337
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
338
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
339
- message: alepha54.TString;
340
- service: alepha54.TString;
341
- module: alepha54.TString;
342
- context: alepha54.TOptional<alepha54.TString>;
343
- app: alepha54.TOptional<alepha54.TString>;
344
- data: alepha54.TOptional<alepha54.TAny>;
345
- timestamp: alepha54.TNumber;
328
+ response: alepha179.TPage<alepha179.TObject<{
329
+ id: PgAttr<PgAttr<alepha179.TString, typeof PG_PRIMARY_KEY>, typeof PG_DEFAULT>;
330
+ version: PgAttr<PgAttr<alepha179.TInteger, typeof PG_VERSION>, typeof PG_DEFAULT>;
331
+ createdAt: PgAttr<PgAttr<alepha179.TString, typeof PG_CREATED_AT>, typeof PG_DEFAULT>;
332
+ updatedAt: PgAttr<PgAttr<alepha179.TString, typeof PG_UPDATED_AT>, typeof PG_DEFAULT>;
333
+ finishedAt: alepha179.TOptional<alepha179.TString>;
334
+ job: alepha179.TString;
335
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
336
+ error: alepha179.TOptional<alepha179.TString>;
337
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
338
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
339
+ message: alepha179.TString;
340
+ service: alepha179.TString;
341
+ module: alepha179.TString;
342
+ context: alepha179.TOptional<alepha179.TString>;
343
+ app: alepha179.TOptional<alepha179.TString>;
344
+ data: alepha179.TOptional<alepha179.TAny>;
345
+ timestamp: alepha179.TNumber;
346
346
  }>>>;
347
347
  }>>;
348
348
  }>;
349
349
  readonly triggerJob: alepha_server0.ActionPrimitiveFn<{
350
- body: alepha54.TObject<{
351
- name: alepha54.TString;
350
+ body: alepha179.TObject<{
351
+ name: alepha179.TString;
352
352
  }>;
353
- response: alepha54.TObject<{
354
- ok: alepha54.TBoolean;
355
- id: alepha54.TOptional<alepha54.TUnion<[alepha54.TString, alepha54.TInteger]>>;
356
- count: alepha54.TOptional<alepha54.TNumber>;
353
+ response: alepha179.TObject<{
354
+ ok: alepha179.TBoolean;
355
+ id: alepha179.TOptional<alepha179.TUnion<[alepha179.TString, alepha179.TInteger]>>;
356
+ count: alepha179.TOptional<alepha179.TNumber>;
357
357
  }>;
358
358
  }>;
359
359
  }
360
360
  //#endregion
361
361
  //#region ../../src/api/jobs/entities/jobExecutions.d.ts
362
- declare const jobExecutions: alepha_orm33.EntityPrimitive<alepha54.TObject<{
363
- id: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_PRIMARY_KEY>, typeof alepha_orm33.PG_DEFAULT>;
364
- version: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TInteger, typeof alepha_orm33.PG_VERSION>, typeof alepha_orm33.PG_DEFAULT>;
365
- createdAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_CREATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
366
- updatedAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_UPDATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
367
- finishedAt: alepha54.TOptional<alepha54.TString>;
368
- job: alepha54.TString;
369
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
370
- error: alepha54.TOptional<alepha54.TString>;
371
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
372
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
373
- message: alepha54.TString;
374
- service: alepha54.TString;
375
- module: alepha54.TString;
376
- context: alepha54.TOptional<alepha54.TString>;
377
- app: alepha54.TOptional<alepha54.TString>;
378
- data: alepha54.TOptional<alepha54.TAny>;
379
- timestamp: alepha54.TNumber;
362
+ declare const jobExecutions: alepha_orm0.EntityPrimitive<alepha179.TObject<{
363
+ id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
364
+ version: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TInteger, typeof alepha_orm0.PG_VERSION>, typeof alepha_orm0.PG_DEFAULT>;
365
+ createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
366
+ updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
367
+ finishedAt: alepha179.TOptional<alepha179.TString>;
368
+ job: alepha179.TString;
369
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
370
+ error: alepha179.TOptional<alepha179.TString>;
371
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
372
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
373
+ message: alepha179.TString;
374
+ service: alepha179.TString;
375
+ module: alepha179.TString;
376
+ context: alepha179.TOptional<alepha179.TString>;
377
+ app: alepha179.TOptional<alepha179.TString>;
378
+ data: alepha179.TOptional<alepha179.TAny>;
379
+ timestamp: alepha179.TNumber;
380
380
  }>>>;
381
381
  }>>;
382
382
  type JobExecutionEntity = Static<typeof jobExecutions.schema>;
383
383
  //#endregion
384
384
  //#region ../../src/api/jobs/providers/JobProvider.d.ts
385
- declare const envSchema: alepha54.TObject<{
386
- JOB_PREFIX: alepha54.TOptional<alepha54.TString>;
385
+ declare const envSchema: alepha179.TObject<{
386
+ JOB_PREFIX: alepha179.TOptional<alepha179.TString>;
387
387
  }>;
388
388
  declare module "alepha" {
389
389
  interface Env extends Partial<Static<typeof envSchema>> {}
@@ -396,24 +396,24 @@ declare class JobProvider {
396
396
  protected readonly alepha: Alepha;
397
397
  protected readonly dateTimeProvider: DateTimeProvider;
398
398
  protected readonly cronProvider: CronProvider;
399
- protected readonly executionRepository: alepha_orm33.Repository<alepha54.TObject<{
400
- id: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_PRIMARY_KEY>, typeof alepha_orm33.PG_DEFAULT>;
401
- version: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TInteger, typeof alepha_orm33.PG_VERSION>, typeof alepha_orm33.PG_DEFAULT>;
402
- createdAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_CREATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
403
- updatedAt: alepha_orm33.PgAttr<alepha_orm33.PgAttr<alepha54.TString, typeof alepha_orm33.PG_UPDATED_AT>, typeof alepha_orm33.PG_DEFAULT>;
404
- finishedAt: alepha54.TOptional<alepha54.TString>;
405
- job: alepha54.TString;
406
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
407
- error: alepha54.TOptional<alepha54.TString>;
408
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
409
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
410
- message: alepha54.TString;
411
- service: alepha54.TString;
412
- module: alepha54.TString;
413
- context: alepha54.TOptional<alepha54.TString>;
414
- app: alepha54.TOptional<alepha54.TString>;
415
- data: alepha54.TOptional<alepha54.TAny>;
416
- timestamp: alepha54.TNumber;
399
+ protected readonly executionRepository: alepha_orm0.Repository<alepha179.TObject<{
400
+ id: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_PRIMARY_KEY>, typeof alepha_orm0.PG_DEFAULT>;
401
+ version: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TInteger, typeof alepha_orm0.PG_VERSION>, typeof alepha_orm0.PG_DEFAULT>;
402
+ createdAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_CREATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
403
+ updatedAt: alepha_orm0.PgAttr<alepha_orm0.PgAttr<alepha179.TString, typeof alepha_orm0.PG_UPDATED_AT>, typeof alepha_orm0.PG_DEFAULT>;
404
+ finishedAt: alepha179.TOptional<alepha179.TString>;
405
+ job: alepha179.TString;
406
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
407
+ error: alepha179.TOptional<alepha179.TString>;
408
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
409
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
410
+ message: alepha179.TString;
411
+ service: alepha179.TString;
412
+ module: alepha179.TString;
413
+ context: alepha179.TOptional<alepha179.TString>;
414
+ app: alepha179.TOptional<alepha179.TString>;
415
+ data: alepha179.TOptional<alepha179.TAny>;
416
+ timestamp: alepha179.TNumber;
417
417
  }>>>;
418
418
  }>>;
419
419
  protected readonly env: {
@@ -507,31 +507,31 @@ interface JobHandlerArguments {
507
507
  }
508
508
  //#endregion
509
509
  //#region ../../src/api/jobs/schemas/jobExecutionResourceSchema.d.ts
510
- declare const jobExecutionResourceSchema: alepha54.TObject<{
511
- id: PgAttr<PgAttr<alepha54.TString, typeof PG_PRIMARY_KEY>, typeof PG_DEFAULT>;
512
- version: PgAttr<PgAttr<alepha54.TInteger, typeof PG_VERSION>, typeof PG_DEFAULT>;
513
- createdAt: PgAttr<PgAttr<alepha54.TString, typeof PG_CREATED_AT>, typeof PG_DEFAULT>;
514
- updatedAt: PgAttr<PgAttr<alepha54.TString, typeof PG_UPDATED_AT>, typeof PG_DEFAULT>;
515
- finishedAt: alepha54.TOptional<alepha54.TString>;
516
- job: alepha54.TString;
517
- status: alepha54.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
518
- error: alepha54.TOptional<alepha54.TString>;
519
- logs: alepha54.TOptional<alepha54.TArray<alepha54.TObject<{
520
- level: alepha54.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
521
- message: alepha54.TString;
522
- service: alepha54.TString;
523
- module: alepha54.TString;
524
- context: alepha54.TOptional<alepha54.TString>;
525
- app: alepha54.TOptional<alepha54.TString>;
526
- data: alepha54.TOptional<alepha54.TAny>;
527
- timestamp: alepha54.TNumber;
510
+ declare const jobExecutionResourceSchema: alepha179.TObject<{
511
+ id: PgAttr<PgAttr<alepha179.TString, typeof PG_PRIMARY_KEY>, typeof PG_DEFAULT>;
512
+ version: PgAttr<PgAttr<alepha179.TInteger, typeof PG_VERSION>, typeof PG_DEFAULT>;
513
+ createdAt: PgAttr<PgAttr<alepha179.TString, typeof PG_CREATED_AT>, typeof PG_DEFAULT>;
514
+ updatedAt: PgAttr<PgAttr<alepha179.TString, typeof PG_UPDATED_AT>, typeof PG_DEFAULT>;
515
+ finishedAt: alepha179.TOptional<alepha179.TString>;
516
+ job: alepha179.TString;
517
+ status: alepha179.TUnsafe<"STARTED" | "FAILED" | "COMPLETED">;
518
+ error: alepha179.TOptional<alepha179.TString>;
519
+ logs: alepha179.TOptional<alepha179.TArray<alepha179.TObject<{
520
+ level: alepha179.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
521
+ message: alepha179.TString;
522
+ service: alepha179.TString;
523
+ module: alepha179.TString;
524
+ context: alepha179.TOptional<alepha179.TString>;
525
+ app: alepha179.TOptional<alepha179.TString>;
526
+ data: alepha179.TOptional<alepha179.TAny>;
527
+ timestamp: alepha179.TNumber;
528
528
  }>>>;
529
529
  }>;
530
530
  type JobExecutionResource = Static<typeof jobExecutionResourceSchema>;
531
531
  //#endregion
532
532
  //#region ../../src/api/jobs/schemas/triggerJobSchema.d.ts
533
- declare const triggerJobSchema: alepha54.TObject<{
534
- name: alepha54.TString;
533
+ declare const triggerJobSchema: alepha179.TObject<{
534
+ name: alepha179.TString;
535
535
  }>;
536
536
  type TriggerJob = Static<typeof triggerJobSchema>;
537
537
  //#endregion
@@ -591,7 +591,7 @@ declare class JobAudits {
591
591
  *
592
592
  * @module alepha.api.jobs
593
593
  */
594
- declare const AlephaApiJobs: alepha54.Service<alepha54.Module>;
594
+ declare const AlephaApiJobs: alepha179.Service<alepha179.Module>;
595
595
  //#endregion
596
596
  export { $job, AdminJobController, AlephaApiJobs, Job, JobAudits, JobExecutionEntity, JobExecutionQuery, JobExecutionResource, JobHandlerArguments, JobPrimitive, JobPrimitiveOptions, JobProvider, JobRegistration, JobService, TriggerJob, jobExecutionQuerySchema, jobExecutionResourceSchema, jobExecutions, triggerJobSchema };
597
597
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/orm/schemas/insertSchema.ts","../../../src/orm/schemas/updateSchema.ts","../../../src/orm/primitives/$entity.ts","../../../src/orm/constants/PG_SYMBOLS.ts","../../../src/orm/helpers/pgAttr.ts","../../../src/api/jobs/schemas/jobExecutionQuerySchema.ts","../../../src/api/jobs/services/JobService.ts","../../../src/api/jobs/controllers/AdminJobController.ts","../../../src/api/jobs/entities/jobExecutions.ts","../../../src/api/jobs/providers/JobProvider.ts","../../../src/api/jobs/primitives/$job.ts","../../../src/api/jobs/schemas/jobExecutionResourceSchema.ts","../../../src/api/jobs/schemas/triggerJobSchema.ts","../../../src/api/jobs/services/JobAudits.ts","../../../src/api/jobs/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;KAaY,aAAA,WAAwB,OAAA,IAAW,OAAA,eACjC,CAAA,iBAAkB,CAAA,eAAgB,CAAA;EAAA,CACvC,UAAA;AAAA;EACD,WAAA;AAAA,IACF,SAAA,CAAU,CAAA,eAAgB,CAAA,KAC1B,CAAA,eAAgB,CAAA;;;;;;;;;;;;KCDV,aAAA,WAAwB,OAAA,IAAW,OAAA,eACjC,CAAA,iBAAkB,CAAA,eAAgB,CAAA,UAAW,SAAA,YACrD,SAAA,CAAU,MAAA,EAAQ,CAAA,EAAG,KAAA,MACrB,CAAA,eAAgB,CAAA;;;UCgBL,sBAAA,WACL,OAAA,eACG,MAAA,CAAO,CAAA;EFpBhB;;;;EE0BJ,IAAA;EF/BwB;;;EEoCxB,MAAA,EAAQ,CAAA;EFnCI;;;EEwCZ,OAAA,IACI,IAAA;IFvCE;;;IE4CA,MAAA,EAAQ,IAAA;IF1CV;;;IE8CE,MAAA;;;;IAIA,IAAA;EAAA;IDnDiB;;;ICyDjB,OAAA,EAAS,IAAA;IDxD+B;;;IC4DxC,MAAA;ID3DQ;;;IC+DR,IAAA;EAAA;EDjE8C;;;ECwEpD,WAAA,GAAc,KAAA;IDxE+B;;;IC4E3C,IAAA;ID3E4C;;;IC+E5C,OAAA,EAAS,KAAA,OAAY,MAAA,CAAO,CAAA;ID9EhB;;;;ICmFZ,cAAA,EAAgB,KAAA,OAAY,YAAA;EAAA;EDlFT;;;;ACgBvB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoGE,WAAA,GAAc,KAAA;IAnGJ;;;IAuGR,OAAA,EAAS,KAAA,OAAY,MAAA,CAAO,CAAA;IAhG9B;;;IAoGE,IAAA;IAzFE;;;IA6FF,MAAA;IAhFI;;;IAoFJ,KAAA,GAAQ,GAAA;EAAA;EA/DV;;;EAqEA,MAAA,IACE,IAAA,EAAM,uBAAA,SAAgC,UAAA,CAAW,CAAA,aAC9C,uBAAA;AAAA;AAAA,cAKM,eAAA,WAA0B,OAAA,GAAU,OAAA;EAAA,SAC/B,OAAA,EAAS,sBAAA,CAAuB,CAAA;cAEpC,OAAA,EAAS,sBAAA,CAAuB,CAAA;EAI5C,KAAA,CAAM,KAAA;EAAA,IAYF,IAAA,CAAA,GAAQ,aAAA,CAAc,CAAA;EAAA,IActB,IAAA,CAAA;EAAA,IAIA,MAAA,CAAA,GAAU,CAAA;EAAA,IAIV,YAAA,CAAA,GAAgB,aAAA,CAAc,CAAA;EAAA,IAI9B,YAAA,CAAA,GAAgB,aAAA,CAAc,CAAA;AAAA;;;;KAYxB,UAAA,WAAqB,OAAA,oBACjB,CAAA,iBAAkB,mBAAA;AAAA,KAYtB,YAAA,WAAuB,OAAA;EACjC,IAAA;EACA,MAAA,EAAQ,eAAA,CAAgB,CAAA;AAAA;AAAA,KAGd,aAAA,WAAwB,OAAA,oBACpB,CAAA,iBAAkB,YAAA,CAAa,CAAA;;;cC3OlC,UAAA;AAAA,cACA,cAAA;AAAA,cACA,aAAA;AAAA,cACA,aAAA;AAAA,cACA,aAAA;AAAA,cACA,UAAA;AAAA,cACA,WAAA;AAAA,cACA,OAAA;AAAA,cACA,MAAA;;;;cAKA,SAAA;AAAA,KAMD,SAAA;EAAA,CACT,UAAA;EAAA,CACA,cAAA;EAAA,CACA,aAAA;EAAA,CACA,aAAA;EAAA,CACA,aAAA;EAAA,CACA,UAAA;EAAA,CACA,WAAA,GAAc,iBAAA;EAAA,CACd,MAAA,GAAS,YAAA;EAAA,CACT,OAAA,GAAU,aAAA;EHhBP;;;EAAA,CGqBH,SAAA;AAAA;AAAA,KAGS,YAAA,SAAqB,SAAA;AAAA,KAErB,iBAAA;EACV,IAAA;AAAA,IACE,iBAAA;EACA,IAAA;AAAA;AAAA,UAGa,aAAA;EACf,IAAA;EACA,WAAA;AAAA;AAAA,UAGe,YAAA;EACf,GAAA;IACE,IAAA;IACA,MAAA,EAAQ,eAAA;EAAA;EAEV,OAAA;IACE,QAAA,GAAW,kBAAA;IACX,QAAA,GAAW,kBAAA;EAAA;AAAA;;;;;;KCTH,MAAA,WAAiB,OAAA,gBAAuB,YAAA,IAAgB,CAAA,WAC5D,KAAA,GAAQ,SAAA,CAAU,CAAA;;;cClDb,uBAAA,WAAuB,OAAA;2BAOlC,QAAA,CAAA,QAAA;;;;;;KAEU,iBAAA,GAAoB,MAAA,QAAc,uBAAA;;;cCPjC,UAAA;EAAA,mBACQ,MAAA,EAAM,MAAA;EAAA,mBACN,mBAAA,EAAmB,YAAA,CAAA,UAAA,UAAA,OAAA;gDADb,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;EAGZ,OAAA,CAAA,GAAW,OAAA;EAKX,gBAAA,CAAiB,KAAA,GAAO,iBAAA,GAAsB,OAAA,CAAA,QAAA,CAAA,IAAA,cAAA,QAAA,UAAA,OAAA;gDAAA,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;gDAAA,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;EAoB9C,UAAA,CAAW,IAAA,WAAe,OAAA;IAAU,EAAA;EAAA;AAAA;;;cC1BtC,kBAAA;EAAA,mBACQ,GAAA;EAAA,mBACA,KAAA;EAAA,mBACA,MAAA,EAAM,MAAA;EAAA,mBACN,UAAA,EAAU,UAAA;EAAA,SAEb,OAAA,iBAAO,iBAAA;8BAFM,QAAA,CAAA,OAAA;EAAA;EAAA,SAYb,gBAAA,iBAAgB,iBAAA;;+BAVT,QAAA,CAAA,QAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqBP,UAAA,iBAAU,iBAAA;;YAXM,QAAA,CAAA,OAAA;IAAA;;;;;;;;;;cCrBrB,aAAA,EAAa,YAAA,CAAA,eAAA,UAAA,OAAA;8CAaxB,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;KAEU,kBAAA,GAAqB,MAAA,QAAc,aAAA,CAAc,MAAA;;;cCXvD,SAAA,WAAS,OAAA;iCAMb,QAAA,CAAA,OAAA;AAAA;AAAA;EAAA,UAGU,GAAA,SAAY,OAAA,CAAQ,MAAA,QAAc,SAAA;AAAA;;;;;cAOjC,WAAA;EAAA,mBACQ,MAAA,EAAM,MAAA;EAAA,mBACN,gBAAA,EAAgB,gBAAA;EAAA,mBAChB,YAAA,EAAY,YAAA;EAAA,mBACZ,mBAAA,EAAmB,YAAA,CAAA,UAAA,UAAA,OAAA;gDADP,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;qBAEZ,GAAA;;;qBACA,IAAA,EAAI,GAAA;;;;;;;;;;qBACJ,IAAA,EAAI,GAAA,SAAA,eAAA;ERdA;;;EQmBhB,WAAA,CAAY,OAAA,EAAS,GAAA,GAAM,eAAA;ERlBJ;;;EQ4EjB,UAAA,CAAW,OAAA,WAAkB,OAAA;ER3EjB;;;EQ4FZ,UAAA,CACX,OAAA,UACA,OAAA,GAAU,IAAA;IAAQ,GAAA,EAAK,QAAA;EAAA,MAAe,KAAA,SACrC,OAAA;AAAA;AAAA,UA8GY,GAAA;ER/MS;;;EQmNxB,IAAA;ERlNY;;;EQuNZ,WAAA;ERvNyE;;;EQ4NzE,OAAA,GAAU,IAAA;IAAQ,GAAA,EAAK,QAAA;EAAA,MAAe,KAAA;ER1NlB;;;EQ+NpB,IAAA;;;AP/MF;;;;EOuNE,IAAA;EPrNa;;;EO0Nb,UAAA;AAAA;AAAA,UAGe,eAAA;EACf,IAAA;EACA,OAAA,EAAS,GAAA;EACT,aAAA,EAAe,aAAA,OAAoB,OAAA;AAAA;;;;;;cC/PxB,IAAA;EAAA,UAAiB,mBAAA,GAAsB,YAAA;EAAA;;KAMxC,mBAAA,GAAsB,IAAA,CAAK,GAAA;;;;EAIrC,IAAA;AAAA;AAAA,cAKW,YAAA,SAAqB,SAAA,CAAU,mBAAA;EAAA,mBACvB,WAAA,EAAW,WAAA;EAAA,IAEnB,IAAA,CAAA;EAAA,UAOD,MAAA,CAAA;EAQG,OAAA,CAAA,GAAW,OAAA;AAAA;AAAA,UAST,mBAAA;EACf,GAAA,EAAK,QAAA;AAAA;;;cC/CM,0BAAA,WAA0B,OAAA;oBAQtC,QAAA,CAAA,OAAA;;;;;;;;;;;;;;;;;;;KAEW,oBAAA,GAAuB,MAAA,QAAc,0BAAA;;;cCVpC,gBAAA,EAEX,QAAA,CAF2B,OAAA;QAE3B,QAAA,CAAA,OAAA;AAAA;AAAA,KAEU,UAAA,GAAa,MAAA,QAAc,gBAAA;;;;;;;;;;;;;;;cCO1B,SAAA;EAAA,mBACQ,KAAA,EADC,kBAAA,CACI,cAAA;;;AbF1B;EaWe,UAAA,CACX,OAAA,UACA,OAAA,GAAS,IAAA,CAAK,eAAA,mCAAoD,OAAA;Ebb7C;;;Ea0BV,QAAA,CACX,OAAA,UACA,OAAA,GAAS,IAAA,CAAK,eAAA,mCAAoD,OAAA;Eb3BtB;;;EawCjC,SAAA,CACX,OAAA,UACA,OAAA,GAAS,IAAA,CAAK,eAAA,mCAAoD,OAAA;EbvChE;;;EaoDS,SAAA,CACX,OAAA,UACA,OAAA,GAAS,IAAA,CAAK,eAAA,mCAAoD,OAAA;Eb1DhB;;;EauEvC,iBAAA,CACX,OAAA,UACA,OAAA,GAAS,IAAA,CAAK,eAAA;IACZ,OAAA;IACA,OAAA;EAAA,IACI,OAAA;AAAA;;;;;;;;;;;Ab5EV;;;;;;;ccqBa,aAAA,EAAa,QAAA,CAAA,OAAA,CAGxB,QAAA,CAHwB,MAAA"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/orm/schemas/insertSchema.ts","../../../src/orm/schemas/updateSchema.ts","../../../src/orm/primitives/$entity.ts","../../../src/orm/constants/PG_SYMBOLS.ts","../../../src/orm/helpers/pgAttr.ts","../../../src/api/jobs/schemas/jobExecutionQuerySchema.ts","../../../src/api/jobs/services/JobService.ts","../../../src/api/jobs/controllers/AdminJobController.ts","../../../src/api/jobs/entities/jobExecutions.ts","../../../src/api/jobs/providers/JobProvider.ts","../../../src/api/jobs/primitives/$job.ts","../../../src/api/jobs/schemas/jobExecutionResourceSchema.ts","../../../src/api/jobs/schemas/triggerJobSchema.ts","../../../src/api/jobs/services/JobAudits.ts","../../../src/api/jobs/index.ts"],"mappings":"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"}