redis-smq-web-server 9.0.3-next.1 → 9.0.4-next.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [9.0.4-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.3...v9.0.4-next.0) (2025-11-11)
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore
|
|
9
|
+
|
|
10
|
+
- update READMEs after merging 'v9.0.3' into 'next' ([5bc9ff0](https://github.com/weyoss/redis-smq/commit/5bc9ff0c9b8d8743a7613fbd499124dab05b1433))
|
|
11
|
+
|
|
12
|
+
## [9.0.3](https://github.com/weyoss/redis-smq/compare/v9.0.3-next.1...v9.0.3) (2025-11-10)
|
|
13
|
+
|
|
14
|
+
### 🚀 Chore
|
|
15
|
+
|
|
16
|
+
- update READMEs after merging 'origin/next' into 'master' ([6a3d1ab](https://github.com/weyoss/redis-smq/commit/6a3d1ab48e5fc08b56e0a8ae12e70fc5ba9b55a7))
|
|
17
|
+
|
|
6
18
|
## [9.0.3-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.3-next.0...v9.0.3-next.1) (2025-11-10)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package redis-smq-web-server
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
export declare function getRedisClientInstance(): Promise<{
|
|
2
2
|
validateRedisServerSupportAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
3
|
+
getInfoAsync: () => Promise<string>;
|
|
4
|
+
updateServerVersionAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
5
|
+
loadBuiltInScriptFilesAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
6
|
+
loadScriptFilesAsync: (scriptMap: Record<string, string | string[]>) => Promise<Record<string, string>>;
|
|
7
|
+
loadScriptAsync: (script: string) => Promise<string>;
|
|
8
|
+
runScriptAsync: (scriptName: string, keys: (string | number)[], args: (string | number)[]) => Promise<unknown>;
|
|
9
|
+
evalshaAsync: (hash: string, args: string | number | (string | number)[]) => Promise<unknown>;
|
|
10
|
+
pingAsync: () => Promise<string>;
|
|
11
|
+
haltAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
12
|
+
shutdownAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
13
|
+
flushallAsync: () => Promise<string>;
|
|
14
|
+
publishAsync: (channel: string, message: string) => Promise<number>;
|
|
15
|
+
getAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
3
16
|
setAsync: ((key: string, value: string, options: {
|
|
4
17
|
expire?: {
|
|
5
18
|
mode: "EX" | "PX";
|
|
@@ -13,29 +26,18 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
13
26
|
};
|
|
14
27
|
exists?: "NX" | "XX";
|
|
15
28
|
}) => Promise<string>);
|
|
16
|
-
|
|
29
|
+
delAsync: (key: string | string[]) => Promise<number>;
|
|
30
|
+
mgetAsync: (keys: string[]) => Promise<(string | null)[]>;
|
|
31
|
+
incrAsync: (key: string) => Promise<number>;
|
|
32
|
+
decrAsync: (key: string) => Promise<number>;
|
|
33
|
+
incrbyAsync: (key: string, increment: number) => Promise<number>;
|
|
34
|
+
decrbyAsync: (key: string, decrement: number) => Promise<number>;
|
|
35
|
+
expireAsync: (key: string, seconds: number) => Promise<number>;
|
|
36
|
+
pexpireAsync: (key: string, milliseconds: number) => Promise<number>;
|
|
37
|
+
ttlAsync: (key: string) => Promise<number>;
|
|
38
|
+
pttlAsync: (key: string) => Promise<number>;
|
|
17
39
|
watchAsync: (args: string[]) => Promise<string>;
|
|
18
40
|
unwatchAsync: () => Promise<string>;
|
|
19
|
-
sismemberAsync: (key: string, member: string) => Promise<number>;
|
|
20
|
-
zcardAsync: (key: string) => Promise<number>;
|
|
21
|
-
zrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
22
|
-
zrevrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
23
|
-
zrangebyscoreAsync: (key: string, min: string | number, max: string | number, offset: number, count: number) => Promise<string[]>;
|
|
24
|
-
smembersAsync: (key: string) => Promise<string[]>;
|
|
25
|
-
sscanAsync: (key: string, cursor: string, options: {
|
|
26
|
-
MATCH?: string;
|
|
27
|
-
COUNT?: number;
|
|
28
|
-
}) => Promise<{
|
|
29
|
-
cursor: string;
|
|
30
|
-
items: string[];
|
|
31
|
-
}>;
|
|
32
|
-
sscanAllAsync: (key: string, options: {
|
|
33
|
-
MATCH?: string;
|
|
34
|
-
COUNT?: number;
|
|
35
|
-
}) => Promise<string[]>;
|
|
36
|
-
saddAsync: (key: string, member: string) => Promise<number>;
|
|
37
|
-
sremAsync: (key: string, member: string) => Promise<number>;
|
|
38
|
-
scardAsync: (key: string) => Promise<number>;
|
|
39
41
|
hgetallAsync: (key: string) => Promise<Record<string, string>>;
|
|
40
42
|
hscanAsync: (key: string, cursor: string, options: {
|
|
41
43
|
MATCH?: string;
|
|
@@ -51,11 +53,42 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
51
53
|
hgetAsync: ((key: string, field: string) => Promise<null>) | ((key: string, field: string) => Promise<string>);
|
|
52
54
|
hsetAsync: (key: string, field: string, value: string | number) => Promise<number>;
|
|
53
55
|
hdelAsync: (key: string, fields: string | string[]) => Promise<number>;
|
|
54
|
-
lrangeAsync: (key: string, start: number, stop: number) => Promise<string[]>;
|
|
55
56
|
hkeysAsync: (key: string) => Promise<string[]>;
|
|
56
57
|
hlenAsync: (key: string) => Promise<number>;
|
|
58
|
+
hmgetAsync: (source: string, keys: string[]) => Promise<(string | null)[]>;
|
|
57
59
|
brpoplpushAsync: ((source: string, destination: string, timeout: number) => Promise<null>) | ((source: string, destination: string, timeout: number) => Promise<string>);
|
|
58
60
|
rpoplpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
61
|
+
lpoprpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
62
|
+
lmoveAsync: ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<null>) | ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<string>);
|
|
63
|
+
lrangeAsync: (key: string, start: number, stop: number) => Promise<string[]>;
|
|
64
|
+
lremAsync: (key: string, count: number, element: string) => Promise<number>;
|
|
65
|
+
lpushAsync: (key: string, elements: string | string[]) => Promise<number>;
|
|
66
|
+
rpushAsync: (key: string, elements: string | string[]) => Promise<number>;
|
|
67
|
+
lpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
68
|
+
rpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
69
|
+
ltrimAsync: (key: string, start: number, stop: number) => Promise<string>;
|
|
70
|
+
llenAsync: (key: string) => Promise<number>;
|
|
71
|
+
sismemberAsync: (key: string, member: string) => Promise<number>;
|
|
72
|
+
smembersAsync: (key: string) => Promise<string[]>;
|
|
73
|
+
sscanAsync: (key: string, cursor: string, options: {
|
|
74
|
+
MATCH?: string;
|
|
75
|
+
COUNT?: number;
|
|
76
|
+
}) => Promise<{
|
|
77
|
+
cursor: string;
|
|
78
|
+
items: string[];
|
|
79
|
+
}>;
|
|
80
|
+
sscanAllAsync: (key: string, options: {
|
|
81
|
+
MATCH?: string;
|
|
82
|
+
COUNT?: number;
|
|
83
|
+
}) => Promise<string[]>;
|
|
84
|
+
saddAsync: (key: string, member: string) => Promise<number>;
|
|
85
|
+
sremAsync: (key: string, member: string) => Promise<number>;
|
|
86
|
+
scardAsync: (key: string) => Promise<number>;
|
|
87
|
+
zaddAsync: ((key: string, score: number, member: string) => Promise<string>) | ((key: string, score: number, member: string) => Promise<number>);
|
|
88
|
+
zcardAsync: (key: string) => Promise<number>;
|
|
89
|
+
zrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
90
|
+
zrevrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
91
|
+
zrangebyscoreAsync: (key: string, min: string | number, max: string | number, offset: number, count: number) => Promise<string[]>;
|
|
59
92
|
zpoprpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
60
93
|
zscanAsync: (key: string, cursor: string, options: {
|
|
61
94
|
MATCH?: string;
|
|
@@ -64,28 +97,11 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
64
97
|
cursor: string;
|
|
65
98
|
items: string[];
|
|
66
99
|
}>;
|
|
67
|
-
|
|
68
|
-
zrangebyscorewithscoresAsync: (source: string, min: number, max: number) => Promise<Record<string, string>>;
|
|
100
|
+
zrangebyscorewithscoresAsync: (source: string, min: string | number, max: string | number) => Promise<Record<string, string>>;
|
|
69
101
|
zremAsync: (source: string, id: string) => Promise<number>;
|
|
70
|
-
rpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
71
|
-
lremAsync: (key: string, count: number, element: string) => Promise<number>;
|
|
72
|
-
publishAsync: (channel: string, message: string) => Promise<number>;
|
|
73
|
-
flushallAsync: () => Promise<string>;
|
|
74
|
-
evalshaAsync: (hash: string, args: string | number | (string | number)[]) => Promise<unknown>;
|
|
75
|
-
getAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
76
|
-
delAsync: (key: string | string[]) => Promise<number>;
|
|
77
|
-
llenAsync: (key: string) => Promise<number>;
|
|
78
|
-
lmoveAsync: ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<null>) | ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<string>);
|
|
79
102
|
zremrangebyscoreAsync: (source: string, min: string | number, max: string | number) => Promise<number>;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
shutdownAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
83
|
-
getInfoAsync: () => Promise<string>;
|
|
84
|
-
updateServerVersionAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
85
|
-
loadBuiltInScriptFilesAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
86
|
-
loadScriptFilesAsync: (scriptMap: Record<string, string | string[]>) => Promise<Record<string, string>>;
|
|
87
|
-
loadScriptAsync: (script: string) => Promise<string>;
|
|
88
|
-
runScriptAsync: (scriptName: string, keys: (string | number)[], args: (string | number)[]) => Promise<unknown>;
|
|
103
|
+
zcountAsync: (key: string, min: string | number, max: string | number) => Promise<number>;
|
|
104
|
+
zscoreAsync: ((key: string, member: string) => Promise<null>) | ((key: string, member: string) => Promise<string>);
|
|
89
105
|
onAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
90
106
|
onceAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
91
107
|
removeListenerAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redis-client.d.ts","sourceRoot":"","sources":["../../../../tests/common/redis-client.ts"],"names":[],"mappings":"AAmBA,wBAAsB,sBAAsB
|
|
1
|
+
{"version":3,"file":"redis-client.d.ts","sourceRoot":"","sources":["../../../../tests/common/redis-client.ts"],"names":[],"mappings":"AAmBA,wBAAsB,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAO3C;AAED,wBAAsB,mBAAmB,kBAIxC"}
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
export declare function getRedisClientInstance(): Promise<{
|
|
2
2
|
validateRedisServerSupportAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
3
|
+
getInfoAsync: () => Promise<string>;
|
|
4
|
+
updateServerVersionAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
5
|
+
loadBuiltInScriptFilesAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
6
|
+
loadScriptFilesAsync: (scriptMap: Record<string, string | string[]>) => Promise<Record<string, string>>;
|
|
7
|
+
loadScriptAsync: (script: string) => Promise<string>;
|
|
8
|
+
runScriptAsync: (scriptName: string, keys: (string | number)[], args: (string | number)[]) => Promise<unknown>;
|
|
9
|
+
evalshaAsync: (hash: string, args: string | number | (string | number)[]) => Promise<unknown>;
|
|
10
|
+
pingAsync: () => Promise<string>;
|
|
11
|
+
haltAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
12
|
+
shutdownAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
13
|
+
flushallAsync: () => Promise<string>;
|
|
14
|
+
publishAsync: (channel: string, message: string) => Promise<number>;
|
|
15
|
+
getAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
3
16
|
setAsync: ((key: string, value: string, options: {
|
|
4
17
|
expire?: {
|
|
5
18
|
mode: "EX" | "PX";
|
|
@@ -13,29 +26,18 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
13
26
|
};
|
|
14
27
|
exists?: "NX" | "XX";
|
|
15
28
|
}) => Promise<string>);
|
|
16
|
-
|
|
29
|
+
delAsync: (key: string | string[]) => Promise<number>;
|
|
30
|
+
mgetAsync: (keys: string[]) => Promise<(string | null)[]>;
|
|
31
|
+
incrAsync: (key: string) => Promise<number>;
|
|
32
|
+
decrAsync: (key: string) => Promise<number>;
|
|
33
|
+
incrbyAsync: (key: string, increment: number) => Promise<number>;
|
|
34
|
+
decrbyAsync: (key: string, decrement: number) => Promise<number>;
|
|
35
|
+
expireAsync: (key: string, seconds: number) => Promise<number>;
|
|
36
|
+
pexpireAsync: (key: string, milliseconds: number) => Promise<number>;
|
|
37
|
+
ttlAsync: (key: string) => Promise<number>;
|
|
38
|
+
pttlAsync: (key: string) => Promise<number>;
|
|
17
39
|
watchAsync: (args: string[]) => Promise<string>;
|
|
18
40
|
unwatchAsync: () => Promise<string>;
|
|
19
|
-
sismemberAsync: (key: string, member: string) => Promise<number>;
|
|
20
|
-
zcardAsync: (key: string) => Promise<number>;
|
|
21
|
-
zrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
22
|
-
zrevrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
23
|
-
zrangebyscoreAsync: (key: string, min: string | number, max: string | number, offset: number, count: number) => Promise<string[]>;
|
|
24
|
-
smembersAsync: (key: string) => Promise<string[]>;
|
|
25
|
-
sscanAsync: (key: string, cursor: string, options: {
|
|
26
|
-
MATCH?: string;
|
|
27
|
-
COUNT?: number;
|
|
28
|
-
}) => Promise<{
|
|
29
|
-
cursor: string;
|
|
30
|
-
items: string[];
|
|
31
|
-
}>;
|
|
32
|
-
sscanAllAsync: (key: string, options: {
|
|
33
|
-
MATCH?: string;
|
|
34
|
-
COUNT?: number;
|
|
35
|
-
}) => Promise<string[]>;
|
|
36
|
-
saddAsync: (key: string, member: string) => Promise<number>;
|
|
37
|
-
sremAsync: (key: string, member: string) => Promise<number>;
|
|
38
|
-
scardAsync: (key: string) => Promise<number>;
|
|
39
41
|
hgetallAsync: (key: string) => Promise<Record<string, string>>;
|
|
40
42
|
hscanAsync: (key: string, cursor: string, options: {
|
|
41
43
|
MATCH?: string;
|
|
@@ -51,11 +53,42 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
51
53
|
hgetAsync: ((key: string, field: string) => Promise<null>) | ((key: string, field: string) => Promise<string>);
|
|
52
54
|
hsetAsync: (key: string, field: string, value: string | number) => Promise<number>;
|
|
53
55
|
hdelAsync: (key: string, fields: string | string[]) => Promise<number>;
|
|
54
|
-
lrangeAsync: (key: string, start: number, stop: number) => Promise<string[]>;
|
|
55
56
|
hkeysAsync: (key: string) => Promise<string[]>;
|
|
56
57
|
hlenAsync: (key: string) => Promise<number>;
|
|
58
|
+
hmgetAsync: (source: string, keys: string[]) => Promise<(string | null)[]>;
|
|
57
59
|
brpoplpushAsync: ((source: string, destination: string, timeout: number) => Promise<null>) | ((source: string, destination: string, timeout: number) => Promise<string>);
|
|
58
60
|
rpoplpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
61
|
+
lpoprpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
62
|
+
lmoveAsync: ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<null>) | ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<string>);
|
|
63
|
+
lrangeAsync: (key: string, start: number, stop: number) => Promise<string[]>;
|
|
64
|
+
lremAsync: (key: string, count: number, element: string) => Promise<number>;
|
|
65
|
+
lpushAsync: (key: string, elements: string | string[]) => Promise<number>;
|
|
66
|
+
rpushAsync: (key: string, elements: string | string[]) => Promise<number>;
|
|
67
|
+
lpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
68
|
+
rpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
69
|
+
ltrimAsync: (key: string, start: number, stop: number) => Promise<string>;
|
|
70
|
+
llenAsync: (key: string) => Promise<number>;
|
|
71
|
+
sismemberAsync: (key: string, member: string) => Promise<number>;
|
|
72
|
+
smembersAsync: (key: string) => Promise<string[]>;
|
|
73
|
+
sscanAsync: (key: string, cursor: string, options: {
|
|
74
|
+
MATCH?: string;
|
|
75
|
+
COUNT?: number;
|
|
76
|
+
}) => Promise<{
|
|
77
|
+
cursor: string;
|
|
78
|
+
items: string[];
|
|
79
|
+
}>;
|
|
80
|
+
sscanAllAsync: (key: string, options: {
|
|
81
|
+
MATCH?: string;
|
|
82
|
+
COUNT?: number;
|
|
83
|
+
}) => Promise<string[]>;
|
|
84
|
+
saddAsync: (key: string, member: string) => Promise<number>;
|
|
85
|
+
sremAsync: (key: string, member: string) => Promise<number>;
|
|
86
|
+
scardAsync: (key: string) => Promise<number>;
|
|
87
|
+
zaddAsync: ((key: string, score: number, member: string) => Promise<string>) | ((key: string, score: number, member: string) => Promise<number>);
|
|
88
|
+
zcardAsync: (key: string) => Promise<number>;
|
|
89
|
+
zrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
90
|
+
zrevrangeAsync: (key: string, min: number, max: number) => Promise<string[]>;
|
|
91
|
+
zrangebyscoreAsync: (key: string, min: string | number, max: string | number, offset: number, count: number) => Promise<string[]>;
|
|
59
92
|
zpoprpushAsync: ((source: string, destination: string) => Promise<null>) | ((source: string, destination: string) => Promise<string>);
|
|
60
93
|
zscanAsync: (key: string, cursor: string, options: {
|
|
61
94
|
MATCH?: string;
|
|
@@ -64,28 +97,11 @@ export declare function getRedisClientInstance(): Promise<{
|
|
|
64
97
|
cursor: string;
|
|
65
98
|
items: string[];
|
|
66
99
|
}>;
|
|
67
|
-
|
|
68
|
-
zrangebyscorewithscoresAsync: (source: string, min: number, max: number) => Promise<Record<string, string>>;
|
|
100
|
+
zrangebyscorewithscoresAsync: (source: string, min: string | number, max: string | number) => Promise<Record<string, string>>;
|
|
69
101
|
zremAsync: (source: string, id: string) => Promise<number>;
|
|
70
|
-
rpopAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
71
|
-
lremAsync: (key: string, count: number, element: string) => Promise<number>;
|
|
72
|
-
publishAsync: (channel: string, message: string) => Promise<number>;
|
|
73
|
-
flushallAsync: () => Promise<string>;
|
|
74
|
-
evalshaAsync: (hash: string, args: string | number | (string | number)[]) => Promise<unknown>;
|
|
75
|
-
getAsync: ((key: string) => Promise<null>) | ((key: string) => Promise<string>);
|
|
76
|
-
delAsync: (key: string | string[]) => Promise<number>;
|
|
77
|
-
llenAsync: (key: string) => Promise<number>;
|
|
78
|
-
lmoveAsync: ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<null>) | ((source: string, destination: string, from: "LEFT" | "RIGHT", to: "LEFT" | "RIGHT") => Promise<string>);
|
|
79
102
|
zremrangebyscoreAsync: (source: string, min: string | number, max: string | number) => Promise<number>;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
shutdownAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
83
|
-
getInfoAsync: () => Promise<string>;
|
|
84
|
-
updateServerVersionAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
85
|
-
loadBuiltInScriptFilesAsync: (() => Promise<undefined>) | (() => Promise<void>);
|
|
86
|
-
loadScriptFilesAsync: (scriptMap: Record<string, string | string[]>) => Promise<Record<string, string>>;
|
|
87
|
-
loadScriptAsync: (script: string) => Promise<string>;
|
|
88
|
-
runScriptAsync: (scriptName: string, keys: (string | number)[], args: (string | number)[]) => Promise<unknown>;
|
|
103
|
+
zcountAsync: (key: string, min: string | number, max: string | number) => Promise<number>;
|
|
104
|
+
zscoreAsync: ((key: string, member: string) => Promise<null>) | ((key: string, member: string) => Promise<string>);
|
|
89
105
|
onAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
90
106
|
onceAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
91
107
|
removeListenerAsync: ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<undefined>) | ((event: keyof import("redis-smq-common").TRedisClientEvent) => Promise<string>);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redis-client.d.ts","sourceRoot":"","sources":["../../../../tests/common/redis-client.ts"],"names":[],"mappings":"AAmBA,wBAAsB,sBAAsB
|
|
1
|
+
{"version":3,"file":"redis-client.d.ts","sourceRoot":"","sources":["../../../../tests/common/redis-client.ts"],"names":[],"mappings":"AAmBA,wBAAsB,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAO3C;AAED,wBAAsB,mBAAmB,kBAIxC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-web-server",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.4-next.0",
|
|
4
4
|
"description": "Web server for RedisSMQ Web UI: serves the SPA and hosts or proxies the RedisSMQ REST API.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@redis/client": "^5",
|
|
47
47
|
"ioredis": "^5",
|
|
48
|
-
"redis-smq": "^9.0.
|
|
49
|
-
"redis-smq-
|
|
50
|
-
"redis-smq-
|
|
51
|
-
"redis-smq
|
|
48
|
+
"redis-smq-common": "^9.0.4-next.0",
|
|
49
|
+
"redis-smq-web-ui": "^9.0.4-next.0",
|
|
50
|
+
"redis-smq-rest-api": "^9.0.4-next.0",
|
|
51
|
+
"redis-smq": "^9.0.4-next.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependenciesMeta": {
|
|
54
54
|
"@redis/client": {
|