@heliofi/common 0.1.57 → 0.1.59
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/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/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/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/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.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/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/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/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/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/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.dto.d.ts +8 -8
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.js +44 -81
- package/dist/src/domain/model/currency/dtos/index.js +19 -35
- 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/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/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.dto.d.ts +5 -5
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.dto.js +34 -66
- package/dist/src/domain/model/discordDetails/dtos/index.js +19 -35
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.dto.d.ts +4 -4
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.dto.js +27 -62
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.d.ts +5 -5
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.js +6 -5
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.d.ts +2 -2
- package/dist/src/domain/model/discordDetails/entities/DiscordBotVersion.js +6 -9
- 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.js +20 -36
- 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/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.d.ts +2 -0
- package/dist/src/domain/model/index.js +52 -66
- package/dist/src/domain/model/index.js.map +1 -1
- 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/updatePaylink.dto.d.ts +19 -17
- package/dist/src/domain/model/paylink/dtos/updatePaylink.dto.js +79 -169
- package/dist/src/domain/model/paylink/dtos/updatePaylink.dto.js.map +1 -1
- package/dist/src/domain/model/paylink/entities/OnlyContentAndTransactionPaylink.d.ts +6 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentAndTransactionPaylink.js +8 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentAndTransactionPaylink.js.map +1 -0
- 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/PaylinkStats.d.ts +3 -3
- package/dist/src/domain/model/paylink/entities/PaylinkStats.js +5 -4
- package/dist/src/domain/model/paylink/entities/index.d.ts +1 -0
- package/dist/src/domain/model/paylink/entities/index.js +1 -0
- package/dist/src/domain/model/paylink/entities/index.js.map +1 -1
- 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/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/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/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/dtos/createPaystream.dto.d.ts +19 -19
- package/dist/src/domain/model/paystream/dtos/createPaystream.dto.js +79 -190
- package/dist/src/domain/model/paystream/dtos/index.js +19 -35
- package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.d.ts +18 -18
- package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.js +73 -178
- 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/index.js +19 -35
- 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/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/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/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.dto.d.ts +3 -3
- package/dist/src/domain/model/slug/dtos/slug.dto.js +24 -54
- 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-backend/dtos/cancelStreamBackend.dto.d.ts +7 -0
- package/dist/src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.js +43 -0
- package/dist/src/domain/model/stream-backend/dtos/cancelStreamBackend.dto.js.map +1 -0
- package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.d.ts +16 -0
- package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.js +82 -0
- package/dist/src/domain/model/stream-backend/dtos/createStreamBackend.dto.js.map +1 -0
- package/dist/src/domain/model/stream-backend/dtos/index.d.ts +3 -0
- package/dist/src/domain/model/stream-backend/dtos/index.js +20 -0
- package/dist/src/domain/model/stream-backend/dtos/index.js.map +1 -0
- package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.d.ts +6 -0
- package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.js +38 -0
- package/dist/src/domain/model/stream-backend/dtos/withdrawStreamBackend.dto.js.map +1 -0
- package/dist/src/domain/model/stream-backend/index.d.ts +1 -0
- package/dist/src/domain/model/stream-backend/index.js +18 -0
- package/dist/src/domain/model/stream-backend/index.js.map +1 -0
- 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/submit-transaction/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/submit-transaction/dtos/index.js +6 -0
- package/dist/src/domain/model/submit-transaction/dtos/index.js.map +1 -0
- package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.d.ts +14 -0
- package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js +74 -0
- package/dist/src/domain/model/submit-transaction/dtos/submitTransaction.dto.js.map +1 -0
- package/dist/src/domain/model/submit-transaction/index.d.ts +1 -0
- package/dist/src/domain/model/submit-transaction/index.js +18 -0
- package/dist/src/domain/model/submit-transaction/index.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/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/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/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/CurrencyService.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 -3
- package/tsconfig.tsbuildinfo +1 -0
- package/dist/src/domain/model/split-wallets/dtos/index.d.ts +0 -1
- package/dist/src/domain/model/split-wallets/dtos/index.js +0 -34
- package/dist/src/domain/model/split-wallets/dtos/index.js.map +0 -1
- package/dist/src/domain/model/split-wallets/dtos/splitWallet.dto.d.ts +0 -4
- package/dist/src/domain/model/split-wallets/dtos/splitWallet.dto.js +0 -52
- package/dist/src/domain/model/split-wallets/dtos/splitWallet.dto.js.map +0 -1
- package/dist/src/domain/model/split-wallets/entities/SplitWallet.d.ts +0 -5
- package/dist/src/domain/model/split-wallets/entities/SplitWallet.js +0 -7
- package/dist/src/domain/model/split-wallets/entities/SplitWallet.js.map +0 -1
- package/dist/src/domain/model/split-wallets/entities/index.d.ts +0 -1
- package/dist/src/domain/model/split-wallets/entities/index.js +0 -34
- package/dist/src/domain/model/split-wallets/entities/index.js.map +0 -1
- package/dist/src/domain/model/split-wallets/index.d.ts +0 -2
- package/dist/src/domain/model/split-wallets/index.js +0 -35
- package/dist/src/domain/model/split-wallets/index.js.map +0 -1
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.d.ts +0 -4
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.js +0 -41
- package/dist/src/domain/model/withdrawal/entities/BaseWithdrawal.js.map +0 -1
- package/dist/src/domain/services/EmailService.d.ts +0 -3
- package/dist/src/domain/services/EmailService.js +0 -11
- package/dist/src/domain/services/EmailService.js.map +0 -1
- 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,7 +1,7 @@
|
|
|
1
1
|
export interface Metrics {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
txTotal: number;
|
|
3
|
+
txPastWeek: number;
|
|
4
|
+
txPastDay: number;
|
|
5
|
+
uniqueWallets: number;
|
|
6
|
+
valueTransferred?: number;
|
|
7
7
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
3
|
-
//# sourceMappingURL=Metrics.js.map
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=Metrics.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('./Metrics'), 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("./Metrics"), 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,21 +2,23 @@ import { ContentDto } from '../../content';
|
|
|
2
2
|
import { LinkFeaturesDto } from '../../link-features';
|
|
3
3
|
import { ProductDto } from '../../product';
|
|
4
4
|
export declare class UpdatePaylinkDto {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
5
|
+
company?: string;
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
image?: string;
|
|
9
|
+
normalizedPrice?: string;
|
|
10
|
+
notifySenderByEmail?: boolean;
|
|
11
|
+
notifyReceiverByEmail?: boolean;
|
|
12
|
+
addDiscordRole?: boolean;
|
|
13
|
+
currency?: string;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
wallet?: string;
|
|
16
|
+
dynamic?: boolean;
|
|
17
|
+
content?: ContentDto;
|
|
18
|
+
features?: LinkFeaturesDto;
|
|
19
|
+
maxTransactions?: number;
|
|
20
|
+
product?: ProductDto | null;
|
|
21
|
+
nftCollectionAddress?: string;
|
|
22
|
+
minQuantity?: number;
|
|
23
|
+
maxQuantity?: number;
|
|
22
24
|
}
|
|
@@ -1,209 +1,119 @@
|
|
|
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.UpdatePaylinkDto = void 0;
|
|
29
|
-
const class_validator_1 = require(
|
|
30
|
-
const class_transformer_1 = require(
|
|
31
|
-
const content_1 = require(
|
|
32
|
-
const link_features_1 = require(
|
|
33
|
-
const product_1 = require(
|
|
34
|
-
class UpdatePaylinkDto {
|
|
35
|
-
|
|
36
|
-
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const content_1 = require("../../content");
|
|
16
|
+
const link_features_1 = require("../../link-features");
|
|
17
|
+
const product_1 = require("../../product");
|
|
18
|
+
class UpdatePaylinkDto {
|
|
19
|
+
}
|
|
20
|
+
__decorate([
|
|
37
21
|
(0, class_validator_1.IsString)(),
|
|
38
22
|
(0, class_validator_1.IsOptional)(),
|
|
39
|
-
__metadata(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
'company',
|
|
43
|
-
void 0,
|
|
44
|
-
);
|
|
45
|
-
__decorate(
|
|
46
|
-
[
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], UpdatePaylinkDto.prototype, "company", void 0);
|
|
25
|
+
__decorate([
|
|
47
26
|
(0, class_validator_1.IsOptional)(),
|
|
48
27
|
(0, class_validator_1.IsString)(),
|
|
49
|
-
__metadata(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
'name',
|
|
53
|
-
void 0,
|
|
54
|
-
);
|
|
55
|
-
__decorate(
|
|
56
|
-
[
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], UpdatePaylinkDto.prototype, "name", void 0);
|
|
30
|
+
__decorate([
|
|
57
31
|
(0, class_validator_1.IsString)(),
|
|
58
32
|
(0, class_validator_1.IsOptional)(),
|
|
59
|
-
__metadata(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
'description',
|
|
63
|
-
void 0,
|
|
64
|
-
);
|
|
65
|
-
__decorate(
|
|
66
|
-
[
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], UpdatePaylinkDto.prototype, "description", void 0);
|
|
35
|
+
__decorate([
|
|
67
36
|
(0, class_validator_1.IsString)(),
|
|
68
37
|
(0, class_validator_1.IsOptional)(),
|
|
69
|
-
__metadata(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
'image',
|
|
73
|
-
void 0,
|
|
74
|
-
);
|
|
75
|
-
__decorate(
|
|
76
|
-
[
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], UpdatePaylinkDto.prototype, "image", void 0);
|
|
40
|
+
__decorate([
|
|
77
41
|
(0, class_validator_1.IsOptional)(),
|
|
78
42
|
(0, class_transformer_1.Transform)(({ value }) => BigInt(value)),
|
|
79
|
-
__metadata(
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
'normalizedPrice',
|
|
83
|
-
void 0,
|
|
84
|
-
);
|
|
85
|
-
__decorate(
|
|
86
|
-
[
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], UpdatePaylinkDto.prototype, "normalizedPrice", void 0);
|
|
45
|
+
__decorate([
|
|
87
46
|
(0, class_validator_1.IsBoolean)(),
|
|
88
47
|
(0, class_validator_1.IsOptional)(),
|
|
89
|
-
__metadata(
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
'notifySenderByEmail',
|
|
93
|
-
void 0,
|
|
94
|
-
);
|
|
95
|
-
__decorate(
|
|
96
|
-
[
|
|
48
|
+
__metadata("design:type", Boolean)
|
|
49
|
+
], UpdatePaylinkDto.prototype, "notifySenderByEmail", void 0);
|
|
50
|
+
__decorate([
|
|
97
51
|
(0, class_validator_1.IsBoolean)(),
|
|
98
52
|
(0, class_validator_1.IsOptional)(),
|
|
99
|
-
__metadata(
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
'notifyReceiverByEmail',
|
|
103
|
-
void 0,
|
|
104
|
-
);
|
|
105
|
-
__decorate(
|
|
106
|
-
[
|
|
53
|
+
__metadata("design:type", Boolean)
|
|
54
|
+
], UpdatePaylinkDto.prototype, "notifyReceiverByEmail", void 0);
|
|
55
|
+
__decorate([
|
|
107
56
|
(0, class_validator_1.IsBoolean)(),
|
|
108
57
|
(0, class_validator_1.IsOptional)(),
|
|
109
|
-
__metadata(
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
'addDiscordRole',
|
|
113
|
-
void 0,
|
|
114
|
-
);
|
|
115
|
-
__decorate(
|
|
116
|
-
[
|
|
58
|
+
__metadata("design:type", Boolean)
|
|
59
|
+
], UpdatePaylinkDto.prototype, "addDiscordRole", void 0);
|
|
60
|
+
__decorate([
|
|
117
61
|
(0, class_validator_1.IsString)(),
|
|
118
62
|
(0, class_validator_1.IsOptional)(),
|
|
119
|
-
__metadata(
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
'currency',
|
|
123
|
-
void 0,
|
|
124
|
-
);
|
|
125
|
-
__decorate(
|
|
126
|
-
[
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], UpdatePaylinkDto.prototype, "currency", void 0);
|
|
65
|
+
__decorate([
|
|
127
66
|
(0, class_validator_1.IsBoolean)(),
|
|
128
67
|
(0, class_validator_1.IsOptional)(),
|
|
129
|
-
__metadata(
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
'disabled',
|
|
133
|
-
void 0,
|
|
134
|
-
);
|
|
135
|
-
__decorate(
|
|
136
|
-
[
|
|
68
|
+
__metadata("design:type", Boolean)
|
|
69
|
+
], UpdatePaylinkDto.prototype, "disabled", void 0);
|
|
70
|
+
__decorate([
|
|
137
71
|
(0, class_validator_1.IsString)(),
|
|
138
72
|
(0, class_validator_1.IsOptional)(),
|
|
139
|
-
__metadata(
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
'wallet',
|
|
143
|
-
void 0,
|
|
144
|
-
);
|
|
145
|
-
__decorate(
|
|
146
|
-
[
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], UpdatePaylinkDto.prototype, "wallet", void 0);
|
|
75
|
+
__decorate([
|
|
147
76
|
(0, class_validator_1.IsBoolean)(),
|
|
148
77
|
(0, class_validator_1.IsOptional)(),
|
|
149
|
-
__metadata(
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
'dynamic',
|
|
153
|
-
void 0,
|
|
154
|
-
);
|
|
155
|
-
__decorate(
|
|
156
|
-
[
|
|
78
|
+
__metadata("design:type", Boolean)
|
|
79
|
+
], UpdatePaylinkDto.prototype, "dynamic", void 0);
|
|
80
|
+
__decorate([
|
|
157
81
|
(0, class_validator_1.IsOptional)(),
|
|
158
82
|
(0, class_transformer_1.Type)(() => content_1.ContentDto),
|
|
159
83
|
(0, class_validator_1.ValidateNested)(),
|
|
160
|
-
__metadata(
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
'content',
|
|
164
|
-
void 0,
|
|
165
|
-
);
|
|
166
|
-
__decorate(
|
|
167
|
-
[
|
|
84
|
+
__metadata("design:type", content_1.ContentDto)
|
|
85
|
+
], UpdatePaylinkDto.prototype, "content", void 0);
|
|
86
|
+
__decorate([
|
|
168
87
|
(0, class_validator_1.IsOptional)(),
|
|
169
88
|
(0, class_transformer_1.Type)(() => link_features_1.LinkFeaturesDto),
|
|
170
89
|
(0, class_validator_1.ValidateNested)(),
|
|
171
|
-
__metadata(
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
'features',
|
|
175
|
-
void 0,
|
|
176
|
-
);
|
|
177
|
-
__decorate(
|
|
178
|
-
[
|
|
90
|
+
__metadata("design:type", link_features_1.LinkFeaturesDto)
|
|
91
|
+
], UpdatePaylinkDto.prototype, "features", void 0);
|
|
92
|
+
__decorate([
|
|
179
93
|
(0, class_validator_1.IsNumber)(),
|
|
180
94
|
(0, class_validator_1.IsOptional)(),
|
|
181
|
-
__metadata(
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
'maxTransactions',
|
|
185
|
-
void 0,
|
|
186
|
-
);
|
|
187
|
-
__decorate(
|
|
188
|
-
[
|
|
95
|
+
__metadata("design:type", Number)
|
|
96
|
+
], UpdatePaylinkDto.prototype, "maxTransactions", void 0);
|
|
97
|
+
__decorate([
|
|
189
98
|
(0, class_transformer_1.Type)(() => product_1.ProductDto),
|
|
190
99
|
(0, class_validator_1.IsOptional)(),
|
|
191
100
|
(0, class_validator_1.ValidateNested)(),
|
|
192
|
-
__metadata(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
'product',
|
|
196
|
-
void 0,
|
|
197
|
-
);
|
|
198
|
-
__decorate(
|
|
199
|
-
[
|
|
101
|
+
__metadata("design:type", product_1.ProductDto)
|
|
102
|
+
], UpdatePaylinkDto.prototype, "product", void 0);
|
|
103
|
+
__decorate([
|
|
200
104
|
(0, class_validator_1.IsString)(),
|
|
201
105
|
(0, class_validator_1.IsOptional)(),
|
|
202
|
-
__metadata(
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
)
|
|
106
|
+
__metadata("design:type", String)
|
|
107
|
+
], UpdatePaylinkDto.prototype, "nftCollectionAddress", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, class_validator_1.IsNumber)(),
|
|
110
|
+
(0, class_validator_1.IsOptional)(),
|
|
111
|
+
__metadata("design:type", Number)
|
|
112
|
+
], UpdatePaylinkDto.prototype, "minQuantity", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, class_validator_1.IsNumber)(),
|
|
115
|
+
(0, class_validator_1.IsOptional)(),
|
|
116
|
+
__metadata("design:type", Number)
|
|
117
|
+
], UpdatePaylinkDto.prototype, "maxQuantity", void 0);
|
|
208
118
|
exports.UpdatePaylinkDto = UpdatePaylinkDto;
|
|
209
|
-
//# sourceMappingURL=updatePaylink.dto.js.map
|
|
119
|
+
//# sourceMappingURL=updatePaylink.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updatePaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/updatePaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAE3C,MAAa,gBAAgB;
|
|
1
|
+
{"version":3,"file":"updatePaylink.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/dtos/updatePaylink.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAoD;AACpD,2CAA2C;AAC3C,uDAAsD;AACtD,2CAA2C;AAE3C,MAAa,gBAAgB;CA+E5B;AA9EC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;iDACI;AAEjB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8CACG;AAEd;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACE;AAEf;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;yDACf;AAEzB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;6DACiB;AAE9B;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;+DACmB;AAEhC;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;wDACY;AAEzB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACK;AAElB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;kDACM;AAEnB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;gDACG;AAEhB;IAAC,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;iDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAC;AAErB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAAe,CAAC;IAC3B,IAAA,gCAAc,GAAE;8BACN,+BAAe;kDAAC;AAE3B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACY;AAEzB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAU,CAAC;IACtB,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,GAAE;8BACP,oBAAU;iDAAQ;AAE5B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACiB;AAE9B;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AAErB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACQ;AA9EvB,4CA+EC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OnlyContentAndTransactionPaylink = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class OnlyContentAndTransactionPaylink extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.OnlyContentAndTransactionPaylink = OnlyContentAndTransactionPaylink;
|
|
8
|
+
//# sourceMappingURL=OnlyContentAndTransactionPaylink.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OnlyContentAndTransactionPaylink.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/entities/OnlyContentAndTransactionPaylink.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,gCAAiC,SAAQ,eAAM;CAG3D;AAHD,4EAGC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.OnlyContentPaylink = void 0;
|
|
4
|
-
const entity_1 = require(
|
|
5
|
-
class OnlyContentPaylink extends entity_1.Entity {
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class OnlyContentPaylink extends entity_1.Entity {
|
|
6
|
+
}
|
|
6
7
|
exports.OnlyContentPaylink = OnlyContentPaylink;
|
|
7
|
-
//# sourceMappingURL=OnlyContentPaylink.js.map
|
|
8
|
+
//# sourceMappingURL=OnlyContentPaylink.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PaylinkStats = void 0;
|
|
4
|
-
class PaylinkStats {
|
|
4
|
+
class PaylinkStats {
|
|
5
|
+
}
|
|
5
6
|
exports.PaylinkStats = PaylinkStats;
|
|
6
|
-
//# sourceMappingURL=PaylinkStats.js.map
|
|
7
|
+
//# sourceMappingURL=PaylinkStats.js.map
|
|
@@ -19,4 +19,5 @@ __exportStar(require("./BasePaylink"), exports);
|
|
|
19
19
|
__exportStar(require("./ShallowEnrichedPaylink"), exports);
|
|
20
20
|
__exportStar(require("./OnlyContentPaylink"), exports);
|
|
21
21
|
__exportStar(require("./PaylinkStats"), exports);
|
|
22
|
+
__exportStar(require("./OnlyContentAndTransactionPaylink"), exports);
|
|
22
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,gDAA8B;AAC9B,2DAAyC;AACzC,uDAAqC;AACrC,iDAA+B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,gDAA8B;AAC9B,2DAAyC;AACzC,uDAAqC;AACrC,iDAA+B;AAC/B,qEAAmD"}
|