@adhdev/daemon-core 0.6.41 → 0.6.43

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/index.d.ts CHANGED
@@ -659,6 +659,7 @@ interface ProviderScripts {
659
659
  setMode?: (params?: Record<string, any>) => string;
660
660
  /** params: { action: 'approve'|'reject'|'custom', button?: string } */
661
661
  resolveAction?: (params?: Record<string, any>) => string;
662
+ webviewResolveAction?: (params?: Record<string, any>) => string;
662
663
  listNotifications?: (params?: Record<string, any>) => string;
663
664
  dismissNotification?: (params?: Record<string, any>) => string;
664
665
  [scriptName: string]: ((params?: Record<string, any>) => string) | undefined;