
* feat(carbone): add carbone integration * Update list-apps.spec.js to ensure Carbone is the first application in the alphabetically sorted list Previously, the test expected DeepL to be the first in the list. Now, this change ensures that Carbone will take precedence as it will come first in the alphabetical order.
34 lines
746 B
TypeScript
34 lines
746 B
TypeScript
import verifyCredentials from './verify-credentials';
|
|
import isStillVerified from './is-still-verified';
|
|
|
|
export default {
|
|
fields: [
|
|
{
|
|
key: 'screenName',
|
|
label: 'Screen Name',
|
|
type: 'string' as const,
|
|
required: true,
|
|
readOnly: false,
|
|
value: null,
|
|
placeholder: null,
|
|
description:
|
|
'Screen name of your connection to be used on Automatisch UI.',
|
|
clickToCopy: false,
|
|
},
|
|
{
|
|
key: 'apiKey',
|
|
label: 'API Key',
|
|
type: 'string' as const,
|
|
required: true,
|
|
readOnly: false,
|
|
value: null,
|
|
placeholder: null,
|
|
description: 'Carbone API key of your account.',
|
|
clickToCopy: false,
|
|
},
|
|
],
|
|
|
|
verifyCredentials,
|
|
isStillVerified,
|
|
};
|