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
package/package.json
CHANGED
|
@@ -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")
|
|
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.
|
|
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
|
}
|