@@ -121,6 +121,7 @@ export const PiBlock: BlockConfig<PiResponse> = {
121121 title : 'GitHub Token' ,
122122 type : 'short-input' ,
123123 password : true ,
124+ paramVisibility : 'user-only' ,
124125 placeholder : 'GitHub personal access token (repo scope)' ,
125126 tooltip : 'Personal access token with repo scope, used to clone, push, and open the PR.' ,
126127 required : true ,
@@ -201,6 +202,7 @@ export const PiBlock: BlockConfig<PiResponse> = {
201202 title : 'Password' ,
202203 type : 'short-input' ,
203204 password : true ,
205+ paramVisibility : 'user-only' ,
204206 placeholder : 'Your SSH password' ,
205207 required : { field : 'mode' , value : 'local' , and : { field : 'authMethod' , value : 'password' } } ,
206208 condition : { field : 'mode' , value : 'local' , and : { field : 'authMethod' , value : 'password' } } ,
@@ -210,6 +212,7 @@ export const PiBlock: BlockConfig<PiResponse> = {
210212 id : 'privateKey' ,
211213 title : 'Private Key' ,
212214 type : 'code' ,
215+ paramVisibility : 'user-only' ,
213216 placeholder : '-----BEGIN OPENSSH PRIVATE KEY-----\n...' ,
214217 required : {
215218 field : 'mode' ,
@@ -246,6 +249,7 @@ export const PiBlock: BlockConfig<PiResponse> = {
246249 title : 'Passphrase' ,
247250 type : 'short-input' ,
248251 password : true ,
252+ paramVisibility : 'user-only' ,
249253 placeholder : 'Passphrase for encrypted key (optional)' ,
250254 mode : 'advanced' ,
251255 condition : {
0 commit comments