@heliofi/common 0.2.152 → 0.2.155

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,2 +1,3 @@
1
1
  export * from './updateCompany.dto';
2
2
  export * from './createCompany.dto';
3
+ export * from './updateMoonpayApiKey.dto';
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./updateCompany.dto"), exports);
18
18
  __exportStar(require("./createCompany.dto"), exports);
19
+ __exportStar(require("./updateMoonpayApiKey.dto"), exports);
19
20
  //# 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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,sDAAoC;AACpC,4DAA0C"}
@@ -0,0 +1,4 @@
1
+ export declare class UpdateMoonpayApiKeyDto {
2
+ moonpayApiKey: string;
3
+ moonpayApiKeySecret: string;
4
+ }
@@ -0,0 +1,27 @@
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.UpdateMoonpayApiKeyDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class UpdateMoonpayApiKeyDto {
15
+ }
16
+ exports.UpdateMoonpayApiKeyDto = UpdateMoonpayApiKeyDto;
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], UpdateMoonpayApiKeyDto.prototype, "moonpayApiKey", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsString)(),
24
+ (0, class_validator_1.IsNotEmpty)(),
25
+ __metadata("design:type", String)
26
+ ], UpdateMoonpayApiKeyDto.prototype, "moonpayApiKeySecret", void 0);
27
+ //# sourceMappingURL=updateMoonpayApiKey.dto.js.map
@@ -0,0 +1 @@
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;;6DACS;AAItB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mEACe"}
@@ -17,5 +17,6 @@ export declare class BaseCompany extends Entity {
17
17
  kycVerified?: boolean;
18
18
  kybVerified?: boolean;
19
19
  helioVerified?: boolean;
20
+ moonpayApiKey?: string;
20
21
  customTheme?: CustomTheme;
21
22
  }
@@ -1 +1 @@
1
- {"version":3,"file":"BaseCompany.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/BaseCompany.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,WAAY,SAAQ,eAAM;CAsCtC;AAtCD,kCAsCC"}
1
+ {"version":3,"file":"BaseCompany.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/company/entities/BaseCompany.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,WAAY,SAAQ,eAAM;CAwCtC;AAxCD,kCAwCC"}
@@ -16,4 +16,5 @@ export declare class BaseCurrency extends Entity {
16
16
  features?: CurrencyFeature[];
17
17
  iconUrl?: string;
18
18
  orderingType?: OrderingType;
19
+ isNative?: boolean;
19
20
  }
@@ -1 +1 @@
1
- {"version":3,"file":"BaseCurrency.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/entities/BaseCurrency.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAKtC,MAAa,YAAa,SAAQ,eAAM;CA0BvC;AA1BD,oCA0BC"}
1
+ {"version":3,"file":"BaseCurrency.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/currency/entities/BaseCurrency.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAKtC,MAAa,YAAa,SAAQ,eAAM;CA4BvC;AA5BD,oCA4BC"}