@linkedclaw/openclaw-plugin 0.1.8 → 0.1.10

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
@@ -1,4 +1,4 @@
1
- import { ProviderHandler, SessionCreateEvent, SessionAcceptDecision, SessionMessageEvent, SessionReply, SessionEndInboundEvent, InvokeEvent, InvokeHandlerResult, GigTaskOfferEvent, GigTaskOfferDecision, GigTaskExecuteEvent, GigTaskExecuteResult } from '@linkedclaw/provider-runtime';
1
+ import { ProviderHandler, SessionCreateEvent, SessionAcceptDecision, SessionMessageEvent, SessionReply, SessionEndInboundEvent, InvokeEvent, InvokeHandlerResult, GigTaskOfferEvent, GigTaskOfferDecision, GigTaskExecuteEvent, GigTaskExecuteResult, ProviderRuntime } from '@linkedclaw/provider-runtime';
2
2
 
3
3
  /**
4
4
  * Minimal mirror of the OpenClaw plugin-SDK surface used by this plugin.
@@ -199,7 +199,7 @@ declare class ProviderHolder {
199
199
  restart(): Promise<void>;
200
200
  status(): HolderStatus;
201
201
  private parseAndStore;
202
- private buildRuntime;
202
+ protected buildRuntime(cfg: PluginRuntimeConfig): ProviderRuntime;
203
203
  }
204
204
  declare function redactApiKey(key: string): string;
205
205