mfance-shark-v1 1.0.86 → 1.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/entities/commission-withdrawal-branch-manager.entity.d.ts +17 -0
- package/dist/common/entities/commission-withdrawal-branch-manager.entity.js +77 -0
- package/dist/common/entities/commission-withdrawal-branch-manager.entity.js.map +1 -0
- package/dist/common/entities/index.d.ts +2 -1
- package/dist/common/entities/index.js +2 -0
- package/dist/common/entities/index.js.map +1 -1
- package/dist/common/entities/transfert/b2w-transfert.entity.d.ts +1 -0
- package/dist/common/entities/transfert/b2w-transfert.entity.js +5 -0
- package/dist/common/entities/transfert/b2w-transfert.entity.js.map +1 -1
- package/dist/common/utils/constants/table-names.constant.d.ts +1 -0
- package/dist/common/utils/constants/table-names.constant.js +1 -0
- package/dist/common/utils/constants/table-names.constant.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AuditableEntity } from '../../auditable/auditable.entity';
|
|
2
|
+
import { User } from './user.entity';
|
|
3
|
+
import { PaymentMethodType } from './payment-method-type.entity';
|
|
4
|
+
import { Transaction } from './transaction.entity';
|
|
5
|
+
import { StatusCommission } from '../enums/status_commission.enum';
|
|
6
|
+
export declare class CommissionWithdrawalBranchManager extends AuditableEntity {
|
|
7
|
+
id: string;
|
|
8
|
+
branchManager: User;
|
|
9
|
+
amount: number;
|
|
10
|
+
paymentMethod: PaymentMethodType;
|
|
11
|
+
status: StatusCommission;
|
|
12
|
+
justification?: string;
|
|
13
|
+
transaction: Transaction;
|
|
14
|
+
cardAccountNumber?: string;
|
|
15
|
+
mmOperator?: string;
|
|
16
|
+
mmPhoneNumber?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CommissionWithdrawalBranchManager = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const auditable_entity_1 = require("../../auditable/auditable.entity");
|
|
15
|
+
const user_entity_1 = require("./user.entity");
|
|
16
|
+
const payment_method_type_entity_1 = require("./payment-method-type.entity");
|
|
17
|
+
const transaction_entity_1 = require("./transaction.entity");
|
|
18
|
+
const status_commission_enum_1 = require("../enums/status_commission.enum");
|
|
19
|
+
const table_names_constant_1 = require("../utils/constants/table-names.constant");
|
|
20
|
+
let CommissionWithdrawalBranchManager = class CommissionWithdrawalBranchManager extends auditable_entity_1.AuditableEntity {
|
|
21
|
+
};
|
|
22
|
+
exports.CommissionWithdrawalBranchManager = CommissionWithdrawalBranchManager;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], CommissionWithdrawalBranchManager.prototype, "id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, { onDelete: 'CASCADE' }),
|
|
29
|
+
(0, typeorm_1.JoinColumn)({ name: 'branch_manager_id' }),
|
|
30
|
+
__metadata("design:type", user_entity_1.User)
|
|
31
|
+
], CommissionWithdrawalBranchManager.prototype, "branchManager", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: 'float', nullable: false }),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], CommissionWithdrawalBranchManager.prototype, "amount", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ManyToOne)(() => payment_method_type_entity_1.PaymentMethodType, { eager: true }),
|
|
38
|
+
(0, typeorm_1.JoinColumn)({ name: 'payment_method_id' }),
|
|
39
|
+
__metadata("design:type", payment_method_type_entity_1.PaymentMethodType)
|
|
40
|
+
], CommissionWithdrawalBranchManager.prototype, "paymentMethod", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({
|
|
43
|
+
type: 'enum',
|
|
44
|
+
enum: status_commission_enum_1.StatusCommission,
|
|
45
|
+
default: status_commission_enum_1.StatusCommission.PENDING,
|
|
46
|
+
}),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], CommissionWithdrawalBranchManager.prototype, "status", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], CommissionWithdrawalBranchManager.prototype, "justification", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.ManyToOne)(() => transaction_entity_1.Transaction, {
|
|
55
|
+
nullable: true,
|
|
56
|
+
onDelete: 'CASCADE',
|
|
57
|
+
onUpdate: 'CASCADE',
|
|
58
|
+
}),
|
|
59
|
+
(0, typeorm_1.JoinColumn)({ name: 'transaction_id' }),
|
|
60
|
+
__metadata("design:type", transaction_entity_1.Transaction)
|
|
61
|
+
], CommissionWithdrawalBranchManager.prototype, "transaction", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({ name: 'card_account_number', type: 'varchar', length: 64, nullable: true }),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], CommissionWithdrawalBranchManager.prototype, "cardAccountNumber", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, typeorm_1.Column)({ name: 'mm_operator', type: 'varchar', length: 64, nullable: true }),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], CommissionWithdrawalBranchManager.prototype, "mmOperator", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, typeorm_1.Column)({ name: 'mm_phone_number', type: 'varchar', length: 32, nullable: true }),
|
|
72
|
+
__metadata("design:type", String)
|
|
73
|
+
], CommissionWithdrawalBranchManager.prototype, "mmPhoneNumber", void 0);
|
|
74
|
+
exports.CommissionWithdrawalBranchManager = CommissionWithdrawalBranchManager = __decorate([
|
|
75
|
+
(0, typeorm_1.Entity)(table_names_constant_1.TABLE_NAMES.COMMISSION_WITHDRAWALS_BRANCH_MANAGERS)
|
|
76
|
+
], CommissionWithdrawalBranchManager);
|
|
77
|
+
//# sourceMappingURL=commission-withdrawal-branch-manager.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commission-withdrawal-branch-manager.entity.js","sourceRoot":"","sources":["../../../src/common/entities/commission-withdrawal-branch-manager.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAMiB;AACjB,uEAAmE;AACnE,+CAAqC;AACrC,6EAAiE;AACjE,6DAAmD;AACnD,4EAAmE;AACnE,kFAAsE;AAI/D,IAAM,iCAAiC,GAAvC,MAAM,iCAAkC,SAAQ,kCAAe;CA6CrE,CAAA;AA7CY,8EAAiC;AAE5C;IADC,IAAA,gCAAsB,EAAC,MAAM,CAAC;;6DACpB;AAIX;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC9C,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;8BAC3B,kBAAI;wEAAC;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;iEAC5B;AAIf;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8CAAiB,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IACnD,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;8BAC3B,8CAAiB;wEAAC;AAOjC;IALC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,yCAAgB;QACtB,OAAO,EAAE,yCAAgB,CAAC,OAAO;KAClC,CAAC;;iEACuB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wEAClB;AAQvB;IANC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,gCAAW,EAAE;QAC5B,QAAQ,EAAE,IAAI;QACd,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;8BAC1B,gCAAW;sEAAC;AAMzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4EAC1D;AAI3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qEACzD;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wEAC1D;4CA5CZ,iCAAiC;IAD7C,IAAA,gBAAM,EAAC,kCAAW,CAAC,sCAAsC,CAAC;GAC9C,iCAAiC,CA6C7C"}
|
|
@@ -31,6 +31,7 @@ import { RateConfig } from './rateConfig.entity';
|
|
|
31
31
|
import { PinCode } from './pin_code.entity';
|
|
32
32
|
import { CommissionWithdrawalAgent } from './commission-withdrawal-agent.entity';
|
|
33
33
|
import { CommissionWithdrawalDistributor } from './commission-withdrawal-distributor.entity';
|
|
34
|
+
import { CommissionWithdrawalBranchManager } from './commission-withdrawal-branch-manager.entity';
|
|
34
35
|
import { PaymentCode } from './payment-code.entity';
|
|
35
36
|
import { SoldeInterne } from './soldes/solde-interne.entity';
|
|
36
37
|
import { Partner } from './partner.entity';
|
|
@@ -38,4 +39,4 @@ import { PartnerFees } from './partner_fees.entity';
|
|
|
38
39
|
import { SubAccountCustomer } from './soldes/sub-account-customer.entity';
|
|
39
40
|
import { ApiCallLogs } from './logs/api-call-logs.entity';
|
|
40
41
|
import { B2WTransfert } from './transfert/b2w-transfert.entity';
|
|
41
|
-
export declare const entities: (typeof File | typeof Permission | typeof Role | typeof User | typeof SalePoint | typeof Country | typeof Stock | typeof Currency | typeof Operation | typeof Agent | typeof Distributor | typeof TotupsAgent | typeof TotupsDist | typeof ActionType | typeof ThirdPartyProvider | typeof Partner | typeof PartnerFees | typeof StockSalePoint | typeof CurrencyValue | typeof StockPartner | typeof Rock | typeof StockStonePartner | typeof OtpCode | typeof PinCode | typeof CaisseDailyWorker | typeof CaisseOperationType | typeof CaisseOperation | typeof SoldeCaisses | typeof Audit | typeof KycRequest | typeof Contact | typeof QrCode | typeof RateConfig | typeof CommissionWithdrawalAgent | typeof CommissionWithdrawalDistributor | typeof PaymentCode | typeof SoldeInterne | typeof SubAccountCustomer | typeof ApiCallLogs | typeof B2WTransfert)[];
|
|
42
|
+
export declare const entities: (typeof File | typeof Permission | typeof Role | typeof User | typeof SalePoint | typeof Country | typeof Stock | typeof Currency | typeof Operation | typeof Agent | typeof Distributor | typeof TotupsAgent | typeof TotupsDist | typeof ActionType | typeof ThirdPartyProvider | typeof Partner | typeof PartnerFees | typeof StockSalePoint | typeof CurrencyValue | typeof StockPartner | typeof Rock | typeof StockStonePartner | typeof OtpCode | typeof PinCode | typeof CaisseDailyWorker | typeof CaisseOperationType | typeof CaisseOperation | typeof SoldeCaisses | typeof Audit | typeof KycRequest | typeof Contact | typeof QrCode | typeof RateConfig | typeof CommissionWithdrawalAgent | typeof CommissionWithdrawalDistributor | typeof CommissionWithdrawalBranchManager | typeof PaymentCode | typeof SoldeInterne | typeof SubAccountCustomer | typeof ApiCallLogs | typeof B2WTransfert)[];
|
|
@@ -46,6 +46,7 @@ const pin_code_entity_1 = require("./pin_code.entity");
|
|
|
46
46
|
const payment_method_type_entity_1 = require("./payment-method-type.entity");
|
|
47
47
|
const commission_withdrawal_agent_entity_1 = require("./commission-withdrawal-agent.entity");
|
|
48
48
|
const commission_withdrawal_distributor_entity_1 = require("./commission-withdrawal-distributor.entity");
|
|
49
|
+
const commission_withdrawal_branch_manager_entity_1 = require("./commission-withdrawal-branch-manager.entity");
|
|
49
50
|
const payment_code_entity_1 = require("./payment-code.entity");
|
|
50
51
|
const solde_interne_entity_1 = require("./soldes/solde-interne.entity");
|
|
51
52
|
const partner_entity_1 = require("./partner.entity");
|
|
@@ -102,6 +103,7 @@ exports.entities = [
|
|
|
102
103
|
action_type_entity_1.ActionType,
|
|
103
104
|
commission_withdrawal_agent_entity_1.CommissionWithdrawalAgent,
|
|
104
105
|
commission_withdrawal_distributor_entity_1.CommissionWithdrawalDistributor,
|
|
106
|
+
commission_withdrawal_branch_manager_entity_1.CommissionWithdrawalBranchManager,
|
|
105
107
|
solde_interne_entity_1.SoldeInterne,
|
|
106
108
|
partner_entity_1.Partner,
|
|
107
109
|
partner_fees_entity_1.PartnerFees,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/common/entities/index.ts"],"names":[],"mappings":";;;AAAA,+CAAqC;AACrC,+CAAqC;AACrC,oFAAwE;AACxE,0DAAgD;AAChD,8EAAmE;AACnE,wFAA4E;AAC5E,oEAAyD;AACzD,+CAAqC;AACrC,2DAAiD;AACjD,qDAA2C;AAC3C,2DAAgD;AAChD,uDAA6C;AAC7C,sEAA4D;AAC5D,0EAAgE;AAChE,4EAAkE;AAClE,iDAAuC;AACvC,iEAAsD;AACtD,uEAA2D;AAC3D,6EAAiE;AACjE,6DAAmD;AACnD,yDAA+C;AAC/C,iEAAuD;AACvD,mEAAwD;AACxD,+CAAqC;AACrC,mEAAyD;AACzD,iDAAuC;AACvC,uDAA4C;AAC5C,uDAA6C;AAC7C,sEAA2D;AAC3D,oEAAyD;AACzD,mEAAyD;AACzD,2EAAiE;AACjE,6DAAkD;AAClD,qDAA2C;AAC3C,qDAA0C;AAC1C,oEAAyD;AACzD,gFAAqE;AACrE,sEAA2D;AAC3D,6DAAkD;AAClD,2DAAiD;AACjD,2DAAiD;AACjD,uDAA4C;AAC5C,6EAAiE;AACjE,6FAAiF;AACjF,yGAA6F;AAC7F,+DAAoD;AACpD,wEAA6D;AAC7D,qDAA2C;AAC3C,+DAAoD;AACpD,sFAA0E;AAC1E,sFAA0E;AAC1E,wFAA4E;AAC5E,sEAA0D;AAC1D,2EAAgE;AAInD,QAAA,QAAQ,GAAG;IACpB,kBAAI;IACJ,kBAAI;IACJ,8CAAiB;IACjB,sBAAM;IACN,yCAAe;IACf,kDAAmB;IACnB,+BAAU;IACV,kBAAI;IACJ,8BAAU;IACV,wBAAO;IACP,6BAAS;IACT,0BAAQ;IACR,kCAAY;IACZ,sCAAc;IACd,wCAAe;IACf,oBAAK;IACL,mCAAY;IACZ,wCAAc;IACd,8CAAiB;IACjB,gCAAW;IACX,4BAAS;IACT,oCAAa;IACb,qCAAa;IACb,kBAAI;IACJ,gCAAW;IACX,oBAAK;IACL,yBAAO;IACP,oBAAK;IACL,iCAAW;IACX,+BAAU;IACV,sCAAc;IACd,8CAAkB;IAClB,+BAAU;IACV,uBAAM;IACN,iCAAW;IACX,iCAAW;IAEX,wBAAO;IACP,+BAAU;IACV,2CAAgB;IAChB,8BAAU;IACV,8BAAU;IACV,yBAAO;IACP,8CAAiB;IACjB,+BAAU;IACV,8DAAyB;IACzB,0EAA+B;IAC/B,mCAAY;IACZ,wBAAO;IACP,iCAAW;IACX,gDAAkB;IAClB,gDAAkB;IAClB,kDAAmB;IACnB,kCAAW;IACX,mCAAY;CACf,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/common/entities/index.ts"],"names":[],"mappings":";;;AAAA,+CAAqC;AACrC,+CAAqC;AACrC,oFAAwE;AACxE,0DAAgD;AAChD,8EAAmE;AACnE,wFAA4E;AAC5E,oEAAyD;AACzD,+CAAqC;AACrC,2DAAiD;AACjD,qDAA2C;AAC3C,2DAAgD;AAChD,uDAA6C;AAC7C,sEAA4D;AAC5D,0EAAgE;AAChE,4EAAkE;AAClE,iDAAuC;AACvC,iEAAsD;AACtD,uEAA2D;AAC3D,6EAAiE;AACjE,6DAAmD;AACnD,yDAA+C;AAC/C,iEAAuD;AACvD,mEAAwD;AACxD,+CAAqC;AACrC,mEAAyD;AACzD,iDAAuC;AACvC,uDAA4C;AAC5C,uDAA6C;AAC7C,sEAA2D;AAC3D,oEAAyD;AACzD,mEAAyD;AACzD,2EAAiE;AACjE,6DAAkD;AAClD,qDAA2C;AAC3C,qDAA0C;AAC1C,oEAAyD;AACzD,gFAAqE;AACrE,sEAA2D;AAC3D,6DAAkD;AAClD,2DAAiD;AACjD,2DAAiD;AACjD,uDAA4C;AAC5C,6EAAiE;AACjE,6FAAiF;AACjF,yGAA6F;AAC7F,+GAAkG;AAClG,+DAAoD;AACpD,wEAA6D;AAC7D,qDAA2C;AAC3C,+DAAoD;AACpD,sFAA0E;AAC1E,sFAA0E;AAC1E,wFAA4E;AAC5E,sEAA0D;AAC1D,2EAAgE;AAInD,QAAA,QAAQ,GAAG;IACpB,kBAAI;IACJ,kBAAI;IACJ,8CAAiB;IACjB,sBAAM;IACN,yCAAe;IACf,kDAAmB;IACnB,+BAAU;IACV,kBAAI;IACJ,8BAAU;IACV,wBAAO;IACP,6BAAS;IACT,0BAAQ;IACR,kCAAY;IACZ,sCAAc;IACd,wCAAe;IACf,oBAAK;IACL,mCAAY;IACZ,wCAAc;IACd,8CAAiB;IACjB,gCAAW;IACX,4BAAS;IACT,oCAAa;IACb,qCAAa;IACb,kBAAI;IACJ,gCAAW;IACX,oBAAK;IACL,yBAAO;IACP,oBAAK;IACL,iCAAW;IACX,+BAAU;IACV,sCAAc;IACd,8CAAkB;IAClB,+BAAU;IACV,uBAAM;IACN,iCAAW;IACX,iCAAW;IAEX,wBAAO;IACP,+BAAU;IACV,2CAAgB;IAChB,8BAAU;IACV,8BAAU;IACV,yBAAO;IACP,8CAAiB;IACjB,+BAAU;IACV,8DAAyB;IACzB,0EAA+B;IAC/B,+EAAiC;IACjC,mCAAY;IACZ,wBAAO;IACP,iCAAW;IACX,gDAAkB;IAClB,gDAAkB;IAClB,kDAAmB;IACnB,kCAAW;IACX,mCAAY;CACf,CAAC"}
|
|
@@ -99,6 +99,11 @@ __decorate([
|
|
|
99
99
|
(0, typeorm_1.Column)({ name: 'internal_reference', type: 'varchar', nullable: true }),
|
|
100
100
|
__metadata("design:type", String)
|
|
101
101
|
], B2WTransfert.prototype, "internalReference", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, classes_1.AutoMap)(),
|
|
104
|
+
(0, typeorm_1.Column)({ name: 'recipient_phone_number', type: 'varchar', nullable: true }),
|
|
105
|
+
__metadata("design:type", String)
|
|
106
|
+
], B2WTransfert.prototype, "recipientPhoneNumber", void 0);
|
|
102
107
|
exports.B2WTransfert = B2WTransfert = __decorate([
|
|
103
108
|
(0, typeorm_2.Entity)(table_names_constant_1.TABLE_NAMES.B2W_TRANSFER)
|
|
104
109
|
], B2WTransfert);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"b2w-transfert.entity.js","sourceRoot":"","sources":["../../../../src/common/entities/transfert/b2w-transfert.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAiC;AAEjC,iDAA8C;AAC9C,sFAAkF;AAClF,qFAAyE;AACzE,qCAAiC;AACjC,2EAAqE;AAG9D,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,kCAAe;
|
|
1
|
+
{"version":3,"file":"b2w-transfert.entity.js","sourceRoot":"","sources":["../../../../src/common/entities/transfert/b2w-transfert.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -44,6 +44,7 @@ export declare const TABLE_NAMES: {
|
|
|
44
44
|
RATE_CONFIG: string;
|
|
45
45
|
COMMISSION_WITHDRAWALS_AGENTS: string;
|
|
46
46
|
COMMISSION_WITHDRAWALS_DISTRIBUTORS: string;
|
|
47
|
+
COMMISSION_WITHDRAWALS_BRANCH_MANAGERS: string;
|
|
47
48
|
SUB_ACCOUNT_CUSTOMER: string;
|
|
48
49
|
PARTNER: string;
|
|
49
50
|
PARTNER_FEES: string;
|
|
@@ -47,6 +47,7 @@ exports.TABLE_NAMES = {
|
|
|
47
47
|
RATE_CONFIG: 'rate_config',
|
|
48
48
|
COMMISSION_WITHDRAWALS_AGENTS: 'commission_withdrawals_agents',
|
|
49
49
|
COMMISSION_WITHDRAWALS_DISTRIBUTORS: 'commission_withdrawals_distributors',
|
|
50
|
+
COMMISSION_WITHDRAWALS_BRANCH_MANAGERS: 'commission_withdrawals_branch_managers',
|
|
50
51
|
SUB_ACCOUNT_CUSTOMER: 'sub_account_customers',
|
|
51
52
|
PARTNER: 'partners',
|
|
52
53
|
PARTNER_FEES: 'partner_fees',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table-names.constant.js","sourceRoot":"","sources":["../../../../src/common/utils/constants/table-names.constant.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,kBAAkB;IAC/B,gBAAgB,EAAE,uBAAuB;IACzC,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,qBAAqB;IACpC,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,aAAa;IACzB,OAAO,EAAE,WAAW;IACpB,YAAY,EAAE,eAAe;IAC7B,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,SAAS,EAAE,kBAAkB;IAC7B,WAAW,EAAE,cAAc;IAC3B,iBAAiB,EAAE,oBAAoB;IACvC,oBAAoB,EAAE,uBAAuB;IAC7C,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,YAAY;IACtB,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,eAAe;IAC7B,gBAAgB,EAAE,mBAAmB;IACrC,cAAc,EAAE,iBAAiB;IACjC,mBAAmB,EAAE,qBAAqB;IAC1C,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,cAAc,EAAE,iBAAiB;IACjC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,qBAAqB,EAAE,wBAAwB;IAC/C,WAAW,EAAE,qBAAqB;IAClC,UAAU,EAAG,YAAY;IACzB,KAAK,EAAE,QAAQ;IACf,QAAQ,EAAE,WAAW;IACrB,KAAK,EAAE,QAAQ;IACf,oBAAoB,EAAE,uBAAuB;IAC7C,gBAAgB,EAAE,mBAAmB;IACrC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,WAAW,EAAE,cAAc;IAC3B,WAAW,EAAE,aAAa;IAC1B,6BAA6B,EAAE,+BAA+B;IAC9D,mCAAmC,EAAE,qCAAqC;IAC1E,oBAAoB,EAAE,uBAAuB;IAC7C,OAAO,EAAE,UAAU;IACnB,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,eAAe;CAC9B,CAAC"}
|
|
1
|
+
{"version":3,"file":"table-names.constant.js","sourceRoot":"","sources":["../../../../src/common/utils/constants/table-names.constant.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG;IACzB,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,kBAAkB;IAC/B,gBAAgB,EAAE,uBAAuB;IACzC,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,qBAAqB;IACpC,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,aAAa;IACzB,OAAO,EAAE,WAAW;IACpB,YAAY,EAAE,eAAe;IAC7B,cAAc,EAAE,iBAAiB;IACjC,aAAa,EAAE,gBAAgB;IAC/B,SAAS,EAAE,kBAAkB;IAC7B,WAAW,EAAE,cAAc;IAC3B,iBAAiB,EAAE,oBAAoB;IACvC,oBAAoB,EAAE,uBAAuB;IAC7C,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,YAAY;IACtB,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,eAAe;IAC7B,gBAAgB,EAAE,mBAAmB;IACrC,cAAc,EAAE,iBAAiB;IACjC,mBAAmB,EAAE,qBAAqB;IAC1C,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,cAAc,EAAE,iBAAiB;IACjC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,qBAAqB,EAAE,wBAAwB;IAC/C,WAAW,EAAE,qBAAqB;IAClC,UAAU,EAAG,YAAY;IACzB,KAAK,EAAE,QAAQ;IACf,QAAQ,EAAE,WAAW;IACrB,KAAK,EAAE,QAAQ;IACf,oBAAoB,EAAE,uBAAuB;IAC7C,gBAAgB,EAAE,mBAAmB;IACrC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,WAAW,EAAE,cAAc;IAC3B,WAAW,EAAE,aAAa;IAC1B,6BAA6B,EAAE,+BAA+B;IAC9D,mCAAmC,EAAE,qCAAqC;IAC1E,sCAAsC,EAAE,wCAAwC;IAChF,oBAAoB,EAAE,uBAAuB;IAC7C,OAAO,EAAE,UAAU;IACnB,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,eAAe;CAC9B,CAAC"}
|