feat: Convert all app files to JS

This commit is contained in:
Faruk AYDIN
2024-01-05 17:44:21 +01:00
parent b95478b635
commit 43dba351c3
1030 changed files with 5114 additions and 6436 deletions

View File

@@ -1,4 +1,4 @@
import defineAction from '../../../../helpers/define-action';
import defineAction from '../../../../helpers/define-action.js';
export default defineAction({
name: 'Create attachment',
@@ -9,7 +9,7 @@ export default defineAction({
{
label: 'Parent ID',
key: 'parentId',
type: 'string' as const,
type: 'string',
required: true,
variables: true,
description:
@@ -18,7 +18,7 @@ export default defineAction({
{
label: 'Name',
key: 'name',
type: 'string' as const,
type: 'string',
required: true,
variables: true,
description: 'Name of the attached file. Maximum size is 255 characters.',
@@ -26,7 +26,7 @@ export default defineAction({
{
label: 'Body',
key: 'body',
type: 'string' as const,
type: 'string',
required: true,
variables: true,
description: 'File data. (Max size is 25MB)',