From fd019fc1d208765f24426f1cb5e66865b8b12e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B1=E3=82=A4=E3=83=A9?= Date: Thu, 26 Jun 2025 10:52:02 -0600 Subject: [PATCH] feat: add `mask_input` to parameter styling options (#156) --- types/parameter.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types/parameter.go b/types/parameter.go index ab15a6f..cd5d68c 100644 --- a/types/parameter.go +++ b/types/parameter.go @@ -80,6 +80,7 @@ type ParameterStyling struct { Placeholder *string `json:"placeholder,omitempty"` Disabled *bool `json:"disabled,omitempty"` Label *string `json:"label,omitempty"` + MaskInput *bool `json:"mask_input,omitempty"` } type ParameterOption struct {