update remit
This commit is contained in:
@ -1,73 +0,0 @@
|
|||||||
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
|
||||||
import { RemitPartner } from "./remit_partners";
|
|
||||||
|
|
||||||
@Entity("remit_partner_api_logs", { schema: "remits" })
|
|
||||||
export class RemitPartnerApiLog {
|
|
||||||
@PrimaryGeneratedColumn("uuid")
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => RemitPartner, { onDelete: "RESTRICT" })
|
|
||||||
@JoinColumn()
|
|
||||||
partner: RemitPartner;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
})
|
|
||||||
request_at: Date;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
path: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
verb: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
signature: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
length: 256,
|
|
||||||
})
|
|
||||||
timestamp: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
type: 'text'
|
|
||||||
})
|
|
||||||
decode: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
type: 'text'
|
|
||||||
})
|
|
||||||
param: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
type: 'text'
|
|
||||||
})
|
|
||||||
response: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
nullable: true,
|
|
||||||
type: 'text'
|
|
||||||
})
|
|
||||||
response_at: string;
|
|
||||||
|
|
||||||
@Column()
|
|
||||||
@CreateDateColumn()
|
|
||||||
created_at: Date;
|
|
||||||
|
|
||||||
@Column({ nullable: true })
|
|
||||||
@UpdateDateColumn()
|
|
||||||
updated_at: Date;
|
|
||||||
}
|
|
||||||
@ -99,7 +99,6 @@ import { RemitConfigPurpose } from "./entity/remit_config_purposes";
|
|||||||
import { RemitConfigSourceIncome } from "./entity/remit_config_source_incomes";
|
import { RemitConfigSourceIncome } from "./entity/remit_config_source_incomes";
|
||||||
import { RemitPartnerAccounts } from "./entity/remit_partner_accounts";
|
import { RemitPartnerAccounts } from "./entity/remit_partner_accounts";
|
||||||
import { RemitPartnerApi } from "./entity/remit_partner_apis";
|
import { RemitPartnerApi } from "./entity/remit_partner_apis";
|
||||||
import { RemitPartnerApiLog } from "./entity/remit_partner_api_logs";
|
|
||||||
import { RemitPartnerDocument } from "./entity/remit_partner_documents";
|
import { RemitPartnerDocument } from "./entity/remit_partner_documents";
|
||||||
import { RemitPartnerFee } from "./entity/remit_partner_fees";
|
import { RemitPartnerFee } from "./entity/remit_partner_fees";
|
||||||
import { RemitPartnerOwners } from "./entity/remit_partner_owners";
|
import { RemitPartnerOwners } from "./entity/remit_partner_owners";
|
||||||
@ -348,7 +347,6 @@ export {
|
|||||||
RemitConfigSourceIncome,
|
RemitConfigSourceIncome,
|
||||||
RemitPartnerAccounts,
|
RemitPartnerAccounts,
|
||||||
RemitPartnerApi,
|
RemitPartnerApi,
|
||||||
RemitPartnerApiLog,
|
|
||||||
RemitPartnerDocument,
|
RemitPartnerDocument,
|
||||||
RemitPartnerFee,
|
RemitPartnerFee,
|
||||||
RemitPartnerOwners,
|
RemitPartnerOwners,
|
||||||
|
|||||||
Reference in New Issue
Block a user