update
This commit is contained in:
@ -8,6 +8,12 @@ export class RemitConfigNationalities {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 3,
|
||||
})
|
||||
code: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 256,
|
||||
|
||||
@ -203,6 +203,7 @@ import { BriapiLog } from "./entity/briapi_logs";
|
||||
import { BriapiAppendixBank } from "./entity/briapi_appendix_banks";
|
||||
import { BriapiAppendixWallet } from "./entity/briapi_appendix_wallets";
|
||||
import { BriapiAppendixId } from "./entity/briapi_appendix_ids";
|
||||
import { BriapiBrifastIdentityType } from "./types/briapi";
|
||||
|
||||
import { TcelLog } from "./entity/tcel_logs";
|
||||
import { TcelConfig } from "./entity/tcel_configs";
|
||||
@ -364,6 +365,7 @@ export {
|
||||
BriapiAppendixBank,
|
||||
BriapiAppendixWallet,
|
||||
BriapiAppendixId,
|
||||
BriapiBrifastIdentityType,
|
||||
RemitMunisipo,
|
||||
RemitAdministrativu,
|
||||
RemitSuco,
|
||||
|
||||
7
src/types/briapi.ts
Normal file
7
src/types/briapi.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export enum BriapiBrifastIdentityType {
|
||||
"passport" = "1",
|
||||
"citizen_personal_id" = "2",
|
||||
"driver_license" = "3",
|
||||
"others" = "4",
|
||||
"account_number" = "5",
|
||||
}
|
||||
Reference in New Issue
Block a user