skedyul 0.1.28 → 0.1.29
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/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -161,7 +161,7 @@ export interface WebhookLifecycleResult {
|
|
|
161
161
|
* Return null if the API doesn't support programmatic management
|
|
162
162
|
* (user must configure manually).
|
|
163
163
|
*/
|
|
164
|
-
export type WebhookLifecycleHook<TContext = WebhookLifecycleContext> = (context: TContext) => Promise<WebhookLifecycleResult | null> | WebhookLifecycleResult | null;
|
|
164
|
+
export type WebhookLifecycleHook<TContext = WebhookLifecycleContext> = (context: TContext) => Promise<WebhookLifecycleResult | null | undefined> | WebhookLifecycleResult | null | undefined;
|
|
165
165
|
export interface WebhookDefinition {
|
|
166
166
|
name: string;
|
|
167
167
|
description: string;
|