Type Alias: AdapterFile
Makaio Framework / contracts/config / AdapterFile
Type Alias: AdapterFile
Section titled “Type Alias: AdapterFile”AdapterFile =
z.infer<typeofAdapterFileSchema>
Defined in: ../../../packages/contracts/src/config/adapter-file.ts:86
Inferred type for a file-canonical adapter record.
Type Composition
Section titled “Type Composition”AdapterFilez.infer<typeof AdapterFileSchema>typeof AdapterFileSchema
Resolved Shape
Section titled “Resolved Shape”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;};