alepha 0.11.3 → 0.11.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.
- package/api/files.d.ts +1 -439
- package/api/jobs.d.ts +1 -218
- package/api/notifications.d.ts +1 -264
- package/api/users.d.ts +1 -924
- package/batch.d.ts +1 -585
- package/bucket.d.ts +1 -507
- package/cache/redis.d.ts +1 -40
- package/cache.d.ts +1 -288
- package/command.d.ts +1 -238
- package/core.d.ts +1 -1564
- package/datetime.d.ts +2 -1
- package/devtools.d.ts +1 -368
- package/email.d.ts +1 -144
- package/fake.cjs +8 -0
- package/fake.d.ts +1 -0
- package/fake.js +1 -0
- package/file.d.ts +1 -53
- package/lock/redis.d.ts +1 -24
- package/lock.d.ts +1 -552
- package/logger.d.ts +1 -284
- package/package.json +63 -49
- package/postgres.d.ts +1 -1931
- package/queue/redis.d.ts +1 -29
- package/queue.d.ts +1 -760
- package/react/auth.d.ts +1 -499
- package/react/form.d.ts +1 -188
- package/react/head.d.ts +1 -120
- package/react/i18n.d.ts +1 -143
- package/react.d.ts +1 -929
- package/redis.d.ts +1 -82
- package/scheduler.d.ts +1 -145
- package/security.d.ts +1 -586
- package/server/cache.d.ts +1 -163
- package/server/compress.d.ts +1 -32
- package/server/cookies.d.ts +1 -144
- package/server/cors.d.ts +1 -27
- package/server/health.d.ts +1 -59
- package/server/helmet.d.ts +1 -69
- package/server/links.d.ts +1 -316
- package/server/metrics.d.ts +1 -35
- package/server/multipart.d.ts +1 -42
- package/server/proxy.d.ts +1 -234
- package/server/security.d.ts +1 -87
- package/server/static.d.ts +1 -119
- package/server/swagger.d.ts +1 -148
- package/server.d.ts +1 -849
- package/topic/redis.d.ts +1 -42
- package/topic.d.ts +1 -819
- package/ui.cjs +8 -0
- package/ui.d.ts +1 -0
- package/ui.js +1 -0
- package/vite.d.ts +1 -197
package/queue/redis.d.ts
CHANGED
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Static } from "alepha";
|
|
3
|
-
import { QueueProvider } from "alepha/queue";
|
|
4
|
-
import { RedisProvider } from "alepha/redis";
|
|
5
|
-
import * as typebox0 from "typebox";
|
|
6
|
-
|
|
7
|
-
//#region src/providers/RedisQueueProvider.d.ts
|
|
8
|
-
declare const envSchema: typebox0.TObject<{
|
|
9
|
-
REDIS_QUEUE_PREFIX: typebox0.TString;
|
|
10
|
-
}>;
|
|
11
|
-
declare class RedisQueueProvider implements QueueProvider {
|
|
12
|
-
protected readonly env: Static<typeof envSchema>;
|
|
13
|
-
protected readonly redisProvider: RedisProvider;
|
|
14
|
-
prefix(queue: string): string;
|
|
15
|
-
push(queue: string, message: string): Promise<void>;
|
|
16
|
-
pop(queue: string): Promise<string | undefined>;
|
|
17
|
-
}
|
|
18
|
-
//#endregion
|
|
19
|
-
//#region src/index.d.ts
|
|
20
|
-
/**
|
|
21
|
-
* Plugin for Alepha Queue that provides Redis queue capabilities.
|
|
22
|
-
*
|
|
23
|
-
* @see {@link RedisQueueProvider}
|
|
24
|
-
* @module alepha.queue.redis
|
|
25
|
-
*/
|
|
26
|
-
declare const AlephaQueueRedis: _alepha_core0.Service<_alepha_core0.Module<{}>>;
|
|
27
|
-
//#endregion
|
|
28
|
-
export { AlephaQueueRedis, RedisQueueProvider };
|
|
29
|
-
//# sourceMappingURL=index.d.ts.map
|
|
1
|
+
export * from '@alepha/queue-redis';
|