update
This commit is contained in:
94
src/index.ts
94
src/index.ts
@ -84,19 +84,40 @@ import { AssetInventoryHistory } from "./entity/asset_inventory_histories";
|
||||
import { AssetInventoryDepreciation } from "./entity/asset_inventory_depreciations";
|
||||
import { AssetInventoryDepreciationLog } from "./entity/asset_inventory_depreciation_logs";
|
||||
|
||||
import { RemitOtp } from "./entity/remit_otp";
|
||||
import { RemitMunisipo } from "./entity/remit_munisipos";
|
||||
import { RemitAdministrativu } from "./entity/remit_administrativus";
|
||||
import { RemitSuco } from "./entity/remit_sucos";
|
||||
import { RemitAldeia } from "./entity/remit_aldeias";
|
||||
import { RemitBeneficial } from "./entity/remit_beneficials";
|
||||
import { RemitBeneficiary } from "./entity/remit_beneficiaries";
|
||||
import { RemitConfigBank } from "./entity/remit_config_banks";
|
||||
import { RemitConfigBusinessType } from "./entity/remit_config_business_types";
|
||||
import { RemitConfigKurs } from "./entity/remit_config_kurs";
|
||||
import { RemitConfigNationalities } from "./entity/remit_config_nationalities";
|
||||
import { RemitConfigOccupation } from "./entity/remit_config_occupations";
|
||||
import { RemitConfigPurpose } from "./entity/remit_config_purposes";
|
||||
import { RemitConfigSourceIncome } from "./entity/remit_config_source_incomes";
|
||||
import { RemitPartnerAccounts } from "./entity/remit_partner_accounts";
|
||||
import { RemitPartnerApis } from "./entity/remit_partner_apis";
|
||||
import { RemitPartnerDocument } from "./entity/remit_partner_documents";
|
||||
import { RemitPartnerFee } from "./entity/remit_partner_fees";
|
||||
import { RemitPartnerOwners } from "./entity/remit_partner_owners";
|
||||
import { RemitPartnerUser } from "./entity/remit_partner_users";
|
||||
import { RemitPartner } from "./entity/remit_partners";
|
||||
import { RemitPartnerTransaction } from "./entity/remit_partner_transactions";
|
||||
import { RemitPartnerAllocation } from "./entity/remit_partner_allocations";
|
||||
import { RemitRegion } from "./entity/remit_region";
|
||||
import { RemitTransfer } from "./entity/remit_tansfer";
|
||||
import { RemitTopup } from "./entity/remit_topup";
|
||||
import { RemitMutation } from "./entity/remit_mutation";
|
||||
import { RemitBank } from "./entity/remit_bank";
|
||||
import { RemitConfigTransaction } from "./entity/remit_config_transactions";
|
||||
import { RemitConfigAllocation } from "./entity/remit_config_allocations";
|
||||
import { RemitConfigKurs } from "./entity/remit_config_kurs";
|
||||
import { RemitSender } from "./entity/remit_senders";
|
||||
import { RemitTransaction } from "./entity/remit_transactions";
|
||||
import {
|
||||
RemitPartnerType,
|
||||
RemitPartnerStatus,
|
||||
RemitRiskLevel,
|
||||
RemitGender,
|
||||
RemitIdentityType,
|
||||
RemitDocumentType,
|
||||
RemitPartnerFeeType,
|
||||
RemitSenderType,
|
||||
RemitTransactionStatus,
|
||||
RemitTransactionCurrencyType,
|
||||
} from "./types/remit"
|
||||
|
||||
import { BrizziBatchStatus, BrizziCardStatus, BrizziHistoryActvity, BrizziHistoryType, BrizziHistoryRemarks } from "./types/brizzi";
|
||||
import { BrizziBatch } from "./entity/brizzi_batchs";
|
||||
@ -208,11 +229,13 @@ export {
|
||||
Application,
|
||||
TellerMutation,
|
||||
LogHikvision,
|
||||
|
||||
BrivaCompany,
|
||||
BrivaCompanyUser,
|
||||
BrivaCompanyUserRefreshToken,
|
||||
BrivaAccount,
|
||||
BrivaTransaction,
|
||||
|
||||
AssetSupplier,
|
||||
AssetFixedClassification,
|
||||
AssetFixedType,
|
||||
@ -235,15 +258,7 @@ export {
|
||||
AssetFixedTypeType,
|
||||
AssetInventoryDepreciation,
|
||||
AssetInventoryDepreciationLog,
|
||||
RemitOtp,
|
||||
RemitPartnerUser,
|
||||
RemitPartner,
|
||||
RemitPartnerTransaction,
|
||||
RemitPartnerAllocation,
|
||||
RemitRegion,
|
||||
RemitTransfer,
|
||||
RemitTopup,
|
||||
RemitMutation,
|
||||
|
||||
BrizziBatchStatus,
|
||||
BrizziCardStatus,
|
||||
BrizziHistoryActvity,
|
||||
@ -253,6 +268,7 @@ export {
|
||||
BrizziCard,
|
||||
BrizziHistory,
|
||||
BrizziOldCard,
|
||||
|
||||
BrilinkMerchantStatus,
|
||||
BrilinkTerminalType,
|
||||
BrilinkTerminalCondition,
|
||||
@ -296,13 +312,43 @@ export {
|
||||
BrilinkDiscountStatus,
|
||||
BrilinkDiscountType,
|
||||
BrilinkDiscount,
|
||||
RemitBank,
|
||||
RemitConfigTransaction,
|
||||
RemitConfigAllocation,
|
||||
RemitConfigKurs,
|
||||
|
||||
BriapiConfig,
|
||||
BriapiLog,
|
||||
BriapiAppendixBank,
|
||||
BriapiAppendixWallet,
|
||||
BriapiAppendixId,
|
||||
|
||||
RemitMunisipo,
|
||||
RemitAdministrativu,
|
||||
RemitSuco,
|
||||
RemitAldeia,
|
||||
RemitPartnerType,
|
||||
RemitPartnerStatus,
|
||||
RemitRiskLevel,
|
||||
RemitGender,
|
||||
RemitIdentityType,
|
||||
RemitDocumentType,
|
||||
RemitPartnerFeeType,
|
||||
RemitSenderType,
|
||||
RemitTransactionStatus,
|
||||
RemitTransactionCurrencyType,
|
||||
RemitBeneficial,
|
||||
RemitBeneficiary,
|
||||
RemitConfigBank,
|
||||
RemitConfigBusinessType,
|
||||
RemitConfigKurs,
|
||||
RemitConfigNationalities,
|
||||
RemitConfigOccupation,
|
||||
RemitConfigPurpose,
|
||||
RemitConfigSourceIncome,
|
||||
RemitPartnerAccounts,
|
||||
RemitPartnerApis,
|
||||
RemitPartnerDocument,
|
||||
RemitPartnerFee,
|
||||
RemitPartnerOwners,
|
||||
RemitPartnerUser,
|
||||
RemitPartner,
|
||||
RemitSender,
|
||||
RemitTransaction
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user