silgi 0.7.51 → 0.7.52
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/_chunks/index.mjs
CHANGED
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED
package/dist/types/index.d.mts
CHANGED
|
@@ -827,7 +827,10 @@ interface SilgiRuntimeHooks {
|
|
|
827
827
|
'action:after': (context: ModuleHookContext) => HookResult;
|
|
828
828
|
'action:error': (context: ModuleHookContext) => HookResult;
|
|
829
829
|
'action:finally': (context: ModuleHookContext) => HookResult;
|
|
830
|
-
'event:before': (event: SilgiEvents, handler: ResolvedMethodHandlerType | undefined
|
|
830
|
+
'event:before': (event: SilgiEvents, handler: ResolvedMethodHandlerType | undefined, options?: {
|
|
831
|
+
handlerSkipped: boolean;
|
|
832
|
+
throwErrors: boolean;
|
|
833
|
+
}) => HookResult;
|
|
831
834
|
'error': CaptureError;
|
|
832
835
|
}
|
|
833
836
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -827,7 +827,10 @@ interface SilgiRuntimeHooks {
|
|
|
827
827
|
'action:after': (context: ModuleHookContext) => HookResult;
|
|
828
828
|
'action:error': (context: ModuleHookContext) => HookResult;
|
|
829
829
|
'action:finally': (context: ModuleHookContext) => HookResult;
|
|
830
|
-
'event:before': (event: SilgiEvents, handler: ResolvedMethodHandlerType | undefined
|
|
830
|
+
'event:before': (event: SilgiEvents, handler: ResolvedMethodHandlerType | undefined, options?: {
|
|
831
|
+
handlerSkipped: boolean;
|
|
832
|
+
throwErrors: boolean;
|
|
833
|
+
}) => HookResult;
|
|
831
834
|
'error': CaptureError;
|
|
832
835
|
}
|
|
833
836
|
|