feat: add Signalwire integration

This commit is contained in:
Sebastian Schumann
2023-02-24 03:39:25 +01:00
parent 831ae96e0f
commit d7e4ae53ce
19 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
import verifyCredentials from './verify-credentials';
import isStillVerified from './is-still-verified';
export default {
fields: [
{
key: 'accountSid',
label: 'Project ID',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description:
'Log into your Signalwire account and find the Project ID',
clickToCopy: false,
},
{
key: 'authToken',
label: 'API Token',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description: 'API Token in the respective project',
clickToCopy: false,
},
{
key: 'spaceRegion',
label: 'Signalwire Region',
type: 'dropdown' as const,
required: true,
readOnly: false,
value: '',
placeholder: null,
description: 'Most people should choose the default, "US"',
clickToCopy: false,
options: [
{
label: 'US',
value: '',
},
{
label: 'EU',
value: 'eu-',
},
],
},
{
key: 'spaceName',
label: 'Space Name',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description: 'Name of your Signalwire space that contains the project',
clickToCopy: true,
},
],
verifyCredentials,
isStillVerified,
};