Skip to content

Commit e0bd9a7

Browse files
committed
chore: linting
1 parent 3ed517a commit e0bd9a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ export interface APIChecklistItem {
119119
updated_at: string
120120
}
121121

122+
type PriorityGroup = 'P0' | 'P1' | 'P2' | 'P3' | 'P4' | 'P5' | 'P6' | 'P7' | 'P8' | 'P9' | 'P10' | 'P11' | 'P12' | 'P13' | 'P14' | 'R0' | 'R1' | 'R2' | 'R3' | 'R4' | 'R5' | 'R6' | 'R7' | 'R8' | 'R9' | 'R10' | 'R11' | 'R12' | 'R13' | 'R14';
123+
122124
/**
123125
* Check Schema
124126
*/
@@ -129,7 +131,7 @@ export type APICheckItem = {
129131
default_section_number: string;
130132
default_section_name: string;
131133
code_name: string;
132-
default_priority_group: 'P0' | 'P1' | 'P2' | 'P3' | 'P4' | 'P5' | 'P6' | 'P7' | 'P8' | 'P9' | 'P10' | 'P11' | 'P12' | 'P13' | 'P14' | 'R0' | 'R1' | 'R2' | 'R3' | 'R4' | 'R5' | 'R6' | 'R7' | 'R8' | 'R9' | 'R10' | 'R11' | 'R12' | 'R13' | 'R14';
134+
default_priority_group: PriorityGroup;
133135
is_c_scrm: boolean;
134136
implementation_status: 'pending' | 'completed';
135137
implementation_type: string | null;

0 commit comments

Comments
 (0)