@heliofi/common 0.2.201 → 0.2.203

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.
@@ -1,5 +1,4 @@
1
1
  export declare class UpdateMoonpayApiKeyDto {
2
2
  moonpayApiKey?: string;
3
3
  moonpayApiKeySecret?: string;
4
- onrampDirectlyToMerchant?: boolean;
5
4
  }
@@ -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,qDAAkE;AAElE,MAAa,sBAAsB;CAYlC;AAZD,wDAYC;AATC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACU;AAIvB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mEACgB;AAI7B;IAFC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wEACsB"}
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,3 @@
1
+ export declare class MoonpayApiKeyConfig {
2
+ moonpayApiKey?: string;
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MoonpayApiKeyConfig = void 0;
4
+ class MoonpayApiKeyConfig {
5
+ }
6
+ exports.MoonpayApiKeyConfig = MoonpayApiKeyConfig;
7
+ //# sourceMappingURL=MoonpayApiKeyConfig.entity.js.map
@@ -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"}
@@ -5,3 +5,4 @@ export * from './CompanyPaymentWallets.entity';
5
5
  export * from './CompanyWithLogo.entity';
6
6
  export * from './CompanyWithShopifyMerchantDetails.entity';
7
7
  export * from './CompanyWithFees.entity';
8
+ export * from './MoonpayApiKeyConfig.entity';
@@ -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"}
@@ -1,4 +1,4 @@
1
- import { CurrencyFeature, CurrencyType, OrderingType } from '../entities';
1
+ import { CurrencyFeature, CurrencyTokenProgram, CurrencyType, OrderingType } from '../entities';
2
2
  export declare class CreateCurrencyDto {
3
3
  symbol: string;
4
4
  name: string;
@@ -12,5 +12,6 @@ export declare class CreateCurrencyDto {
12
12
  orderingType?: OrderingType;
13
13
  features?: CurrencyFeature[];
14
14
  iconUrl?: string;
15
+ tokenProgram?: CurrencyTokenProgram;
15
16
  file?: Express.Multer.File;
16
17
  }
@@ -82,4 +82,9 @@ __decorate([
82
82
  (0, class_validator_1.IsString)(),
83
83
  __metadata("design:type", String)
84
84
  ], CreateCurrencyDto.prototype, "iconUrl", void 0);
85
+ __decorate([
86
+ (0, class_validator_1.IsOptional)(),
87
+ (0, class_validator_1.IsEnum)(entities_1.CurrencyTokenProgram),
88
+ __metadata("design:type", String)
89
+ ], CreateCurrencyDto.prototype, "tokenProgram", void 0);
85
90
  //# sourceMappingURL=createCurrency.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"createCurrency.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/dtos/createCurrency.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,0CAA0E;AAC1E,2GAAwG;AAExG,MAAa,iBAAiB;CAuD7B;AAvDD,8CAuDC;AApDC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACE;AAIf;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACA;AAIb;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;sDACU;AAIrB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;qDACS;AAKpB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACY;AAKzB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;uDACW;AAKtB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACC;AAId;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;+CACS;AAIpB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,uBAAY,CAAC;;uDACO;AAM5B;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAM,EAAC,0BAAe,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACvC,IAAA,6BAAS,EAAC,mEAAgC,CAAC;;mDACf;AAI7B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACM"}
1
+ {"version":3,"file":"createCurrency.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/dtos/createCurrency.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,0CAKqB;AACrB,2GAAwG;AAExG,MAAa,iBAAiB;CA2D7B;AA3DD,8CA2DC;AAxDC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACE;AAIf;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACA;AAIb;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;sDACU;AAIrB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;qDACS;AAKpB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACY;AAKzB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;uDACW;AAKtB;IAHC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACC;AAId;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;+CACS;AAIpB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,uBAAY,CAAC;;uDACO;AAM5B;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAM,EAAC,0BAAe,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACvC,IAAA,6BAAS,EAAC,mEAAgC,CAAC;;mDACf;AAI7B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,+BAAoB,CAAC;;uDACO"}
@@ -7,6 +7,9 @@ export interface DecentTransaction {
7
7
  recentBlockhash?: string;
8
8
  payer?: string;
9
9
  chainKey?: string;
10
+ type?: string;
11
+ destination?: string;
12
+ amount?: string;
10
13
  }
11
14
  export interface DecentTokenAmount {
12
15
  tokenAddress: string;