@heliofi/common 0.2.209 → 0.2.210
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/src/domain/model/blockchain/entities/BaseBlockchain.entity.d.ts +2 -0
- package/dist/src/domain/model/blockchain/entities/BaseBlockchain.entity.js.map +1 -1
- package/dist/src/domain/model/company/dtos/createDepositPathFeeRule.dto.d.ts +8 -0
- package/dist/src/domain/model/company/dtos/createDepositPathFeeRule.dto.js +42 -0
- package/dist/src/domain/model/company/dtos/createDepositPathFeeRule.dto.js.map +1 -0
- package/dist/src/domain/model/company/dtos/deleteDepositPathFeeRule.dto.d.ts +6 -0
- package/dist/src/domain/model/company/dtos/deleteDepositPathFeeRule.dto.js +31 -0
- package/dist/src/domain/model/company/dtos/deleteDepositPathFeeRule.dto.js.map +1 -0
- package/dist/src/domain/model/company/dtos/index.d.ts +3 -0
- package/dist/src/domain/model/company/dtos/index.js +3 -0
- package/dist/src/domain/model/company/dtos/index.js.map +1 -1
- package/dist/src/domain/model/company/dtos/updateDepositPathFeeRule.dto.d.ts +5 -0
- package/dist/src/domain/model/company/dtos/updateDepositPathFeeRule.dto.js +35 -0
- package/dist/src/domain/model/company/dtos/updateDepositPathFeeRule.dto.js.map +1 -0
- package/dist/src/domain/model/company/entities/CompanyWithFees.entity.d.ts +2 -0
- package/dist/src/domain/model/company/entities/CompanyWithFees.entity.js.map +1 -1
- package/dist/src/domain/model/company/entities/CurrencyCategory.enum.d.ts +5 -0
- package/dist/src/domain/model/company/entities/CurrencyCategory.enum.js +10 -0
- package/dist/src/domain/model/company/entities/CurrencyCategory.enum.js.map +1 -0
- package/dist/src/domain/model/company/entities/DepositPathFeeRule.entity.d.ts +8 -0
- package/dist/src/domain/model/company/entities/DepositPathFeeRule.entity.js +3 -0
- package/dist/src/domain/model/company/entities/DepositPathFeeRule.entity.js.map +1 -0
- package/dist/src/domain/model/company/entities/index.d.ts +2 -0
- package/dist/src/domain/model/company/entities/index.js +2 -0
- package/dist/src/domain/model/company/entities/index.js.map +1 -1
- package/dist/src/domain/model/currency/entities/CurrencyFeature.d.ts +3 -1
- package/dist/src/domain/model/currency/entities/CurrencyFeature.js +2 -0
- package/dist/src/domain/model/currency/entities/CurrencyFeature.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseBlockchain.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blockchain/entities/BaseBlockchain.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,cAAe,SAAQ,eAAM;
|
|
1
|
+
{"version":3,"file":"BaseBlockchain.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/blockchain/entities/BaseBlockchain.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,cAAe,SAAQ,eAAM;CAUzC;AAVD,wCAUC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CurrencyCategory } from '../entities/CurrencyCategory.enum';
|
|
2
|
+
export declare class CreateDepositPathFeeRuleDto {
|
|
3
|
+
depositCurrencyCategory: CurrencyCategory;
|
|
4
|
+
recipientCurrencyCategory: CurrencyCategory;
|
|
5
|
+
crossChain: boolean | null;
|
|
6
|
+
bps: number;
|
|
7
|
+
priority: number;
|
|
8
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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.CreateDepositPathFeeRuleDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const CurrencyCategory_enum_1 = require("../entities/CurrencyCategory.enum");
|
|
15
|
+
class CreateDepositPathFeeRuleDto {
|
|
16
|
+
}
|
|
17
|
+
exports.CreateDepositPathFeeRuleDto = CreateDepositPathFeeRuleDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsEnum)(CurrencyCategory_enum_1.CurrencyCategory),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreateDepositPathFeeRuleDto.prototype, "depositCurrencyCategory", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsEnum)(CurrencyCategory_enum_1.CurrencyCategory),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], CreateDepositPathFeeRuleDto.prototype, "recipientCurrencyCategory", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.ValidateIf)((o) => o.crossChain !== null),
|
|
28
|
+
(0, class_validator_1.IsBoolean)(),
|
|
29
|
+
__metadata("design:type", Object)
|
|
30
|
+
], CreateDepositPathFeeRuleDto.prototype, "crossChain", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsNumber)(),
|
|
33
|
+
(0, class_validator_1.Min)(0),
|
|
34
|
+
(0, class_validator_1.Max)(10000),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], CreateDepositPathFeeRuleDto.prototype, "bps", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsInt)(),
|
|
39
|
+
(0, class_validator_1.Min)(0),
|
|
40
|
+
__metadata("design:type", Number)
|
|
41
|
+
], CreateDepositPathFeeRuleDto.prototype, "priority", void 0);
|
|
42
|
+
//# sourceMappingURL=createDepositPathFeeRule.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createDepositPathFeeRule.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/createDepositPathFeeRule.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,6EAAqE;AAErE,MAAa,2BAA2B;CAmBvC;AAnBD,kEAmBC;AAjBC;IADC,IAAA,wBAAM,EAAC,wCAAgB,CAAC;;4EACiB;AAG1C;IADC,IAAA,wBAAM,EAAC,wCAAgB,CAAC;;8EACmB;AAI5C;IAFC,IAAA,4BAAU,EAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,KAAK,IAAI,CAAC;IACxC,IAAA,2BAAS,GAAE;;+DACe;AAK3B;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;IACN,IAAA,qBAAG,EAAC,KAAK,CAAC;;wDACC;AAIZ;IAFC,IAAA,uBAAK,GAAE;IACP,IAAA,qBAAG,EAAC,CAAC,CAAC;;6DACU"}
|
|
@@ -0,0 +1,31 @@
|
|
|
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.DeleteDepositPathFeeRuleDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const CurrencyCategory_enum_1 = require("../entities/CurrencyCategory.enum");
|
|
15
|
+
class DeleteDepositPathFeeRuleDto {
|
|
16
|
+
}
|
|
17
|
+
exports.DeleteDepositPathFeeRuleDto = DeleteDepositPathFeeRuleDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsEnum)(CurrencyCategory_enum_1.CurrencyCategory),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], DeleteDepositPathFeeRuleDto.prototype, "depositCurrencyCategory", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsEnum)(CurrencyCategory_enum_1.CurrencyCategory),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], DeleteDepositPathFeeRuleDto.prototype, "recipientCurrencyCategory", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.ValidateIf)((o) => o.crossChain !== null),
|
|
28
|
+
(0, class_validator_1.IsBoolean)(),
|
|
29
|
+
__metadata("design:type", Object)
|
|
30
|
+
], DeleteDepositPathFeeRuleDto.prototype, "crossChain", void 0);
|
|
31
|
+
//# sourceMappingURL=deleteDepositPathFeeRule.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleteDepositPathFeeRule.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/deleteDepositPathFeeRule.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAgE;AAChE,6EAAqE;AAErE,MAAa,2BAA2B;CAUvC;AAVD,kEAUC;AARC;IADC,IAAA,wBAAM,EAAC,wCAAgB,CAAC;;4EACiB;AAG1C;IADC,IAAA,wBAAM,EAAC,wCAAgB,CAAC;;8EACmB;AAI5C;IAFC,IAAA,4BAAU,EAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,KAAK,IAAI,CAAC;IACxC,IAAA,2BAAS,GAAE;;+DACe"}
|
|
@@ -5,3 +5,6 @@ export * from './updateDepositAffiliateFee.dto';
|
|
|
5
5
|
export * from './createCustomDepositPathFee.dto';
|
|
6
6
|
export * from './updateCustomDepositPathFee.dto';
|
|
7
7
|
export * from './deleteCustomDepositPathFee.dto';
|
|
8
|
+
export * from './createDepositPathFeeRule.dto';
|
|
9
|
+
export * from './updateDepositPathFeeRule.dto';
|
|
10
|
+
export * from './deleteDepositPathFeeRule.dto';
|
|
@@ -21,4 +21,7 @@ __exportStar(require("./updateDepositAffiliateFee.dto"), exports);
|
|
|
21
21
|
__exportStar(require("./createCustomDepositPathFee.dto"), exports);
|
|
22
22
|
__exportStar(require("./updateCustomDepositPathFee.dto"), exports);
|
|
23
23
|
__exportStar(require("./deleteCustomDepositPathFee.dto"), exports);
|
|
24
|
+
__exportStar(require("./createDepositPathFeeRule.dto"), exports);
|
|
25
|
+
__exportStar(require("./updateDepositPathFeeRule.dto"), exports);
|
|
26
|
+
__exportStar(require("./deleteDepositPathFeeRule.dto"), exports);
|
|
24
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,sDAAoC;AACpC,4DAA0C;AAC1C,kEAAgD;AAChD,mEAAiD;AACjD,mEAAiD;AACjD,mEAAiD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,sDAAoC;AACpC,4DAA0C;AAC1C,kEAAgD;AAChD,mEAAiD;AACjD,mEAAiD;AACjD,mEAAiD;AACjD,iEAA+C;AAC/C,iEAA+C;AAC/C,iEAA+C"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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.UpdateDepositPathFeeRuleDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class UpdateDepositPathFeeRuleDto {
|
|
15
|
+
}
|
|
16
|
+
exports.UpdateDepositPathFeeRuleDto = UpdateDepositPathFeeRuleDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.ValidateIf)((o) => o.crossChain !== null),
|
|
19
|
+
(0, class_validator_1.IsBoolean)(),
|
|
20
|
+
__metadata("design:type", Object)
|
|
21
|
+
], UpdateDepositPathFeeRuleDto.prototype, "crossChain", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsNumber)(),
|
|
24
|
+
(0, class_validator_1.IsOptional)(),
|
|
25
|
+
(0, class_validator_1.Min)(0),
|
|
26
|
+
(0, class_validator_1.Max)(10000),
|
|
27
|
+
__metadata("design:type", Number)
|
|
28
|
+
], UpdateDepositPathFeeRuleDto.prototype, "bps", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsInt)(),
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_validator_1.Min)(0),
|
|
33
|
+
__metadata("design:type", Number)
|
|
34
|
+
], UpdateDepositPathFeeRuleDto.prototype, "priority", void 0);
|
|
35
|
+
//# sourceMappingURL=updateDepositPathFeeRule.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateDepositPathFeeRule.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/updateDepositPathFeeRule.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AAEzB,MAAa,2BAA2B;CAmBvC;AAnBD,kEAmBC;AAZC;IAFC,IAAA,4BAAU,EAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,KAAK,IAAI,CAAC;IACxC,IAAA,2BAAS,GAAE;;+DACe;AAM3B;IAJC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,qBAAG,EAAC,CAAC,CAAC;IACN,IAAA,qBAAG,EAAC,KAAK,CAAC;;wDACE;AAKb;IAHC,IAAA,uBAAK,GAAE;IACP,IAAA,4BAAU,GAAE;IACZ,IAAA,qBAAG,EAAC,CAAC,CAAC;;6DACW"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { BaseCompany, CustomDepositPathFee } from './BaseCompany.entity';
|
|
2
2
|
import { BlockchainSymbol } from '../../blockchain';
|
|
3
3
|
import { DepositBlockchainSymbol } from '../../blockchain/constants';
|
|
4
|
+
import { DepositPathFeeRule } from './DepositPathFeeRule.entity';
|
|
4
5
|
export declare class CompanyWithFees extends BaseCompany {
|
|
5
6
|
depositAffiliateFeeBps?: number;
|
|
6
7
|
depositAffiliateFeeWallet?: string;
|
|
7
8
|
depositAffiliateFeeCurrencySymbol?: string;
|
|
8
9
|
depositAffiliateFeeBlockchainSymbol?: BlockchainSymbol | DepositBlockchainSymbol;
|
|
9
10
|
customDepositPathFees?: CustomDepositPathFee[];
|
|
11
|
+
depositPathFeeRules?: DepositPathFeeRule[];
|
|
10
12
|
customFeeBps?: number;
|
|
11
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompanyWithFees.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/CompanyWithFees.entity.ts"],"names":[],"mappings":";;;AAAA,6DAAyE;
|
|
1
|
+
{"version":3,"file":"CompanyWithFees.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/CompanyWithFees.entity.ts"],"names":[],"mappings":";;;AAAA,6DAAyE;AAKzE,MAAa,eAAgB,SAAQ,gCAAW;CAgB/C;AAhBD,0CAgBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CurrencyCategory = void 0;
|
|
4
|
+
var CurrencyCategory;
|
|
5
|
+
(function (CurrencyCategory) {
|
|
6
|
+
CurrencyCategory["NATIVE"] = "NATIVE";
|
|
7
|
+
CurrencyCategory["STABLE"] = "STABLE";
|
|
8
|
+
CurrencyCategory["OTHER"] = "OTHER";
|
|
9
|
+
})(CurrencyCategory || (exports.CurrencyCategory = CurrencyCategory = {}));
|
|
10
|
+
//# sourceMappingURL=CurrencyCategory.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CurrencyCategory.enum.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/CurrencyCategory.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,mCAAe,CAAA;AACjB,CAAC,EAJW,gBAAgB,gCAAhB,gBAAgB,QAI3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DepositPathFeeRule.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/DepositPathFeeRule.entity.ts"],"names":[],"mappings":""}
|
|
@@ -6,3 +6,5 @@ export * from './CompanyWithLogo.entity';
|
|
|
6
6
|
export * from './CompanyWithShopifyMerchantDetails.entity';
|
|
7
7
|
export * from './CompanyWithFees.entity';
|
|
8
8
|
export * from './MoonpayApiKeyConfig.entity';
|
|
9
|
+
export * from './CurrencyCategory.enum';
|
|
10
|
+
export * from './DepositPathFeeRule.entity';
|
|
@@ -22,4 +22,6 @@ __exportStar(require("./CompanyWithLogo.entity"), exports);
|
|
|
22
22
|
__exportStar(require("./CompanyWithShopifyMerchantDetails.entity"), exports);
|
|
23
23
|
__exportStar(require("./CompanyWithFees.entity"), exports);
|
|
24
24
|
__exportStar(require("./MoonpayApiKeyConfig.entity"), exports);
|
|
25
|
+
__exportStar(require("./CurrencyCategory.enum"), exports);
|
|
26
|
+
__exportStar(require("./DepositPathFeeRule.entity"), exports);
|
|
25
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,uDAAqC;AACrC,kDAAgC;AAChC,iEAA+C;AAC/C,2DAAyC;AACzC,6EAA2D;AAC3D,2DAAyC;AACzC,+DAA6C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,uDAAqC;AACrC,kDAAgC;AAChC,iEAA+C;AAC/C,2DAAyC;AACzC,6EAA2D;AAC3D,2DAAyC;AACzC,+DAA6C;AAC7C,0DAAwC;AACxC,8DAA4C"}
|
|
@@ -4,5 +4,7 @@ export declare enum CurrencyFeature {
|
|
|
4
4
|
SWAP = "SWAP",
|
|
5
5
|
DEPOSIT_MERCHANT_RECIPIENT = "DEPOSIT_MERCHANT_RECIPIENT",
|
|
6
6
|
DEPOSIT_CUSTOMER_CHECKOUT = "DEPOSIT_CUSTOMER_CHECKOUT",
|
|
7
|
-
USD_RATE = "USD_RATE"
|
|
7
|
+
USD_RATE = "USD_RATE",
|
|
8
|
+
STABLECOIN = "STABLECOIN",
|
|
9
|
+
NATIVE_TOKEN = "NATIVE_TOKEN"
|
|
8
10
|
}
|
|
@@ -9,5 +9,7 @@ var CurrencyFeature;
|
|
|
9
9
|
CurrencyFeature["DEPOSIT_MERCHANT_RECIPIENT"] = "DEPOSIT_MERCHANT_RECIPIENT";
|
|
10
10
|
CurrencyFeature["DEPOSIT_CUSTOMER_CHECKOUT"] = "DEPOSIT_CUSTOMER_CHECKOUT";
|
|
11
11
|
CurrencyFeature["USD_RATE"] = "USD_RATE";
|
|
12
|
+
CurrencyFeature["STABLECOIN"] = "STABLECOIN";
|
|
13
|
+
CurrencyFeature["NATIVE_TOKEN"] = "NATIVE_TOKEN";
|
|
12
14
|
})(CurrencyFeature || (exports.CurrencyFeature = CurrencyFeature = {}));
|
|
13
15
|
//# sourceMappingURL=CurrencyFeature.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CurrencyFeature.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/entities/CurrencyFeature.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"CurrencyFeature.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/entities/CurrencyFeature.ts"],"names":[],"mappings":";;;AAAA,IAAY,eASX;AATD,WAAY,eAAe;IACzB,sDAAmC,CAAA;IACnC,0DAAuC,CAAA;IACvC,gCAAa,CAAA;IACb,4EAAyD,CAAA;IACzD,0EAAuD,CAAA;IACvD,wCAAqB,CAAA;IACrB,4CAAyB,CAAA;IACzB,gDAA6B,CAAA;AAC/B,CAAC,EATW,eAAe,+BAAf,eAAe,QAS1B"}
|