@devvit/public-api 0.10.19-next-2024-04-15-cf0c7ca02.0 → 0.10.19-next-2024-04-15-cfc60a63f.0

Sign up to get free protection for your applications and to get access to all the features.
package/meta.json CHANGED
@@ -12593,7 +12593,7 @@
12593
12593
  "format": "esm"
12594
12594
  },
12595
12595
  "src/types/redis.ts": {
12596
- "bytes": 19265,
12596
+ "bytes": 19257,
12597
12597
  "imports": [],
12598
12598
  "format": "esm"
12599
12599
  },
package/meta.min.json CHANGED
@@ -2460,7 +2460,7 @@
2460
2460
  "format": "esm"
2461
2461
  },
2462
2462
  "src/types/redis.ts": {
2463
- "bytes": 19265,
2463
+ "bytes": 19257,
2464
2464
  "imports": [],
2465
2465
  "format": "esm"
2466
2466
  },
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-cf0c7ca02.0",
3
+ "version": "0.10.19-next-2024-04-15-cfc60a63f.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-cf0c7ca02.0",
33
- "@devvit/runtimes": "0.10.19-next-2024-04-15-cf0c7ca02.0",
34
- "@devvit/shared-types": "0.10.19-next-2024-04-15-cf0c7ca02.0",
32
+ "@devvit/protos": "0.10.19-next-2024-04-15-cfc60a63f.0",
33
+ "@devvit/runtimes": "0.10.19-next-2024-04-15-cfc60a63f.0",
34
+ "@devvit/shared-types": "0.10.19-next-2024-04-15-cfc60a63f.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-cf0c7ca02.0",
44
+ "@devvit/tsconfig": "0.10.19-next-2024-04-15-cfc60a63f.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": "4fdeb8a0d68a4ef856591c6f53a2c7c868f584f7"
66
+ "gitHead": "706aab6e08e1670081696b4790a86e95704cdd19"
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 a map of fields and their values stored in the hash
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 list of fields and their values stored in the hash
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 a map of fields and their values stored in the hash
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 list of fields and their values stored in the hash
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 a map of fields and their values stored in the hash
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 list of fields and their values stored in the hash
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 a map of fields and their values stored in the hash
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 list of fields and their values stored in the hash
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
  /**