* feat(remove-bg): add remove-bg integration * feat(removebg): update name and icon * docs(removebg): update name and icon * docs: add remove.bg in available apps * docs(removebg): correct path --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
34 lines
751 B
TypeScript
34 lines
751 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: 'API key of the remove.bg API service.',
|
|
clickToCopy: false,
|
|
},
|
|
],
|
|
|
|
verifyCredentials,
|
|
isStillVerified,
|
|
};
|