Skip to content

Commit 7524e46

Browse files
committed
fix(sixtyfour): remove invalid properties field from block outputs
1 parent c496edc commit 7524e46

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

apps/sim/blocks/blocks/sixtyfour.ts

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -265,21 +265,13 @@ export const SixtyfourBlock: BlockConfig = {
265265
},
266266
emails: {
267267
type: 'json',
268-
description: 'Email addresses found with validation status and type (find_email)',
269-
properties: {
270-
address: { type: 'string', description: 'Email address' },
271-
status: { type: 'string', description: 'Validation status (OK, UNKNOWN, NOT_FOUND)' },
272-
type: { type: 'string', description: 'Email type (COMPANY or PERSONAL)' },
273-
},
268+
description:
269+
'Email addresses found (find_email): [{address, status (OK|UNKNOWN|NOT_FOUND), type (COMPANY|PERSONAL)}]',
274270
},
275271
personalEmails: {
276272
type: 'json',
277-
description: 'Personal email addresses found in PERSONAL mode (find_email)',
278-
properties: {
279-
address: { type: 'string', description: 'Email address' },
280-
status: { type: 'string', description: 'Validation status (OK, UNKNOWN, NOT_FOUND)' },
281-
type: { type: 'string', description: 'Email type (COMPANY or PERSONAL)' },
282-
},
273+
description:
274+
'Personal email addresses found in PERSONAL mode (find_email): [{address, status, type}]',
283275
},
284276
notes: {
285277
type: 'string',

0 commit comments

Comments
 (0)