chore: regenerate auto-generated files

This commit is contained in:
naskya 2024-05-27 20:59:23 +09:00 committed by Eana Hufwe
parent 0bcaff275d
commit 4624911df8

View file

@ -31,16 +31,23 @@ export function loadEnv(): EnvConfig
export interface ServerConfig { export interface ServerConfig {
url: string url: string
port: number port: number
/** host to listen on */ /** the host address to bind to */
bind?: string bind?: string
disableHsts?: boolean disableHsts?: boolean
/** PostgreSQL configurations */
db: DbConfig db: DbConfig
/** Redis configurations */
redis: RedisConfig redis: RedisConfig
/** secondary Redis server configurations */
cacheServer?: RedisConfig cacheServer?: RedisConfig
/** proxy host used for HTTP requests */
proxy?: string proxy?: string
/** proxy host used for SMTP requests */
proxySmtp?: string proxySmtp?: string
/** hosts to bypass the proxy */
proxyBypassHosts?: Array<string> proxyBypassHosts?: Array<string>
allowedPrivateNetworks?: Array<string> allowedPrivateNetworks?: Array<string>
/** maximum file size that can be uploaded to the drive (in bytes) */
maxFileSize?: number maxFileSize?: number
accessLog?: string accessLog?: string
clusterLimits?: WorkerConfigInternal clusterLimits?: WorkerConfigInternal
@ -52,8 +59,9 @@ export interface ServerConfig {
inboxJobPerSec?: number inboxJobPerSec?: number
deliverJobMaxAttempts?: number deliverJobMaxAttempts?: number
inboxJobMaxAttempts?: number inboxJobMaxAttempts?: number
/** deprecated */ /** deprecated in favor of `max_log_level` */
logLevel?: Array<string> logLevel?: Array<string>
/** verbosity of the server log. `error`, `warn`, `info`, `debug`, or `trace` */
maxLogLevel?: string maxLogLevel?: string
syslog?: SysLogConfig syslog?: SysLogConfig
proxyRemoteFiles?: boolean proxyRemoteFiles?: boolean