mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-09 11:23:25 +00:00
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
import type {
|
|
ConnectionInfo,
|
|
IntegrationCommandMethod,
|
|
IntegrationEnvMethod,
|
|
IntegrationKeyMethod,
|
|
IntegrationMethod,
|
|
IntegrationOAuthMethod,
|
|
} from "@opencode-ai/client"
|
|
import type { IntegrationApi } from "@opencode-ai/client/effect/api"
|
|
import { Credential } from "@opencode-ai/schema/credential"
|
|
import type { Effect, Scope } from "effect"
|
|
import type { Transform } from "./registration.js"
|
|
|
|
type IntegrationInputs = Record<string, string>
|
|
type IntegrationRef = { id: string; name: string }
|
|
|
|
export type IntegrationOAuthAuthorization = {
|
|
readonly url: string
|
|
readonly instructions: string
|
|
readonly expiresAt?: number
|
|
} & (
|
|
| {
|
|
readonly mode: "auto"
|
|
readonly callback: Effect.Effect<Credential.OAuth, unknown>
|
|
}
|
|
| {
|
|
readonly mode: "code"
|
|
readonly callback: (code: string) => Effect.Effect<Credential.OAuth, unknown>
|
|
}
|
|
)
|
|
export type IntegrationOAuthMethodRegistration = {
|
|
readonly integrationID: string
|
|
readonly method: IntegrationOAuthMethod
|
|
readonly authorize: (inputs: IntegrationInputs) => Effect.Effect<IntegrationOAuthAuthorization, unknown, Scope.Scope>
|
|
readonly refresh?: (credential: Credential.OAuth) => Effect.Effect<Credential.OAuth, unknown>
|
|
readonly label?: (credential: Credential.OAuth) => string | undefined
|
|
}
|
|
export type IntegrationMethodRegistration =
|
|
| IntegrationOAuthMethodRegistration
|
|
| {
|
|
readonly integrationID: string
|
|
readonly method: IntegrationCommandMethod
|
|
}
|
|
| {
|
|
readonly integrationID: string
|
|
readonly method: IntegrationKeyMethod
|
|
}
|
|
| {
|
|
readonly integrationID: string
|
|
readonly method: IntegrationEnvMethod
|
|
}
|
|
|
|
export interface IntegrationDraft {
|
|
list(): readonly IntegrationRef[]
|
|
get(id: string): IntegrationRef | undefined
|
|
update(id: string, update: (integration: IntegrationRef) => void): void
|
|
remove(id: string): void
|
|
readonly method: {
|
|
list(integrationID: string): readonly IntegrationMethod[]
|
|
update(input: IntegrationMethodRegistration): void
|
|
remove(integrationID: string, method: IntegrationMethod): void
|
|
}
|
|
}
|
|
|
|
export interface IntegrationDomain extends Omit<IntegrationApi<unknown>, "wellknown"> {
|
|
readonly transform: Transform<IntegrationDraft>
|
|
readonly reload: () => Effect.Effect<void>
|
|
readonly connection: {
|
|
readonly active: (integrationID: string) => Effect.Effect<ConnectionInfo | undefined>
|
|
readonly resolve: (connection: ConnectionInfo) => Effect.Effect<Credential.Value | undefined, unknown>
|
|
}
|
|
}
|