Skip to content

Type Alias: ConfigUpdateRequest

Makaio Framework


Makaio Framework / contracts / ConfigUpdateRequest

ConfigUpdateRequest = z.infer<typeof ConfigSchemas.update.request>

Defined in: ../../../packages/contracts/src/config/config-subjects.ts:57

Type for config.update request.

  • ConfigUpdateRequest
    • z.infer<typeof ConfigSchemas.update.request>
      • typeof ConfigSchemas.update.request
type ConfigUpdateRequest = {
config: { $schema: 'makaio/config/v1'; mode: 'local' | 'remote' | 'hybrid'; role: 'main-dev-machine' | 'server'; bus?: { remote?: { url?: string | undefined; secret?: string | undefined; } | undefined; } | undefined; relay?: { autoReconnect: boolean; maxReconnectAttempts: number; heartbeatInterval: number; url?: string | undefined; token?: string | undefined; } | undefined; features?: { voiceBridge: boolean; } | undefined; fileWatcher?: { backend: 'auto' | 'watchman' | 'parcel' | 'chokidar'; } | undefined; };
};