File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1+ import { addComponent } from '@nuxt/kit'
12import { FragmentPartDto } from '~/tickets/thread/_dto/parts/fragment.part.dto'
23import { Metadata } from './'
34
@@ -10,6 +11,7 @@ export interface Thread {
1011 metadata : Metadata
1112 ticketId : string
1213 fragments : Fragments
14+ attachments : Attachments
1315}
1416
1517export interface Fragments {
@@ -37,3 +39,11 @@ export interface Raw {
3739 disposition : string
3840 message : string
3941}
42+
43+ export interface Attachments {
44+ id : string
45+ name : string
46+ namespace : string
47+ path : string
48+ mime : string
49+ }
Original file line number Diff line number Diff line change @@ -40,6 +40,12 @@ export enum Priority {
4040 Urgent = 'Urgent' ,
4141}
4242
43+ export enum FsType {
44+ DIRECTORY = 'd' ,
45+ FILE = 'f' ,
46+ SYMLINK = 'l' ,
47+ }
48+
4349export const impact = [
4450 {
4551 id : '612345678901234567890123' ,
You can’t perform that action at this time.
0 commit comments