@heliofi/common 0.2.43 → 0.2.45

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.
@@ -26,4 +26,3 @@ export * from './urlValidation';
26
26
  export * from './countryCode';
27
27
  export * from './theme';
28
28
  export * from './nftType';
29
- export * from './redirectQueryParams';
@@ -42,5 +42,4 @@ __exportStar(require("./urlValidation"), exports);
42
42
  __exportStar(require("./countryCode"), exports);
43
43
  __exportStar(require("./theme"), exports);
44
44
  __exportStar(require("./nftType"), exports);
45
- __exportStar(require("./redirectQueryParams"), exports);
46
45
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,qDAAmC;AACnC,8CAA4B;AAC5B,qEAAmD;AACnD,mDAAiC;AACjC,gDAA8B;AAC9B,2CAAyB;AACzB,2CAAyB;AACzB,kDAAgC;AAChC,4DAA0C;AAC1C,yDAAuC;AACvC,6CAA2B;AAC3B,2CAAyB;AACzB,uDAAqC;AACrC,6CAA2B;AAC3B,6DAA2C;AAC3C,2CAAyB;AACzB,oDAAkC;AAClC,6CAA2B;AAC3B,kDAAgC;AAChC,gDAA8B;AAC9B,0CAAwB;AACxB,4CAA0B;AAC1B,wDAAsC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,qDAAmC;AACnC,8CAA4B;AAC5B,qEAAmD;AACnD,mDAAiC;AACjC,gDAA8B;AAC9B,2CAAyB;AACzB,2CAAyB;AACzB,kDAAgC;AAChC,4DAA0C;AAC1C,yDAAuC;AACvC,6CAA2B;AAC3B,2CAAyB;AACzB,uDAAqC;AACrC,6CAA2B;AAC3B,6DAA2C;AAC3C,2CAAyB;AACzB,oDAAkC;AAClC,6CAA2B;AAC3B,kDAAgC;AAChC,gDAA8B;AAC9B,0CAAwB;AACxB,4CAA0B"}
@@ -1,4 +1,4 @@
1
- import { RedirectQueryParams } from '../../../constants';
1
+ import { RedirectQueryParams } from '../entities';
2
2
  export declare class RedirectQueryParamDto {
3
3
  queryParamType: RedirectQueryParams;
4
4
  value?: string;
@@ -11,11 +11,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.RedirectQueryParamDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- const constants_1 = require("../../../constants");
14
+ const entities_1 = require("../entities");
15
15
  class RedirectQueryParamDto {
16
16
  }
17
17
  __decorate([
18
- (0, class_validator_1.IsEnum)(constants_1.RedirectQueryParams),
18
+ (0, class_validator_1.IsEnum)(entities_1.RedirectQueryParams),
19
19
  (0, class_validator_1.IsNotEmpty)(),
20
20
  __metadata("design:type", String)
21
21
  ], RedirectQueryParamDto.prototype, "queryParamType", void 0);
@@ -1 +1 @@
1
- {"version":3,"file":"redirectQueryParam.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/redirect-query-params/dtos/redirectQueryParam.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,kDAAyD;AAEzD,MAAa,qBAAqB;CAQjC;AAPC;IAAC,IAAA,wBAAM,EAAC,+BAAmB,CAAC;IAC3B,IAAA,4BAAU,GAAE;;6DACuB;AAEpC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACE;AAPjB,sDAQC"}
1
+ {"version":3,"file":"redirectQueryParam.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/redirect-query-params/dtos/redirectQueryParam.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,0CAAkD;AAElD,MAAa,qBAAqB;CAQjC;AAPC;IAAC,IAAA,wBAAM,EAAC,8BAAmB,CAAC;IAC3B,IAAA,4BAAU,GAAE;;6DACuB;AAEpC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACE;AAPjB,sDAQC"}
@@ -1,5 +1,5 @@
1
1
  import { Entity } from '../../entity';
2
- import { RedirectQueryParams } from '../../../constants';
2
+ import { RedirectQueryParams } from './redirectQueryParams';
3
3
  export declare class RedirectQueryParam extends Entity {
4
4
  queryParamType: RedirectQueryParams;
5
5
  value?: string;
@@ -1 +1,2 @@
1
1
  export * from './RedirectQueryParam.entity';
2
+ export * from './redirectQueryParams';
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./RedirectQueryParam.entity"), exports);
18
+ __exportStar(require("./redirectQueryParams"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/redirect-query-params/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/redirect-query-params/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,wDAAsC"}
@@ -0,0 +1,3 @@
1
+ export declare enum RedirectQueryParams {
2
+ WALLET_ADDRESS = "WALLET_ADDRESS"
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RedirectQueryParams = void 0;
4
+ var RedirectQueryParams;
5
+ (function (RedirectQueryParams) {
6
+ RedirectQueryParams["WALLET_ADDRESS"] = "WALLET_ADDRESS";
7
+ })(RedirectQueryParams = exports.RedirectQueryParams || (exports.RedirectQueryParams = {}));
8
+ //# sourceMappingURL=redirectQueryParams.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redirectQueryParams.js","sourceRoot":"","sources":["../../../../../../src/domain/model/redirect-query-params/entities/redirectQueryParams.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAEX;AAFD,WAAY,mBAAmB;IAC7B,wDAAiC,CAAA;AACnC,CAAC,EAFW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAE9B"}