From 5296b25127385f4af62298ef94ea9c99c7da385f Mon Sep 17 00:00:00 2001 From: mikolajmeller Date: Mon, 26 Feb 2024 14:50:17 +0100 Subject: [PATCH] fix tests --- internal/httpclient/model_ui_node_input_attributes.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/httpclient/model_ui_node_input_attributes.go b/internal/httpclient/model_ui_node_input_attributes.go index 285456f2af98..fa73337b9160 100644 --- a/internal/httpclient/model_ui_node_input_attributes.go +++ b/internal/httpclient/model_ui_node_input_attributes.go @@ -19,6 +19,10 @@ import ( type UiNodeInputAttributes struct { // The autocomplete attribute for the input. email InputAttributeAutocompleteEmail tel InputAttributeAutocompleteTel url InputAttributeAutocompleteUrl current-password InputAttributeAutocompleteCurrentPassword new-password InputAttributeAutocompleteNewPassword one-time-code InputAttributeAutocompleteOneTimeCode Autocomplete *string `json:"autocomplete,omitempty"` + // The minlength attribute for the input. + MinLength uint `json:"minlength,omitempty"` + // The maxlength attribute for the input. + MaxLength uint `json:"maxlength,omitempty"` // Sets the input's disabled field to true or false. Disabled bool `json:"disabled"` Label *UiText `json:"label,omitempty"`