File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export class Entity extends AbstractSchema {
2929 @Prop ( {
3030 type : Object ,
3131 } )
32- public customFields : object
32+ public customFields ?: { [ key : string ] : any }
3333}
3434
3535export const EntitySchema = SchemaFactory . createForClass ( Entity )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export class Identities extends AbstractSchema {
7070 @Prop ( {
7171 type : Object ,
7272 } )
73- public customFields : object
73+ public customFields ?: { [ key : string ] : any }
7474}
7575
7676export const IdentitiesSchema = SchemaFactory . createForClass ( Identities )
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export class Sla extends AbstractSchema {
5959 @Prop ( {
6060 type : Object ,
6161 } )
62- public customFields : object
62+ public customFields ?: { [ key : string ] : any }
6363}
6464
6565export const SlaSchema = SchemaFactory . createForClass ( Sla )
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export class SourceRequest extends AbstractSchema {
5252 @Prop ( {
5353 type : Object ,
5454 } )
55- public customFields : object
55+ public customFields ?: { [ key : string ] : any }
5656}
5757
5858export const SourceRequestSchema = SchemaFactory . createForClass ( SourceRequest )
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export class State extends AbstractSchema {
5252 @Prop ( {
5353 type : Object ,
5454 } )
55- public customFields : object
55+ public customFields ?: { [ key : string ] : any }
5656}
5757
5858export const StateSchema = SchemaFactory . createForClass ( State )
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export class Thread extends AbstractSchema {
4343 @Prop ( {
4444 type : Object ,
4545 } )
46- public customFields : object
46+ public customFields ?: { [ key : string ] : any }
4747}
4848
4949export const ThreadSchema = SchemaFactory . createForClass ( Thread )
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export class Ticket extends AbstractSchema {
103103 @Prop ( {
104104 type : Object ,
105105 } )
106- public customFields : object
106+ public customFields ?: { [ key : string ] : any }
107107}
108108
109109export const TicketSchema = SchemaFactory . createForClass ( Ticket )
You can’t perform that action at this time.
0 commit comments