export function getDeploymentInputSchema(): DeploymentInputSchema {
return [
{
key: 'DRIVE_FOLDER_NAME',
type: 'string',
label: 'Drive Folder Name',
description: 'Name of the Google Drive folder to save attachments to',
placeholder: 'Email Attachments',
required: true,
defaultValue: 'Email Attachments',
},
{
key: 'GMAIL_LABEL_NAME',
type: 'string',
label: 'Gmail Label',
description: 'Label to apply to processed emails',
placeholder: 'Processed',
required: true,
defaultValue: 'Processed',
},
{
key: 'SHEET_NAME',
type: 'string',
label: 'Spreadsheet Name',
description: 'Name of the Google Sheet to log attachment metadata',
placeholder: 'Attachment Log',
required: true,
defaultValue: 'Attachment Log',
},
];
}