• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

teableio / teable / 8421654220

25 Mar 2024 02:22PM CUT coverage: 79.934% (+53.8%) from 26.087%
8421654220

Pull #495

github

web-flow
Merge 4faeebea5 into 1869c986d
Pull Request #495: chore: add licenses for non-NPM packages

3256 of 3853 branches covered (84.51%)

25152 of 31466 relevant lines covered (79.93%)

1188.29 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

9.76
/apps/nestjs-backend/src/features/automation/model/workflow-action.vo.ts
1
import { ApiPropertyOptional } from '@nestjs/swagger';
2✔
2
import { ActionTypeEnums } from '../enums/action-type.enum';
2✔
3

2✔
4
export class WorkflowActionVo {
2✔
5
  @ApiPropertyOptional({
×
6
    description: 'workflow action unique identifier',
×
7
    example: 'wacGEeKDnQgU8E7V3',
×
8
  })
×
9
  id!: string;
×
10

×
11
  @ApiPropertyOptional({
×
12
    description: 'type of action',
×
13
    enum: ActionTypeEnums,
×
14
    example: ActionTypeEnums.Webhook,
×
15
  })
×
16
  actionType!: ActionTypeEnums;
×
17

×
18
  @ApiPropertyOptional({
×
19
    description: 'description of the action',
×
20
    enum: ActionTypeEnums,
×
21
    example: 'action description',
×
22
  })
×
23
  description?: string | null;
×
24

×
25
  @ApiPropertyOptional({
×
26
    description: 'unique identifier for the next action',
×
27
    example: 'wacGEeKDnQgU8E7V4',
×
28
  })
×
29
  nextActionId?: string | null;
×
30

×
31
  @ApiPropertyOptional({
×
32
    description: 'action test result',
×
33
    example: '...',
×
34
  })
×
35
  testResult?: unknown;
×
36

×
37
  @ApiPropertyOptional({
×
38
    description: 'action input configuration',
×
39
  })
×
40
  inputExpressions?: { [key: string]: unknown } | null;
×
41
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc