@fedify/redis 1.8.1-dev.1238 → 1.8.1-dev.1247

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/dist/codec.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Temporal } from "@js-temporal/polyfill";
2
2
  import { Buffer } from "node:buffer";
3
3
 
4
- //#region src/codec.d.ts
4
+ //#region codec.d.ts
5
5
  /**
6
6
  * Encode and decodes JavaScript objects to and from binary data.
7
7
  */
package/dist/codec.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  import { Buffer } from "node:buffer";
5
5
 
6
- //#region src/codec.ts
6
+ //#region codec.ts
7
7
  /**
8
8
  * An error that occurs when encoding or decoding data.
9
9
  */
package/dist/kv.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Codec } from "./codec.js";
3
3
  import { KvKey, KvStore, KvStoreSetOptions } from "@fedify/fedify";
4
4
  import { Redis, RedisKey } from "ioredis";
5
5
 
6
- //#region src/kv.d.ts
6
+ //#region kv.d.ts
7
7
  /**
8
8
  * Options for {@link RedisKvStore} class.
9
9
  */
package/dist/kv.js CHANGED
@@ -4,7 +4,7 @@
4
4
  import { JsonCodec } from "./codec.js";
5
5
  import { Buffer } from "node:buffer";
6
6
 
7
- //#region src/kv.ts
7
+ //#region kv.ts
8
8
  /**
9
9
  * A key-value store that uses Redis as the underlying storage.
10
10
  *
package/dist/mq.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Codec } from "./codec.js";
3
3
  import { MessageQueue, MessageQueueEnqueueOptions, MessageQueueListenOptions } from "@fedify/fedify";
4
4
  import { Redis, RedisKey } from "ioredis";
5
5
 
6
- //#region src/mq.d.ts
6
+ //#region mq.d.ts
7
7
  /**
8
8
  * Options for {@link RedisMessageQueue} class.
9
9
  */
package/dist/mq.js CHANGED
@@ -4,7 +4,7 @@
4
4
  import { JsonCodec } from "./codec.js";
5
5
  import { getLogger } from "@logtape/logtape";
6
6
 
7
- //#region src/mq.ts
7
+ //#region mq.ts
8
8
  const logger = getLogger([
9
9
  "fedify",
10
10
  "redis",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/redis",
3
- "version": "1.8.1-dev.1238+4e631e65",
3
+ "version": "1.8.1-dev.1247+ea70ce33",
4
4
  "description": "Redis drivers for Fedify",
5
5
  "keywords": [
6
6
  "fedify",
@@ -16,7 +16,7 @@
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "git+https://github.com/fedify-dev/fedify.git",
19
- "directory": "packages/redis"
19
+ "directory": "redis"
20
20
  },
21
21
  "bugs": {
22
22
  "url": "https://github.com/fedify-dev/fedify/issues"
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "peerDependencies": {
64
64
  "ioredis": "^5.6.1",
65
- "@fedify/fedify": "1.8.1-dev.1238+4e631e65"
65
+ "@fedify/fedify": "1.8.1-dev.1247+ea70ce33"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@std/async": "npm:@jsr/std__async@^1.0.13",