feat(api): add experimental wellknown connections
This commit is contained in:
@@ -61,7 +61,7 @@ export interface IntegrationDraft {
|
||||
}
|
||||
}
|
||||
|
||||
export interface IntegrationDomain extends IntegrationApi<unknown> {
|
||||
export interface IntegrationDomain extends Omit<IntegrationApi<unknown>, "wellknown"> {
|
||||
readonly transform: Transform<IntegrationDraft>
|
||||
readonly reload: () => Effect.Effect<void>
|
||||
readonly connection: {
|
||||
|
||||
@@ -5,7 +5,7 @@ import type { Transform } from "./registration.js"
|
||||
|
||||
export type { IntegrationDraft, IntegrationMethodRegistration }
|
||||
|
||||
export interface IntegrationDomain extends IntegrationApi {
|
||||
export interface IntegrationDomain extends Omit<IntegrationApi, "wellknown"> {
|
||||
readonly transform: Transform<IntegrationDraft>
|
||||
readonly reload: () => Promise<void>
|
||||
readonly connection: {
|
||||
|
||||
Reference in New Issue
Block a user