refactor: inline auth, data, triggers and actions in apps

This commit is contained in:
Ali BARIN
2022-10-28 15:48:39 +02:00
parent 179fe512af
commit 9a973c8257
47 changed files with 233 additions and 167 deletions

View File

@@ -1,4 +1,3 @@
import { IActionOutput } from '@automatisch/types';
import defineAction from '../../../../helpers/define-action';
export default defineAction({
@@ -17,7 +16,7 @@ export default defineAction({
{
label: 'Tweet body',
key: 'tweet',
type: 'string',
type: 'string' as const,
required: true,
description: 'The content of your new tweet.',
variables: true,

View File

@@ -0,0 +1,3 @@
import createTweet from './create-tweet';
export default [createTweet];