59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
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/todoist/connections/add',
|
|
placeholder: null,
|
|
description:
|
|
'When asked to input an OAuth callback or redirect URL in Todoist OAuth, enter the URL above.',
|
|
docUrl: 'https://automatisch.io/docs/todoist#oauth-redirect-url',
|
|
clickToCopy: true,
|
|
},
|
|
{
|
|
key: 'screenName',
|
|
label: 'Screen Name',
|
|
type: 'string' as const,
|
|
required: true,
|
|
readOnly: false,
|
|
value: null,
|
|
placeholder: null,
|
|
description: 'Name your connection (only used for Automatisch UI).',
|
|
clickToCopy: false,
|
|
},
|
|
{
|
|
key: 'clientId',
|
|
label: 'Client ID',
|
|
type: 'string' as const,
|
|
required: true,
|
|
readOnly: false,
|
|
value: null,
|
|
placeholder: null,
|
|
description: null,
|
|
clickToCopy: false,
|
|
},
|
|
{
|
|
key: 'clientSecret',
|
|
label: 'Client Secret',
|
|
type: 'string' as const,
|
|
required: true,
|
|
readOnly: false,
|
|
value: null,
|
|
placeholder: null,
|
|
description: null,
|
|
clickToCopy: false,
|
|
},
|
|
],
|
|
|
|
generateAuthUrl,
|
|
verifyCredentials,
|
|
isStillVerified,
|
|
};
|