import generateAuthUrl from './generate-auth-url'; import verifyCredentials from './verify-credentials'; import isStillVerified from './is-still-verified'; export default { fields: [ { key: 'oAuthRedirectUrl', label: 'OAuth Redirect URL', type: 'string' as const, required: true, readOnly: true, value: '{WEB_APP_URL}/app/twitter/connections/add', placeholder: null, description: 'When asked to input an OAuth callback or redirect URL in Twitter OAuth, enter the URL above.', clickToCopy: true, }, { key: 'consumerKey', label: 'API Key', type: 'string' as const, required: true, readOnly: false, value: null, placeholder: null, description: null, clickToCopy: false, }, { key: 'consumerSecret', label: 'API Secret', type: 'string' as const, required: true, readOnly: false, value: null, placeholder: null, description: null, clickToCopy: false, }, ], generateAuthUrl, verifyCredentials, isStillVerified, };