Type Alias: ConfigUpdateRequest
Makaio Framework / contracts / ConfigUpdateRequest
Type Alias: ConfigUpdateRequest
Section titled “Type Alias: ConfigUpdateRequest”ConfigUpdateRequest =
z.infer<typeofConfigSchemas.update.request>
Defined in: ../../../packages/contracts/src/config/config-subjects.ts:57
Type for config.update request.
Type Composition
Section titled “Type Composition”ConfigUpdateRequestz.infer<typeof ConfigSchemas.update.request>typeof ConfigSchemas.update.request
Resolved Shape
Section titled “Resolved Shape”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; };};