@heliofi/common 0.1.299 → 0.1.300

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.
@@ -15,3 +15,4 @@ export * from './limitSaleType';
15
15
  export * from './maxWalletsPerBlockchain';
16
16
  export * from './transactionDirection';
17
17
  export * from './platform';
18
+ export * from './wallet';
@@ -31,4 +31,5 @@ __exportStar(require("./limitSaleType"), exports);
31
31
  __exportStar(require("./maxWalletsPerBlockchain"), exports);
32
32
  __exportStar(require("./transactionDirection"), exports);
33
33
  __exportStar(require("./platform"), exports);
34
+ __exportStar(require("./wallet"), exports);
34
35
  //# 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"}
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"}
@@ -0,0 +1,4 @@
1
+ export declare enum WalletType {
2
+ EXTENSION = "EXTENSION",
3
+ WEB3AUTH = "WEB3AUTH"
4
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WalletType = void 0;
4
+ var WalletType;
5
+ (function (WalletType) {
6
+ WalletType["EXTENSION"] = "EXTENSION";
7
+ WalletType["WEB3AUTH"] = "WEB3AUTH";
8
+ })(WalletType = exports.WalletType || (exports.WalletType = {}));
9
+ //# sourceMappingURL=wallet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wallet.js","sourceRoot":"","sources":["../../../../src/domain/constants/wallet.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,qCAAuB,CAAA;IACvB,mCAAqB,CAAA;AACvB,CAAC,EAHW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAGrB"}
@@ -0,0 +1,5 @@
1
+ import { Platform } from '../../../constants';
2
+ export declare class SignOnSocialNetworkDto {
3
+ appPublicKey: string;
4
+ platform?: Platform;
5
+ }
@@ -0,0 +1,28 @@
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.SignOnSocialNetworkDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const constants_1 = require("../../../constants");
15
+ class SignOnSocialNetworkDto {
16
+ }
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], SignOnSocialNetworkDto.prototype, "appPublicKey", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsOptional)(),
24
+ (0, class_validator_1.IsEnum)(constants_1.Platform),
25
+ __metadata("design:type", String)
26
+ ], SignOnSocialNetworkDto.prototype, "platform", void 0);
27
+ exports.SignOnSocialNetworkDto = SignOnSocialNetworkDto;
28
+ //# sourceMappingURL=SignOnSocialNetwork.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SignOnSocialNetwork.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/SignOnSocialNetwork.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,kDAA8C;AAE9C,MAAa,sBAAsB;CAQlC;AAPC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACQ;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,oBAAQ,CAAC;;wDACG;AAPtB,wDAQC"}
@@ -0,0 +1,5 @@
1
+ import { Platform } from '../../../constants';
2
+ export declare class SignOnWeb3authSocialNetworkDto {
3
+ appPublicKey: string;
4
+ platform?: Platform;
5
+ }
@@ -0,0 +1,28 @@
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.SignOnWeb3authSocialNetworkDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const constants_1 = require("../../../constants");
15
+ class SignOnWeb3authSocialNetworkDto {
16
+ }
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], SignOnWeb3authSocialNetworkDto.prototype, "appPublicKey", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsOptional)(),
24
+ (0, class_validator_1.IsEnum)(constants_1.Platform),
25
+ __metadata("design:type", String)
26
+ ], SignOnWeb3authSocialNetworkDto.prototype, "platform", void 0);
27
+ exports.SignOnWeb3authSocialNetworkDto = SignOnWeb3authSocialNetworkDto;
28
+ //# sourceMappingURL=SignOnWeb3authSocialNetwork.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SignOnWeb3authSocialNetwork.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/SignOnWeb3authSocialNetwork.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,kDAA8C;AAE9C,MAAa,8BAA8B;CAQ1C;AAPC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oEACQ;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,oBAAQ,CAAC;;gEACG;AAPtB,wEAQC"}
@@ -5,3 +5,4 @@ export * from './DiscordAuth.dto';
5
5
  export * from './AccessCodeAuth.dto';
6
6
  export * from './StoreTwitterToken.dto';
7
7
  export * from './EVMMessage.dto';
8
+ export * from './SignOnWeb3authSocialNetwork.dto';
@@ -21,4 +21,5 @@ __exportStar(require("./DiscordAuth.dto"), exports);
21
21
  __exportStar(require("./AccessCodeAuth.dto"), exports);
22
22
  __exportStar(require("./StoreTwitterToken.dto"), exports);
23
23
  __exportStar(require("./EVMMessage.dto"), exports);
24
+ __exportStar(require("./SignOnWeb3authSocialNetwork.dto"), exports);
24
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,+CAA6B;AAC7B,0DAAwC;AACxC,oDAAkC;AAClC,uDAAqC;AACrC,0DAAwC;AACxC,mDAAiC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,+CAA6B;AAC7B,0DAAwC;AACxC,oDAAkC;AAClC,uDAAqC;AACrC,0DAAwC;AACxC,mDAAiC;AACjC,oEAAkD"}