@fedify/redis 2.3.0-dev.1079 → 2.3.0-dev.1099

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.cts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference lib="esnext.temporal" />
1
2
  import { Buffer } from "node:buffer";
2
3
 
3
4
  //#region src/codec.d.ts
package/dist/codec.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ /// <reference lib="esnext.temporal" />
2
2
  import { Buffer } from "node:buffer";
3
3
 
4
4
  //#region src/codec.d.ts
package/dist/codec.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import { Temporal } from "@js-temporal/polyfill";
2
2
  import { Buffer } from "node:buffer";
3
3
  //#region src/codec.ts
4
4
  /**
package/dist/kv.d.cts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference lib="esnext.temporal" />
1
2
  import { Codec } from "./codec.cjs";
2
3
  import { KvKey, KvStore, KvStoreListEntry, KvStoreSetOptions } from "@fedify/fedify";
3
4
  import { Cluster, Redis, RedisKey } from "ioredis";
package/dist/kv.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ /// <reference lib="esnext.temporal" />
2
2
  import { Codec } from "./codec.js";
3
3
  import { KvKey, KvStore, KvStoreListEntry, KvStoreSetOptions } from "@fedify/fedify";
4
4
  import { Cluster, Redis, RedisKey } from "ioredis";
package/dist/kv.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import { Temporal } from "@js-temporal/polyfill";
2
2
  import { JsonCodec } from "./codec.js";
3
3
  import { Buffer } from "node:buffer";
4
4
  //#region src/kv.ts
package/dist/mod.d.cts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference lib="esnext.temporal" />
1
2
  import { Codec, CodecError, DecodingError, EncodingError, JsonCodec } from "./codec.cjs";
2
3
  import { RedisKvStore, RedisKvStoreOptions } from "./kv.cjs";
3
4
  import { RedisMessageQueue, RedisMessageQueueOptions } from "./mq.cjs";
package/dist/mod.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ /// <reference lib="esnext.temporal" />
2
2
  import { Codec, CodecError, DecodingError, EncodingError, JsonCodec } from "./codec.js";
3
3
  import { RedisKvStore, RedisKvStoreOptions } from "./kv.js";
4
4
  import { RedisMessageQueue, RedisMessageQueueOptions } from "./mq.js";
package/dist/mod.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import { Temporal } from "@js-temporal/polyfill";
2
2
  import { CodecError, DecodingError, EncodingError, JsonCodec } from "./codec.js";
3
3
  import { RedisKvStore } from "./kv.js";
4
4
  import { RedisMessageQueue } from "./mq.js";
package/dist/mq.d.cts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference lib="esnext.temporal" />
1
2
  import { Codec } from "./codec.cjs";
2
3
  import { MessageQueue, MessageQueueDepth, MessageQueueEnqueueOptions, MessageQueueListenOptions } from "@fedify/fedify";
3
4
  import { Cluster, Redis, RedisKey } from "ioredis";
package/dist/mq.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ /// <reference lib="esnext.temporal" />
2
2
  import { Codec } from "./codec.js";
3
3
  import { MessageQueue, MessageQueueDepth, MessageQueueEnqueueOptions, MessageQueueListenOptions } from "@fedify/fedify";
4
4
  import { Cluster, Redis, RedisKey } from "ioredis";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/redis",
3
- "version": "2.3.0-dev.1079+36ac23d1",
3
+ "version": "2.3.0-dev.1099+fafcfa78",
4
4
  "description": "Redis drivers for Fedify",
5
5
  "keywords": [
6
6
  "fedify",
@@ -82,15 +82,15 @@
82
82
  },
83
83
  "peerDependencies": {
84
84
  "ioredis": "^5.8.2",
85
- "@fedify/fedify": "^2.3.0-dev.1079+36ac23d1"
85
+ "@fedify/fedify": "^2.3.0-dev.1099+fafcfa78"
86
86
  },
87
87
  "devDependencies": {
88
88
  "@std/async": "npm:@jsr/std__async@^1.0.13",
89
89
  "@types/node": "^22.17.0",
90
90
  "tsdown": "^0.22.0",
91
- "typescript": "^5.9.2",
92
- "@fedify/testing": "^2.3.0-dev.1079+36ac23d1",
93
- "@fedify/fixture": "^2.0.0"
91
+ "typescript": "^6.0.0",
92
+ "@fedify/fixture": "^2.0.0",
93
+ "@fedify/testing": "^2.3.0-dev.1099+fafcfa78"
94
94
  },
95
95
  "scripts": {
96
96
  "build:self": "tsdown",