@swarmvaultai/engine 0.1.7 → 0.1.9
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 +4 -4
- package/dist/index.js +622 -599
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -688,6 +688,10 @@ declare function createProvider(id: string, config: ProviderConfig, rootDir: str
|
|
|
688
688
|
declare function getProviderForTask(rootDir: string, task: keyof Awaited<ReturnType<typeof loadVaultConfig>>["config"]["tasks"]): Promise<ProviderAdapter>;
|
|
689
689
|
declare function assertProviderCapability(provider: ProviderAdapter, capability: ProviderCapability): void;
|
|
690
690
|
|
|
691
|
+
declare function listSchedules(rootDir: string): Promise<ScheduleStateRecord[]>;
|
|
692
|
+
declare function runSchedule(rootDir: string, jobId: string): Promise<ScheduledRunResult>;
|
|
693
|
+
declare function serveSchedules(rootDir: string, pollMs?: number): Promise<ScheduleController>;
|
|
694
|
+
|
|
691
695
|
interface VaultSchema {
|
|
692
696
|
path: string;
|
|
693
697
|
content: string;
|
|
@@ -747,10 +751,6 @@ declare function startGraphServer(rootDir: string, port?: number): Promise<{
|
|
|
747
751
|
}>;
|
|
748
752
|
declare function exportGraphHtml(rootDir: string, outputPath: string): Promise<string>;
|
|
749
753
|
|
|
750
|
-
declare function listSchedules(rootDir: string): Promise<ScheduleStateRecord[]>;
|
|
751
|
-
declare function runSchedule(rootDir: string, jobId: string): Promise<ScheduledRunResult>;
|
|
752
|
-
declare function serveSchedules(rootDir: string, pollMs?: number): Promise<ScheduleController>;
|
|
753
|
-
|
|
754
754
|
declare function watchVault(rootDir: string, options?: WatchOptions): Promise<WatchController>;
|
|
755
755
|
|
|
756
756
|
declare function createWebSearchAdapter(id: string, config: WebSearchProviderConfig, rootDir: string): Promise<WebSearchAdapter>;
|