@@ -524,23 +524,23 @@ export class GrantListResult {
524524export class GrantFunding {
525525 public static readonly GrantFundingType = t . strict ( {
526526 id : t . string ,
527- tokenAmount : t . number ,
528- tokenUnit : t . string ,
527+ tokenAmount : t . union ( [ t . number , t . null ] ) ,
528+ tokenUnit : t . union ( [ t . string , t . null ] ) ,
529529 fundingDate : t . union ( [ t . number , t . null ] ) ,
530530 amount : t . union ( [ t . number , t . null ] ) ,
531- programName : t . string ,
532- createdTimestamp : t . number ,
531+ programName : t . union ( [ t . string , t . null ] ) ,
532+ createdTimestamp : t . union ( [ t . number , t . null ] ) ,
533533 updatedTimestamp : t . union ( [ t . number , t . null ] ) ,
534534 } ) ;
535535
536536 @ApiProperty ( )
537537 id : string ;
538538
539539 @ApiProperty ( )
540- tokenAmount : number ;
540+ tokenAmount : number | null ;
541541
542542 @ApiProperty ( )
543- tokenUnit : string ;
543+ tokenUnit : string | null ;
544544
545545 @ApiProperty ( )
546546 fundingDate : number | null ;
@@ -549,10 +549,10 @@ export class GrantFunding {
549549 amount : number | null ;
550550
551551 @ApiProperty ( )
552- programName : string ;
552+ programName : string | null ;
553553
554554 @ApiProperty ( )
555- createdTimestamp : number ;
555+ createdTimestamp : number | null ;
556556
557557 @ApiProperty ( )
558558 updatedTimestamp : number | null ;
0 commit comments