mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 12:24:59 +00:00
fix: dedupe probe/token base types (#16986) (thanks @iyoda)
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
import type { MSTeamsConfig } from "openclaw/plugin-sdk";
|
||||
import type { BaseProbeResult, MSTeamsConfig } from "openclaw/plugin-sdk";
|
||||
import { formatUnknownError } from "./errors.js";
|
||||
import { loadMSTeamsSdkWithAuth } from "./sdk.js";
|
||||
import { resolveMSTeamsCredentials } from "./token.js";
|
||||
|
||||
export type ProbeMSTeamsResult = {
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
export type ProbeMSTeamsResult = BaseProbeResult<string> & {
|
||||
appId?: string;
|
||||
graph?: {
|
||||
ok: boolean;
|
||||
|
||||
Reference in New Issue
Block a user