From 5c0fa34aab1f8d0fc3e2d974e8fe40a17cc4384f Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Wed, 25 Jun 2025 23:02:34 +0000 Subject: [PATCH] feat: add `mask_input` to parameter styling options --- 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 {