@miketromba/issy-core 0.5.5 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/lib/types.ts CHANGED
@@ -3,50 +3,50 @@
3
3
  */
4
4
 
5
5
  export interface IssueFrontmatter {
6
- title: string
7
- description: string
8
- priority: 'high' | 'medium' | 'low'
9
- scope?: 'small' | 'medium' | 'large'
10
- type: 'bug' | 'improvement'
11
- labels?: string
12
- status: 'open' | 'closed'
13
- order?: string
14
- created: string
15
- updated?: string
6
+ title: string
7
+ description: string
8
+ priority: 'high' | 'medium' | 'low'
9
+ scope?: 'small' | 'medium' | 'large'
10
+ type: 'bug' | 'improvement'
11
+ labels?: string
12
+ status: 'open' | 'closed'
13
+ order?: string
14
+ created: string
15
+ updated?: string
16
16
  }
17
17
 
18
18
  export interface Issue {
19
- id: string
20
- filename: string
21
- frontmatter: IssueFrontmatter
22
- content: string
19
+ id: string
20
+ filename: string
21
+ frontmatter: IssueFrontmatter
22
+ content: string
23
23
  }
24
24
 
25
25
  export interface IssueFilters {
26
- status?: string
27
- priority?: string
28
- scope?: string
29
- type?: string
30
- search?: string
26
+ status?: string
27
+ priority?: string
28
+ scope?: string
29
+ type?: string
30
+ search?: string
31
31
  }
32
32
 
33
33
  export interface CreateIssueInput {
34
- title: string
35
- description?: string
36
- priority?: 'high' | 'medium' | 'low'
37
- scope?: 'small' | 'medium' | 'large'
38
- type?: 'bug' | 'improvement'
39
- labels?: string
40
- order?: string
34
+ title: string
35
+ description?: string
36
+ priority?: 'high' | 'medium' | 'low'
37
+ scope?: 'small' | 'medium' | 'large'
38
+ type?: 'bug' | 'improvement'
39
+ labels?: string
40
+ order?: string
41
41
  }
42
42
 
43
43
  export interface UpdateIssueInput {
44
- title?: string
45
- description?: string
46
- priority?: 'high' | 'medium' | 'low'
47
- scope?: 'small' | 'medium' | 'large'
48
- type?: 'bug' | 'improvement'
49
- labels?: string
50
- status?: 'open' | 'closed'
51
- order?: string
44
+ title?: string
45
+ description?: string
46
+ priority?: 'high' | 'medium' | 'low'
47
+ scope?: 'small' | 'medium' | 'large'
48
+ type?: 'bug' | 'improvement'
49
+ labels?: string
50
+ status?: 'open' | 'closed'
51
+ order?: string
52
52
  }