From 8a201f53e7669efcc1a9c6612d71c35281b3d2e0 Mon Sep 17 00:00:00 2001 From: "supabase-cli-releaser[bot]" <246109035+supabase-cli-releaser[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 03:40:47 +0000 Subject: [PATCH] chore: sync API types from infrastructure --- apps/cli-go/pkg/api/types.gen.go | 42 +++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/apps/cli-go/pkg/api/types.gen.go b/apps/cli-go/pkg/api/types.gen.go index c3287bc286..840f1b82b9 100644 --- a/apps/cli-go/pkg/api/types.gen.go +++ b/apps/cli-go/pkg/api/types.gen.go @@ -3327,9 +3327,24 @@ type PgsodiumConfigResponse struct { // PostgresConfigResponse defines model for PostgresConfigResponse. type PostgresConfigResponse struct { // CheckpointTimeout Default unit: s - CheckpointTimeout *string `json:"checkpoint_timeout,omitempty"` - EffectiveCacheSize *string `json:"effective_cache_size,omitempty"` - HotStandbyFeedback *bool `json:"hot_standby_feedback,omitempty"` + CheckpointTimeout *string `json:"checkpoint_timeout,omitempty"` + CronLogStatement *bool `json:"cron.log_statement,omitempty"` + EffectiveCacheSize *string `json:"effective_cache_size,omitempty"` + HotStandbyFeedback *bool `json:"hot_standby_feedback,omitempty"` + + // LogAutovacuumMinDuration Default unit: ms + LogAutovacuumMinDuration *string `json:"log_autovacuum_min_duration,omitempty"` + LogCheckpoints *bool `json:"log_checkpoints,omitempty"` + LogConnections *bool `json:"log_connections,omitempty"` + LogDisconnections *bool `json:"log_disconnections,omitempty"` + LogDuration *bool `json:"log_duration,omitempty"` + LogLockWaits *bool `json:"log_lock_waits,omitempty"` + LogRecoveryConflictWaits *bool `json:"log_recovery_conflict_waits,omitempty"` + LogReplicationCommands *bool `json:"log_replication_commands,omitempty"` + + // LogStartupProgressInterval Default unit: ms + LogStartupProgressInterval *string `json:"log_startup_progress_interval,omitempty"` + LogTempFiles *string `json:"log_temp_files,omitempty"` LogicalDecodingWorkMem *string `json:"logical_decoding_work_mem,omitempty"` MaintenanceWorkMem *string `json:"maintenance_work_mem,omitempty"` MaxConnections *int `json:"max_connections,omitempty"` @@ -4229,9 +4244,24 @@ type UpdatePgsodiumConfigBody struct { // UpdatePostgresConfigBody defines model for UpdatePostgresConfigBody. type UpdatePostgresConfigBody struct { // CheckpointTimeout Default unit: s - CheckpointTimeout *string `json:"checkpoint_timeout,omitempty"` - EffectiveCacheSize *string `json:"effective_cache_size,omitempty"` - HotStandbyFeedback *bool `json:"hot_standby_feedback,omitempty"` + CheckpointTimeout *string `json:"checkpoint_timeout,omitempty"` + CronLogStatement *bool `json:"cron.log_statement,omitempty"` + EffectiveCacheSize *string `json:"effective_cache_size,omitempty"` + HotStandbyFeedback *bool `json:"hot_standby_feedback,omitempty"` + + // LogAutovacuumMinDuration Default unit: ms + LogAutovacuumMinDuration *string `json:"log_autovacuum_min_duration,omitempty"` + LogCheckpoints *bool `json:"log_checkpoints,omitempty"` + LogConnections *bool `json:"log_connections,omitempty"` + LogDisconnections *bool `json:"log_disconnections,omitempty"` + LogDuration *bool `json:"log_duration,omitempty"` + LogLockWaits *bool `json:"log_lock_waits,omitempty"` + LogRecoveryConflictWaits *bool `json:"log_recovery_conflict_waits,omitempty"` + LogReplicationCommands *bool `json:"log_replication_commands,omitempty"` + + // LogStartupProgressInterval Default unit: ms + LogStartupProgressInterval *string `json:"log_startup_progress_interval,omitempty"` + LogTempFiles *string `json:"log_temp_files,omitempty"` LogicalDecodingWorkMem *string `json:"logical_decoding_work_mem,omitempty"` MaintenanceWorkMem *string `json:"maintenance_work_mem,omitempty"` MaxConnections *int `json:"max_connections,omitempty"`