@heliofi/common 0.1.355 → 0.1.357

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 (45) hide show
  1. package/dist/src/domain/model/customer-details/dtos/btcProperties.dto.d.ts +3 -0
  2. package/dist/src/domain/model/{helio-wallet/dtos/providersCollectionIds.dto.js → customer-details/dtos/btcProperties.dto.js} +12 -10
  3. package/dist/src/domain/model/customer-details/dtos/btcProperties.dto.js.map +1 -0
  4. package/dist/src/domain/model/customer-details/dtos/customerDetailsBtcProperties.dto.d.ts +1 -1
  5. package/dist/src/domain/model/customer-details/dtos/customerDetailsBtcProperties.dto.js.map +1 -1
  6. package/dist/src/domain/model/customer-details/entities/CustomerDetails.d.ts +3 -0
  7. package/dist/src/domain/model/customer-details/entities/CustomerDetails.js.map +1 -1
  8. package/dist/src/domain/model/link-features/entities/LinkFeatures.entity.d.ts +0 -1
  9. package/dist/src/domain/model/link-features/entities/LinkFeatures.entity.js.map +1 -1
  10. package/dist/src/domain/model/paylink/entities/Paylink.d.ts +1 -1
  11. package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.d.ts +1 -1
  12. package/dist/tsconfig.tsbuildinfo +1 -1
  13. package/package.json +2 -2
  14. package/dist/src/domain/model/helio-wallet/dtos/providerCollectionsIds.dto.d.ts +0 -3
  15. package/dist/src/domain/model/helio-wallet/dtos/providerCollectionsIds.dto.js +0 -24
  16. package/dist/src/domain/model/helio-wallet/dtos/providerCollectionsIds.dto.js.map +0 -1
  17. package/dist/src/domain/model/helio-wallet/dtos/providersCollectionIds.dto.d.ts +0 -3
  18. package/dist/src/domain/model/helio-wallet/dtos/providersCollectionIds.dto.js.map +0 -1
  19. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndAddress.entity.d.ts +0 -5
  20. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndAddress.entity.js +0 -22
  21. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPriceAndAddress.entity.js.map +0 -1
  22. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByAddress.entity.d.ts +0 -5
  23. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByAddress.entity.js +0 -22
  24. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByAddress.entity.js.map +0 -1
  25. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.d.ts +0 -5
  26. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.entity.d.ts +0 -5
  27. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.entity.js +0 -22
  28. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.entity.js.map +0 -1
  29. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.js +0 -8
  30. package/dist/src/domain/model/helio-wallet/entities/CollectionsFloorPricesByProvider.js.map +0 -1
  31. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.d.ts +0 -5
  32. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.entity.d.ts +0 -5
  33. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.entity.js +0 -8
  34. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.entity.js.map +0 -1
  35. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.js +0 -8
  36. package/dist/src/domain/model/helio-wallet/entities/ProvidersCollectionIdsFromMintAddresses.js.map +0 -1
  37. package/dist/src/domain/model/paylink/entities/PaylinkWithCompany.d.ts +0 -11
  38. package/dist/src/domain/model/paylink/entities/PaylinkWithCompany.js +0 -8
  39. package/dist/src/domain/model/paylink/entities/PaylinkWithCompany.js.map +0 -1
  40. package/dist/src/domain/model/paylink-tx/entities/PaylinkTxClaim.d.ts +0 -5
  41. package/dist/src/domain/model/paylink-tx/entities/PaylinkTxClaim.js +0 -8
  42. package/dist/src/domain/model/paylink-tx/entities/PaylinkTxClaim.js.map +0 -1
  43. package/dist/src/domain/model/payment-request/entities/PaymentRequestWithCompany.entity.d.ts +0 -5
  44. package/dist/src/domain/model/payment-request/entities/PaymentRequestWithCompany.entity.js +0 -8
  45. package/dist/src/domain/model/payment-request/entities/PaymentRequestWithCompany.entity.js.map +0 -1
@@ -0,0 +1,3 @@
1
+ export declare class BtcPropertiesDto {
2
+ ordinalsAddress: string;
3
+ }
@@ -9,16 +9,18 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.ProvidersCollectionIdsDto = void 0;
12
+ exports.BtcPropertiesDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- class ProvidersCollectionIdsDto {
14
+ const MIN_BITCOIN_ADDRESS_LENGTH = 32;
15
+ const MAX_LENGTH_ORDINALS_TAPROOT_ADDRESS = 62;
16
+ class BtcPropertiesDto {
15
17
  }
16
18
  __decorate([
17
- (0, class_validator_1.IsArray)(),
18
- (0, class_validator_1.ArrayMinSize)(1),
19
- (0, class_validator_1.IsString)({ each: true }),
20
- (0, class_validator_1.IsNotEmpty)({ each: true }),
21
- __metadata("design:type", Array)
22
- ], ProvidersCollectionIdsDto.prototype, "mintAddresses", void 0);
23
- exports.ProvidersCollectionIdsDto = ProvidersCollectionIdsDto;
24
- //# sourceMappingURL=providersCollectionIds.dto.js.map
19
+ (0, class_validator_1.IsString)(),
20
+ (0, class_validator_1.IsOptional)(),
21
+ (0, class_validator_1.MaxLength)(MAX_LENGTH_ORDINALS_TAPROOT_ADDRESS),
22
+ (0, class_validator_1.MinLength)(MIN_BITCOIN_ADDRESS_LENGTH),
23
+ __metadata("design:type", String)
24
+ ], BtcPropertiesDto.prototype, "ordinalsAddress", void 0);
25
+ exports.BtcPropertiesDto = BtcPropertiesDto;
26
+ //# sourceMappingURL=btcProperties.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"btcProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/customer-details/dtos/btcProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6E;AAE7E,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,mCAAmC,GAAG,EAAE,CAAC;AAC/C,MAAa,gBAAgB;CAM5B;AALC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,EAAC,mCAAmC,CAAC;IAC9C,IAAA,2BAAS,EAAC,0BAA0B,CAAC;;yDACd;AAL1B,4CAMC"}
@@ -1,3 +1,3 @@
1
1
  export declare class CustomerDetailsBtcPropertiesDto {
2
- ordinalsAddress: string;
2
+ ordinalsAddress?: string;
3
3
  }
@@ -1 +1 @@
1
- {"version":3,"file":"customerDetailsBtcProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/customer-details/dtos/customerDetailsBtcProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6E;AAE7E,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,mCAAmC,GAAG,EAAE,CAAC;AAC/C,MAAa,+BAA+B;CAM3C;AALC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,EAAC,mCAAmC,CAAC;IAC9C,IAAA,2BAAS,EAAC,0BAA0B,CAAC;;wEACd;AAL1B,0EAMC"}
1
+ {"version":3,"file":"customerDetailsBtcProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/customer-details/dtos/customerDetailsBtcProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6E;AAE7E,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,mCAAmC,GAAG,EAAE,CAAC;AAC/C,MAAa,+BAA+B;CAM3C;AALC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,EAAC,mCAAmC,CAAC;IAC9C,IAAA,2BAAS,EAAC,0BAA0B,CAAC;;wEACb;AAL3B,0EAMC"}
@@ -16,4 +16,7 @@ export declare class CustomerDetails extends Entity {
16
16
  areaCode?: string;
17
17
  additionalJSON?: string;
18
18
  tradingViewUsername?: string;
19
+ btcProperties?: {
20
+ ordinalsAddress?: string;
21
+ };
19
22
  }
@@ -1 +1 @@
1
- {"version":3,"file":"CustomerDetails.js","sourceRoot":"","sources":["../../../../../../src/domain/model/customer-details/entities/CustomerDetails.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,eAAgB,SAAQ,eAAM;CA8B1C;AA9BD,0CA8BC"}
1
+ {"version":3,"file":"CustomerDetails.js","sourceRoot":"","sources":["../../../../../../src/domain/model/customer-details/entities/CustomerDetails.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,eAAgB,SAAQ,eAAM;CAiC1C;AAjCD,0CAiCC"}
@@ -7,5 +7,4 @@ export declare class LinkFeatures extends PaymentRequestFeatures {
7
7
  isEscrowed: boolean;
8
8
  requireDiscordQuantityLimit: boolean;
9
9
  requireAllowlist: boolean;
10
- requireAirdrop: boolean;
11
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"LinkFeatures.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/link-features/entities/LinkFeatures.entity.ts"],"names":[],"mappings":";;;AAAA,6EAAwE;AAExE,MAAa,YAAa,SAAQ,iDAAsB;CAgBvD;AAhBD,oCAgBC"}
1
+ {"version":3,"file":"LinkFeatures.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/link-features/entities/LinkFeatures.entity.ts"],"names":[],"mappings":";;;AAAA,6EAAwE;AAExE,MAAa,YAAa,SAAQ,iDAAsB;CAcvD;AAdD,oCAcC"}
@@ -6,5 +6,5 @@ export declare class Paylink extends PaymentRequest {
6
6
  minQuantity?: number;
7
7
  maxQuantity?: number;
8
8
  helioPlayProperties?: HelioPlayProperties;
9
- airdropConfigured?: boolean;
9
+ airDropConfigured?: boolean;
10
10
  }
@@ -10,5 +10,5 @@ export declare class ShallowEnrichedPaylink extends ShallowEnrichedPaymentReques
10
10
  maxQuantity?: number;
11
11
  features: LinkFeatures;
12
12
  helioPlayProperties?: HelioPlayProperties;
13
- airdropConfigured?: boolean;
13
+ airDropConfigured?: boolean;
14
14
  }