@heliofi/common 0.2.197-alpha.1773229613 → 0.2.197-alpha.1773234224
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/constants/hypercoreTokens.d.ts +0 -1
- package/dist/src/domain/constants/hypercoreTokens.js +1 -2
- package/dist/src/domain/constants/hypercoreTokens.js.map +1 -1
- package/dist/src/domain/model/charge/entities/EnrichedCharge.entity.js +20 -0
- package/dist/src/domain/model/charge/entities/EnrichedCharge.entity.js.map +1 -1
- package/dist/src/domain/model/company/dtos/updateMoonpayApiKey.dto.d.ts +0 -1
- package/dist/src/domain/model/company/dtos/updateMoonpayApiKey.dto.js +0 -5
- package/dist/src/domain/model/company/dtos/updateMoonpayApiKey.dto.js.map +1 -1
- package/dist/src/domain/model/company/entities/MoonpayApiKeyConfig.entity.d.ts +3 -0
- package/dist/src/domain/model/company/entities/MoonpayApiKeyConfig.entity.js +7 -0
- package/dist/src/domain/model/company/entities/MoonpayApiKeyConfig.entity.js.map +1 -0
- package/dist/src/domain/model/company/entities/index.d.ts +1 -0
- package/dist/src/domain/model/company/entities/index.js +1 -0
- package/dist/src/domain/model/company/entities/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.HYPE_DECIMALS = exports.HYPE_TOKEN = void 0;
|
|
4
4
|
exports.HYPE_TOKEN = 'HYPE:0x0d01dc56835d6a0f3d5f4e3e5d37a80c';
|
|
5
5
|
exports.HYPE_DECIMALS = 8;
|
|
6
|
-
exports.HYPERCORE_NATIVE_ADDRESS = '0x00000000000000000000000000000000';
|
|
7
6
|
//# sourceMappingURL=hypercoreTokens.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hypercoreTokens.js","sourceRoot":"","sources":["../../../../src/domain/constants/hypercoreTokens.ts"],"names":[],"mappings":";;;AAGa,QAAA,UAAU,GAAG,yCAAyC,CAAC;AACvD,QAAA,aAAa,GAAG,CAAC,CAAC
|
|
1
|
+
{"version":3,"file":"hypercoreTokens.js","sourceRoot":"","sources":["../../../../src/domain/constants/hypercoreTokens.ts"],"names":[],"mappings":";;;AAGa,QAAA,UAAU,GAAG,yCAAyC,CAAC;AACvD,QAAA,aAAa,GAAG,CAAC,CAAC"}
|
|
@@ -10,13 +10,33 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.EnrichedCharge = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
13
14
|
const class_transformer_1 = require("class-transformer");
|
|
14
15
|
const Charge_entity_1 = require("./Charge.entity");
|
|
16
|
+
const paylink_1 = require("../../paylink");
|
|
17
|
+
const deposit_1 = require("../../deposit");
|
|
15
18
|
class EnrichedCharge extends Charge_entity_1.Charge {
|
|
16
19
|
}
|
|
17
20
|
exports.EnrichedCharge = EnrichedCharge;
|
|
18
21
|
__decorate([
|
|
22
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Pricing currency request amount' }),
|
|
19
23
|
(0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
|
|
20
24
|
__metadata("design:type", BigInt)
|
|
21
25
|
], EnrichedCharge.prototype, "pricingCurrencyRequestAmount", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, swagger_1.ApiProperty)({ type: Object }),
|
|
28
|
+
__metadata("design:type", paylink_1.Paylink)
|
|
29
|
+
], EnrichedCharge.prototype, "paylink", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, swagger_1.ApiPropertyOptional)({ type: Object, nullable: true }),
|
|
32
|
+
__metadata("design:type", Object)
|
|
33
|
+
], EnrichedCharge.prototype, "paylinkTx", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, swagger_1.ApiProperty)(),
|
|
36
|
+
__metadata("design:type", Boolean)
|
|
37
|
+
], EnrichedCharge.prototype, "isSubscriptionRenewal", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, swagger_1.ApiPropertyOptional)({ type: () => deposit_1.DepositCustomerEnrichedEntity }),
|
|
40
|
+
__metadata("design:type", deposit_1.DepositCustomerEnrichedEntity)
|
|
41
|
+
], EnrichedCharge.prototype, "depositCustomer", void 0);
|
|
22
42
|
//# sourceMappingURL=EnrichedCharge.entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EnrichedCharge.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/charge/entities/EnrichedCharge.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA8C;AAC9C,mDAAyC;
|
|
1
|
+
{"version":3,"file":"EnrichedCharge.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/charge/entities/EnrichedCharge.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmE;AACnE,yDAA8C;AAC9C,mDAAyC;AACzC,2CAAwC;AAExC,2CAA8D;AAE9D,MAAa,cAAe,SAAQ,sBAAM;CAgBzC;AAhBD,wCAgBC;AAbC;IAFC,IAAA,qBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,iCAAiC,EAAE,CAAC;IAC7E,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;oEACH;AAGrC;IADC,IAAA,qBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;8BACrB,iBAAO;+CAAC;AAGjB;IADC,IAAA,6BAAmB,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACZ;AAG1C;IADC,IAAA,qBAAW,GAAE;;6DACiB;AAG/B;IADC,IAAA,6BAAmB,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,uCAA6B,EAAE,CAAC;8BACjD,uCAA6B;uDAAC"}
|
|
@@ -24,9 +24,4 @@ __decorate([
|
|
|
24
24
|
(0, class_validator_1.IsOptional)(),
|
|
25
25
|
__metadata("design:type", String)
|
|
26
26
|
], UpdateMoonpayApiKeyDto.prototype, "moonpayApiKeySecret", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, class_validator_1.IsBoolean)(),
|
|
29
|
-
(0, class_validator_1.IsOptional)(),
|
|
30
|
-
__metadata("design:type", Boolean)
|
|
31
|
-
], UpdateMoonpayApiKeyDto.prototype, "onrampDirectlyToMerchant", void 0);
|
|
32
27
|
//# sourceMappingURL=updateMoonpayApiKey.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateMoonpayApiKey.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/updateMoonpayApiKey.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"updateMoonpayApiKey.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/updateMoonpayApiKey.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AAEvD,MAAa,sBAAsB;CAQlC;AARD,wDAQC;AALC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACU;AAIvB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mEACgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MoonpayApiKeyConfig.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/MoonpayApiKeyConfig.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,mBAAmB;CAE/B;AAFD,kDAEC"}
|
|
@@ -21,4 +21,5 @@ __exportStar(require("./CompanyPaymentWallets.entity"), exports);
|
|
|
21
21
|
__exportStar(require("./CompanyWithLogo.entity"), exports);
|
|
22
22
|
__exportStar(require("./CompanyWithShopifyMerchantDetails.entity"), exports);
|
|
23
23
|
__exportStar(require("./CompanyWithFees.entity"), exports);
|
|
24
|
+
__exportStar(require("./MoonpayApiKeyConfig.entity"), exports);
|
|
24
25
|
//# 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"}
|
|
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"}
|