@heliofi/common 0.1.298 → 0.1.299

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.
Files changed (24) hide show
  1. package/dist/src/domain/model/allowlist/dtos/{UploadAllowlistCSV.dto.js → uploadAllowlistCSV.dto.js} +1 -1
  2. package/dist/src/domain/model/allowlist/dtos/{UploadAllowlistCSV.dto.js.map → uploadAllowlistCSV.dto.js.map} +1 -1
  3. package/dist/src/domain/model/nft-escrow/dtos/index.d.ts +0 -1
  4. package/dist/src/domain/model/nft-escrow/dtos/index.js +0 -1
  5. package/dist/src/domain/model/nft-escrow/dtos/index.js.map +1 -1
  6. package/dist/src/domain/model/platform-details/entities/PlatformDetails.entity.d.ts +2 -4
  7. package/dist/src/domain/model/platform-details/entities/PlatformDetails.entity.js +2 -2
  8. package/dist/src/domain/model/platform-details/entities/PlatformDetails.entity.js.map +1 -1
  9. package/dist/src/domain/model/platform-details/entities/PlatformDetailsBase.entity.d.ts +5 -0
  10. package/dist/src/domain/model/platform-details/entities/PlatformDetailsBase.entity.js +8 -0
  11. package/dist/src/domain/model/platform-details/entities/PlatformDetailsBase.entity.js.map +1 -0
  12. package/dist/src/domain/model/platform-details/entities/index.d.ts +1 -0
  13. package/dist/src/domain/model/platform-details/entities/index.js +1 -0
  14. package/dist/src/domain/model/platform-details/entities/index.js.map +1 -1
  15. package/dist/src/domain/model/user/entities/BaseUser.entity.d.ts +2 -2
  16. package/dist/tsconfig.tsbuildinfo +1 -1
  17. package/package.json +2 -2
  18. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.d.ts +0 -3
  19. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.dto.d.ts +0 -3
  20. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.dto.js +0 -24
  21. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.dto.js.map +0 -1
  22. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.js +0 -24
  23. package/dist/src/domain/model/nft-escrow/dtos/verifyCollections.js.map +0 -1
  24. /package/dist/src/domain/model/allowlist/dtos/{UploadAllowlistCSV.dto.d.ts → uploadAllowlistCSV.dto.d.ts} +0 -0
@@ -25,4 +25,4 @@ __decorate([
25
25
  __metadata("design:type", String)
26
26
  ], UploadAllowlistCSVDto.prototype, "prType", void 0);
27
27
  exports.UploadAllowlistCSVDto = UploadAllowlistCSVDto;
28
- //# sourceMappingURL=UploadAllowlistCSV.dto.js.map
28
+ //# sourceMappingURL=uploadAllowlistCSV.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"UploadAllowlistCSV.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/allowlist/dtos/UploadAllowlistCSV.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,2DAA2D;AAE3D,MAAa,qBAAqB;CAUjC;AATC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACC;AAEd;IAAC,IAAA,wBAAM,EAAC,oCAAkB,CAAC;IAC1B,IAAA,4BAAU,GAAE;;qDACc;AAP7B,sDAUC"}
1
+ {"version":3,"file":"uploadAllowlistCSV.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/allowlist/dtos/uploadAllowlistCSV.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,2DAA2D;AAE3D,MAAa,qBAAqB;CAUjC;AATC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACC;AAEd;IAAC,IAAA,wBAAM,EAAC,oCAAkB,CAAC;IAC1B,IAAA,4BAAU,GAAE;;qDACc;AAP7B,sDAUC"}
@@ -1,4 +1,3 @@
1
1
  export * from './nftEscrowCreate.dto';
2
2
  export * from './nftEscrowCancel.dto';
3
3
  export * from './nftEscrowSubmit.dto';
4
- export * from './verifyCollections.dto';
@@ -17,5 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./nftEscrowCreate.dto"), exports);
18
18
  __exportStar(require("./nftEscrowCancel.dto"), exports);
19
19
  __exportStar(require("./nftEscrowSubmit.dto"), exports);
20
- __exportStar(require("./verifyCollections.dto"), exports);
21
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,wDAAsC;AACtC,wDAAsC;AACtC,0DAAwC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,wDAAsC;AACtC,wDAAsC"}
@@ -1,7 +1,5 @@
1
- import { Platform } from '../../../constants';
2
- import { Entity } from '../../entity';
3
- export declare class PlatformDetails extends Entity {
4
- platform: Platform;
1
+ import { PlatformDetailsBase } from './PlatformDetailsBase.entity';
2
+ export declare class PlatformDetails extends PlatformDetailsBase {
5
3
  externalId?: string;
6
4
  issuer?: string;
7
5
  email?: string;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PlatformDetails = void 0;
4
- const entity_1 = require("../../entity");
5
- class PlatformDetails extends entity_1.Entity {
4
+ const PlatformDetailsBase_entity_1 = require("./PlatformDetailsBase.entity");
5
+ class PlatformDetails extends PlatformDetailsBase_entity_1.PlatformDetailsBase {
6
6
  }
7
7
  exports.PlatformDetails = PlatformDetails;
8
8
  //# sourceMappingURL=PlatformDetails.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PlatformDetails.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/platform-details/entities/PlatformDetails.entity.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAEtC,MAAa,eAAgB,SAAQ,eAAM;CAU1C;AAVD,0CAUC"}
1
+ {"version":3,"file":"PlatformDetails.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/platform-details/entities/PlatformDetails.entity.ts"],"names":[],"mappings":";;;AAAA,6EAAmE;AAEnE,MAAa,eAAgB,SAAQ,gDAAmB;CAQvD;AARD,0CAQC"}
@@ -0,0 +1,5 @@
1
+ import { Platform } from '../../../constants';
2
+ import { Entity } from '../../entity';
3
+ export declare class PlatformDetailsBase extends Entity {
4
+ platform: Platform;
5
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlatformDetailsBase = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class PlatformDetailsBase extends entity_1.Entity {
6
+ }
7
+ exports.PlatformDetailsBase = PlatformDetailsBase;
8
+ //# sourceMappingURL=PlatformDetailsBase.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlatformDetailsBase.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/platform-details/entities/PlatformDetailsBase.entity.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAEtC,MAAa,mBAAoB,SAAQ,eAAM;CAE9C;AAFD,kDAEC"}
@@ -1 +1,2 @@
1
1
  export * from './PlatformDetails.entity';
2
+ export * from './PlatformDetailsBase.entity';
@@ -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("./PlatformDetails.entity"), exports);
18
+ __exportStar(require("./PlatformDetailsBase.entity"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/platform-details/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/platform-details/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,+DAA6C"}
@@ -1,5 +1,5 @@
1
1
  import { Entity } from '../../entity';
2
- import { PlatformDetails } from '../../platform-details';
2
+ import { PlatformDetailsBase } from '../../platform-details';
3
3
  export declare class BaseUser extends Entity {
4
4
  id: string;
5
5
  name?: string;
@@ -9,5 +9,5 @@ export declare class BaseUser extends Entity {
9
9
  isDisabled?: boolean;
10
10
  kycVerified?: boolean;
11
11
  helioVerified?: boolean;
12
- platformDetails?: PlatformDetails;
12
+ platformDetails?: PlatformDetailsBase;
13
13
  }