two-stroke 1.1.6 → 1.1.7

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/package.json CHANGED
@@ -51,7 +51,7 @@
51
51
  "name": "two-stroke",
52
52
  "packageManager": "yarn@4.3.0",
53
53
  "type": "module",
54
- "version": "1.1.6",
54
+ "version": "1.1.7",
55
55
  "devDependencies": {
56
56
  "@types/eslint": "^9.6.1",
57
57
  "@types/node": "^22.7.5",
package/src/test.ts CHANGED
@@ -15,6 +15,8 @@ export const setupTests = async <Paths extends {}>(bindings: Env) => {
15
15
  fetchMock.disableNetConnect();
16
16
 
17
17
  const config = toml.parse(fs.readFileSync("wrangler.toml", "utf8")) as {
18
+ compatibility_date: string;
19
+ compatibility_flags: string[];
18
20
  queues?: {
19
21
  consumers?: { queue: string }[];
20
22
  producers?: { queue: string; binding: string }[];
@@ -23,11 +25,14 @@ export const setupTests = async <Paths extends {}>(bindings: Env) => {
23
25
  kv_namespaces?: { binding: string }[];
24
26
  d1_databases?: { binding: string }[];
25
27
  services?: { binding: string; service: string }[];
28
+ durable_objects?: { bindings?: { name: string; class_name: string }[] };
26
29
  };
27
30
 
28
31
  const miniflare = new Miniflare({
29
32
  modules: true,
30
33
  scriptPath: "dist/index.js",
34
+ compatibilityDate: config.compatibility_date,
35
+ compatibilityFlags: config.compatibility_flags,
31
36
  bindings: {
32
37
  TOKEN_HASH:
33
38
  "djAxlhzT1IU9QIP3UKdipECQPAGGoPQK86/GnTBcbHLtPC3ni6JkTQ/iIeF0KG0y1CZ+J+9W",
@@ -47,6 +52,12 @@ export const setupTests = async <Paths extends {}>(bindings: Env) => {
47
52
  (config.services ?? []).map(({ binding, service }) => [binding, service]),
48
53
  ),
49
54
  fetchMock,
55
+ durableObjects: Object.fromEntries(
56
+ (config.durable_objects?.bindings ?? []).map(({ name, class_name }) => [
57
+ name,
58
+ class_name,
59
+ ]),
60
+ ),
50
61
  });
51
62
 
52
63
  const url = await miniflare.ready;
package/src/types.ts CHANGED
@@ -8,7 +8,8 @@ export type Env = {
8
8
  | R2Bucket
9
9
  | D1Database
10
10
  | Fetcher
11
- | Hyperdrive;
11
+ | Hyperdrive
12
+ | DurableObjectNamespace;
12
13
  };
13
14
  export type Route<T extends Env, A> =
14
15
  | {