diff --git a/apps/cli-go/pkg/api/types.gen.go b/apps/cli-go/pkg/api/types.gen.go index fdc5d96b6e..55720a438e 100644 --- a/apps/cli-go/pkg/api/types.gen.go +++ b/apps/cli-go/pkg/api/types.gen.go @@ -7769,8 +7769,8 @@ type StorageConfigResponseOutput struct { MaxIndexes int `json:"maxIndexes"` } `json:"vectorBuckets"` } `json:"features"` - FileSizeLimit int64 `json:"fileSizeLimit"` - MigrationVersion string `json:"migrationVersion"` + FileSizeLimit int64 `json:"fileSizeLimit"` + MigrationVersion nullable.Nullable[string] `json:"migrationVersion"` } // StorageConfigResponseOutputExternalUpstreamTarget defines model for StorageConfigResponseOutput.External.UpstreamTarget. @@ -8120,25 +8120,25 @@ type UpdateCustomHostnameResponseOutput struct { Errors []JsonValueOutput `json:"errors"` Messages []JsonValueOutput `json:"messages"` Result struct { - CustomOriginServer string `json:"custom_origin_server"` - Hostname string `json:"hostname"` - Id string `json:"id"` + CustomOriginServer *string `json:"custom_origin_server,omitempty"` + Hostname string `json:"hostname"` + Id string `json:"id"` OwnershipVerification *struct { - Name string `json:"name"` - Type string `json:"type"` - Value string `json:"value"` + Name *string `json:"name,omitempty"` + Type *string `json:"type,omitempty"` + Value *string `json:"value,omitempty"` } `json:"ownership_verification,omitempty"` - Ssl struct { - Status string `json:"status"` + Ssl *struct { + Status *string `json:"status,omitempty"` ValidationErrors *[]struct { Message string `json:"message"` } `json:"validation_errors,omitempty"` ValidationRecords *[]struct { - TxtName string `json:"txt_name"` - TxtValue string `json:"txt_value"` + TxtName *string `json:"txt_name,omitempty"` + TxtValue *string `json:"txt_value,omitempty"` } `json:"validation_records,omitempty"` - } `json:"ssl"` - Status string `json:"status"` + } `json:"ssl,omitempty"` + Status *string `json:"status,omitempty"` VerificationErrors *[]string `json:"verification_errors,omitempty"` } `json:"result"` Success bool `json:"success"`