udpate
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
import { Column, CreateDateColumn, DeleteDateColumn, Entity, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||
|
||||
import { RemitTransactionChannelType } from "../types/remit";
|
||||
import { Status } from "../types/status";
|
||||
|
||||
@Entity("remit_config_transaction_channels", { schema: "remits" })
|
||||
@ -12,7 +11,7 @@ export class RemitConfigTransactionChannel {
|
||||
nullable: true,
|
||||
length: 256,
|
||||
})
|
||||
name: RemitTransactionChannelType;
|
||||
name: string;
|
||||
|
||||
@Column({ type: "smallint", default: 0 })
|
||||
level: Number;
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||
|
||||
import { Status } from "../types/status";
|
||||
import { RemitRiskLevel, RemitTransactionModeType } from "../types/remit";
|
||||
|
||||
@Entity("remit_config_transaction_modes", { schema: "remits" })
|
||||
export class RemitConfigTransactionMode {
|
||||
@ -12,7 +11,7 @@ export class RemitConfigTransactionMode {
|
||||
nullable: true,
|
||||
length: 256,
|
||||
})
|
||||
name: RemitTransactionModeType;
|
||||
name: string;
|
||||
|
||||
@Column({ type: "smallint", default: 0 })
|
||||
level: Number;
|
||||
|
||||
@ -138,8 +138,6 @@ import {
|
||||
RemitSenderType,
|
||||
RemitTransactionStatus,
|
||||
RemitTransactionCurrencyType,
|
||||
RemitTransactionModeType,
|
||||
RemitTransactionChannelType,
|
||||
} from "./types/remit";
|
||||
|
||||
import {
|
||||
|
||||
@ -61,13 +61,3 @@ export enum RemitTransactionCurrencyType {
|
||||
"rp" = "rp",
|
||||
"usd" = "usd",
|
||||
}
|
||||
|
||||
export enum RemitTransactionModeType {
|
||||
"On Behalf Transaction" = "on_behalf",
|
||||
"Self Transaction" = "self",
|
||||
}
|
||||
|
||||
export enum RemitTransactionChannelType {
|
||||
"Transaction Conduct via Self-Mobile Application" = "self_mobile_app",
|
||||
"Transaction Conduct via Agent" = "agent",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user