@heliofi/common 0.1.252 → 0.1.254
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.
- package/dist/src/__tests__/index.test.js +6 -0
- package/dist/src/__tests__/index.test.js.map +1 -0
- package/dist/src/domain/constants/environment.d.ts +3 -3
- package/dist/src/domain/constants/orderDirection.d.ts +5 -3
- package/dist/src/domain/contact/dtos/createContact.dto.d.ts +8 -0
- package/dist/src/domain/contact/dtos/createContact.dto.js +45 -0
- package/dist/src/domain/contact/dtos/createContact.dto.js.map +1 -0
- package/dist/src/domain/contact/dtos/index.d.ts +2 -0
- package/dist/src/domain/contact/dtos/index.js +19 -0
- package/dist/src/domain/contact/dtos/index.js.map +1 -0
- package/dist/src/domain/contact/dtos/updateContact.dto.d.ts +8 -0
- package/dist/src/domain/contact/dtos/updateContact.dto.js +45 -0
- package/dist/src/domain/contact/dtos/updateContact.dto.js.map +1 -0
- package/dist/src/domain/contact/entities/Contact.entity.d.ts +14 -0
- package/dist/src/domain/contact/entities/Contact.entity.js +8 -0
- package/dist/src/domain/contact/entities/Contact.entity.js.map +1 -0
- package/dist/src/domain/contact/entities/index.d.ts +1 -0
- package/dist/src/domain/{model/accessCodeAuthProperties → contact}/entities/index.js +1 -1
- package/dist/src/domain/contact/entities/index.js.map +1 -0
- package/dist/src/domain/contact/index.d.ts +2 -0
- package/dist/src/domain/contact/index.js +19 -0
- package/dist/src/domain/contact/index.js.map +1 -0
- package/dist/src/domain/contactAddress/dtos/ContactAddress.dto.d.ts +8 -0
- package/dist/src/domain/contactAddress/dtos/ContactAddress.dto.js +47 -0
- package/dist/src/domain/contactAddress/dtos/ContactAddress.dto.js.map +1 -0
- package/dist/src/domain/contactAddress/dtos/index.d.ts +1 -0
- package/dist/src/domain/contactAddress/dtos/index.js +18 -0
- package/dist/src/domain/contactAddress/dtos/index.js.map +1 -0
- package/dist/src/domain/contactAddress/entities/ContactAddress.entity.d.ts +9 -0
- package/dist/src/domain/contactAddress/entities/ContactAddress.entity.js +8 -0
- package/dist/src/domain/contactAddress/entities/ContactAddress.entity.js.map +1 -0
- package/dist/src/domain/contactAddress/entities/index.d.ts +1 -0
- package/dist/src/domain/contactAddress/entities/index.js +18 -0
- package/dist/src/domain/contactAddress/entities/index.js.map +1 -0
- package/dist/src/domain/contactAddress/index.js.map +1 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.d.ts +4 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.js +52 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.js.map +1 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDtoInternal.d.ts +4 -4
- package/dist/src/domain/model/apiKey/entities/ApiKey.d.ts +11 -0
- package/dist/src/domain/model/apiKey/entities/ApiKey.js +7 -0
- package/dist/src/domain/model/apiKey/entities/ApiKey.js.map +1 -0
- package/dist/src/domain/model/apiKey/entities/ApiKeyAccess.d.ts +3 -3
- package/dist/src/domain/model/approve-transaction/dtos/approveTransaction.dto.d.ts +12 -12
- package/dist/src/domain/model/attachment/dtos/createAttachmentInternal.dto.d.ts +4 -4
- package/dist/src/domain/model/audit/tx/dtos/CreatePaylinkTxAudit.dto.d.ts +16 -0
- package/dist/src/domain/model/audit/tx/dtos/CreatePaylinkTxAudit.dto.js +3 -0
- package/dist/src/domain/model/audit/tx/dtos/CreatePaylinkTxAudit.dto.js.map +1 -0
- package/dist/src/domain/model/auth/dtos/signOn.dto.d.ts +2 -2
- package/dist/src/domain/model/auth/dtos/transactionSignOn.dto.d.ts +1 -1
- package/dist/src/domain/model/auth/entities/AuthResponse.d.ts +4 -4
- package/dist/src/domain/model/blockchain/constants/Cluster.d.ts +3 -3
- package/dist/src/domain/model/blockchain/constants/ConfirmTimeout.d.ts +5 -0
- package/dist/src/domain/model/blockchain/constants/ConfirmTimeout.js +10 -0
- package/dist/src/domain/model/blockchain/constants/ConfirmTimeout.js.map +1 -0
- package/dist/src/domain/model/blockchain/dtos/blockchain.dto.d.ts +2 -2
- package/dist/src/domain/model/breakpoint/dtos/breakpoint.dto.d.ts +8 -8
- package/dist/src/domain/model/breakpoint/entities/BreakpointResponse.d.ts +2 -2
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.dto.d.ts +5 -5
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.dto.d.ts +4 -4
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.d.ts +5 -5
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.d.ts +2 -2
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.d.ts +1 -1
- package/dist/src/domain/model/entity/Entity.d.ts +2 -2
- package/dist/src/domain/model/escrow-transaction/dtos/EscrowTransactionMeta.dto.d.ts +6 -0
- package/dist/src/domain/model/escrow-transaction/dtos/EscrowTransactionMeta.dto.js +33 -0
- package/dist/src/domain/model/escrow-transaction/dtos/EscrowTransactionMeta.dto.js.map +1 -0
- package/dist/src/domain/model/escrow-transaction/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/escrow-transaction/dtos/index.js +18 -0
- package/dist/src/domain/model/escrow-transaction/dtos/index.js.map +1 -0
- package/dist/src/domain/model/{refund/dtos/refund.dto.d.ts → escrow-transaction/entities/BaseEscrowTransactionMeta.entity.d.ts} +3 -4
- package/dist/src/domain/model/escrow-transaction/entities/BaseEscrowTransactionMeta.entity.js +8 -0
- package/dist/src/domain/model/escrow-transaction/entities/BaseEscrowTransactionMeta.entity.js.map +1 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowCancelTransactionMeta.entity.d.ts +3 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowCancelTransactionMeta.entity.js +8 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowCancelTransactionMeta.entity.js.map +1 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowTransactionMeta.entity.d.ts +4 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowTransactionMeta.entity.js +8 -0
- package/dist/src/domain/model/escrow-transaction/entities/EscrowTransactionMeta.entity.js.map +1 -0
- package/dist/src/domain/model/escrow-transaction/entities/index.d.ts +2 -0
- package/dist/src/domain/model/escrow-transaction/entities/index.js +19 -0
- package/dist/src/domain/model/escrow-transaction/entities/index.js.map +1 -0
- package/dist/src/domain/model/escrow-transaction/index.d.ts +2 -0
- package/dist/src/domain/model/escrow-transaction/index.js +19 -0
- package/dist/src/domain/model/escrow-transaction/index.js.map +1 -0
- package/dist/src/domain/model/fixed-currency/entities/TokenRatePayload.d.ts +1 -1
- package/dist/src/domain/model/index.d.ts +2 -0
- package/dist/src/domain/model/index.js +2 -0
- package/dist/src/domain/model/index.js.map +1 -1
- package/dist/src/domain/model/nft-drop/constants/NftDropState.d.ts +9 -0
- package/dist/src/domain/model/nft-drop/constants/NftDropState.js +14 -0
- package/dist/src/domain/model/nft-drop/constants/NftDropState.js.map +1 -0
- package/dist/src/domain/model/nft-drop/constants/index.d.ts +1 -0
- package/dist/src/domain/model/nft-drop/constants/index.js +18 -0
- package/dist/src/domain/model/nft-drop/constants/index.js.map +1 -0
- package/dist/src/domain/model/nft-drop/dtos/index.d.ts +1 -1
- package/dist/src/domain/model/nft-drop/dtos/index.js +1 -1
- package/dist/src/domain/model/nft-drop/dtos/nftDrop.dto.d.ts +0 -1
- package/dist/src/domain/model/nft-drop/dtos/nftDrop.dto.js +1 -6
- package/dist/src/domain/model/nft-drop/dtos/nftDrop.dto.js.map +1 -1
- package/dist/src/domain/model/nft-drop/entities/NftDrop.entity.d.ts +6 -2
- package/dist/src/domain/model/nft-drop/entities/NftDrop.entity.js.map +1 -1
- package/dist/src/domain/model/nft-drop/index.d.ts +1 -0
- package/dist/src/domain/model/nft-drop/index.js +1 -0
- package/dist/src/domain/model/nft-drop/index.js.map +1 -1
- package/dist/src/domain/model/nft-escrow/dtos/index.d.ts +3 -0
- package/dist/src/domain/model/nft-escrow/dtos/index.js +20 -0
- package/dist/src/domain/model/nft-escrow/dtos/index.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowCancel.dto.d.ts +5 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowCancel.dto.js +32 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowCancel.dto.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowCreate.dto.d.ts +7 -0
- package/dist/src/domain/model/{refund/dtos/refund.dto.js → nft-escrow/dtos/nftEscrowCreate.dto.js} +17 -13
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowCreate.dto.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowSubmit.dto.d.ts +6 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowSubmit.dto.js +37 -0
- package/dist/src/domain/model/nft-escrow/dtos/nftEscrowSubmit.dto.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/entities/TokenNftEscrowPayload.entity.d.ts +6 -0
- package/dist/src/domain/model/nft-escrow/entities/TokenNftEscrowPayload.entity.js +8 -0
- package/dist/src/domain/model/nft-escrow/entities/TokenNftEscrowPayload.entity.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/entities/index.d.ts +1 -0
- package/dist/src/domain/model/{accessCodeAuthProperties/dtos → nft-escrow/entities}/index.js +1 -1
- package/dist/src/domain/model/nft-escrow/entities/index.js.map +1 -0
- package/dist/src/domain/model/nft-escrow/index.d.ts +2 -0
- package/dist/src/domain/model/nft-escrow/index.js +19 -0
- package/dist/src/domain/model/nft-escrow/index.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentAndTransactionPaylink.d.ts +3 -3
- package/dist/src/domain/model/paylink-tx/entities/BasePaylinkTx.d.ts +5 -5
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithMeta.d.ts +1 -1
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.d.ts +2 -2
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.d.ts +0 -1
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.js +0 -5
- package/dist/src/domain/model/payment-request/dtos/updatePaymentRequest.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.d.ts +1 -1
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.js +1 -1
- package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.js.map +1 -1
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.d.ts +1 -1
- package/dist/src/domain/model/paystream/entities/IntervalType.d.ts +7 -7
- package/dist/src/domain/model/paystream-tx/dtos/createPaystreamTxDto.d.ts +7 -7
- package/dist/src/domain/model/paystream-tx/dtos/updatePaystreamTxDto.d.ts +3 -3
- package/dist/src/domain/model/paystream-tx/entities/TransactionStatus.d.ts +16 -0
- package/dist/src/domain/model/paystream-tx/entities/TransactionStatus.js +7 -0
- package/dist/src/domain/model/paystream-tx/entities/TransactionStatus.js.map +1 -0
- package/dist/src/domain/model/prepare-stream/entities/PrepareStream.d.ts +5 -0
- package/dist/src/domain/model/prepare-stream/entities/PrepareStream.js +8 -0
- package/dist/src/domain/model/prepare-stream/entities/PrepareStream.js.map +1 -0
- package/dist/src/domain/model/prepare-stream/entities/TokenStreamWithdrawPayload.d.ts +5 -0
- package/dist/src/domain/model/prepare-stream/entities/TokenStreamWithdrawPayload.js +8 -0
- package/dist/src/domain/model/prepare-stream/entities/TokenStreamWithdrawPayload.js.map +1 -0
- package/dist/src/domain/model/prepare-transaction/dtos/prepareSwappedTransaction.dto.d.ts +4 -0
- package/dist/src/domain/model/{accessCodeAuthProperties/dtos/accessCodeAuthProperties.dto.js → prepare-transaction/dtos/prepareSwappedTransaction.dto.js} +6 -5
- package/dist/src/domain/model/prepare-transaction/dtos/prepareSwappedTransaction.dto.js.map +1 -0
- package/dist/src/domain/model/prepare-transaction/entities/PrepareSwappedTransaction.d.ts +5 -0
- package/dist/src/domain/model/prepare-transaction/entities/PrepareSwappedTransaction.js +7 -0
- package/dist/src/domain/model/prepare-transaction/entities/PrepareSwappedTransaction.js.map +1 -0
- package/dist/src/domain/model/product/dtos/product.dto.d.ts +3 -3
- package/dist/src/domain/model/product/entities/Product.d.ts +3 -3
- package/dist/src/domain/model/product/entities/ProductInputType.d.ts +2 -2
- package/dist/src/domain/model/product-details/dtos/productDetails.dto.d.ts +2 -2
- package/dist/src/domain/model/product-details/entities/ProductDetails.d.ts +2 -2
- package/dist/src/domain/model/role/dtos/createRole.dto.d.ts +3 -3
- package/dist/src/domain/model/role/dtos/updateRole.dto.d.ts +1 -1
- package/dist/src/domain/model/role/entities/BaseRole.d.ts +2 -2
- package/dist/src/domain/model/role/entities/Role.d.ts +2 -2
- package/dist/src/domain/model/role/entities/RoleType.d.ts +3 -3
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.d.ts +2 -2
- package/dist/src/domain/model/slug/dtos/slug.dto.d.ts +3 -3
- package/dist/src/domain/model/slug/dtos/updateSlug.dto.d.ts +3 -3
- package/dist/src/domain/model/slug/entities/Slug.d.ts +6 -6
- package/dist/src/domain/model/slug/entities/SlugObjectType.d.ts +3 -3
- package/dist/src/domain/model/split-account/dtos/splitAccount.dto.d.ts +2 -2
- package/dist/src/domain/model/split-account/entities/SplitAccount.d.ts +2 -2
- package/dist/src/domain/model/stream/dtos/cancelStream.dto.d.ts +5 -5
- package/dist/src/domain/model/stream/dtos/createStream.dto.d.ts +12 -12
- package/dist/src/domain/model/stream/dtos/withdrawStream.dto.d.ts +4 -4
- package/dist/src/domain/model/stream-event/dtos/createStreamEventDto.d.ts +2 -2
- package/dist/src/domain/model/stream-event/dtos/updateStreamEventDto.d.ts +2 -2
- package/dist/src/domain/model/stream-event/entities/StreamEvent.d.ts +2 -2
- package/dist/src/domain/model/submit-transaction/dtos/CheckTransactionStatus.dto.d.ts +4 -0
- package/dist/src/domain/model/{funding/entities/Funding.js → submit-transaction/dtos/CheckTransactionStatus.dto.js} +14 -9
- package/dist/src/domain/model/submit-transaction/dtos/CheckTransactionStatus.dto.js.map +1 -0
- package/dist/src/domain/model/submit-transaction/dtos/submitSwappedTransaction.dto.d.ts +4 -0
- package/dist/src/domain/model/{user/dtos/updateUserKyc.dto.js → submit-transaction/dtos/submitSwappedTransaction.dto.js} +9 -8
- package/dist/src/domain/model/submit-transaction/dtos/submitSwappedTransaction.dto.js.map +1 -0
- package/dist/src/domain/model/token-swap/entities/SwapRouteObject.d.ts +14 -0
- package/dist/src/domain/model/token-swap/entities/SwapRouteObject.js +9 -0
- package/dist/src/domain/model/token-swap/entities/SwapRouteObject.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.d.ts +2 -1
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.js +1 -0
- package/dist/src/domain/model/transaction-meta/constants/TransactionType.js.map +1 -1
- package/dist/src/domain/model/transaction-meta/entities/TransactionStatus.entity.d.ts +7 -0
- package/dist/src/domain/model/transaction-meta/entities/TransactionStatus.entity.js +12 -0
- package/dist/src/domain/model/transaction-meta/entities/TransactionStatus.entity.js.map +1 -0
- package/dist/src/domain/model/user/entities/BaseUser.d.ts +0 -1
- package/dist/src/domain/model/user/entities/BaseUser.js.map +1 -1
- package/dist/src/domain/model/wallet/dtos/updateWallet.dto.d.ts +1 -1
- package/dist/src/domain/model/webhook/paylink-transaction-hook/PaylinkTransactionEvent.d.ts +3 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/PaylinkTransactionEvent.js +11 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/PaylinkTransactionEvent.js.map +1 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/dtos/CreatePaylinkTransactionHook.dto.d.ts +3 -3
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionEvent.d.ts +3 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionEvent.entity.d.ts +1 -1
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionEvent.js +11 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionEvent.js.map +1 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionHook.d.ts +9 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionHook.js +7 -0
- package/dist/src/domain/model/webhook/paylink-transaction-hook/entities/PaylinkTransactionHook.js.map +1 -0
- package/dist/src/domain/model/withdrawal/dtos/createWithdrawalDto.d.ts +3 -3
- package/dist/src/domain/model/withdrawal/dtos/updateWithdrawalDto.d.ts +1 -1
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.d.ts +4 -0
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.js +41 -0
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.js.map +1 -0
- package/dist/src/domain/model/withdrawal/entities/Withdrawal.d.ts +3 -3
- package/dist/src/domain/model/withdrawal/entities/WithdrawalWithTransaction.d.ts +2 -2
- package/dist/src/domain/services/CurrencyService.d.ts +1 -1
- package/dist/src/domain/services/EmailService.d.ts +3 -0
- package/dist/src/domain/services/EmailService.js +11 -0
- package/dist/src/domain/services/EmailService.js.map +1 -0
- package/dist/src/domain/services/SolscanService.d.ts +1 -1
- package/dist/src/domain/services/__tests__/AmountService.test.d.ts +1 -0
- package/dist/src/domain/services/__tests__/AmountService.test.js +24 -0
- package/dist/src/domain/services/__tests__/AmountService.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/src/domain/model/accessCodeAuthProperties/dtos/accessCodeAuthProperties.dto.d.ts +0 -3
- package/dist/src/domain/model/accessCodeAuthProperties/dtos/accessCodeAuthProperties.dto.js.map +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/dtos/index.d.ts +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/dtos/index.js.map +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/entities/AccessCodeAuthProperties.d.ts +0 -4
- package/dist/src/domain/model/accessCodeAuthProperties/entities/AccessCodeAuthProperties.js +0 -8
- package/dist/src/domain/model/accessCodeAuthProperties/entities/AccessCodeAuthProperties.js.map +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/entities/index.d.ts +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/entities/index.js.map +0 -1
- package/dist/src/domain/model/accessCodeAuthProperties/index.js.map +0 -1
- package/dist/src/domain/model/auth/entities/CheckoutAuthToken.d.ts +0 -6
- package/dist/src/domain/model/auth/entities/CheckoutAuthToken.js +0 -7
- package/dist/src/domain/model/auth/entities/CheckoutAuthToken.js.map +0 -1
- package/dist/src/domain/model/funding/entities/Funding.d.ts +0 -6
- package/dist/src/domain/model/funding/entities/Funding.js.map +0 -1
- package/dist/src/domain/model/prepare-refund/entities/index.js +0 -1
- package/dist/src/domain/model/prepare-refund/entities/index.js.map +0 -1
- package/dist/src/domain/model/prepare-stream/entities/FundingTokenPayload.d.ts +0 -4
- package/dist/src/domain/model/prepare-stream/entities/FundingTokenPayload.js +0 -8
- package/dist/src/domain/model/prepare-stream/entities/FundingTokenPayload.js.map +0 -1
- package/dist/src/domain/model/refund/dtos/refund.dto.js.map +0 -1
- package/dist/src/domain/model/user/dtos/updateUserKyc.dto.d.ts +0 -3
- package/dist/src/domain/model/user/dtos/updateUserKyc.dto.js.map +0 -1
- /package/dist/src/{domain/model/prepare-refund/entities/index.d.ts → __tests__/index.test.d.ts} +0 -0
- /package/dist/src/domain/{model/accessCodeAuthProperties → contactAddress}/index.d.ts +0 -0
- /package/dist/src/domain/{model/accessCodeAuthProperties → contactAddress}/index.js +0 -0
package/dist/src/domain/model/{refund/dtos/refund.dto.js → nft-escrow/dtos/nftEscrowCreate.dto.js}
RENAMED
|
@@ -9,31 +9,35 @@ 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.
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
12
|
+
exports.NftEscrowCreateDto = void 0;
|
|
14
13
|
const class_transformer_1 = require("class-transformer");
|
|
15
|
-
const
|
|
16
|
-
class
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class NftEscrowCreateDto {
|
|
17
16
|
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
(0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], NftEscrowCreateDto.prototype, "price", void 0);
|
|
18
22
|
__decorate([
|
|
19
23
|
(0, class_validator_1.IsString)(),
|
|
20
24
|
(0, class_validator_1.IsNotEmpty)(),
|
|
21
25
|
__metadata("design:type", String)
|
|
22
|
-
],
|
|
26
|
+
], NftEscrowCreateDto.prototype, "ownerPK", void 0);
|
|
23
27
|
__decorate([
|
|
24
|
-
(0, class_validator_1.
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
25
29
|
(0, class_validator_1.IsNotEmpty)(),
|
|
26
30
|
__metadata("design:type", String)
|
|
27
|
-
],
|
|
31
|
+
], NftEscrowCreateDto.prototype, "escrowAccountPK", void 0);
|
|
28
32
|
__decorate([
|
|
29
|
-
(0,
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
30
34
|
(0, class_validator_1.IsNotEmpty)(),
|
|
31
|
-
__metadata("design:type",
|
|
32
|
-
],
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], NftEscrowCreateDto.prototype, "mintAddress", void 0);
|
|
33
37
|
__decorate([
|
|
34
38
|
(0, class_validator_1.IsString)(),
|
|
35
39
|
(0, class_validator_1.IsNotEmpty)(),
|
|
36
40
|
__metadata("design:type", String)
|
|
37
|
-
],
|
|
38
|
-
exports.
|
|
39
|
-
//# sourceMappingURL=
|
|
41
|
+
], NftEscrowCreateDto.prototype, "currencyMintAddress", void 0);
|
|
42
|
+
exports.NftEscrowCreateDto = NftEscrowCreateDto;
|
|
43
|
+
//# sourceMappingURL=NftEscrowCreate.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NftEscrowCreate.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/dtos/NftEscrowCreate.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA8C;AAC9C,qDAAuD;AAEvD,MAAa,kBAAkB;CAoB9B;AAnBC;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;iDAC1B;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACG;AAEhB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACW;AAExB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACO;AAEpB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+DACe;AAnB9B,gDAoBC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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.NftEscrowSubmitDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class NftEscrowSubmitDto {
|
|
15
|
+
}
|
|
16
|
+
__decorate([
|
|
17
|
+
(0, class_validator_1.IsString)(),
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], NftEscrowSubmitDto.prototype, "signedTransaction", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsString)(),
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], NftEscrowSubmitDto.prototype, "paymentRequestId", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.IsString)(),
|
|
28
|
+
(0, class_validator_1.IsOptional)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], NftEscrowSubmitDto.prototype, "transactionToken", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.IsOptional)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], NftEscrowSubmitDto.prototype, "escrowAccountPK", void 0);
|
|
36
|
+
exports.NftEscrowSubmitDto = NftEscrowSubmitDto;
|
|
37
|
+
//# sourceMappingURL=NftEscrowSubmit.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NftEscrowSubmit.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/dtos/NftEscrowSubmit.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmE;AAEnE,MAAa,kBAAkB;CAgB9B;AAfC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACa;AAE1B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2DACY;AAf3B,gDAgBC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TokenNftEscrowPayload = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class TokenNftEscrowPayload extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.TokenNftEscrowPayload = TokenNftEscrowPayload;
|
|
8
|
+
//# sourceMappingURL=TokenNftEscrowPayload.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TokenNftEscrowPayload.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/entities/TokenNftEscrowPayload.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,qBAAsB,SAAQ,eAAM;CAMhD;AAND,sDAMC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './TokenNftEscrowPayload.entity';
|
package/dist/src/domain/model/{accessCodeAuthProperties/dtos → nft-escrow/entities}/index.js
RENAMED
|
@@ -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("./
|
|
17
|
+
__exportStar(require("./TokenNftEscrowPayload.entity"), exports);
|
|
18
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/nft-escrow/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iEAA+C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./dtos"), exports);
|
|
18
|
+
__exportStar(require("./entities"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/nft-escrow/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
|
-
import {
|
|
2
|
+
import { ContentResponse } from '../../content';
|
|
3
3
|
import { TransactionStatus } from '../../transaction-meta';
|
|
4
4
|
export declare class OnlyContentAndTransactionPaylink extends Entity {
|
|
5
|
-
content:
|
|
5
|
+
content: ContentResponse;
|
|
6
6
|
transactionSignature?: string;
|
|
7
7
|
status?: TransactionStatus;
|
|
8
8
|
}
|
|
9
9
|
export declare class OnlyContentAndSwapTransactionPaylink extends Entity {
|
|
10
|
-
content:
|
|
10
|
+
content: ContentResponse;
|
|
11
11
|
transactionSignature?: string;
|
|
12
12
|
swapTransactionSignature?: string;
|
|
13
13
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
2
|
import { PaymentRequestType } from '../../payment-request';
|
|
3
3
|
export declare class BasePaylinkTx extends Entity {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
id: string;
|
|
5
|
+
quantity: number;
|
|
6
|
+
fee?: bigint;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
paymentType: PaymentRequestType;
|
|
9
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BasePaylinkTx } from './BasePaylinkTx';
|
|
2
2
|
import { ShallowEnrichedTransactionMeta } from '../../transaction-meta';
|
|
3
3
|
export declare class PaylinkTxWithMeta extends BasePaylinkTx {
|
|
4
|
-
|
|
4
|
+
meta: ShallowEnrichedTransactionMeta;
|
|
5
5
|
}
|
|
@@ -2,6 +2,6 @@ import { BasePaylinkTx } from './BasePaylinkTx';
|
|
|
2
2
|
import type { BaseTransactionMeta } from '../../transaction-meta';
|
|
3
3
|
import type { BasePaylink } from '../../paylink';
|
|
4
4
|
export declare class ShallowEnrichedPaylinkTx extends BasePaylinkTx {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
meta: BaseTransactionMeta;
|
|
6
|
+
paylink: BasePaylink;
|
|
7
7
|
}
|
|
@@ -6,7 +6,6 @@ import { AccessCodeAuthPropertiesDto } from '../../access-code-auth-properties';
|
|
|
6
6
|
import { BlockchainSymbol } from '../../blockchain';
|
|
7
7
|
import { NftDropDto } from '../../nft-drop';
|
|
8
8
|
export declare class UpdatePaymentRequestDto {
|
|
9
|
-
company?: string;
|
|
10
9
|
name?: string;
|
|
11
10
|
description?: string;
|
|
12
11
|
image?: string;
|
|
@@ -21,11 +21,6 @@ const blockchain_1 = require("../../blockchain");
|
|
|
21
21
|
const nft_drop_1 = require("../../nft-drop");
|
|
22
22
|
class UpdatePaymentRequestDto {
|
|
23
23
|
}
|
|
24
|
-
__decorate([
|
|
25
|
-
(0, class_validator_1.IsString)(),
|
|
26
|
-
(0, class_validator_1.IsOptional)(),
|
|
27
|
-
__metadata("design:type", String)
|
|
28
|
-
], UpdatePaymentRequestDto.prototype, "company", void 0);
|
|
29
24
|
__decorate([
|
|
30
25
|
(0, class_validator_1.IsString)(),
|
|
31
26
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updatePaymentRequest.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/updatePaymentRequest.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,2CAA2C;AAC3C,yDAAwD;AACxD,uEAAuE;AACvE,mFAAgF;AAChF,iDAAoD;AACpD,6CAA4C;AAE5C,MAAa,uBAAuB;
|
|
1
|
+
{"version":3,"file":"updatePaymentRequest.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/dtos/updatePaymentRequest.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,2CAA2C;AAC3C,yDAAwD;AACxD,uEAAuE;AACvE,mFAAgF;AAChF,iDAAoD;AACpD,6CAA4C;AAE5C,MAAa,uBAAuB;CAsFnC;AArFC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACC;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4DACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACE;AAEf;IAAC,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,4BAAU,GAAE;;gEACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oEACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,6BAAgB,CAAC;;2DACK;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yDACM;AAEnB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACG;AAEhB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;wDAAC;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gEACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;wDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qEACiB;AAE9B;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gDAAwB,CAAC;IACpC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACO,gDAAwB;sEAAC;AAEjD;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,yDAA2B,CAAC;IACvC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACU,yDAA2B;yEAAC;AAEvD;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,qBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,qBAAU;wDAAC;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;IAC5B,IAAA,4BAAU,GAAE;8BACG,iCAAgB;8DAAC;AArFnC,0DAsFC"}
|
|
@@ -97,6 +97,6 @@ __decorate([
|
|
|
97
97
|
(0, class_validator_1.IsBoolean)(),
|
|
98
98
|
(0, class_validator_1.IsOptional)(),
|
|
99
99
|
__metadata("design:type", Boolean)
|
|
100
|
-
], PaymentRequestFeaturesDto.prototype, "
|
|
100
|
+
], PaymentRequestFeaturesDto.prototype, "nftDropEnabled", void 0);
|
|
101
101
|
exports.PaymentRequestFeaturesDto = PaymentRequestFeaturesDto;
|
|
102
102
|
//# sourceMappingURL=paymentRequestFeatures.dto.js.map
|
package/dist/src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paymentRequestFeatures.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAwD;AAExD,MAAa,yBAAyB;CAoErC;AAnEC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACU;AAEvB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kEACa;AAE1B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qEACgB;AAE7B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qEACgB;AAE7B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oEACe;AAE5B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;uEACkB;AAE/B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;gEACW;AAExB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;8DACS;AAEtB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;
|
|
1
|
+
{"version":3,"file":"paymentRequestFeatures.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request-features/dtos/paymentRequestFeatures.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAwD;AAExD,MAAa,yBAAyB;CAoErC;AAnEC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACU;AAEvB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kEACa;AAE1B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qEACgB;AAE7B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wEACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;yEACoB;AAEjC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACY;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;qEACgB;AAE7B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;oEACe;AAE5B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;uEACkB;AAE/B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;gEACW;AAExB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;8DACS;AAEtB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;sEACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iEACY;AAnE3B,8DAoEC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare enum IntervalType {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
SECOND = 'SECOND',
|
|
3
|
+
MINUTE = 'MINUTE',
|
|
4
|
+
HOUR = 'HOUR',
|
|
5
|
+
DAY = 'DAY',
|
|
6
|
+
WEEK = 'WEEK',
|
|
7
|
+
MONTH = 'MONTH',
|
|
8
|
+
YEAR = 'YEAR',
|
|
9
9
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { CreateStreamEventDto } from '../../stream-event';
|
|
2
2
|
import { CreateTransactionMetaDto } from '../../transaction-meta';
|
|
3
3
|
export declare class CreatePaystreamTxDto {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
meta: CreateTransactionMetaDto;
|
|
5
|
+
paystream: string;
|
|
6
|
+
paymentAccount: string;
|
|
7
|
+
startedAt: CreateStreamEventDto;
|
|
8
|
+
endedAt?: string;
|
|
9
|
+
interval: number;
|
|
10
|
+
isHelioX?: boolean;
|
|
11
11
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CreateStreamEventDto } from '../../stream-event';
|
|
2
2
|
export declare class UpdatePaystreamTxDto {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
canceledAt?: CreateStreamEventDto;
|
|
4
|
+
endedAt?: string;
|
|
5
|
+
withdrawals?: string[];
|
|
6
6
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class TransactionStatus {
|
|
2
|
+
transactionSignature: string;
|
|
3
|
+
endedAt: number;
|
|
4
|
+
paymentData: {
|
|
5
|
+
document: {
|
|
6
|
+
id: string;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
paymentPK: string;
|
|
9
|
+
maxTime: number;
|
|
10
|
+
};
|
|
11
|
+
content: {
|
|
12
|
+
text?: string;
|
|
13
|
+
videoUrl?: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TransactionStatus.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paystream-tx/entities/TransactionStatus.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAiB;CAiB7B;AAjBD,8CAiBC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PrepareStream = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class PrepareStream extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.PrepareStream = PrepareStream;
|
|
8
|
+
//# sourceMappingURL=PrepareStream.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrepareStream.js","sourceRoot":"","sources":["../../../../../../src/domain/model/prepare-stream/entities/PrepareStream.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,aAAc,SAAQ,eAAM;CAGxC;AAHD,sCAGC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TokenStreamWithdrawPayload = void 0;
|
|
4
|
+
const TokenStreamPayload_1 = require("./TokenStreamPayload");
|
|
5
|
+
class TokenStreamWithdrawPayload extends TokenStreamPayload_1.TokenStreamPayload {
|
|
6
|
+
}
|
|
7
|
+
exports.TokenStreamWithdrawPayload = TokenStreamWithdrawPayload;
|
|
8
|
+
//# sourceMappingURL=TokenStreamWithdrawPayload.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TokenStreamWithdrawPayload.js","sourceRoot":"","sources":["../../../../../../src/domain/model/prepare-stream/entities/TokenStreamWithdrawPayload.ts"],"names":[],"mappings":";;;AACA,6DAA0D;AAE1D,MAAa,0BAA2B,SAAQ,uCAAkB;CAEjE;AAFD,gEAEC"}
|
|
@@ -9,14 +9,15 @@ 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.
|
|
12
|
+
exports.PrepareSwappedTransactionDto = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
|
|
14
|
+
const _1 = require(".");
|
|
15
|
+
class PrepareSwappedTransactionDto extends _1.PrepareTransactionDto {
|
|
15
16
|
}
|
|
16
17
|
__decorate([
|
|
17
18
|
(0, class_validator_1.IsString)(),
|
|
18
19
|
(0, class_validator_1.IsNotEmpty)(),
|
|
19
20
|
__metadata("design:type", String)
|
|
20
|
-
],
|
|
21
|
-
exports.
|
|
22
|
-
//# sourceMappingURL=
|
|
21
|
+
], PrepareSwappedTransactionDto.prototype, "swappedRouteToken", void 0);
|
|
22
|
+
exports.PrepareSwappedTransactionDto = PrepareSwappedTransactionDto;
|
|
23
|
+
//# sourceMappingURL=prepareSwappedTransaction.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prepareSwappedTransaction.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/prepare-transaction/dtos/prepareSwappedTransaction.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AACvD,wBAA0C;AAE1C,MAAa,4BAA6B,SAAQ,wBAAqB;CAItE;AAHC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uEACa;AAH5B,oEAIC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PrepareSwappedTransaction = void 0;
|
|
4
|
+
class PrepareSwappedTransaction {
|
|
5
|
+
}
|
|
6
|
+
exports.PrepareSwappedTransaction = PrepareSwappedTransaction;
|
|
7
|
+
//# sourceMappingURL=PrepareSwappedTransaction.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrepareSwappedTransaction.js","sourceRoot":"","sources":["../../../../../../src/domain/model/prepare-transaction/entities/PrepareSwappedTransaction.ts"],"names":[],"mappings":";;;AAEA,MAAa,yBAAyB;CAGrC;AAHD,8DAGC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
2
|
import { ProductInputType } from './ProductInputType';
|
|
3
3
|
export declare class Product extends Entity {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
type: ProductInputType;
|
|
7
7
|
}
|
|
@@ -2,6 +2,6 @@ import { BaseRole } from './BaseRole';
|
|
|
2
2
|
import type { BaseUser } from '../../user';
|
|
3
3
|
import { BaseCompany } from '../../company';
|
|
4
4
|
export declare class ShallowEnrichedRole extends BaseRole {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
company: BaseCompany;
|
|
6
|
+
user: BaseUser;
|
|
7
7
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
2
|
export declare class Slug extends Entity {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
id: string;
|
|
4
|
+
slug: string;
|
|
5
|
+
objectType: string;
|
|
6
|
+
objectId: string;
|
|
7
|
+
active?: boolean;
|
|
8
|
+
inactiveDate?: number;
|
|
9
9
|
}
|