@k-msg/webhook 0.23.1 → 0.24.0
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/crypto/field-crypto.d.ts +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +23 -23
- package/dist/index.js.map +6 -5
- package/dist/index.mjs +23 -23
- package/dist/index.mjs.map +6 -5
- package/dist/registry/types.d.ts +1 -10
- package/dist/runtime/types.d.ts +7 -0
- package/dist/toolkit/index.js +29 -29
- package/dist/toolkit/index.js.map +4 -4
- package/dist/toolkit/index.mjs +29 -29
- package/dist/toolkit/index.mjs.map +4 -4
- package/package.json +2 -2
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { WebhookDeliveryStore, WebhookEndpointStore, WebhookRuntimeFieldCryptoOptions } from "../runtime/types";
|
|
2
|
+
export declare function validateWebhookFieldCryptoOptions(options: WebhookRuntimeFieldCryptoOptions | undefined): void;
|
|
3
|
+
export declare function wrapWebhookEndpointStoreWithFieldCrypto(store: WebhookEndpointStore, options: WebhookRuntimeFieldCryptoOptions | undefined): WebhookEndpointStore;
|
|
4
|
+
export declare function wrapWebhookDeliveryStoreWithFieldCrypto(store: WebhookDeliveryStore, options: WebhookRuntimeFieldCryptoOptions | undefined): WebhookDeliveryStore;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { RetryManager } from "./retry/retry.manager";
|
|
|
5
5
|
export { DEFAULT_ENDPOINT_VALIDATION_OPTIONS, type EndpointValidationOptions, resolveEndpointValidationOptions, validateEndpointUrl, } from "./runtime/endpoint-validation";
|
|
6
6
|
export { endpointMatchesEvent } from "./runtime/event-matcher";
|
|
7
7
|
export { createInMemoryWebhookPersistence } from "./runtime/persistence";
|
|
8
|
-
export type { WebhookDeliveryListOptions, WebhookDeliveryStore, WebhookEndpointInput, WebhookEndpointStore, WebhookPersistence, WebhookRuntime, WebhookRuntimeConfig, WebhookRuntimeSecurityOptions, WebhookRuntimeTestPayload, } from "./runtime/types";
|
|
8
|
+
export type { WebhookDeliveryListOptions, WebhookDeliveryStore, WebhookEndpointInput, WebhookEndpointStore, WebhookPersistence, WebhookRuntime, WebhookRuntimeConfig, WebhookRuntimeFieldCryptoOptions, WebhookRuntimeSecurityOptions, WebhookRuntimeTestPayload, } from "./runtime/types";
|
|
9
9
|
export { addEndpoints, type HttpClient, probeEndpoint, resolveWebhookSecurityOptions, WebhookRuntimeService, } from "./runtime/webhook-runtime.service";
|
|
10
10
|
export { SecurityManager } from "./security/security.manager";
|
|
11
11
|
export { DefaultHttpClient, WebhookDispatcher, } from "./services/webhook.dispatcher";
|