Plugins/phone-control: migrate to scoped plugin-sdk imports

This commit is contained in:
Gustavo Madeira Santana
2026-03-04 02:33:10 -05:00
parent c1c1af9d7b
commit 71e62a77e8
2 changed files with 3 additions and 3 deletions

View File

@@ -1,12 +1,12 @@
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import { describe, expect, it, vi } from "vitest";
import type {
OpenClawPluginApi,
OpenClawPluginCommandDefinition,
PluginCommandContext,
} from "../../src/plugins/types.js";
} from "openclaw/plugin-sdk/phone-control";
import { describe, expect, it, vi } from "vitest";
import registerPhoneControl from "./index.js";
function createApi(params: {

View File

@@ -1,6 +1,6 @@
import fs from "node:fs/promises";
import path from "node:path";
import type { OpenClawPluginApi, OpenClawPluginService } from "openclaw/plugin-sdk/core";
import type { OpenClawPluginApi, OpenClawPluginService } from "openclaw/plugin-sdk/phone-control";
type ArmGroup = "camera" | "screen" | "writes" | "all";