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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",