alepha 0.6.7 → 0.6.8
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/cache.d.ts +353 -1
- package/core.d.ts +991 -19
- package/datetime.d.ts +167 -1
- package/lock.d.ts +280 -1
- package/package.json +21 -21
- package/postgres.d.ts +1452 -1
- package/queue.d.ts +305 -1
- package/react/auth.d.ts +300 -1
- package/react.d.ts +617 -1
- package/redis.d.ts +135 -1
- package/scheduler.d.ts +185 -1
- package/security.d.ts +647 -1
- package/server/cookies.d.ts +56 -1
- package/server/metrics.d.ts +14 -1
- package/server/proxy.d.ts +34 -1
- package/server/static.d.ts +103 -1
- package/server/swagger.d.ts +102 -1
- package/server.d.ts +858 -1
- package/topic.d.ts +301 -1
- package/vite.d.ts +80 -1
package/datetime.d.ts
CHANGED
|
@@ -1 +1,167 @@
|
|
|
1
|
-
|
|
1
|
+
import * as _alepha_core from '@alepha/core';
|
|
2
|
+
import { Async } from '@alepha/core';
|
|
3
|
+
import { DurationLike as DurationLike$1, DateTime as DateTime$1, Duration as Duration$1, DurationLikeObject } from 'luxon';
|
|
4
|
+
|
|
5
|
+
interface IntervalDescriptorOptions {
|
|
6
|
+
/**
|
|
7
|
+
* Whether to start the interval immediately.
|
|
8
|
+
*
|
|
9
|
+
* @default false
|
|
10
|
+
*/
|
|
11
|
+
run?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Whether to attach the interval to the context.
|
|
14
|
+
*
|
|
15
|
+
* Attached intervals are automatically started when the context starts and stopped when the context stops.
|
|
16
|
+
*
|
|
17
|
+
* @default true
|
|
18
|
+
*/
|
|
19
|
+
attach?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* The interval handler.
|
|
22
|
+
*/
|
|
23
|
+
handler: () => Async<void>;
|
|
24
|
+
/**
|
|
25
|
+
* The interval duration.
|
|
26
|
+
*/
|
|
27
|
+
duration: DurationLike$1;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Registers a new interval.
|
|
31
|
+
*/
|
|
32
|
+
declare const $interval: (options: IntervalDescriptorOptions) => Interval;
|
|
33
|
+
|
|
34
|
+
declare class Timeout {
|
|
35
|
+
private timer;
|
|
36
|
+
private duration;
|
|
37
|
+
private readonly now;
|
|
38
|
+
private readonly callback;
|
|
39
|
+
constructor(now: number, duration: number, callback: () => void);
|
|
40
|
+
/**
|
|
41
|
+
* Add time to the timeout.
|
|
42
|
+
*/
|
|
43
|
+
add(amountMs: number): void;
|
|
44
|
+
/**
|
|
45
|
+
* Clear the timeout.
|
|
46
|
+
*/
|
|
47
|
+
clear(): void;
|
|
48
|
+
/**
|
|
49
|
+
* Start the timeout.
|
|
50
|
+
*
|
|
51
|
+
* @private
|
|
52
|
+
*/
|
|
53
|
+
private start;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
declare class Interval {
|
|
57
|
+
private timer;
|
|
58
|
+
private readonly run;
|
|
59
|
+
private duration;
|
|
60
|
+
private options;
|
|
61
|
+
constructor(duration: number, options: IntervalDescriptorOptions);
|
|
62
|
+
/**
|
|
63
|
+
* Start the interval.
|
|
64
|
+
*/
|
|
65
|
+
start(): Promise<void>;
|
|
66
|
+
/**
|
|
67
|
+
* Add time to the interval.
|
|
68
|
+
*
|
|
69
|
+
* @param amountMs
|
|
70
|
+
*/
|
|
71
|
+
add(amountMs: number): Promise<void>;
|
|
72
|
+
/**
|
|
73
|
+
* Clear the interval.
|
|
74
|
+
*/
|
|
75
|
+
clear(): void;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
declare class DateTimeProvider {
|
|
79
|
+
protected log: _alepha_core.Logger;
|
|
80
|
+
protected ref: DateTime$1 | null;
|
|
81
|
+
protected readonly timeouts: Timeout[];
|
|
82
|
+
protected readonly intervals: Interval[];
|
|
83
|
+
protected readonly start: _alepha_core.HookDescriptor<"start">;
|
|
84
|
+
protected readonly stop: _alepha_core.HookDescriptor<"stop">;
|
|
85
|
+
/**
|
|
86
|
+
* Create a new DateTime instance.
|
|
87
|
+
*
|
|
88
|
+
* @param date
|
|
89
|
+
*/
|
|
90
|
+
of(date: Date | string | DateTime$1): DateTime$1<true>;
|
|
91
|
+
/**
|
|
92
|
+
* Get the current date.
|
|
93
|
+
*/
|
|
94
|
+
now(): DateTime$1<true>;
|
|
95
|
+
/**
|
|
96
|
+
* Get the current date as a string.
|
|
97
|
+
*
|
|
98
|
+
* @param date
|
|
99
|
+
*/
|
|
100
|
+
toISOString(date?: Date | string | DateTime$1): string;
|
|
101
|
+
/**
|
|
102
|
+
* Get the current date as a string.
|
|
103
|
+
*/
|
|
104
|
+
nowISOString(): string;
|
|
105
|
+
/**
|
|
106
|
+
* Get the current date as a string.
|
|
107
|
+
*
|
|
108
|
+
* @protected
|
|
109
|
+
*/
|
|
110
|
+
protected getCurrentDate(): DateTime$1<true>;
|
|
111
|
+
/**
|
|
112
|
+
* Create a new Duration instance.
|
|
113
|
+
*
|
|
114
|
+
* @param duration
|
|
115
|
+
*/
|
|
116
|
+
duration(duration: DurationLike$1 | string): Duration$1;
|
|
117
|
+
/**
|
|
118
|
+
* Add time to the current date.
|
|
119
|
+
*/
|
|
120
|
+
add(duration: DurationLikeObject): Promise<void>;
|
|
121
|
+
/**
|
|
122
|
+
* Return a promise that resolves after a next tick.
|
|
123
|
+
* It uses `setTimeout` with 0ms delay.
|
|
124
|
+
*/
|
|
125
|
+
tick(): Promise<void>;
|
|
126
|
+
/**
|
|
127
|
+
* Stop the time.
|
|
128
|
+
*/
|
|
129
|
+
pause(): DateTime$1<boolean>;
|
|
130
|
+
/**
|
|
131
|
+
* Reset the reference date.
|
|
132
|
+
*/
|
|
133
|
+
reset(): void;
|
|
134
|
+
/**
|
|
135
|
+
* Wait for a certain duration.
|
|
136
|
+
*
|
|
137
|
+
* @param duration
|
|
138
|
+
* @param signal
|
|
139
|
+
*/
|
|
140
|
+
wait(duration: DurationLike$1, signal?: AbortSignal): Promise<void>;
|
|
141
|
+
/**
|
|
142
|
+
* Run a callback after a certain duration.
|
|
143
|
+
*
|
|
144
|
+
* @param callback
|
|
145
|
+
* @param duration
|
|
146
|
+
*/
|
|
147
|
+
timeout(callback: () => void, duration: DurationLike$1): Timeout;
|
|
148
|
+
/**
|
|
149
|
+
* Create an interval.
|
|
150
|
+
*
|
|
151
|
+
* @param args
|
|
152
|
+
*/
|
|
153
|
+
interval(args: IntervalDescriptorOptions): Interval;
|
|
154
|
+
/**
|
|
155
|
+
* Run a function with a deadline.
|
|
156
|
+
*
|
|
157
|
+
* @param fn
|
|
158
|
+
* @param duration
|
|
159
|
+
*/
|
|
160
|
+
deadline<T>(fn: (signal: AbortSignal) => Promise<T>, duration: DurationLike$1): Promise<T>;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
type DurationLike = DurationLike$1;
|
|
164
|
+
type DateTime = DateTime$1;
|
|
165
|
+
type Duration = Duration$1;
|
|
166
|
+
|
|
167
|
+
export { $interval, type DateTime, DateTimeProvider, type Duration, type DurationLike, Interval, type IntervalDescriptorOptions, Timeout };
|
package/lock.d.ts
CHANGED
|
@@ -1 +1,280 @@
|
|
|
1
|
-
|
|
1
|
+
import * as _alepha_core from '@alepha/core';
|
|
2
|
+
import { AsyncFn, KIND, OPTIONS, Static, Alepha } from '@alepha/core';
|
|
3
|
+
import { DurationLike, DateTimeProvider, DateTime, Timeout } from '@alepha/datetime';
|
|
4
|
+
import * as _alepha_topic from '@alepha/topic';
|
|
5
|
+
import { TopicProvider } from '@alepha/topic';
|
|
6
|
+
import { RedisProvider, RedisClient } from '@alepha/redis';
|
|
7
|
+
|
|
8
|
+
/** Symbol key applied to readonly types */
|
|
9
|
+
declare const ReadonlyKind: unique symbol;
|
|
10
|
+
/** Symbol key applied to optional types */
|
|
11
|
+
declare const OptionalKind: unique symbol;
|
|
12
|
+
/** Symbol key applied to types */
|
|
13
|
+
declare const Hint: unique symbol;
|
|
14
|
+
/** Symbol key applied to types */
|
|
15
|
+
declare const Kind: unique symbol;
|
|
16
|
+
|
|
17
|
+
interface TUnsafe<T> extends TSchema {
|
|
18
|
+
[Kind]: string;
|
|
19
|
+
static: T;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
type StringFormatOption = 'date-time' | 'time' | 'date' | 'email' | 'idn-email' | 'hostname' | 'idn-hostname' | 'ipv4' | 'ipv6' | 'uri' | 'uri-reference' | 'iri' | 'uuid' | 'iri-reference' | 'uri-template' | 'json-pointer' | 'relative-json-pointer' | 'regex' | ({} & string);
|
|
23
|
+
type StringContentEncodingOption = '7bit' | '8bit' | 'binary' | 'quoted-printable' | 'base64' | ({} & string);
|
|
24
|
+
interface StringOptions extends SchemaOptions {
|
|
25
|
+
/** The maximum string length */
|
|
26
|
+
maxLength?: number;
|
|
27
|
+
/** The minimum string length */
|
|
28
|
+
minLength?: number;
|
|
29
|
+
/** A regular expression pattern this string should match */
|
|
30
|
+
pattern?: string;
|
|
31
|
+
/** A format this string should match */
|
|
32
|
+
format?: StringFormatOption;
|
|
33
|
+
/** The content encoding for this string */
|
|
34
|
+
contentEncoding?: StringContentEncodingOption;
|
|
35
|
+
/** The content media type for this string */
|
|
36
|
+
contentMediaType?: string;
|
|
37
|
+
}
|
|
38
|
+
interface TString extends TSchema, StringOptions {
|
|
39
|
+
[Kind]: 'String';
|
|
40
|
+
static: string;
|
|
41
|
+
type: 'string';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
interface SchemaOptions {
|
|
45
|
+
$schema?: string;
|
|
46
|
+
/** Id for this schema */
|
|
47
|
+
$id?: string;
|
|
48
|
+
/** Title of this schema */
|
|
49
|
+
title?: string;
|
|
50
|
+
/** Description of this schema */
|
|
51
|
+
description?: string;
|
|
52
|
+
/** Default value for this schema */
|
|
53
|
+
default?: any;
|
|
54
|
+
/** Example values matching this schema */
|
|
55
|
+
examples?: any;
|
|
56
|
+
/** Optional annotation for readOnly */
|
|
57
|
+
readOnly?: boolean;
|
|
58
|
+
/** Optional annotation for writeOnly */
|
|
59
|
+
writeOnly?: boolean;
|
|
60
|
+
[prop: string]: any;
|
|
61
|
+
}
|
|
62
|
+
interface TKind {
|
|
63
|
+
[Kind]: string;
|
|
64
|
+
}
|
|
65
|
+
interface TSchema extends TKind, SchemaOptions {
|
|
66
|
+
[ReadonlyKind]?: string;
|
|
67
|
+
[OptionalKind]?: string;
|
|
68
|
+
[Hint]?: string;
|
|
69
|
+
params: unknown[];
|
|
70
|
+
static: unknown;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
declare const KEY = "LOCK";
|
|
74
|
+
interface LockDescriptorOptions<TFunc extends AsyncFn> {
|
|
75
|
+
/**
|
|
76
|
+
* Function executed when the lock is acquired.
|
|
77
|
+
*/
|
|
78
|
+
handler: TFunc;
|
|
79
|
+
/**
|
|
80
|
+
* If true, the handler will wait for the lock to be released.
|
|
81
|
+
*
|
|
82
|
+
* @default false
|
|
83
|
+
*/
|
|
84
|
+
wait?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
*/
|
|
88
|
+
key?: string | ((...args: Parameters<TFunc>) => string);
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
*/
|
|
92
|
+
maxDuration?: DurationLike;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
gracePeriod?: DurationLike | ((...args: Parameters<TFunc>) => DurationLike | undefined);
|
|
97
|
+
}
|
|
98
|
+
interface LockDescriptor<TFunc extends AsyncFn> {
|
|
99
|
+
[KIND]: typeof KEY;
|
|
100
|
+
[OPTIONS]: LockDescriptorOptions<TFunc>;
|
|
101
|
+
/**
|
|
102
|
+
* Apply the lock.
|
|
103
|
+
*
|
|
104
|
+
* @param args
|
|
105
|
+
*/
|
|
106
|
+
(...args: Parameters<TFunc>): Promise<void>;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Lock descriptor
|
|
110
|
+
*
|
|
111
|
+
* Make sure that only one instance of the handler is running at a time.
|
|
112
|
+
*
|
|
113
|
+
* When connected to a remote store, the lock is shared across all processes.
|
|
114
|
+
*
|
|
115
|
+
* @param options
|
|
116
|
+
*/
|
|
117
|
+
declare const $lock: {
|
|
118
|
+
<TFunc extends AsyncFn>(options: LockDescriptorOptions<TFunc>): LockDescriptor<TFunc>;
|
|
119
|
+
[KIND]: string;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Store Provider Interface
|
|
124
|
+
*/
|
|
125
|
+
declare class LockProvider {
|
|
126
|
+
/**
|
|
127
|
+
* Set the string value of a key.
|
|
128
|
+
*
|
|
129
|
+
* @param key The key of the value to set.
|
|
130
|
+
* @param value The value to set.
|
|
131
|
+
* @param nx If set to true, the key will only be set if it does not already exist.
|
|
132
|
+
* @param px Set the specified expire time, in milliseconds.
|
|
133
|
+
*/
|
|
134
|
+
set(key: string, value: string, nx?: boolean, px?: number): Promise<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Remove the specified keys.
|
|
137
|
+
*
|
|
138
|
+
* @param keys The keys to delete.
|
|
139
|
+
*/
|
|
140
|
+
del(...keys: string[]): Promise<void>;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
declare class LockTopicProvider extends TopicProvider {
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
declare const envSchema$1: _alepha_core.TObject<{
|
|
147
|
+
LOCK_PREFIX_KEY: TString;
|
|
148
|
+
}>;
|
|
149
|
+
declare module "alepha" {
|
|
150
|
+
interface Env extends Partial<Static<typeof envSchema$1>> {
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
declare class LockDescriptorProvider {
|
|
154
|
+
protected readonly alepha: Alepha;
|
|
155
|
+
protected readonly dateTimeProvider: DateTimeProvider;
|
|
156
|
+
protected readonly lockProvider: LockProvider;
|
|
157
|
+
protected readonly lockTopicProvider: LockTopicProvider;
|
|
158
|
+
protected readonly log: _alepha_core.Logger;
|
|
159
|
+
protected readonly env: {
|
|
160
|
+
LOCK_PREFIX_KEY: string;
|
|
161
|
+
};
|
|
162
|
+
protected readonly id: string;
|
|
163
|
+
protected readonly locks: Map<string, LockDescriptorValue>;
|
|
164
|
+
protected readonly configure: _alepha_core.HookDescriptor<"configure">;
|
|
165
|
+
protected readonly topicLockEnd: _alepha_topic.TopicDescriptor<{
|
|
166
|
+
payload: _alepha_core.TObject<{
|
|
167
|
+
name: TString;
|
|
168
|
+
}>;
|
|
169
|
+
}>;
|
|
170
|
+
protected prefixKey(key: string): string;
|
|
171
|
+
/**
|
|
172
|
+
* Run the lock handler.
|
|
173
|
+
*
|
|
174
|
+
* @param value
|
|
175
|
+
* @param args
|
|
176
|
+
*/
|
|
177
|
+
protected run(value: LockDescriptorValue, ...args: any[]): Promise<void>;
|
|
178
|
+
protected wait(key: string, maxDuration: DurationLike): Promise<void>;
|
|
179
|
+
/**
|
|
180
|
+
* Lock the key.
|
|
181
|
+
*
|
|
182
|
+
* @param key - The key to lock.
|
|
183
|
+
* @param item - The lock descriptor value.
|
|
184
|
+
*/
|
|
185
|
+
protected lock(key: string, item: LockDescriptorValue): Promise<LockObject>;
|
|
186
|
+
protected parse(value: string): LockObject;
|
|
187
|
+
}
|
|
188
|
+
interface LockDescriptorValue {
|
|
189
|
+
options: LockDescriptorOptions<AsyncFn>;
|
|
190
|
+
key: (...args: any[]) => string;
|
|
191
|
+
maxDuration: DurationLike;
|
|
192
|
+
}
|
|
193
|
+
interface LockObject {
|
|
194
|
+
id: string;
|
|
195
|
+
createdAt: DateTime;
|
|
196
|
+
endedAt?: DateTime;
|
|
197
|
+
response?: string;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* A simple in-memory store provider.
|
|
202
|
+
*/
|
|
203
|
+
declare class MemoryLockProvider implements LockProvider {
|
|
204
|
+
protected readonly dateTimeProvider: DateTimeProvider;
|
|
205
|
+
protected readonly log: _alepha_core.Logger;
|
|
206
|
+
/**
|
|
207
|
+
* The in-memory store.
|
|
208
|
+
*/
|
|
209
|
+
protected store: Record<string, string>;
|
|
210
|
+
/**
|
|
211
|
+
* Timeouts used to expire keys.
|
|
212
|
+
*/
|
|
213
|
+
protected storeTimeout: Record<string, Timeout>;
|
|
214
|
+
/**
|
|
215
|
+
* Set the string value of a key.
|
|
216
|
+
*
|
|
217
|
+
* @param key The key of the value to set.
|
|
218
|
+
* @param value The value to set.
|
|
219
|
+
* @param nx If set to true, the key will only be set if it does not already exist.
|
|
220
|
+
* @param px Set the specified expire time, in milliseconds.
|
|
221
|
+
*/
|
|
222
|
+
set(key: string, value: string, nx?: boolean, px?: number): Promise<string>;
|
|
223
|
+
/**
|
|
224
|
+
* Remove the specified keys.
|
|
225
|
+
*
|
|
226
|
+
* @param keys The keys to delete.
|
|
227
|
+
*/
|
|
228
|
+
del(...keys: string[]): Promise<void>;
|
|
229
|
+
/**
|
|
230
|
+
* Set a timeout for a key.
|
|
231
|
+
*
|
|
232
|
+
* @param key The key to set the timeout for.
|
|
233
|
+
* @param ms The number of milliseconds to wait before deleting the key.
|
|
234
|
+
*/
|
|
235
|
+
private ttl;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* A store provider that uses Redis.
|
|
240
|
+
*/
|
|
241
|
+
declare class RedisLockProvider extends LockProvider {
|
|
242
|
+
protected readonly log: _alepha_core.Logger;
|
|
243
|
+
protected readonly redisProvider: RedisProvider;
|
|
244
|
+
/**
|
|
245
|
+
* Get the Redis publisher.
|
|
246
|
+
*/
|
|
247
|
+
protected get publisher(): RedisClient;
|
|
248
|
+
/**
|
|
249
|
+
* Set the string value of a key.
|
|
250
|
+
*
|
|
251
|
+
* @param key The key of the value to set.
|
|
252
|
+
* @param value The value to set.
|
|
253
|
+
* @param nx If set to true, the key will only be set if it does not already exist.
|
|
254
|
+
* @param px Set the specified expire time, in milliseconds.
|
|
255
|
+
*/
|
|
256
|
+
set(key: string, value: string, nx?: boolean, px?: number): Promise<string>;
|
|
257
|
+
/**
|
|
258
|
+
* Remove the specified keys.
|
|
259
|
+
*
|
|
260
|
+
* @param keys The keys to delete.
|
|
261
|
+
*/
|
|
262
|
+
del(...keys: string[]): Promise<void>;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare const envSchema: _alepha_core.TObject<{
|
|
266
|
+
LOCK_PROVIDER: TUnsafe<"memory" | "redis">;
|
|
267
|
+
}>;
|
|
268
|
+
declare module "alepha/core" {
|
|
269
|
+
interface Env extends Partial<Static<typeof envSchema>> {
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
declare class LockModule {
|
|
273
|
+
protected readonly alepha: Alepha;
|
|
274
|
+
protected readonly env: {
|
|
275
|
+
LOCK_PROVIDER: "memory" | "redis";
|
|
276
|
+
};
|
|
277
|
+
constructor();
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
export { $lock, type LockDescriptor, type LockDescriptorOptions, LockDescriptorProvider, type LockDescriptorValue, LockModule, type LockObject, LockProvider, LockTopicProvider, MemoryLockProvider, RedisLockProvider };
|
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alepha",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./core.js",
|
|
7
7
|
"types": "./core.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@alepha/cache": "0.6.
|
|
10
|
-
"@alepha/core": "0.6.
|
|
11
|
-
"@alepha/datetime": "0.6.
|
|
12
|
-
"@alepha/lock": "0.6.
|
|
13
|
-
"@alepha/postgres": "0.6.
|
|
14
|
-
"@alepha/queue": "0.6.
|
|
15
|
-
"@alepha/react": "0.6.
|
|
16
|
-
"@alepha/react-auth": "0.6.
|
|
17
|
-
"@alepha/redis": "0.6.
|
|
18
|
-
"@alepha/scheduler": "0.6.
|
|
19
|
-
"@alepha/security": "0.6.
|
|
20
|
-
"@alepha/server": "0.6.
|
|
21
|
-
"@alepha/server-cookies": "0.6.
|
|
22
|
-
"@alepha/server-metrics": "0.6.
|
|
23
|
-
"@alepha/server-proxy": "0.6.
|
|
24
|
-
"@alepha/server-static": "0.6.
|
|
25
|
-
"@alepha/server-swagger": "0.6.
|
|
26
|
-
"@alepha/testing": "0.6.
|
|
27
|
-
"@alepha/topic": "0.6.
|
|
28
|
-
"@alepha/vite": "0.6.
|
|
9
|
+
"@alepha/cache": "0.6.8",
|
|
10
|
+
"@alepha/core": "0.6.8",
|
|
11
|
+
"@alepha/datetime": "0.6.8",
|
|
12
|
+
"@alepha/lock": "0.6.8",
|
|
13
|
+
"@alepha/postgres": "0.6.8",
|
|
14
|
+
"@alepha/queue": "0.6.8",
|
|
15
|
+
"@alepha/react": "0.6.8",
|
|
16
|
+
"@alepha/react-auth": "0.6.8",
|
|
17
|
+
"@alepha/redis": "0.6.8",
|
|
18
|
+
"@alepha/scheduler": "0.6.8",
|
|
19
|
+
"@alepha/security": "0.6.8",
|
|
20
|
+
"@alepha/server": "0.6.8",
|
|
21
|
+
"@alepha/server-cookies": "0.6.8",
|
|
22
|
+
"@alepha/server-metrics": "0.6.8",
|
|
23
|
+
"@alepha/server-proxy": "0.6.8",
|
|
24
|
+
"@alepha/server-static": "0.6.8",
|
|
25
|
+
"@alepha/server-swagger": "0.6.8",
|
|
26
|
+
"@alepha/testing": "0.6.8",
|
|
27
|
+
"@alepha/topic": "0.6.8",
|
|
28
|
+
"@alepha/vite": "0.6.8"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@types/react": "^19",
|