Skip to content

Type Alias: AdapterFile

Makaio Framework


Makaio Framework / contracts/config / AdapterFile

AdapterFile = z.infer<typeof AdapterFileSchema>

Defined in: ../../../packages/contracts/src/config/adapter-file.ts:86

Inferred type for a file-canonical adapter record.

  • AdapterFile
    • z.infer<typeof AdapterFileSchema>
      • typeof AdapterFileSchema
type AdapterFile = {
$schema: 'makaio/adapter-config/v1';
enabled?: boolean | undefined;
displayName?: string | undefined;
description?: string | undefined;
helpLinks?: Array<{ label: string; url: string; }> | undefined;
instructions?: string | undefined;
clientId?: string | undefined;
protocol?: string | undefined;
providerDefinitionIds?: Array<string> | undefined;
settings?: Record<string, unknown> | undefined;
bindings?: Array<{ providerConfigId: string; isDefault?: boolean | undefined; }> | undefined;
};