@devvit/public-api 0.10.19-next-2024-04-15-6594cbafe.0 → 0.10.19-next-2024-04-15-1544632a8.0
Sign up to get free protection for your applications and to get access to all the features.
- package/meta.json +1 -1
- package/meta.min.json +1 -1
- package/package.json +6 -6
- package/public-api.d.ts +4 -4
- package/types/redis.d.ts +4 -4
package/meta.json
CHANGED
@@ -12593,7 +12593,7 @@
|
|
12593
12593
|
"format": "esm"
|
12594
12594
|
},
|
12595
12595
|
"src/types/redis.ts": {
|
12596
|
-
"bytes":
|
12596
|
+
"bytes": 19257,
|
12597
12597
|
"imports": [],
|
12598
12598
|
"format": "esm"
|
12599
12599
|
},
|
package/meta.min.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@devvit/public-api",
|
3
|
-
"version": "0.10.19-next-2024-04-15-
|
3
|
+
"version": "0.10.19-next-2024-04-15-1544632a8.0",
|
4
4
|
"license": "BSD-3-Clause",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -29,9 +29,9 @@
|
|
29
29
|
},
|
30
30
|
"types": "./index.d.ts",
|
31
31
|
"dependencies": {
|
32
|
-
"@devvit/protos": "0.10.19-next-2024-04-15-
|
33
|
-
"@devvit/runtimes": "0.10.19-next-2024-04-15-
|
34
|
-
"@devvit/shared-types": "0.10.19-next-2024-04-15-
|
32
|
+
"@devvit/protos": "0.10.19-next-2024-04-15-1544632a8.0",
|
33
|
+
"@devvit/runtimes": "0.10.19-next-2024-04-15-1544632a8.0",
|
34
|
+
"@devvit/shared-types": "0.10.19-next-2024-04-15-1544632a8.0",
|
35
35
|
"base64-js": "1.5.1",
|
36
36
|
"clone-deep": "4.0.1",
|
37
37
|
"core-js": "3.27.2",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@ampproject/filesize": "4.3.0",
|
42
42
|
"@devvit/eslint-config": "0.10.18",
|
43
43
|
"@devvit/repo-tools": "0.10.18",
|
44
|
-
"@devvit/tsconfig": "0.10.19-next-2024-04-15-
|
44
|
+
"@devvit/tsconfig": "0.10.19-next-2024-04-15-1544632a8.0",
|
45
45
|
"@microsoft/api-extractor": "7.41.0",
|
46
46
|
"@reddit/faceplate-ui": "11.1.0",
|
47
47
|
"@types/clone-deep": "4.0.1",
|
@@ -63,5 +63,5 @@
|
|
63
63
|
}
|
64
64
|
},
|
65
65
|
"source": "./src/index.ts",
|
66
|
-
"gitHead": "
|
66
|
+
"gitHead": "b74200e25fd703ea56c7f87b0ada25897efd9c87"
|
67
67
|
}
|
package/public-api.d.ts
CHANGED
@@ -4231,10 +4231,10 @@ export declare type RedisClient = {
|
|
4231
4231
|
*/
|
4232
4232
|
hget(key: string, field: string): Promise<string | undefined>;
|
4233
4233
|
/**
|
4234
|
-
* Returns
|
4234
|
+
* Returns all fields and values of the hash stored at key
|
4235
4235
|
* https://redis.io/commands/hgetall
|
4236
4236
|
* @arg {} key
|
4237
|
-
* @returns a
|
4237
|
+
* @returns a map of fields and their values stored in the hash,
|
4238
4238
|
*/
|
4239
4239
|
hgetall(key: string): Promise<Record<string, string> | undefined>;
|
4240
4240
|
/**
|
@@ -5460,10 +5460,10 @@ export declare type TxClientLike = {
|
|
5460
5460
|
*/
|
5461
5461
|
hget(key: string, field: string): Promise<TxClientLike>;
|
5462
5462
|
/**
|
5463
|
-
* Returns
|
5463
|
+
* Returns all fields and values of the hash stored at key
|
5464
5464
|
* https://redis.io/commands/hgetall
|
5465
5465
|
* @arg {} key
|
5466
|
-
* @returns a
|
5466
|
+
* @returns a map of fields and their values stored in the hash,
|
5467
5467
|
*/
|
5468
5468
|
hgetall(key: string): Promise<TxClientLike>;
|
5469
5469
|
/**
|
package/types/redis.d.ts
CHANGED
@@ -223,10 +223,10 @@ export type TxClientLike = {
|
|
223
223
|
*/
|
224
224
|
hget(key: string, field: string): Promise<TxClientLike>;
|
225
225
|
/**
|
226
|
-
* Returns
|
226
|
+
* Returns all fields and values of the hash stored at key
|
227
227
|
* https://redis.io/commands/hgetall
|
228
228
|
* @arg {} key
|
229
|
-
* @returns a
|
229
|
+
* @returns a map of fields and their values stored in the hash,
|
230
230
|
*/
|
231
231
|
hgetall(key: string): Promise<TxClientLike>;
|
232
232
|
/**
|
@@ -481,10 +481,10 @@ export type RedisClient = {
|
|
481
481
|
*/
|
482
482
|
hget(key: string, field: string): Promise<string | undefined>;
|
483
483
|
/**
|
484
|
-
* Returns
|
484
|
+
* Returns all fields and values of the hash stored at key
|
485
485
|
* https://redis.io/commands/hgetall
|
486
486
|
* @arg {} key
|
487
|
-
* @returns a
|
487
|
+
* @returns a map of fields and their values stored in the hash,
|
488
488
|
*/
|
489
489
|
hgetall(key: string): Promise<Record<string, string> | undefined>;
|
490
490
|
/**
|