@k-msg/webhook 0.29.8 → 0.29.9
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/adapters/cloudflare/index.d.ts +1 -1
- package/dist/adapters/cloudflare/index.js +10 -10
- package/dist/adapters/cloudflare/index.mjs +10 -10
- package/dist/index.js +7 -7
- package/dist/index.mjs +7 -7
- package/dist/toolkit/index.js +9 -9
- package/dist/toolkit/index.mjs +9 -9
- package/package.json +4 -4
|
@@ -2,8 +2,8 @@ import type { WebhookPersistence } from "../../runtime/types";
|
|
|
2
2
|
import type { D1DatabaseLike } from "./d1-client";
|
|
3
3
|
import { buildWebhookSchemaSql, DEFAULT_WEBHOOK_DELIVERY_TABLE, DEFAULT_WEBHOOK_ENDPOINT_TABLE, initializeWebhookSchema, type WebhookSchemaOptions } from "./sql-schema";
|
|
4
4
|
export type { D1DatabaseLike, D1PreparedStatementLike } from "./d1-client";
|
|
5
|
-
export { buildWebhookSchemaSql, DEFAULT_WEBHOOK_DELIVERY_TABLE, DEFAULT_WEBHOOK_ENDPOINT_TABLE, initializeWebhookSchema, };
|
|
6
5
|
export type { WebhookSchemaOptions };
|
|
6
|
+
export { buildWebhookSchemaSql, DEFAULT_WEBHOOK_DELIVERY_TABLE, DEFAULT_WEBHOOK_ENDPOINT_TABLE, initializeWebhookSchema, };
|
|
7
7
|
export interface CreateD1WebhookPersistenceOptions extends WebhookSchemaOptions {
|
|
8
8
|
initializeSchema?: boolean;
|
|
9
9
|
}
|