@heliofi/common 0.1.50 → 0.1.53
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/index.js +18 -34
- package/dist/src/domain/constants/emailValidation.js +4 -5
- package/dist/src/domain/constants/environment.d.ts +3 -3
- package/dist/src/domain/constants/environment.js +7 -7
- package/dist/src/domain/constants/index.js +20 -36
- package/dist/src/domain/constants/orderDirection.d.ts +3 -5
- package/dist/src/domain/constants/orderDirection.js +10 -13
- package/dist/src/domain/index.js +20 -36
- package/dist/src/domain/model/apiKey/dtos/createApiKey.dto.d.ts +3 -3
- package/dist/src/domain/model/apiKey/dtos/createApiKey.dto.js +23 -53
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.d.ts +5 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.js +32 -0
- package/dist/src/domain/model/apiKey/dtos/createApiKeyDto.js.map +1 -0
- package/dist/src/domain/model/apiKey/dtos/index.js +19 -35
- package/dist/src/domain/model/apiKey/dtos/updateApiKey.dto.d.ts +2 -2
- package/dist/src/domain/model/apiKey/dtos/updateApiKey.dto.js +20 -45
- package/dist/src/domain/model/apiKey/dtos/updateApiKeyDto.d.ts +4 -0
- package/dist/src/domain/model/apiKey/dtos/updateApiKeyDto.js +27 -0
- package/dist/src/domain/model/apiKey/dtos/updateApiKeyDto.js.map +1 -0
- package/dist/src/domain/model/apiKey/entities/ApiKey.d.ts +4 -4
- package/dist/src/domain/model/apiKey/entities/ApiKey.js +6 -5
- package/dist/src/domain/model/apiKey/entities/index.js +18 -34
- package/dist/src/domain/model/apiKey/index.js +19 -35
- package/dist/src/domain/model/approve-transaction/dtos/approveTransaction.dto.d.ts +10 -10
- package/dist/src/domain/model/approve-transaction/dtos/approveTransaction.dto.js +47 -112
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.d.ts +14 -0
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.js +82 -0
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.js.map +1 -0
- package/dist/src/domain/model/approve-transaction/dtos/index.js +5 -10
- package/dist/src/domain/model/approve-transaction/index.js +18 -34
- package/dist/src/domain/model/attachment/dtos/createAttachment.dto.d.ts +4 -4
- package/dist/src/domain/model/attachment/dtos/createAttachment.dto.js +23 -53
- package/dist/src/domain/model/attachment/dtos/createAttachmentDto.d.ts +7 -0
- package/dist/src/domain/model/attachment/dtos/createAttachmentDto.js +40 -0
- package/dist/src/domain/model/attachment/dtos/createAttachmentDto.js.map +1 -0
- package/dist/src/domain/model/attachment/dtos/createAttachmentInternal.dto.d.ts +4 -4
- package/dist/src/domain/model/attachment/dtos/createAttachmentInternal.dto.js +26 -61
- package/dist/src/domain/model/attachment/dtos/index.js +19 -35
- package/dist/src/domain/model/attachment/entities/Attachment.d.ts +1 -1
- package/dist/src/domain/model/attachment/entities/Attachment.js +6 -5
- package/dist/src/domain/model/attachment/entities/AttachmentType.d.ts +1 -1
- package/dist/src/domain/model/attachment/entities/AttachmentType.enum.d.ts +3 -0
- package/dist/src/domain/model/attachment/entities/AttachmentType.enum.js +8 -0
- package/dist/src/domain/model/attachment/entities/AttachmentType.enum.js.map +1 -0
- package/dist/src/domain/model/attachment/entities/AttachmentType.js +5 -5
- package/dist/src/domain/model/attachment/entities/BaseAttachment.d.ts +4 -4
- package/dist/src/domain/model/attachment/entities/BaseAttachment.js +6 -5
- package/dist/src/domain/model/attachment/entities/ShallowEnrichedAttachment.d.ts +1 -1
- package/dist/src/domain/model/attachment/entities/ShallowEnrichedAttachment.js +6 -5
- package/dist/src/domain/model/attachment/entities/index.js +22 -43
- package/dist/src/domain/model/attachment/index.js +19 -35
- package/dist/src/domain/model/auth/dtos/index.js +19 -35
- package/dist/src/domain/model/auth/dtos/signOn.dto.d.ts +2 -2
- package/dist/src/domain/model/auth/dtos/signOn.dto.js +20 -45
- package/dist/src/domain/model/auth/dtos/signOnDto.d.ts +4 -0
- package/dist/src/domain/model/auth/dtos/signOnDto.js +30 -0
- package/dist/src/domain/model/auth/dtos/signOnDto.js.map +1 -0
- package/dist/src/domain/model/auth/dtos/transactionSignOn.dto.d.ts +1 -1
- package/dist/src/domain/model/auth/dtos/transactionSignOn.dto.js +17 -37
- package/dist/src/domain/model/auth/entities/AuthResponse.d.ts +4 -4
- package/dist/src/domain/model/auth/entities/AuthResponse.js +5 -4
- package/dist/src/domain/model/auth/entities/AuthUser.d.ts +8 -8
- package/dist/src/domain/model/auth/entities/AuthUser.js +3 -3
- package/dist/src/domain/model/auth/entities/index.js +19 -35
- package/dist/src/domain/model/auth/index.js +19 -35
- package/dist/src/domain/model/blockchain/constants/Cluster.d.ts +3 -3
- package/dist/src/domain/model/blockchain/constants/Cluster.js +7 -7
- package/dist/src/domain/model/blockchain/constants/index.js +18 -34
- package/dist/src/domain/model/blockchain/dtos/blockchain.dto.d.ts +2 -2
- package/dist/src/domain/model/blockchain/dtos/blockchain.dto.js +20 -45
- package/dist/src/domain/model/blockchain/dtos/blockchainDto.d.ts +4 -0
- package/dist/src/domain/model/blockchain/dtos/blockchainDto.js +27 -0
- package/dist/src/domain/model/blockchain/dtos/blockchainDto.js.map +1 -0
- package/dist/src/domain/model/blockchain/dtos/index.js +18 -34
- package/dist/src/domain/model/blockchain/entities/Blockchain.d.ts +3 -3
- package/dist/src/domain/model/blockchain/entities/Blockchain.js +6 -5
- package/dist/src/domain/model/blockchain/entities/index.js +18 -34
- package/dist/src/domain/model/blockchain/index.js +20 -36
- package/dist/src/domain/model/breakpoint/dtos/breakpoint.dto.d.ts +8 -8
- package/dist/src/domain/model/breakpoint/dtos/breakpoint.dto.js +40 -95
- package/dist/src/domain/model/breakpoint/dtos/index.js +5 -10
- package/dist/src/domain/model/breakpoint/entities/BreakpointResponse.d.ts +2 -2
- package/dist/src/domain/model/breakpoint/entities/BreakpointResponse.js +5 -4
- package/dist/src/domain/model/breakpoint/entities/index.js +18 -34
- package/dist/src/domain/model/breakpoint/index.js +19 -35
- package/dist/src/domain/model/company/dtos/createCompany.dto.d.ts +6 -6
- package/dist/src/domain/model/company/dtos/createCompany.dto.js +32 -77
- package/dist/src/domain/model/company/dtos/createCompanyDto.d.ts +7 -0
- package/dist/src/domain/model/company/dtos/createCompanyDto.js +48 -0
- package/dist/src/domain/model/company/dtos/createCompanyDto.js.map +1 -0
- package/dist/src/domain/model/company/dtos/index.js +19 -35
- package/dist/src/domain/model/company/dtos/updateCompany.dto.d.ts +6 -6
- package/dist/src/domain/model/company/dtos/updateCompany.dto.js +32 -77
- package/dist/src/domain/model/company/dtos/updateCompanyDto.d.ts +7 -0
- package/dist/src/domain/model/company/dtos/updateCompanyDto.js +48 -0
- package/dist/src/domain/model/company/dtos/updateCompanyDto.js.map +1 -0
- package/dist/src/domain/model/company/entities/BaseCompany.d.ts +7 -7
- package/dist/src/domain/model/company/entities/BaseCompany.js +6 -5
- package/dist/src/domain/model/company/entities/Company.d.ts +2 -2
- package/dist/src/domain/model/company/entities/Company.js +6 -5
- package/dist/src/domain/model/company/entities/index.js +19 -35
- package/dist/src/domain/model/company/index.js +19 -35
- package/dist/src/domain/model/content/dtos/content.dto.d.ts +2 -2
- package/dist/src/domain/model/content/dtos/content.dto.js +20 -45
- package/dist/src/domain/model/content/dtos/contentDto.d.ts +4 -0
- package/dist/src/domain/model/content/dtos/contentDto.js +27 -0
- package/dist/src/domain/model/content/dtos/contentDto.js.map +1 -0
- package/dist/src/domain/model/content/dtos/index.js +18 -34
- package/dist/src/domain/model/content/entities/Content.d.ts +2 -2
- package/dist/src/domain/model/content/entities/Content.js +6 -5
- package/dist/src/domain/model/content/entities/index.js +18 -34
- package/dist/src/domain/model/content/index.js +19 -35
- package/dist/src/domain/model/currency/dtos/createCurrency.d.ts +9 -0
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.d.ts +8 -8
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.js +44 -81
- package/dist/src/domain/model/currency/dtos/createCurrency.js +54 -0
- package/dist/src/domain/model/currency/dtos/createCurrency.js.map +1 -0
- package/dist/src/domain/model/currency/dtos/index.js +19 -35
- package/dist/src/domain/model/currency/dtos/updateCurrency.d.ts +9 -0
- package/dist/src/domain/model/currency/dtos/updateCurrency.dto.d.ts +8 -8
- package/dist/src/domain/model/currency/dtos/updateCurrency.dto.js +38 -93
- package/dist/src/domain/model/currency/dtos/updateCurrency.js +60 -0
- package/dist/src/domain/model/currency/dtos/updateCurrency.js.map +1 -0
- package/dist/src/domain/model/currency/entities/BaseCurrency.d.ts +8 -8
- package/dist/src/domain/model/currency/entities/BaseCurrency.js +6 -5
- package/dist/src/domain/model/currency/entities/Currency.d.ts +1 -1
- package/dist/src/domain/model/currency/entities/Currency.js +6 -5
- package/dist/src/domain/model/currency/entities/index.js +19 -35
- package/dist/src/domain/model/currency/index.js +19 -35
- package/dist/src/domain/model/customer-details/dtos/CustomerDetailsDto.d.ts +9 -0
- package/dist/src/domain/model/customer-details/dtos/CustomerDetailsDto.js +53 -0
- package/dist/src/domain/model/customer-details/dtos/CustomerDetailsDto.js.map +1 -0
- package/dist/src/domain/model/customer-details/dtos/customerDetails.dto.d.ts +12 -12
- package/dist/src/domain/model/customer-details/dtos/customerDetails.dto.js +50 -125
- package/dist/src/domain/model/customer-details/dtos/index.js +18 -34
- package/dist/src/domain/model/customer-details/entities/CustomerDetails.d.ts +12 -12
- package/dist/src/domain/model/customer-details/entities/CustomerDetails.js +6 -5
- package/dist/src/domain/model/customer-details/entities/index.js +18 -34
- package/dist/src/domain/model/customer-details/index.js +19 -35
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.d.ts +6 -0
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.dto.d.ts +6 -4
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.dto.js +38 -55
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.dto.js.map +1 -1
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.js +39 -0
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.js.map +1 -0
- package/dist/src/domain/model/discordDetails/dtos/index.js +19 -35
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.d.ts +5 -0
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.dto.d.ts +3 -3
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.dto.js +23 -53
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.js +36 -0
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.js.map +1 -0
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.d.ts +6 -4
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.js +6 -5
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.js.map +1 -1
- package/dist/src/domain/model/discordDetails/entities/DiscordBotType.d.ts +4 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordBotType.js +9 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordBotType.js.map +1 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.d.ts +4 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.js +9 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.js.map +1 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.d.ts +1 -1
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.js +6 -5
- package/dist/src/domain/model/discordDetails/entities/index.d.ts +1 -0
- package/dist/src/domain/model/discordDetails/entities/index.js +20 -35
- package/dist/src/domain/model/discordDetails/entities/index.js.map +1 -1
- package/dist/src/domain/model/discordDetails/index.js +19 -35
- package/dist/src/domain/model/email/dtos/email.dto.d.ts +20 -20
- package/dist/src/domain/model/email/dtos/email.dto.js +75 -190
- package/dist/src/domain/model/email/dtos/emailDto.d.ts +10 -0
- package/dist/src/domain/model/email/dtos/emailDto.js +63 -0
- package/dist/src/domain/model/email/dtos/emailDto.js.map +1 -0
- package/dist/src/domain/model/email/dtos/index.js +18 -34
- package/dist/src/domain/model/email/index.js +18 -34
- package/dist/src/domain/model/entity/Entity.d.ts +2 -2
- package/dist/src/domain/model/entity/Entity.js +10 -10
- package/dist/src/domain/model/entity/index.js +5 -10
- package/dist/src/domain/model/index.js +50 -66
- package/dist/src/domain/model/link-features/dtos/index.js +18 -34
- package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.d.ts +12 -12
- package/dist/src/domain/model/link-features/dtos/linkFeatures.dto.js +50 -125
- package/dist/src/domain/model/link-features/dtos/linkFeaturesDto.d.ts +12 -0
- package/dist/src/domain/model/link-features/dtos/linkFeaturesDto.js +67 -0
- package/dist/src/domain/model/link-features/dtos/linkFeaturesDto.js.map +1 -0
- package/dist/src/domain/model/link-features/entities/LinkFeatures.d.ts +2 -2
- package/dist/src/domain/model/link-features/entities/LinkFeatures.js +6 -5
- package/dist/src/domain/model/link-features/entities/index.js +18 -34
- package/dist/src/domain/model/link-features/index.js +19 -35
- package/dist/src/domain/model/metrics/entities/Metrics.d.ts +5 -5
- package/dist/src/domain/model/metrics/entities/Metrics.js +3 -3
- package/dist/src/domain/model/metrics/entities/index.js +18 -34
- package/dist/src/domain/model/metrics/index.js +18 -34
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.d.ts +19 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.js +114 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.js.map +1 -0
- package/dist/src/domain/model/paylink/dtos/updatePaylinkDto.d.ts +17 -0
- package/dist/src/domain/model/paylink/dtos/updatePaylinkDto.js +102 -0
- package/dist/src/domain/model/paylink/dtos/updatePaylinkDto.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/BasePaylink.d.ts +1 -1
- package/dist/src/domain/model/paylink/entities/BasePaylink.js +6 -5
- package/dist/src/domain/model/paylink/entities/OnlyContentPaylink.d.ts +1 -1
- package/dist/src/domain/model/paylink/entities/OnlyContentPaylink.js +6 -5
- package/dist/src/domain/model/paylink/entities/Paylink.d.ts +1 -1
- package/dist/src/domain/model/paylink/entities/Paylink.js +6 -5
- package/dist/src/domain/model/paylink/entities/PaylinkStats.d.ts +3 -3
- package/dist/src/domain/model/paylink/entities/PaylinkStats.js +5 -4
- package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.d.ts +2 -2
- package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.js +6 -5
- package/dist/src/domain/model/paylink/entities/index.js +22 -38
- package/dist/src/domain/model/paylink/index.js +19 -35
- package/dist/src/domain/model/paylink-tx/dtos/createPaylinkTx.dto.d.ts +4 -4
- package/dist/src/domain/model/paylink-tx/dtos/createPaylinkTx.dto.js +29 -66
- package/dist/src/domain/model/paylink-tx/dtos/createPaylinkTxDto.d.ts +6 -0
- package/dist/src/domain/model/paylink-tx/dtos/createPaylinkTxDto.js +36 -0
- package/dist/src/domain/model/paylink-tx/dtos/createPaylinkTxDto.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/dtos/index.js +19 -35
- package/dist/src/domain/model/paylink-tx/dtos/updatePaylinkTx.dto.d.ts +1 -1
- package/dist/src/domain/model/paylink-tx/dtos/updatePaylinkTx.dto.js +17 -37
- package/dist/src/domain/model/paylink-tx/dtos/updatePaylinkTxDto.d.ts +3 -0
- package/dist/src/domain/model/paylink-tx/dtos/updatePaylinkTxDto.js +22 -0
- package/dist/src/domain/model/paylink-tx/dtos/updatePaylinkTxDto.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/BasePaylinkTx.d.ts +5 -5
- package/dist/src/domain/model/paylink-tx/entities/BasePaylinkTx.js +18 -38
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTx.d.ts +2 -2
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTx.js +6 -5
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.d.ts +6 -6
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.js +25 -56
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.d.ts +2 -2
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.js +6 -5
- package/dist/src/domain/model/paylink-tx/entities/index.js +21 -37
- package/dist/src/domain/model/paylink-tx/index.js +19 -35
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.d.ts +14 -14
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.js +18 -38
- package/dist/src/domain/model/payment-request/entities/PaymentRequest.d.ts +5 -5
- package/dist/src/domain/model/payment-request/entities/PaymentRequest.js +6 -5
- package/dist/src/domain/model/payment-request/entities/PaymentRequestType.d.ts +2 -2
- package/dist/src/domain/model/payment-request/entities/PaymentRequestType.js +6 -9
- package/dist/src/domain/model/payment-request/entities/PaymentType.d.ts +4 -0
- package/dist/src/domain/model/payment-request/entities/PaymentType.js +9 -0
- package/dist/src/domain/model/payment-request/entities/PaymentType.js.map +1 -0
- package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.d.ts +8 -8
- package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.js +6 -5
- package/dist/src/domain/model/payment-request/entities/SlugPaymentRequest.d.ts +2 -2
- package/dist/src/domain/model/payment-request/entities/SlugPaymentRequest.js +5 -4
- package/dist/src/domain/model/payment-request/entities/index.js +22 -38
- package/dist/src/domain/model/payment-request/index.js +18 -34
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.d.ts +10 -10
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.js +6 -5
- package/dist/src/domain/model/payment-request-features/entities/index.js +18 -34
- package/dist/src/domain/model/payment-request-features/index.js +18 -34
- package/dist/src/domain/model/paystream/entities/BasePaystream.d.ts +3 -3
- package/dist/src/domain/model/paystream/entities/BasePaystream.js +6 -5
- package/dist/src/domain/model/paystream/entities/IntervalType.d.ts +7 -7
- package/dist/src/domain/model/paystream/entities/IntervalType.js +11 -11
- package/dist/src/domain/model/paystream/entities/Paystream.d.ts +3 -3
- package/dist/src/domain/model/paystream/entities/Paystream.js +6 -5
- package/dist/src/domain/model/paystream/entities/PaystreamStats.d.ts +3 -3
- package/dist/src/domain/model/paystream/entities/PaystreamStats.js +5 -4
- package/dist/src/domain/model/paystream/entities/ShallowEnrichedPaystream.d.ts +4 -4
- package/dist/src/domain/model/paystream/entities/ShallowEnrichedPaystream.js +6 -5
- package/dist/src/domain/model/paystream/entities/index.js +22 -38
- package/dist/src/domain/model/paystream/index.js +19 -35
- package/dist/src/domain/model/paystream-tx/dtos/createPaystreamTxDto.d.ts +7 -7
- package/dist/src/domain/model/paystream-tx/dtos/createPaystreamTxDto.js +39 -91
- package/dist/src/domain/model/paystream-tx/dtos/index.js +19 -35
- package/dist/src/domain/model/paystream-tx/dtos/updatePaystreamTxDto.d.ts +3 -3
- package/dist/src/domain/model/paystream-tx/dtos/updatePaystreamTxDto.js +26 -56
- package/dist/src/domain/model/paystream-tx/entities/BasePaystreamTx.d.ts +10 -10
- package/dist/src/domain/model/paystream-tx/entities/BasePaystreamTx.js +25 -55
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTx.d.ts +8 -8
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTx.js +30 -65
- package/dist/src/domain/model/paystream-tx/entities/index.js +19 -35
- package/dist/src/domain/model/paystream-tx/index.js +19 -35
- package/dist/src/domain/model/product/dtos/ProductDto.d.ts +6 -0
- package/dist/src/domain/model/product/dtos/ProductDto.js +37 -0
- package/dist/src/domain/model/product/dtos/ProductDto.js.map +1 -0
- package/dist/src/domain/model/product/dtos/index.js +18 -34
- package/dist/src/domain/model/product/dtos/product.dto.d.ts +3 -3
- package/dist/src/domain/model/product/dtos/product.dto.js +24 -54
- package/dist/src/domain/model/product/entities/Product.d.ts +3 -3
- package/dist/src/domain/model/product/entities/Product.js +6 -5
- package/dist/src/domain/model/product/entities/ProductInputType.d.ts +2 -2
- package/dist/src/domain/model/product/entities/ProductInputType.js +6 -9
- package/dist/src/domain/model/product/entities/index.js +19 -35
- package/dist/src/domain/model/product/index.js +19 -35
- package/dist/src/domain/model/product-details/dtos/ProductDetailsDto.d.ts +4 -0
- package/dist/src/domain/model/product-details/dtos/ProductDetailsDto.js +30 -0
- package/dist/src/domain/model/product-details/dtos/ProductDetailsDto.js.map +1 -0
- package/dist/src/domain/model/product-details/dtos/index.js +18 -34
- package/dist/src/domain/model/product-details/dtos/productDetails.dto.d.ts +2 -2
- package/dist/src/domain/model/product-details/dtos/productDetails.dto.js +20 -45
- package/dist/src/domain/model/product-details/entities/ProductDetails.d.ts +2 -2
- package/dist/src/domain/model/product-details/entities/ProductDetails.js +6 -5
- package/dist/src/domain/model/product-details/entities/index.js +18 -34
- package/dist/src/domain/model/product-details/index.js +19 -35
- package/dist/src/domain/model/report/entities/ReportItem.d.ts +31 -31
- package/dist/src/domain/model/report/entities/ReportItem.js +5 -4
- package/dist/src/domain/model/report/entities/index.js +18 -34
- package/dist/src/domain/model/report/index.js +18 -34
- package/dist/src/domain/model/role/dtos/createRole.dto.d.ts +3 -3
- package/dist/src/domain/model/role/dtos/createRole.dto.js +24 -54
- package/dist/src/domain/model/role/dtos/createRoleDto.d.ts +6 -0
- package/dist/src/domain/model/role/dtos/createRoleDto.js +37 -0
- package/dist/src/domain/model/role/dtos/createRoleDto.js.map +1 -0
- package/dist/src/domain/model/role/dtos/index.js +19 -35
- package/dist/src/domain/model/role/dtos/updateRole.dto.d.ts +1 -1
- package/dist/src/domain/model/role/dtos/updateRole.dto.js +18 -38
- package/dist/src/domain/model/role/dtos/updateRoleDto.d.ts +4 -0
- package/dist/src/domain/model/role/dtos/updateRoleDto.js +25 -0
- package/dist/src/domain/model/role/dtos/updateRoleDto.js.map +1 -0
- package/dist/src/domain/model/role/entities/BaseRole.d.ts +2 -2
- package/dist/src/domain/model/role/entities/BaseRole.js +6 -5
- package/dist/src/domain/model/role/entities/Role.d.ts +2 -2
- package/dist/src/domain/model/role/entities/Role.js +6 -5
- package/dist/src/domain/model/role/entities/RoleType.d.ts +3 -3
- package/dist/src/domain/model/role/entities/RoleType.js +7 -7
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.d.ts +2 -2
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.js +6 -5
- package/dist/src/domain/model/role/entities/index.js +21 -37
- package/dist/src/domain/model/role/index.js +19 -35
- package/dist/src/domain/model/slug/dtos/index.js +19 -35
- package/dist/src/domain/model/slug/dtos/slug.d.ts +6 -0
- package/dist/src/domain/model/slug/dtos/slug.dto.d.ts +3 -3
- package/dist/src/domain/model/slug/dtos/slug.dto.js +24 -54
- package/dist/src/domain/model/slug/dtos/slug.js +37 -0
- package/dist/src/domain/model/slug/dtos/slug.js.map +1 -0
- package/dist/src/domain/model/slug/dtos/updateSlug.dto.d.ts +3 -3
- package/dist/src/domain/model/slug/dtos/updateSlug.dto.js +25 -52
- package/dist/src/domain/model/slug/entities/Slug.d.ts +6 -6
- package/dist/src/domain/model/slug/entities/Slug.js +6 -5
- package/dist/src/domain/model/slug/entities/SlugObjectType.d.ts +3 -3
- package/dist/src/domain/model/slug/entities/SlugObjectType.js +7 -7
- package/dist/src/domain/model/slug/entities/index.js +19 -35
- package/dist/src/domain/model/slug/index.js +19 -35
- package/dist/src/domain/model/stream/dtos/cancelStream.dto.d.ts +5 -5
- package/dist/src/domain/model/stream/dtos/cancelStream.dto.js +30 -70
- package/dist/src/domain/model/stream/dtos/createStream.dto.d.ts +12 -12
- package/dist/src/domain/model/stream/dtos/createStream.dto.js +53 -128
- package/dist/src/domain/model/stream/dtos/index.js +20 -36
- package/dist/src/domain/model/stream/dtos/withdrawStream.dto.d.ts +4 -4
- package/dist/src/domain/model/stream/dtos/withdrawStream.dto.js +27 -62
- package/dist/src/domain/model/stream/index.js +18 -34
- package/dist/src/domain/model/stream-event/dtos/createStreamEventDto.d.ts +2 -2
- package/dist/src/domain/model/stream-event/dtos/createStreamEventDto.js +21 -46
- package/dist/src/domain/model/stream-event/dtos/index.js +19 -35
- package/dist/src/domain/model/stream-event/dtos/updateStreamEventDto.d.ts +2 -2
- package/dist/src/domain/model/stream-event/dtos/updateStreamEventDto.js +21 -43
- package/dist/src/domain/model/stream-event/entities/StreamEvent.d.ts +2 -2
- package/dist/src/domain/model/stream-event/entities/StreamEvent.js +17 -37
- package/dist/src/domain/model/stream-event/entities/index.js +18 -34
- package/dist/src/domain/model/stream-event/index.js +19 -35
- package/dist/src/domain/model/stream-features/dtos/index.js +18 -34
- package/dist/src/domain/model/stream-features/dtos/streamFeaturesDto.d.ts +10 -10
- package/dist/src/domain/model/stream-features/dtos/streamFeaturesDto.js +44 -109
- package/dist/src/domain/model/stream-features/entities/StreamFeatures.d.ts +2 -1
- package/dist/src/domain/model/stream-features/entities/StreamFeatures.js +6 -5
- package/dist/src/domain/model/stream-features/entities/index.js +18 -34
- package/dist/src/domain/model/stream-features/index.js +19 -35
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.d.ts +11 -0
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.js +63 -0
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/dtos/createTransactionMeta.dto.d.ts +7 -7
- package/dist/src/domain/model/transaction-meta/dtos/createTransactionMeta.dto.js +38 -88
- package/dist/src/domain/model/transaction-meta/dtos/index.js +18 -34
- package/dist/src/domain/model/transaction-meta/entities/BaseTransactionMeta.d.ts +7 -7
- package/dist/src/domain/model/transaction-meta/entities/BaseTransactionMeta.js +18 -38
- package/dist/src/domain/model/transaction-meta/entities/ShallowEnrichedTransactionMeta.d.ts +1 -1
- package/dist/src/domain/model/transaction-meta/entities/ShallowEnrichedTransactionMeta.js +6 -5
- package/dist/src/domain/model/transaction-meta/entities/TransactionMeta.d.ts +1 -1
- package/dist/src/domain/model/transaction-meta/entities/TransactionMeta.js +6 -5
- package/dist/src/domain/model/transaction-meta/entities/index.js +20 -36
- package/dist/src/domain/model/transaction-meta/index.js +19 -35
- package/dist/src/domain/model/user/dtos/CreateUserDto.d.ts +6 -0
- package/dist/src/domain/model/user/dtos/CreateUserDto.js +37 -0
- package/dist/src/domain/model/user/dtos/CreateUserDto.js.map +1 -0
- package/dist/src/domain/model/user/dtos/UpdateUserDto.d.ts +6 -0
- package/dist/src/domain/model/user/dtos/UpdateUserDto.js +42 -0
- package/dist/src/domain/model/user/dtos/UpdateUserDto.js.map +1 -0
- package/dist/src/domain/model/user/dtos/createUser.dto.d.ts +4 -4
- package/dist/src/domain/model/user/dtos/createUser.dto.js +26 -61
- package/dist/src/domain/model/user/dtos/index.js +19 -35
- package/dist/src/domain/model/user/dtos/updateUser.dto.d.ts +4 -4
- package/dist/src/domain/model/user/dtos/updateUser.dto.js +26 -61
- package/dist/src/domain/model/user/entities/BaseUser.d.ts +5 -5
- package/dist/src/domain/model/user/entities/BaseUser.js +6 -5
- package/dist/src/domain/model/user/entities/ShallowEnrichedUser.d.ts +2 -2
- package/dist/src/domain/model/user/entities/ShallowEnrichedUser.js +6 -5
- package/dist/src/domain/model/user/entities/User.d.ts +2 -2
- package/dist/src/domain/model/user/entities/User.js +6 -5
- package/dist/src/domain/model/user/entities/index.js +20 -36
- package/dist/src/domain/model/user/index.js +19 -35
- package/dist/src/domain/model/wallet/dtos/UpdateWalletDto.d.ts +3 -0
- package/dist/src/domain/model/wallet/dtos/UpdateWalletDto.js +23 -0
- package/dist/src/domain/model/wallet/dtos/UpdateWalletDto.js.map +1 -0
- package/dist/src/domain/model/wallet/dtos/index.js +18 -34
- package/dist/src/domain/model/wallet/dtos/updateWallet.dto.d.ts +1 -1
- package/dist/src/domain/model/wallet/dtos/updateWallet.dto.js +18 -35
- package/dist/src/domain/model/wallet/entities/BaseWallet.d.ts +2 -2
- package/dist/src/domain/model/wallet/entities/BaseWallet.js +6 -5
- package/dist/src/domain/model/wallet/entities/Wallet.d.ts +1 -1
- package/dist/src/domain/model/wallet/entities/Wallet.js +6 -5
- package/dist/src/domain/model/wallet/entities/WalletDetails.d.ts +1 -1
- package/dist/src/domain/model/wallet/entities/WalletDetails.js +6 -5
- package/dist/src/domain/model/wallet/entities/index.js +20 -36
- package/dist/src/domain/model/wallet/index.js +19 -35
- package/dist/src/domain/model/withdrawal/dtos/createWithdrawalDto.d.ts +3 -3
- package/dist/src/domain/model/withdrawal/dtos/createWithdrawalDto.js +25 -55
- package/dist/src/domain/model/withdrawal/dtos/index.js +19 -35
- package/dist/src/domain/model/withdrawal/dtos/updateWithdrawalDto.d.ts +1 -1
- package/dist/src/domain/model/withdrawal/dtos/updateWithdrawalDto.js +18 -38
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.d.ts +2 -2
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.js +17 -37
- package/dist/src/domain/model/withdrawal/entities/Withdrawal.d.ts +3 -3
- package/dist/src/domain/model/withdrawal/entities/Withdrawal.js +21 -46
- package/dist/src/domain/model/withdrawal/entities/index.js +18 -34
- package/dist/src/domain/model/withdrawal/index.js +19 -35
- package/dist/src/domain/services/CurrencyService.d.ts +1 -1
- package/dist/src/domain/services/EmailService.d.ts +1 -1
- package/dist/src/domain/services/EmailService.js +7 -7
- package/dist/src/domain/services/FeeService.d.ts +4 -7
- package/dist/src/domain/services/FeeService.js +9 -8
- package/dist/src/domain/services/HelioUIService.d.ts +1 -1
- package/dist/src/domain/services/HelioUIService.js +6 -6
- package/dist/src/domain/services/SolscanService.d.ts +1 -1
- package/dist/src/domain/services/SolscanService.js +8 -8
- package/dist/src/domain/services/index.js +21 -37
- package/dist/src/index.js +18 -34
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/yarn-error.log +0 -5475
|
@@ -1,35 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
: function (o, m, k, k2) {
|
|
22
|
-
if (k2 === undefined) k2 = k;
|
|
23
|
-
o[k2] = m[k];
|
|
24
|
-
});
|
|
25
|
-
var __exportStar =
|
|
26
|
-
(this && this.__exportStar) ||
|
|
27
|
-
function (m, exports) {
|
|
28
|
-
for (var p in m)
|
|
29
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
-
__createBinding(exports, m, p);
|
|
31
|
-
};
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
__exportStar(require('./dtos'), exports);
|
|
34
|
-
__exportStar(require('./entities'), exports);
|
|
35
|
-
//# sourceMappingURL=index.js.map
|
|
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
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
2
|
export declare class BasePaymentRequest extends Entity {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
normalizedPrice: bigint;
|
|
8
|
+
maxTransactions?: number;
|
|
9
|
+
notifySenderByEmail: boolean;
|
|
10
|
+
notifyReceiverByEmail: boolean;
|
|
11
|
+
addDiscordRole: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
createdAt?: string;
|
|
14
|
+
updatedAt?: string;
|
|
15
|
+
dynamic: boolean;
|
|
16
|
+
nftCollectionAddress: string;
|
|
17
17
|
}
|
|
@@ -1,42 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
var __decorate =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
r =
|
|
7
|
-
c < 3
|
|
8
|
-
? target
|
|
9
|
-
: desc === null
|
|
10
|
-
? (desc = Object.getOwnPropertyDescriptor(target, key))
|
|
11
|
-
: desc,
|
|
12
|
-
d;
|
|
13
|
-
if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
|
|
14
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
15
|
-
else
|
|
16
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
17
|
-
if ((d = decorators[i]))
|
|
18
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
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;
|
|
19
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
20
|
-
|
|
21
|
-
var __metadata =
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
return Reflect.metadata(k, v);
|
|
26
|
-
};
|
|
27
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
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 });
|
|
28
12
|
exports.BasePaymentRequest = void 0;
|
|
29
|
-
const entity_1 = require(
|
|
30
|
-
const class_transformer_1 = require(
|
|
31
|
-
class BasePaymentRequest extends entity_1.Entity {
|
|
32
|
-
|
|
33
|
-
|
|
13
|
+
const entity_1 = require("../../entity");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class BasePaymentRequest extends entity_1.Entity {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
34
18
|
(0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
|
|
35
|
-
__metadata(
|
|
36
|
-
|
|
37
|
-
BasePaymentRequest.prototype,
|
|
38
|
-
'normalizedPrice',
|
|
39
|
-
void 0,
|
|
40
|
-
);
|
|
19
|
+
__metadata("design:type", BigInt)
|
|
20
|
+
], BasePaymentRequest.prototype, "normalizedPrice", void 0);
|
|
41
21
|
exports.BasePaymentRequest = BasePaymentRequest;
|
|
42
|
-
//# sourceMappingURL=BasePaymentRequest.js.map
|
|
22
|
+
//# sourceMappingURL=BasePaymentRequest.js.map
|
|
@@ -5,9 +5,9 @@ import { BasePaymentRequest } from './BasePaymentRequest';
|
|
|
5
5
|
import { Product } from '../../product';
|
|
6
6
|
import { BaseCompany } from '../../company';
|
|
7
7
|
export declare class PaymentRequest extends BasePaymentRequest {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
creator: User;
|
|
9
|
+
company: BaseCompany;
|
|
10
|
+
currency: Currency;
|
|
11
|
+
wallet: Wallet;
|
|
12
|
+
product: Product;
|
|
13
13
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaymentRequest = void 0;
|
|
4
|
-
const BasePaymentRequest_1 = require(
|
|
5
|
-
class PaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
4
|
+
const BasePaymentRequest_1 = require("./BasePaymentRequest");
|
|
5
|
+
class PaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
6
|
+
}
|
|
6
7
|
exports.PaymentRequest = PaymentRequest;
|
|
7
|
-
//# sourceMappingURL=PaymentRequest.js.map
|
|
8
|
+
//# sourceMappingURL=PaymentRequest.js.map
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaymentRequestType = void 0;
|
|
4
4
|
var PaymentRequestType;
|
|
5
5
|
(function (PaymentRequestType) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
})(
|
|
9
|
-
|
|
10
|
-
exports.PaymentRequestType || (exports.PaymentRequestType = {})),
|
|
11
|
-
);
|
|
12
|
-
//# sourceMappingURL=PaymentRequestType.js.map
|
|
6
|
+
PaymentRequestType["PAYLINK"] = "PAYLINK";
|
|
7
|
+
PaymentRequestType["PAYSTREAM"] = "PAYSTREAM";
|
|
8
|
+
})(PaymentRequestType = exports.PaymentRequestType || (exports.PaymentRequestType = {}));
|
|
9
|
+
//# sourceMappingURL=PaymentRequestType.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentType = void 0;
|
|
4
|
+
var PaymentType;
|
|
5
|
+
(function (PaymentType) {
|
|
6
|
+
PaymentType["PAYLINK"] = "PAYLINK";
|
|
7
|
+
PaymentType["PAYSTREAM"] = "PAYSTREAM";
|
|
8
|
+
})(PaymentType = exports.PaymentType || (exports.PaymentType = {}));
|
|
9
|
+
//# sourceMappingURL=PaymentType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentType.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/PaymentType.ts"],"names":[],"mappings":";;;AAAA,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,sCAAuB,CAAA;AACzB,CAAC,EAHW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAGtB"}
|
|
@@ -5,12 +5,12 @@ import type { BaseWallet } from '../../wallet';
|
|
|
5
5
|
import { Product } from '../../product';
|
|
6
6
|
import { BaseCompany } from '../../company';
|
|
7
7
|
export declare class ShallowEnrichedPaymentRequest extends BasePaymentRequest {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
creator: BaseUser;
|
|
9
|
+
company: BaseCompany;
|
|
10
|
+
currency: BaseCurrency;
|
|
11
|
+
wallet: BaseWallet;
|
|
12
|
+
product: Product;
|
|
13
|
+
slug: string;
|
|
14
|
+
volume: number;
|
|
15
|
+
sales: number;
|
|
16
16
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ShallowEnrichedPaymentRequest = void 0;
|
|
4
|
-
const BasePaymentRequest_1 = require(
|
|
5
|
-
class ShallowEnrichedPaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
4
|
+
const BasePaymentRequest_1 = require("./BasePaymentRequest");
|
|
5
|
+
class ShallowEnrichedPaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
6
|
+
}
|
|
6
7
|
exports.ShallowEnrichedPaymentRequest = ShallowEnrichedPaymentRequest;
|
|
7
|
-
//# sourceMappingURL=ShallowEnrichedPaymentRequest.js.map
|
|
8
|
+
//# sourceMappingURL=ShallowEnrichedPaymentRequest.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SlugPaymentRequest = void 0;
|
|
4
|
-
class SlugPaymentRequest {
|
|
4
|
+
class SlugPaymentRequest {
|
|
5
|
+
}
|
|
5
6
|
exports.SlugPaymentRequest = SlugPaymentRequest;
|
|
6
|
-
//# sourceMappingURL=SlugPaymentRequest.js.map
|
|
7
|
+
//# sourceMappingURL=SlugPaymentRequest.js.map
|
|
@@ -1,38 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
o[k2] = m[k];
|
|
24
|
-
});
|
|
25
|
-
var __exportStar =
|
|
26
|
-
(this && this.__exportStar) ||
|
|
27
|
-
function (m, exports) {
|
|
28
|
-
for (var p in m)
|
|
29
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
-
__createBinding(exports, m, p);
|
|
31
|
-
};
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
__exportStar(require('./PaymentRequest'), exports);
|
|
34
|
-
__exportStar(require('./BasePaymentRequest'), exports);
|
|
35
|
-
__exportStar(require('./ShallowEnrichedPaymentRequest'), exports);
|
|
36
|
-
__exportStar(require('./PaymentRequestType'), exports);
|
|
37
|
-
__exportStar(require('./SlugPaymentRequest'), exports);
|
|
38
|
-
//# sourceMappingURL=index.js.map
|
|
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("./PaymentRequest"), exports);
|
|
18
|
+
__exportStar(require("./BasePaymentRequest"), exports);
|
|
19
|
+
__exportStar(require("./ShallowEnrichedPaymentRequest"), exports);
|
|
20
|
+
__exportStar(require("./PaymentRequestType"), exports);
|
|
21
|
+
__exportStar(require("./SlugPaymentRequest"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,34 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Object.defineProperty(o, k2, desc);
|
|
20
|
-
}
|
|
21
|
-
: function (o, m, k, k2) {
|
|
22
|
-
if (k2 === undefined) k2 = k;
|
|
23
|
-
o[k2] = m[k];
|
|
24
|
-
});
|
|
25
|
-
var __exportStar =
|
|
26
|
-
(this && this.__exportStar) ||
|
|
27
|
-
function (m, exports) {
|
|
28
|
-
for (var p in m)
|
|
29
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
-
__createBinding(exports, m, p);
|
|
31
|
-
};
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
__exportStar(require('./entities'), exports);
|
|
34
|
-
//# sourceMappingURL=index.js.map
|
|
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
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Entity } from '../../entity';
|
|
2
2
|
export declare class PaymentRequestFeatures extends Entity {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
requireEmail: boolean;
|
|
4
|
+
requireDiscordUsername: boolean;
|
|
5
|
+
requireFullName: boolean;
|
|
6
|
+
requireTwitterUsername: boolean;
|
|
7
|
+
requireCountry: boolean;
|
|
8
|
+
requireDeliveryAddress: boolean;
|
|
9
|
+
requirePhoneNumber: boolean;
|
|
10
|
+
requireProductDetails: boolean;
|
|
11
|
+
requireMaxTransactions: boolean;
|
|
12
|
+
requireNftGate: boolean;
|
|
13
13
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaymentRequestFeatures = void 0;
|
|
4
|
-
const entity_1 = require(
|
|
5
|
-
class PaymentRequestFeatures extends entity_1.Entity {
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class PaymentRequestFeatures extends entity_1.Entity {
|
|
6
|
+
}
|
|
6
7
|
exports.PaymentRequestFeatures = PaymentRequestFeatures;
|
|
7
|
-
//# sourceMappingURL=PaymentRequestFeatures.js.map
|
|
8
|
+
//# sourceMappingURL=PaymentRequestFeatures.js.map
|
|
@@ -1,34 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Object.defineProperty(o, k2, desc);
|
|
20
|
-
}
|
|
21
|
-
: function (o, m, k, k2) {
|
|
22
|
-
if (k2 === undefined) k2 = k;
|
|
23
|
-
o[k2] = m[k];
|
|
24
|
-
});
|
|
25
|
-
var __exportStar =
|
|
26
|
-
(this && this.__exportStar) ||
|
|
27
|
-
function (m, exports) {
|
|
28
|
-
for (var p in m)
|
|
29
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
-
__createBinding(exports, m, p);
|
|
31
|
-
};
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
__exportStar(require('./PaymentRequestFeatures'), exports);
|
|
34
|
-
//# sourceMappingURL=index.js.map
|
|
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("./PaymentRequestFeatures"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,34 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Object.defineProperty(o, k2, desc);
|
|
20
|
-
}
|
|
21
|
-
: function (o, m, k, k2) {
|
|
22
|
-
if (k2 === undefined) k2 = k;
|
|
23
|
-
o[k2] = m[k];
|
|
24
|
-
});
|
|
25
|
-
var __exportStar =
|
|
26
|
-
(this && this.__exportStar) ||
|
|
27
|
-
function (m, exports) {
|
|
28
|
-
for (var p in m)
|
|
29
|
-
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
30
|
-
__createBinding(exports, m, p);
|
|
31
|
-
};
|
|
32
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33
|
-
__exportStar(require('./entities'), exports);
|
|
34
|
-
//# sourceMappingURL=index.js.map
|
|
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
|
|
@@ -2,7 +2,7 @@ import type { StreamFeatures } from '../../stream-features';
|
|
|
2
2
|
import { BasePaymentRequest } from '../../payment-request';
|
|
3
3
|
import { IntervalType } from './IntervalType';
|
|
4
4
|
export declare class BasePaystream extends BasePaymentRequest {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
maxTime: number;
|
|
6
|
+
interval: IntervalType;
|
|
7
|
+
features: StreamFeatures;
|
|
8
8
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.BasePaystream = void 0;
|
|
4
|
-
const payment_request_1 = require(
|
|
5
|
-
class BasePaystream extends payment_request_1.BasePaymentRequest {
|
|
4
|
+
const payment_request_1 = require("../../payment-request");
|
|
5
|
+
class BasePaystream extends payment_request_1.BasePaymentRequest {
|
|
6
|
+
}
|
|
6
7
|
exports.BasePaystream = BasePaystream;
|
|
7
|
-
//# sourceMappingURL=BasePaystream.js.map
|
|
8
|
+
//# sourceMappingURL=BasePaystream.js.map
|
|
@@ -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,14 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IntervalType = void 0;
|
|
4
4
|
var IntervalType;
|
|
5
5
|
(function (IntervalType) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
})(
|
|
14
|
-
//# sourceMappingURL=IntervalType.js.map
|
|
6
|
+
IntervalType["SECOND"] = "SECOND";
|
|
7
|
+
IntervalType["MINUTE"] = "MINUTE";
|
|
8
|
+
IntervalType["HOUR"] = "HOUR";
|
|
9
|
+
IntervalType["DAY"] = "DAY";
|
|
10
|
+
IntervalType["WEEK"] = "WEEK";
|
|
11
|
+
IntervalType["MONTH"] = "MONTH";
|
|
12
|
+
IntervalType["YEAR"] = "YEAR";
|
|
13
|
+
})(IntervalType = exports.IntervalType || (exports.IntervalType = {}));
|
|
14
|
+
//# sourceMappingURL=IntervalType.js.map
|