@heliofi/common 0.1.101 → 0.1.103

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 (132) hide show
  1. package/dist/src/domain/constants/fixedPriceTokens.js +5 -0
  2. package/dist/src/domain/constants/fixedPriceTokens.js.map +1 -1
  3. package/dist/src/domain/model/contactAddress/dtos/ContactAddress.dto.d.ts +1 -0
  4. package/dist/src/domain/model/contactAddress/dtos/ContactAddress.dto.js +5 -0
  5. package/dist/src/domain/model/contactAddress/dtos/ContactAddress.dto.js.map +1 -1
  6. package/dist/src/domain/model/contactAddress/entities/ContactAddress.entity.d.ts +1 -0
  7. package/dist/src/domain/model/contactAddress/entities/ContactAddress.entity.js.map +1 -1
  8. package/dist/src/domain/model/customer-details/dtos/customerDetails.dto.d.ts +1 -0
  9. package/dist/src/domain/model/customer-details/dtos/customerDetails.dto.js +5 -0
  10. package/dist/src/domain/model/customer-details/dtos/customerDetails.dto.js.map +1 -1
  11. package/dist/src/domain/model/customer-details/entities/Address.d.ts +6 -0
  12. package/dist/src/domain/model/customer-details/entities/Address.js +8 -0
  13. package/dist/src/domain/model/customer-details/entities/Address.js.map +1 -0
  14. package/dist/src/domain/model/customer-details/entities/CustomerDetails.d.ts +1 -0
  15. package/dist/src/domain/model/customer-details/entities/CustomerDetails.js.map +1 -1
  16. package/dist/src/domain/model/customer-details/entities/index.d.ts +1 -0
  17. package/dist/src/domain/model/customer-details/entities/index.js +1 -0
  18. package/dist/src/domain/model/customer-details/entities/index.js.map +1 -1
  19. package/dist/src/domain/model/index.d.ts +3 -2
  20. package/dist/src/domain/model/index.js +3 -2
  21. package/dist/src/domain/model/index.js.map +1 -1
  22. package/dist/src/domain/model/invoice/dtos/createInvoice.dto.d.ts +2 -2
  23. package/dist/src/domain/model/invoice/dtos/createInvoice.dto.js +4 -2
  24. package/dist/src/domain/model/invoice/dtos/createInvoice.dto.js.map +1 -1
  25. package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.d.ts +1 -1
  26. package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.js +3 -1
  27. package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.js.map +1 -1
  28. package/dist/src/domain/model/invoice-tx/dtos/createInvoiceTx.dto.d.ts +6 -0
  29. package/dist/src/domain/model/{prepare-transaction/dtos/prepareTransaction.dto.js → invoice-tx/dtos/createInvoiceTx.dto.js} +12 -19
  30. package/dist/src/domain/model/invoice-tx/dtos/createInvoiceTx.dto.js.map +1 -0
  31. package/dist/src/domain/model/invoice-tx/dtos/index.d.ts +1 -0
  32. package/dist/src/domain/model/{prepare-transaction/entities → invoice-tx/dtos}/index.js +1 -2
  33. package/dist/src/domain/model/invoice-tx/dtos/index.js.map +1 -0
  34. package/dist/src/domain/model/invoice-tx/entities/BaseInvoiceTx.d.ts +8 -0
  35. package/dist/src/domain/model/{prepare-stream/dtos/cancelStreamPrepare.dto.js → invoice-tx/entities/BaseInvoiceTx.js} +9 -9
  36. package/dist/src/domain/model/invoice-tx/entities/BaseInvoiceTx.js.map +1 -0
  37. package/dist/src/domain/model/invoice-tx/entities/InvoiceTx.d.ts +7 -0
  38. package/dist/src/domain/model/invoice-tx/entities/InvoiceTx.js +8 -0
  39. package/dist/src/domain/model/invoice-tx/entities/InvoiceTx.js.map +1 -0
  40. package/dist/src/domain/model/invoice-tx/entities/index.d.ts +2 -0
  41. package/dist/src/domain/model/invoice-tx/entities/index.js +19 -0
  42. package/dist/src/domain/model/invoice-tx/entities/index.js.map +1 -0
  43. package/dist/src/domain/model/{prepare-stream → invoice-tx}/index.d.ts +0 -0
  44. package/dist/src/domain/model/{prepare-stream → invoice-tx}/index.js +0 -0
  45. package/dist/src/domain/model/invoice-tx/index.js.map +1 -0
  46. package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.d.ts +5 -2
  47. package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.js +2 -1
  48. package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.js.map +1 -1
  49. package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.d.ts +6 -4
  50. package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.js.map +1 -1
  51. package/dist/src/domain/model/payment-request/entities/PaymentRequestType.d.ts +2 -1
  52. package/dist/src/domain/model/payment-request/entities/PaymentRequestType.js +1 -0
  53. package/dist/src/domain/model/payment-request/entities/PaymentRequestType.js.map +1 -1
  54. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.d.ts +2 -0
  55. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js +6 -0
  56. package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js.map +1 -1
  57. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.d.ts +2 -0
  58. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js +6 -0
  59. package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js.map +1 -1
  60. package/dist/src/domain/model/report/entities/ReportItem.d.ts +1 -0
  61. package/dist/src/domain/model/report/entities/ReportItem.js.map +1 -1
  62. package/dist/src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.d.ts +3 -1
  63. package/dist/src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.js +12 -2
  64. package/dist/src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.js.map +1 -1
  65. package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.d.ts +2 -1
  66. package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.js +6 -1
  67. package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.js.map +1 -1
  68. package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.d.ts +2 -1
  69. package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.js +7 -2
  70. package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.js.map +1 -1
  71. package/dist/src/domain/model/submit-invoice/dtos/index.d.ts +1 -0
  72. package/dist/src/domain/model/submit-invoice/dtos/index.js +6 -0
  73. package/dist/src/domain/model/submit-invoice/dtos/index.js.map +1 -0
  74. package/dist/src/domain/model/submit-invoice/dtos/submitInvoice.dto.d.ts +10 -0
  75. package/dist/src/domain/model/{prepare-stream/dtos/createStreamPrepare.dto.js → submit-invoice/dtos/submitInvoice.dto.js} +21 -20
  76. package/dist/src/domain/model/submit-invoice/dtos/submitInvoice.dto.js.map +1 -0
  77. package/dist/src/domain/model/submit-invoice/entities/SuccessfulInvoicePayment.d.ts +3 -0
  78. package/dist/src/domain/model/submit-invoice/entities/SuccessfulInvoicePayment.js +3 -0
  79. package/dist/src/domain/model/submit-invoice/entities/SuccessfulInvoicePayment.js.map +1 -0
  80. package/dist/src/domain/model/submit-invoice/entities/index.d.ts +1 -0
  81. package/dist/src/domain/model/submit-invoice/entities/index.js +18 -0
  82. package/dist/src/domain/model/submit-invoice/entities/index.js.map +1 -0
  83. package/dist/src/domain/model/{prepare-transaction → submit-invoice}/index.d.ts +0 -0
  84. package/dist/src/domain/model/{prepare-transaction → submit-invoice}/index.js +0 -0
  85. package/dist/src/domain/model/submit-invoice/index.js.map +1 -0
  86. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.d.ts +0 -1
  87. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js +0 -6
  88. package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js.map +1 -1
  89. package/dist/src/domain/model/token-swap/entities/SwapRouteToken.d.ts +4 -0
  90. package/dist/src/domain/model/token-swap/entities/SwapRouteToken.js +8 -0
  91. package/dist/src/domain/model/token-swap/entities/SwapRouteToken.js.map +1 -0
  92. package/dist/src/domain/model/token-swap/entities/index.d.ts +1 -0
  93. package/dist/src/domain/model/{prepare-stream → token-swap}/entities/index.js +1 -1
  94. package/dist/src/domain/model/token-swap/entities/index.js.map +1 -0
  95. package/dist/src/domain/model/token-swap/index.d.ts +1 -0
  96. package/dist/src/domain/model/token-swap/index.js +18 -0
  97. package/dist/src/domain/model/token-swap/index.js.map +1 -0
  98. package/dist/src/domain/services/index.d.ts +0 -1
  99. package/dist/src/domain/services/index.js +0 -1
  100. package/dist/src/domain/services/index.js.map +1 -1
  101. package/dist/tsconfig.tsbuildinfo +1 -1
  102. package/package.json +2 -2
  103. package/dist/src/domain/model/prepare-stream/dtos/cancelStreamPrepare.dto.d.ts +0 -3
  104. package/dist/src/domain/model/prepare-stream/dtos/cancelStreamPrepare.dto.js.map +0 -1
  105. package/dist/src/domain/model/prepare-stream/dtos/createStreamPrepare.dto.d.ts +0 -9
  106. package/dist/src/domain/model/prepare-stream/dtos/createStreamPrepare.dto.js.map +0 -1
  107. package/dist/src/domain/model/prepare-stream/dtos/index.d.ts +0 -3
  108. package/dist/src/domain/model/prepare-stream/dtos/index.js +0 -20
  109. package/dist/src/domain/model/prepare-stream/dtos/index.js.map +0 -1
  110. package/dist/src/domain/model/prepare-stream/dtos/withdrawStreamPrepare.dto.d.ts +0 -3
  111. package/dist/src/domain/model/prepare-stream/dtos/withdrawStreamPrepare.dto.js +0 -22
  112. package/dist/src/domain/model/prepare-stream/dtos/withdrawStreamPrepare.dto.js.map +0 -1
  113. package/dist/src/domain/model/prepare-stream/entities/TokenStreamPayload.d.ts +0 -5
  114. package/dist/src/domain/model/prepare-stream/entities/TokenStreamPayload.js +0 -8
  115. package/dist/src/domain/model/prepare-stream/entities/TokenStreamPayload.js.map +0 -1
  116. package/dist/src/domain/model/prepare-stream/entities/index.d.ts +0 -1
  117. package/dist/src/domain/model/prepare-stream/entities/index.js.map +0 -1
  118. package/dist/src/domain/model/prepare-stream/index.js.map +0 -1
  119. package/dist/src/domain/model/prepare-transaction/dtos/index.d.ts +0 -1
  120. package/dist/src/domain/model/prepare-transaction/dtos/index.js +0 -6
  121. package/dist/src/domain/model/prepare-transaction/dtos/index.js.map +0 -1
  122. package/dist/src/domain/model/prepare-transaction/dtos/prepareTransaction.dto.d.ts +0 -7
  123. package/dist/src/domain/model/prepare-transaction/dtos/prepareTransaction.dto.js.map +0 -1
  124. package/dist/src/domain/model/prepare-transaction/entities/PrepareTransaction.d.ts +0 -5
  125. package/dist/src/domain/model/prepare-transaction/entities/PrepareTransaction.js +0 -8
  126. package/dist/src/domain/model/prepare-transaction/entities/PrepareTransaction.js.map +0 -1
  127. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.d.ts +0 -5
  128. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js +0 -8
  129. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js.map +0 -1
  130. package/dist/src/domain/model/prepare-transaction/entities/index.d.ts +0 -2
  131. package/dist/src/domain/model/prepare-transaction/entities/index.js.map +0 -1
  132. package/dist/src/domain/model/prepare-transaction/index.js.map +0 -1
@@ -16,6 +16,7 @@ const stream_features_1 = require("../../stream-features");
16
16
  const product_1 = require("../../product");
17
17
  const content_1 = require("../../content");
18
18
  const entities_1 = require("../entities");
19
+ const fixed_currency_1 = require("../../fixed-currency");
19
20
  class UpdatePaystreamDto {
20
21
  }
21
22
  __decorate([
@@ -111,5 +112,10 @@ __decorate([
111
112
  (0, class_validator_1.IsOptional)(),
112
113
  __metadata("design:type", String)
113
114
  ], UpdatePaystreamDto.prototype, "nftCollectionAddress", void 0);
115
+ __decorate([
116
+ (0, class_transformer_1.Type)(() => fixed_currency_1.FixedCurrencyDto),
117
+ (0, class_validator_1.IsOptional)(),
118
+ __metadata("design:type", fixed_currency_1.FixedCurrencyDto)
119
+ ], UpdatePaystreamDto.prototype, "fixedCurrency", void 0);
114
120
  exports.UpdatePaystreamDto = UpdatePaystreamDto;
115
121
  //# sourceMappingURL=updatePaystream.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"updatePaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/updatePaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2DAA0D;AAC1D,2CAA2C;AAC3C,2CAA2C;AAC3C,0CAA2C;AAE3C,MAAa,kBAAkB;CA2E9B;AA1EC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACC;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACE;AAEf;IAAC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,4BAAU,GAAE;;2DACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;mDACK;AAElB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;mDAAC;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACW;AAExB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;mDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACiB;AA1EhC,gDA2EC"}
1
+ {"version":3,"file":"updatePaystream.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream/dtos/updatePaystream.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2DAA0D;AAC1D,2CAA2C;AAC3C,2CAA2C;AAC3C,0CAA2C;AAC3C,yDAAwD;AAExD,MAAa,kBAAkB;CA+E9B;AA9EC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACC;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACE;AAEf;IAAC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,4BAAU,GAAE;;2DACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;mDACK;AAElB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;mDAAC;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACN,mCAAiB;oDAAC;AAE7B;IAAC,IAAA,wBAAM,EAAC,uBAAY,CAAC;IACpB,IAAA,4BAAU,GAAE;;oDACW;AAExB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;mDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;yDAAC;AA9EnC,gDA+EC"}
@@ -24,6 +24,7 @@ export declare class ReportItem {
24
24
  country?: string;
25
25
  deliveryAddress?: string;
26
26
  phoneNumber?: string;
27
+ state?: string;
27
28
  street?: string;
28
29
  streetNumber?: string;
29
30
  city?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"ReportItem.js","sourceRoot":"","sources":["../../../../../../src/domain/model/report/entities/ReportItem.ts"],"names":[],"mappings":";;;AAEA,MAAa,UAAU;CA8DtB;AA9DD,gCA8DC"}
1
+ {"version":3,"file":"ReportItem.js","sourceRoot":"","sources":["../../../../../../src/domain/model/report/entities/ReportItem.ts"],"names":[],"mappings":";;;AAEA,MAAa,UAAU;CAgEtB;AAhED,gCAgEC"}
@@ -1,5 +1,7 @@
1
1
  export declare class CancelStreamBackendDto {
2
+ id: string;
2
3
  signedTransaction: string;
4
+ paymentRequestId: string;
3
5
  canceledAt: string;
4
- streamToken?: string;
6
+ paymentAccount: string;
5
7
  }
@@ -14,11 +14,21 @@ const class_validator_1 = require("class-validator");
14
14
  const class_transformer_1 = require("class-transformer");
15
15
  class CancelStreamBackendDto {
16
16
  }
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], CancelStreamBackendDto.prototype, "id", void 0);
17
22
  __decorate([
18
23
  (0, class_validator_1.IsString)(),
19
24
  (0, class_validator_1.IsNotEmpty)(),
20
25
  __metadata("design:type", String)
21
26
  ], CancelStreamBackendDto.prototype, "signedTransaction", void 0);
27
+ __decorate([
28
+ (0, class_validator_1.IsString)(),
29
+ (0, class_validator_1.IsNotEmpty)(),
30
+ __metadata("design:type", String)
31
+ ], CancelStreamBackendDto.prototype, "paymentRequestId", void 0);
22
32
  __decorate([
23
33
  (0, class_validator_1.IsNotEmpty)(),
24
34
  (0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
@@ -26,8 +36,8 @@ __decorate([
26
36
  ], CancelStreamBackendDto.prototype, "canceledAt", void 0);
27
37
  __decorate([
28
38
  (0, class_validator_1.IsString)(),
29
- (0, class_validator_1.IsOptional)(),
39
+ (0, class_validator_1.IsNotEmpty)(),
30
40
  __metadata("design:type", String)
31
- ], CancelStreamBackendDto.prototype, "streamToken", void 0);
41
+ ], CancelStreamBackendDto.prototype, "paymentAccount", void 0);
32
42
  exports.CancelStreamBackendDto = CancelStreamBackendDto;
33
43
  //# sourceMappingURL=cancelStreamBackend.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cancelStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmE;AACnE,yDAA8C;AAE9C,MAAa,sBAAsB;CAYlC;AAXC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iEACa;AAE1B;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;0DACrB;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACQ;AAXvB,wDAYC"}
1
+ {"version":3,"file":"cancelStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,yDAA8C;AAE9C,MAAa,sBAAsB;CAoBlC;AAnBC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACF;AAEX;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iEACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACY;AAEzB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;0DACrB;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACU;AAnBzB,wDAoBC"}
@@ -2,8 +2,9 @@ import { CustomerDetailsDto } from '../../customer-details';
2
2
  import { ProductDetailsDto } from '../../product-details';
3
3
  export declare class CreateStreamBackendDto {
4
4
  signedTransaction: string;
5
+ paymentRequestId: string;
5
6
  currency: string;
6
7
  customerDetails: CustomerDetailsDto;
7
8
  productDetails: ProductDetailsDto;
8
- streamToken?: string;
9
+ rateToken?: string;
9
10
  }
@@ -21,6 +21,11 @@ __decorate([
21
21
  (0, class_validator_1.IsNotEmpty)(),
22
22
  __metadata("design:type", String)
23
23
  ], CreateStreamBackendDto.prototype, "signedTransaction", void 0);
24
+ __decorate([
25
+ (0, class_validator_1.IsString)(),
26
+ (0, class_validator_1.IsNotEmpty)(),
27
+ __metadata("design:type", String)
28
+ ], CreateStreamBackendDto.prototype, "paymentRequestId", void 0);
24
29
  __decorate([
25
30
  (0, class_validator_1.IsString)(),
26
31
  (0, class_validator_1.IsNotEmpty)(),
@@ -42,6 +47,6 @@ __decorate([
42
47
  (0, class_validator_1.IsString)(),
43
48
  (0, class_validator_1.IsOptional)(),
44
49
  __metadata("design:type", String)
45
- ], CreateStreamBackendDto.prototype, "streamToken", void 0);
50
+ ], CreateStreamBackendDto.prototype, "rateToken", void 0);
46
51
  exports.CreateStreamBackendDto = CreateStreamBackendDto;
47
52
  //# sourceMappingURL=createStreamBackend.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"createStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/createStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAKyB;AACzB,yDAAyC;AACzC,6DAA4D;AAC5D,2DAA0D;AAE1D,MAAa,sBAAsB;CAsBlC;AArBC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iEACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wDACI;AAEjB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;8BACA,qCAAkB;+DAAC;AAEpC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;8BACD,mCAAiB;8DAAC;AAElC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACQ;AArBvB,wDAsBC"}
1
+ {"version":3,"file":"createStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/createStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAKyB;AACzB,yDAAyC;AACzC,6DAA4D;AAC5D,2DAA0D;AAE1D,MAAa,sBAAsB;CA0BlC;AAzBC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iEACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wDACI;AAEjB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;8BACA,qCAAkB;+DAAC;AAEpC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;8BACD,mCAAiB;8DAAC;AAElC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACM;AAzBrB,wDA0BC"}
@@ -1,5 +1,6 @@
1
1
  export declare class WithdrawStreamBackendDto {
2
+ id: string;
2
3
  signedTransaction: string;
3
4
  time: string;
4
- streamToken?: string;
5
+ paymentAccount: string;
5
6
  }
@@ -14,6 +14,11 @@ const class_validator_1 = require("class-validator");
14
14
  const class_transformer_1 = require("class-transformer");
15
15
  class WithdrawStreamBackendDto {
16
16
  }
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ (0, class_validator_1.IsNotEmpty)(),
20
+ __metadata("design:type", String)
21
+ ], WithdrawStreamBackendDto.prototype, "id", void 0);
17
22
  __decorate([
18
23
  (0, class_validator_1.IsString)(),
19
24
  (0, class_validator_1.IsNotEmpty)(),
@@ -26,8 +31,8 @@ __decorate([
26
31
  ], WithdrawStreamBackendDto.prototype, "time", void 0);
27
32
  __decorate([
28
33
  (0, class_validator_1.IsString)(),
29
- (0, class_validator_1.IsOptional)(),
34
+ (0, class_validator_1.IsNotEmpty)(),
30
35
  __metadata("design:type", String)
31
- ], WithdrawStreamBackendDto.prototype, "streamToken", void 0);
36
+ ], WithdrawStreamBackendDto.prototype, "paymentAccount", void 0);
32
37
  exports.WithdrawStreamBackendDto = WithdrawStreamBackendDto;
33
38
  //# sourceMappingURL=withdrawStreamBackend.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"withdrawStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmE;AACnE,yDAA8C;AAE9C,MAAa,wBAAwB;CAYpC;AAXC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mEACa;AAE1B;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;sDAC3B;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACQ;AAXvB,4DAYC"}
1
+ {"version":3,"file":"withdrawStreamBackend.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,yDAA8C;AAE9C,MAAa,wBAAwB;CAgBpC;AAfC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACF;AAEX;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mEACa;AAE1B;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;sDAC3B;AAEb;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACU;AAfzB,4DAgBC"}
@@ -0,0 +1 @@
1
+ export { SubmitInvoiceDto } from './submitInvoice.dto';
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SubmitInvoiceDto = void 0;
4
+ var submitInvoice_dto_1 = require("./submitInvoice.dto");
5
+ Object.defineProperty(exports, "SubmitInvoiceDto", { enumerable: true, get: function () { return submitInvoice_dto_1.SubmitInvoiceDto; } });
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-invoice/dtos/index.ts"],"names":[],"mappings":";;;AAAA,yDAAuD;AAA9C,qHAAA,gBAAgB,OAAA"}
@@ -0,0 +1,10 @@
1
+ import { FixedCurrencyDto } from '../../fixed-currency';
2
+ export declare class SubmitInvoiceDto {
3
+ signedTransaction: string;
4
+ paymentRequestId: string;
5
+ currency: string;
6
+ time?: string;
7
+ blockchain?: string;
8
+ fixedCurrency?: FixedCurrencyDto;
9
+ rateToken?: string;
10
+ }
@@ -9,45 +9,46 @@ 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.CreateStreamPrepareDto = void 0;
12
+ exports.SubmitInvoiceDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
14
  const class_transformer_1 = require("class-transformer");
15
- class CreateStreamPrepareDto {
15
+ const fixed_currency_1 = require("../../fixed-currency");
16
+ class SubmitInvoiceDto {
16
17
  }
17
18
  __decorate([
18
19
  (0, class_validator_1.IsString)(),
19
20
  (0, class_validator_1.IsNotEmpty)(),
20
21
  __metadata("design:type", String)
21
- ], CreateStreamPrepareDto.prototype, "paymentRequestId", void 0);
22
+ ], SubmitInvoiceDto.prototype, "signedTransaction", void 0);
22
23
  __decorate([
23
24
  (0, class_validator_1.IsString)(),
24
25
  (0, class_validator_1.IsNotEmpty)(),
25
26
  __metadata("design:type", String)
26
- ], CreateStreamPrepareDto.prototype, "sender", void 0);
27
+ ], SubmitInvoiceDto.prototype, "paymentRequestId", void 0);
27
28
  __decorate([
28
29
  (0, class_validator_1.IsString)(),
29
30
  (0, class_validator_1.IsNotEmpty)(),
30
31
  __metadata("design:type", String)
31
- ], CreateStreamPrepareDto.prototype, "paymentAccount", void 0);
32
+ ], SubmitInvoiceDto.prototype, "currency", void 0);
32
33
  __decorate([
33
34
  (0, class_validator_1.IsString)(),
34
- (0, class_validator_1.IsNotEmpty)(),
35
+ (0, class_validator_1.IsOptional)(),
35
36
  __metadata("design:type", String)
36
- ], CreateStreamPrepareDto.prototype, "currency", void 0);
37
+ ], SubmitInvoiceDto.prototype, "time", void 0);
37
38
  __decorate([
38
- (0, class_validator_1.IsNotEmpty)(),
39
- (0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
39
+ (0, class_validator_1.IsString)(),
40
+ (0, class_validator_1.IsOptional)(),
40
41
  __metadata("design:type", String)
41
- ], CreateStreamPrepareDto.prototype, "startedAt", void 0);
42
+ ], SubmitInvoiceDto.prototype, "blockchain", void 0);
42
43
  __decorate([
43
- (0, class_validator_1.IsNotEmpty)(),
44
- (0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
45
- __metadata("design:type", String)
46
- ], CreateStreamPrepareDto.prototype, "endedAt", void 0);
44
+ (0, class_transformer_1.Type)(() => fixed_currency_1.FixedCurrencyDto),
45
+ (0, class_validator_1.IsOptional)(),
46
+ __metadata("design:type", fixed_currency_1.FixedCurrencyDto)
47
+ ], SubmitInvoiceDto.prototype, "fixedCurrency", void 0);
47
48
  __decorate([
48
- (0, class_validator_1.IsNumber)(),
49
- (0, class_validator_1.IsNotEmpty)(),
50
- __metadata("design:type", Number)
51
- ], CreateStreamPrepareDto.prototype, "interval", void 0);
52
- exports.CreateStreamPrepareDto = CreateStreamPrepareDto;
53
- //# sourceMappingURL=createStreamPrepare.dto.js.map
49
+ (0, class_validator_1.IsString)(),
50
+ (0, class_validator_1.IsOptional)(),
51
+ __metadata("design:type", String)
52
+ ], SubmitInvoiceDto.prototype, "rateToken", void 0);
53
+ exports.SubmitInvoiceDto = SubmitInvoiceDto;
54
+ //# sourceMappingURL=submitInvoice.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"submitInvoice.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-invoice/dtos/submitInvoice.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmE;AACnE,yDAAyC;AACzC,yDAAwD;AAExD,MAAa,gBAAgB;CA4B5B;AA3BC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACC;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;oDACO;AAEpB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;uDAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACM;AA3BrB,4CA4BC"}
@@ -0,0 +1,3 @@
1
+ export declare type SuccessfulInvoicePayment = {
2
+ transactionSignature: string;
3
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=SuccessfulInvoicePayment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SuccessfulInvoicePayment.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-invoice/entities/SuccessfulInvoicePayment.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export * from './SuccessfulInvoicePayment';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./SuccessfulInvoicePayment"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-invoice/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/submit-invoice/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
@@ -14,5 +14,4 @@ export declare class SubmitTransactionDto {
14
14
  splitWallets?: SplitWalletDto[];
15
15
  fixedCurrency?: FixedCurrencyDto;
16
16
  rateToken?: string;
17
- transactionToken?: string;
18
17
  }
@@ -40,7 +40,6 @@ __decorate([
40
40
  ], SubmitTransactionDto.prototype, "currency", void 0);
41
41
  __decorate([
42
42
  (0, class_validator_1.IsString)(),
43
- (0, class_validator_1.IsNotEmpty)(),
44
43
  (0, class_validator_1.IsOptional)(),
45
44
  __metadata("design:type", String)
46
45
  ], SubmitTransactionDto.prototype, "time", void 0);
@@ -78,10 +77,5 @@ __decorate([
78
77
  (0, class_validator_1.IsOptional)(),
79
78
  __metadata("design:type", String)
80
79
  ], SubmitTransactionDto.prototype, "rateToken", void 0);
81
- __decorate([
82
- (0, class_validator_1.IsString)(),
83
- (0, class_validator_1.IsOptional)(),
84
- __metadata("design:type", String)
85
- ], SubmitTransactionDto.prototype, "transactionToken", void 0);
86
80
  exports.SubmitTransactionDto = SubmitTransactionDto;
87
81
  //# sourceMappingURL=submitTransaction.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"submitTransaction.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-transaction/dtos/submitTransaction.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAyC;AACzC,6DAA4D;AAC5D,2DAA0D;AAC1D,uDAAqD;AACrD,yDAAwD;AAExD,MAAa,oBAAoB;CAqDhC;AApDC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;;kDACC;AAEd;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACK,qCAAkB;6DAAC;AAErC;IAAC,IAAA,kCAAgB,GAAE;IAClB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACI,mCAAiB;4DAAC;AAEnC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACU;AAEvB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;;0DACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;2DAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACa;AApD5B,oDAqDC"}
1
+ {"version":3,"file":"submitTransaction.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/submit-transaction/dtos/submitTransaction.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAQyB;AACzB,yDAAyC;AACzC,6DAA4D;AAC5D,2DAA0D;AAC1D,uDAAqD;AACrD,yDAAwD;AAExD,MAAa,oBAAoB;CAgDhC;AA/CC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACI;AAEjB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACC;AAEd;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qCAAkB,CAAC;IAC9B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACK,qCAAkB;6DAAC;AAErC;IAAC,IAAA,kCAAgB,GAAE;IAClB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,mCAAiB,CAAC;IAC7B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;8BACI,mCAAiB;4DAAC;AAEnC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACU;AAEvB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAc,CAAC;IAC1B,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;;0DACmB;AAEhC;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;2DAAC;AAEjC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACM;AA/CrB,oDAgDC"}
@@ -0,0 +1,4 @@
1
+ import { Entity } from '../../entity';
2
+ export declare class SwapRouteToken extends Entity {
3
+ routeToken: string;
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SwapRouteToken = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class SwapRouteToken extends entity_1.Entity {
6
+ }
7
+ exports.SwapRouteToken = SwapRouteToken;
8
+ //# sourceMappingURL=SwapRouteToken.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SwapRouteToken.js","sourceRoot":"","sources":["../../../../../../src/domain/model/token-swap/entities/SwapRouteToken.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,cAAe,SAAQ,eAAM;CAEzC;AAFD,wCAEC"}
@@ -0,0 +1 @@
1
+ export * from './SwapRouteToken';
@@ -14,5 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./TokenStreamPayload"), exports);
17
+ __exportStar(require("./SwapRouteToken"), exports);
18
18
  //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/token-swap/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC"}
@@ -0,0 +1 @@
1
+ export * from './entities';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/token-swap/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}
@@ -4,4 +4,3 @@ export * from './SolscanService';
4
4
  export * from './HelioUIService';
5
5
  export * from './FeeService';
6
6
  export * from './TransactionCalculatorService';
7
- export * from './SplitWalletService';
@@ -20,5 +20,4 @@ __exportStar(require("./SolscanService"), exports);
20
20
  __exportStar(require("./HelioUIService"), exports);
21
21
  __exportStar(require("./FeeService"), exports);
22
22
  __exportStar(require("./TransactionCalculatorService"), exports);
23
- __exportStar(require("./SplitWalletService"), exports);
24
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,oDAAkC;AAClC,mDAAiC;AACjC,mDAAiC;AACjC,+CAA6B;AAC7B,iEAA+C;AAC/C,uDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,oDAAkC;AAClC,mDAAiC;AACjC,mDAAiC;AACjC,+CAA6B;AAC7B,iEAA+C"}