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

teableio / teable / 8453146637

27 Mar 2024 02:08PM CUT coverage: 82.388% (+60.6%) from 21.837%
8453146637

push

github

web-flow
fix: date field grouping collapse (#505)

* fix: date field grouping collapse

* fix: remove redundant record menu items

* fix: long text field editor style

3850 of 4032 branches covered (95.49%)

1 of 2 new or added lines in 1 file covered. (50.0%)

25944 of 31490 relevant lines covered (82.39%)

1211.99 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';
4✔
2
import { ActionTypeEnums } from '../enums/action-type.enum';
4✔
3

4✔
4
export class WorkflowActionVo {
4✔
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