update
This commit is contained in:
@ -8,6 +8,12 @@ export class RemitConfigNationalities {
|
|||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
length: 3,
|
||||||
|
})
|
||||||
|
code: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 256,
|
length: 256,
|
||||||
|
|||||||
@ -203,6 +203,7 @@ import { BriapiLog } from "./entity/briapi_logs";
|
|||||||
import { BriapiAppendixBank } from "./entity/briapi_appendix_banks";
|
import { BriapiAppendixBank } from "./entity/briapi_appendix_banks";
|
||||||
import { BriapiAppendixWallet } from "./entity/briapi_appendix_wallets";
|
import { BriapiAppendixWallet } from "./entity/briapi_appendix_wallets";
|
||||||
import { BriapiAppendixId } from "./entity/briapi_appendix_ids";
|
import { BriapiAppendixId } from "./entity/briapi_appendix_ids";
|
||||||
|
import { BriapiBrifastIdentityType } from "./types/briapi";
|
||||||
|
|
||||||
import { TcelLog } from "./entity/tcel_logs";
|
import { TcelLog } from "./entity/tcel_logs";
|
||||||
import { TcelConfig } from "./entity/tcel_configs";
|
import { TcelConfig } from "./entity/tcel_configs";
|
||||||
@ -364,6 +365,7 @@ export {
|
|||||||
BriapiAppendixBank,
|
BriapiAppendixBank,
|
||||||
BriapiAppendixWallet,
|
BriapiAppendixWallet,
|
||||||
BriapiAppendixId,
|
BriapiAppendixId,
|
||||||
|
BriapiBrifastIdentityType,
|
||||||
RemitMunisipo,
|
RemitMunisipo,
|
||||||
RemitAdministrativu,
|
RemitAdministrativu,
|
||||||
RemitSuco,
|
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