92 lines
3.4 KiB
JavaScript
92 lines
3.4 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
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;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Transaction = exports.PaymentProvider = exports.PaymentStatus = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
var PaymentStatus;
|
|
(function (PaymentStatus) {
|
|
PaymentStatus["PENDING"] = "PENDING";
|
|
PaymentStatus["SUCCESS"] = "SUCCESS";
|
|
PaymentStatus["FAILED"] = "FAILED";
|
|
PaymentStatus["REFUNDED"] = "REFUNDED";
|
|
})(PaymentStatus || (exports.PaymentStatus = PaymentStatus = {}));
|
|
var PaymentProvider;
|
|
(function (PaymentProvider) {
|
|
PaymentProvider["PAYMOB"] = "PAYMOB";
|
|
PaymentProvider["BINANCE"] = "BINANCE";
|
|
PaymentProvider["MANUAL"] = "MANUAL";
|
|
})(PaymentProvider || (exports.PaymentProvider = PaymentProvider = {}));
|
|
let Transaction = class Transaction {
|
|
id;
|
|
tenantId;
|
|
subscriptionId;
|
|
amount;
|
|
currency;
|
|
provider;
|
|
externalTransactionId;
|
|
status;
|
|
metadata;
|
|
createdAt;
|
|
};
|
|
exports.Transaction = Transaction;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Index)(),
|
|
(0, typeorm_1.Column)(),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "tenantId", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "subscriptionId", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
__metadata("design:type", Number)
|
|
], Transaction.prototype, "amount", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ default: 'USD' }),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "currency", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
type: 'enum',
|
|
enum: PaymentProvider,
|
|
}),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "provider", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Index)(),
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "externalTransactionId", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
type: 'enum',
|
|
enum: PaymentStatus,
|
|
default: PaymentStatus.PENDING,
|
|
}),
|
|
__metadata("design:type", String)
|
|
], Transaction.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], Transaction.prototype, "metadata", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)(),
|
|
__metadata("design:type", Date)
|
|
], Transaction.prototype, "createdAt", void 0);
|
|
exports.Transaction = Transaction = __decorate([
|
|
(0, typeorm_1.Entity)('transactions')
|
|
], Transaction);
|
|
//# sourceMappingURL=transaction.entity.js.map
|