All files / src/models verification.model.ts

96.77% Statements 30/31
100% Branches 0/0
50% Functions 1/2
96.55% Lines 28/29

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 1571x 1x 1x 1x                 1x                   1x           1x           1x           1x         1x         1x           1x   194x 1x               1x               1x           1x                   1x                 1x             1x           1x           1x           1x           1x         1x     1x     1x     1x                      
import {hasOne, model, property} from '@loopback/repository';
import {Exclude, Expose} from 'class-transformer';
import {tail} from 'lodash';
import {BaseEntity, Form, Status} from '.';
import {AnyObject} from '../types';
 
@Exclude()
@model({
  settings: {
    postgresql: {table: 'verifications'},
  },
})
export class Verification extends BaseEntity {
  @Expose()
  @property({
    type: 'number',
    id: true,
    generated: true,
    index: {
      unique: true,
    },
  })
  id: number;
 
  @property({
    type: 'number',
    required: true,
  })
  flow_id: number;
 
  @property({
    type: 'number',
    required: true,
  })
  flow_journey_point_id: number;
 
  @property({
    type: 'number',
    required: true,
  })
  flow_action_id: number;
 
  @property({
    type: 'number',
  })
  external_id: number;
 
  @property({
    type: 'string',
  })
  table_name: string;
 
  @property({
    type: 'number',
    required: true,
  })
  form_id: number;
 
  @hasOne(() => Form, {keyTo: 'id', keyFrom: 'form_id', name: 'form'})
  form: Form;
 
  @property({
    type: 'number',
    jsonSchema: {
      nullable: true,
    },
  })
  verification_id: number;
 
  @property({
    type: 'number',
    jsonSchema: {
      nullable: true,
    },
  })
  verification_company_id: number;
 
  @property({
    type: 'boolean',
    required: true,
  })
  is_actor: boolean;
 
  @Expose()
  @property({
    type: 'number',
    required: true,
    jsonSchema: {
      enum: tail(Object.values(Status.Verification)),
    },
  })
  status: number;
 
  @Expose()
  @property({
    type: 'string',
    jsonSchema: {
      nullable: true,
    },
  })
  cancelled_reason: string;
 
  @Expose()
  @property({
    type: 'date',
    defaultFn: 'now',
  })
  created_date: Date;
 
  @Expose()
  @property({
    type: 'date',
  })
  modified_date: Date;
 
  @Expose()
  @property({
    type: 'string',
  })
  uri: string;
 
  @Exclude()
  @property({
    type: 'string',
  })
  version: string;
 
  @Expose()
  @property({
    type: 'string',
  })
  hash: string;
 
  @property({
    type: 'string',
  })
  blockchain_tx: string;
 
  @Expose()
  name?: string;
 
  @Expose()
  consensus?: AnyObject[];
 
  @Expose()
  documents?: AnyObject;
  constructor(data?: Partial<Verification>) {
    super(data);
  }
}
 
export interface VerificationRelations {
  // describe navigational properties here
}
 
export type VerificationWithRelations = Verification & VerificationRelations;