create-ponder 0.6.18 → 0.6.20

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/index.js CHANGED
@@ -16,7 +16,7 @@ import { default as prompts } from "prompts";
16
16
  // package.json
17
17
  var package_default = {
18
18
  name: "create-ponder",
19
- version: "0.6.18",
19
+ version: "0.6.20",
20
20
  type: "module",
21
21
  description: "A CLI tool to create Ponder apps",
22
22
  license: "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ponder",
3
- "version": "0.6.18",
3
+ "version": "0.6.20",
4
4
  "type": "module",
5
5
  "description": "A CLI tool to create Ponder apps",
6
6
  "license": "MIT",
@@ -7,7 +7,7 @@ declare module "@/generated" {
7
7
  import type { Virtual } from "@ponder/core";
8
8
 
9
9
  type config = typeof import("./ponder.config.ts").default;
10
- type schema = typeof import("./ponder.schema.ts").default;
10
+ type schema = typeof import("./ponder.schema.ts");
11
11
 
12
12
  export const ponder: Virtual.Registry<config, schema>;
13
13
 
@@ -21,8 +21,7 @@ declare module "@/generated" {
21
21
  schema,
22
22
  name
23
23
  >;
24
- export type ApiContext = Virtual.Drizzle<schema>;
24
+ export type ApiContext = Virtual.ApiContext<schema>;
25
25
  export type IndexingFunctionArgs<name extends EventNames = EventNames> =
26
26
  Virtual.IndexingFunctionArgs<config, schema, name>;
27
- export type Schema = Virtual.Schema<schema>;
28
27
  }