@heliofi/common 0.1.330 → 0.1.332-alpha.0

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 (47) hide show
  1. package/dist/src/domain/model/affiliate/entities/affiliateDetails.entity.d.ts +4 -0
  2. package/dist/src/domain/model/affiliate/entities/affiliateDetails.entity.js +8 -0
  3. package/dist/src/domain/model/affiliate/entities/affiliateDetails.entity.js.map +1 -0
  4. package/dist/src/domain/model/affiliate/entities/index.d.ts +1 -0
  5. package/dist/src/domain/model/affiliate/entities/index.js +18 -0
  6. package/dist/src/domain/model/affiliate/entities/index.js.map +1 -0
  7. package/dist/src/domain/model/affiliate/index.d.ts +1 -0
  8. package/dist/src/domain/model/affiliate/index.js +18 -0
  9. package/dist/src/domain/model/affiliate/index.js.map +1 -0
  10. package/dist/src/domain/model/helio-wallet/dtos/getFloorPrices.dto.d.ts +3 -0
  11. package/dist/src/domain/model/helio-wallet/dtos/getFloorPrices.dto.js +24 -0
  12. package/dist/src/domain/model/helio-wallet/dtos/getFloorPrices.dto.js.map +1 -0
  13. package/dist/src/domain/model/helio-wallet/dtos/index.d.ts +1 -0
  14. package/dist/src/domain/model/helio-wallet/dtos/index.js +18 -0
  15. package/dist/src/domain/model/helio-wallet/dtos/index.js.map +1 -0
  16. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndNftAddress.entity.d.ts +5 -0
  17. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndNftAddress.entity.js +22 -0
  18. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndNftAddress.entity.js.map +1 -0
  19. package/dist/src/domain/model/helio-wallet/entities/index.d.ts +1 -0
  20. package/dist/src/domain/model/helio-wallet/entities/index.js +18 -0
  21. package/dist/src/domain/model/helio-wallet/entities/index.js.map +1 -0
  22. package/dist/src/domain/model/helio-wallet/index.d.ts +2 -0
  23. package/dist/src/domain/model/helio-wallet/index.js +19 -0
  24. package/dist/src/domain/model/helio-wallet/index.js.map +1 -0
  25. package/dist/src/domain/model/index.d.ts +2 -0
  26. package/dist/src/domain/model/index.js +2 -0
  27. package/dist/src/domain/model/index.js.map +1 -1
  28. package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.d.ts +1 -0
  29. package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.js +5 -0
  30. package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.js.map +1 -1
  31. package/dist/src/domain/model/link-features/entities/LinkFeatures.entity.d.ts +1 -0
  32. package/dist/src/domain/model/link-features/entities/LinkFeatures.entity.js.map +1 -1
  33. package/dist/src/domain/services/AmountService.js +3 -1
  34. package/dist/src/domain/services/AmountService.js.map +1 -1
  35. package/dist/src/domain/services/BitcoinExplorerService.d.ts +4 -0
  36. package/dist/src/domain/services/BitcoinExplorerService.js +14 -0
  37. package/dist/src/domain/services/BitcoinExplorerService.js.map +1 -0
  38. package/dist/src/domain/services/BlockchainExplorerService.js +3 -0
  39. package/dist/src/domain/services/BlockchainExplorerService.js.map +1 -1
  40. package/dist/tsconfig.tsbuildinfo +1 -1
  41. package/package.json +2 -2
  42. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.d.ts +0 -6
  43. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.js +0 -8
  44. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.js.map +0 -1
  45. /package/dist/src/domain/model/allowlist/dtos/{uploadAllowlistCSV.dto.d.ts → UploadAllowlistCSV.dto.d.ts} +0 -0
  46. /package/dist/src/domain/model/allowlist/dtos/{uploadAllowlistCSV.dto.js → UploadAllowlistCSV.dto.js} +0 -0
  47. /package/dist/src/domain/model/allowlist/dtos/{uploadAllowlistCSV.dto.js.map → UploadAllowlistCSV.dto.js.map} +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heliofi/common",
3
3
  "private": false,
4
- "version": "0.1.330",
4
+ "version": "0.1.332-alpha.0",
5
5
  "description": "Common package",
6
6
  "main": "dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -26,5 +26,5 @@
26
26
  "ts-loader": "^9.3.1",
27
27
  "typescript": "^4.8.2"
28
28
  },
29
- "gitHead": "bf099b16e5356210271b74a995eceae80975b3cc"
29
+ "gitHead": "e8327f0fea1f027660bde2351bb75e5dbcc9603a"
30
30
  }
@@ -1,6 +0,0 @@
1
- import { Entity } from '../../entity';
2
- import { BTCPaymentAddressVersion } from './BTCPaymentAddressVersion';
3
- export declare class BTCPaymentAddress extends Entity {
4
- address: string;
5
- version?: BTCPaymentAddressVersion;
6
- }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BTCPaymentAddress = void 0;
4
- const entity_1 = require("../../entity");
5
- class BTCPaymentAddress extends entity_1.Entity {
6
- }
7
- exports.BTCPaymentAddress = BTCPaymentAddress;
8
- //# sourceMappingURL=BTCPaymentAddress.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"BTCPaymentAddress.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BTCPaymentAddress.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,iBAAkB,SAAQ,eAAM;CAI5C;AAJD,8CAIC"}