From caef9bb8b55482bbacb114d9ab6f476d8f8629ff Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Mon, 13 Mar 2023 19:05:02 +0000 Subject: [PATCH] chore: reword Signalwire as SignalWire --- packages/backend/src/apps/signalwire/auth/index.ts | 8 ++++---- packages/backend/src/apps/signalwire/index.ts | 2 +- .../src/apps/signalwire/triggers/receive-sms/index.ts | 2 +- packages/docs/pages/.vitepress/config.js | 2 +- packages/docs/pages/apps/signalwire/connection.md | 8 ++++---- packages/docs/pages/build-integrations/examples.md | 4 ++-- packages/docs/pages/guide/available-apps.md | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/backend/src/apps/signalwire/auth/index.ts b/packages/backend/src/apps/signalwire/auth/index.ts index 009eca43..32f9c922 100644 --- a/packages/backend/src/apps/signalwire/auth/index.ts +++ b/packages/backend/src/apps/signalwire/auth/index.ts @@ -12,7 +12,7 @@ export default { value: null, placeholder: null, description: - 'Log into your Signalwire account and find the Project ID', + 'Log into your SignalWire account and find the Project ID', clickToCopy: false, }, { @@ -28,7 +28,7 @@ export default { }, { key: 'spaceRegion', - label: 'Signalwire Region', + label: 'SignalWire Region', type: 'dropdown' as const, required: true, readOnly: false, @@ -55,8 +55,8 @@ export default { readOnly: false, value: null, placeholder: null, - description: 'Name of your Signalwire space that contains the project', - clickToCopy: true, + description: 'Name of your SignalWire space that contains the project', + clickToCopy: false, }, ], diff --git a/packages/backend/src/apps/signalwire/index.ts b/packages/backend/src/apps/signalwire/index.ts index 5df3ed0f..57701d76 100644 --- a/packages/backend/src/apps/signalwire/index.ts +++ b/packages/backend/src/apps/signalwire/index.ts @@ -5,7 +5,7 @@ import triggers from './triggers'; import actions from './actions'; export default defineApp({ - name: 'Signalwire', + name: 'SignalWire', key: 'signalwire', iconUrl: 'https://signalwire.com/favicon.svg', authDocUrl: 'https://automatisch.io/docs/apps/signalwire/connection', diff --git a/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts b/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts index 6260d418..3398d9a0 100644 --- a/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts +++ b/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts @@ -13,7 +13,7 @@ export default defineTrigger({ type: 'string', required: true, description: - 'The number to receive the SMS on. It should be a Signalwire number in your project.', + 'The number to receive the SMS on. It should be a SignalWire number in your project.', }, ], diff --git a/packages/docs/pages/.vitepress/config.js b/packages/docs/pages/.vitepress/config.js index f6a0589f..59f53567 100644 --- a/packages/docs/pages/.vitepress/config.js +++ b/packages/docs/pages/.vitepress/config.js @@ -134,7 +134,7 @@ export default defineConfig({ ], }, { - text: 'Signalwire', + text: 'SignalWire', collapsible: true, collapsed: true, items: [ diff --git a/packages/docs/pages/apps/signalwire/connection.md b/packages/docs/pages/apps/signalwire/connection.md index 8100b06f..20a61005 100644 --- a/packages/docs/pages/apps/signalwire/connection.md +++ b/packages/docs/pages/apps/signalwire/connection.md @@ -1,10 +1,10 @@ -# Signalwire +# SignalWire :::info -This page explains the steps you need to follow to set up a Signalwire connection in Automatisch. If any of the steps are outdated, please let us know! +This page explains the steps you need to follow to set up a SignalWire connection in Automatisch. If any of the steps are outdated, please let us know! ::: -1. Go to the Signalwire API page in your respective project (https://{space}.signalwire.com/credentials) +1. Go to the SignalWire API page in your respective project (https://{space}.signalwire.com/credentials) 2. Copy **Project ID** and paste it to the **Project ID** field on the Automatisch connection creation page. 3. Create/Copy **API Token** and paste it to the **API Token** field on the @@ -13,4 +13,4 @@ This page explains the steps you need to follow to set up a Signalwire connectio 5. Provide your **Space Name** from the URL and paste it to the **Space NAME** field on the Automatisch connection creation page. 6. Click **Submit** button on Automatisch. -7. Now you can start using the new Signalwire connection! +7. Now you can start using the new SignalWire connection! diff --git a/packages/docs/pages/build-integrations/examples.md b/packages/docs/pages/build-integrations/examples.md index 66895181..3acb1c80 100644 --- a/packages/docs/pages/build-integrations/examples.md +++ b/packages/docs/pages/build-integrations/examples.md @@ -33,7 +33,7 @@ The build integrations section is best understood when read from beginning to en - [DeepL](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/deepl/auth/index.ts) - [Twilio](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/twilio/auth/index.ts) -- [Signalwire](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/signalwire/auth/index.ts) +- [SignalWire](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/signalwire/auth/index.ts) - [SMTP](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/smtp/auth/index.ts) ### Without authentication @@ -61,7 +61,7 @@ If you are developing a webhook-based trigger, you need to ensure that the webho - [Search tweets - Twitter](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/twitter/triggers/search-tweets/index.ts) - [New issues - Github](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/github/triggers/new-issues/index.ts) - [Receive SMS - Twilio](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/twilio/triggers/receive-sms/index.ts) -- [Receive SMS - Signalwire](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts) +- [Receive SMS - SignalWire](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/signalwire/triggers/receive-sms/index.ts) - [New photos - Flickr](https://github.com/automatisch/automatisch/tree/main/packages/backend/src/apps/flickr/triggers/new-photos/index.ts) ### Pagination with ascending order diff --git a/packages/docs/pages/guide/available-apps.md b/packages/docs/pages/guide/available-apps.md index 6f950856..33b9bb2f 100644 --- a/packages/docs/pages/guide/available-apps.md +++ b/packages/docs/pages/guide/available-apps.md @@ -17,7 +17,7 @@ Following integrations are currently supported by Automatisch. - [RSS](/apps/rss/triggers) - [Salesforce](/apps/salesforce/triggers) - [Scheduler](/apps/scheduler/triggers) -- [Signalwire](/apps/signalwire/triggers) +- [SignalWire](/apps/signalwire/triggers) - [Slack](/apps/slack/actions) - [SMTP](/apps/smtp/actions) - [Stripe](/apps/stripe/triggers)