@heliofi/common 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/domain/constants/index.d.ts +1 -0
- package/dist/src/domain/constants/index.js +5 -0
- package/dist/src/domain/constants/index.js.map +1 -0
- package/dist/src/domain/index.d.ts +3 -0
- package/dist/src/domain/index.js +20 -0
- package/dist/src/domain/index.js.map +1 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/apiKey/dtos/index.js +19 -0
- package/dist/src/domain/model/apiKey/dtos/index.js.map +1 -0
- 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 +7 -0
- package/dist/src/domain/model/apiKey/entities/ApiKey.js +8 -0
- package/dist/src/domain/model/apiKey/entities/ApiKey.js.map +1 -0
- package/dist/src/domain/model/apiKey/entities/index.d.ts +1 -0
- package/dist/src/domain/model/apiKey/entities/index.js +18 -0
- package/dist/src/domain/model/apiKey/entities/index.js.map +1 -0
- package/dist/src/domain/model/apiKey/index.d.ts +2 -0
- package/dist/src/domain/model/apiKey/index.js +19 -0
- package/dist/src/domain/model/apiKey/index.js.map +1 -0
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.d.ts +13 -0
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.js +79 -0
- package/dist/src/domain/model/approve-transaction/dtos/approveTransactionDto.js.map +1 -0
- package/dist/src/domain/model/approve-transaction/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/approve-transaction/dtos/index.js +6 -0
- package/dist/src/domain/model/approve-transaction/dtos/index.js.map +1 -0
- package/dist/src/domain/model/approve-transaction/index.d.ts +1 -0
- package/dist/src/domain/model/approve-transaction/index.js +18 -0
- package/dist/src/domain/model/approve-transaction/index.js.map +1 -0
- 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/index.d.ts +1 -0
- package/dist/src/domain/model/attachment/dtos/index.js +18 -0
- package/dist/src/domain/model/attachment/dtos/index.js.map +1 -0
- package/dist/src/domain/model/attachment/entities/Attachment.d.ts +5 -0
- package/dist/src/domain/model/attachment/entities/Attachment.js +8 -0
- package/dist/src/domain/model/attachment/entities/Attachment.js.map +1 -0
- 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/BaseAttachment.d.ts +7 -0
- package/dist/src/domain/model/attachment/entities/BaseAttachment.js +8 -0
- package/dist/src/domain/model/attachment/entities/BaseAttachment.js.map +1 -0
- package/dist/src/domain/model/attachment/entities/ShallowEnrichedAttachment.d.ts +5 -0
- package/dist/src/domain/model/attachment/entities/ShallowEnrichedAttachment.js +8 -0
- package/dist/src/domain/model/attachment/entities/ShallowEnrichedAttachment.js.map +1 -0
- package/dist/src/domain/model/attachment/entities/index.d.ts +4 -0
- package/dist/src/domain/model/attachment/entities/index.js +21 -0
- package/dist/src/domain/model/attachment/entities/index.js.map +1 -0
- package/dist/src/domain/model/attachment/index.d.ts +2 -0
- package/dist/src/domain/model/attachment/index.js +19 -0
- package/dist/src/domain/model/attachment/index.js.map +1 -0
- package/dist/src/domain/model/auth/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/auth/dtos/index.js +18 -0
- package/dist/src/domain/model/auth/dtos/index.js.map +1 -0
- 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/entities/AuthResponse.d.ts +6 -0
- package/dist/src/domain/model/auth/entities/AuthResponse.js +7 -0
- package/dist/src/domain/model/auth/entities/AuthResponse.js.map +1 -0
- package/dist/src/domain/model/auth/entities/AuthUser.d.ts +11 -0
- package/dist/src/domain/model/auth/entities/AuthUser.js +3 -0
- package/dist/src/domain/model/auth/entities/AuthUser.js.map +1 -0
- package/dist/src/domain/model/auth/entities/index.d.ts +2 -0
- package/dist/src/domain/model/auth/entities/index.js +19 -0
- package/dist/src/domain/model/auth/entities/index.js.map +1 -0
- package/dist/src/domain/model/auth/index.d.ts +2 -0
- package/dist/src/domain/model/auth/index.js +19 -0
- package/dist/src/domain/model/auth/index.js.map +1 -0
- package/dist/src/domain/model/blockchain/constants/Cluster.d.ts +5 -0
- package/dist/src/domain/model/blockchain/constants/Cluster.js +10 -0
- package/dist/src/domain/model/blockchain/constants/Cluster.js.map +1 -0
- package/dist/src/domain/model/blockchain/constants/index.d.ts +1 -0
- package/dist/src/domain/model/blockchain/constants/index.js +18 -0
- package/dist/src/domain/model/blockchain/constants/index.js.map +1 -0
- 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.d.ts +1 -0
- package/dist/src/domain/model/blockchain/dtos/index.js +18 -0
- package/dist/src/domain/model/blockchain/dtos/index.js.map +1 -0
- package/dist/src/domain/model/blockchain/entities/Blockchain.d.ts +6 -0
- package/dist/src/domain/model/blockchain/entities/Blockchain.js +8 -0
- package/dist/src/domain/model/blockchain/entities/Blockchain.js.map +1 -0
- package/dist/src/domain/model/blockchain/entities/index.d.ts +1 -0
- package/dist/src/domain/model/blockchain/entities/index.js +18 -0
- package/dist/src/domain/model/blockchain/entities/index.js.map +1 -0
- package/dist/src/domain/model/blockchain/index.d.ts +3 -0
- package/dist/src/domain/model/blockchain/index.js +20 -0
- package/dist/src/domain/model/blockchain/index.js.map +1 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/company/dtos/index.js +19 -0
- package/dist/src/domain/model/company/dtos/index.js.map +1 -0
- 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/Company.d.ts +11 -0
- package/dist/src/domain/model/company/entities/Company.js +8 -0
- package/dist/src/domain/model/company/entities/Company.js.map +1 -0
- package/dist/src/domain/model/company/entities/index.d.ts +1 -0
- package/dist/src/domain/model/company/entities/index.js +18 -0
- package/dist/src/domain/model/company/entities/index.js.map +1 -0
- package/dist/src/domain/model/company/index.d.ts +2 -0
- package/dist/src/domain/model/company/index.js +19 -0
- package/dist/src/domain/model/company/index.js.map +1 -0
- 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.d.ts +1 -0
- package/dist/src/domain/model/content/dtos/index.js +18 -0
- package/dist/src/domain/model/content/dtos/index.js.map +1 -0
- package/dist/src/domain/model/content/entities/Content.d.ts +5 -0
- package/dist/src/domain/model/content/entities/Content.js +8 -0
- package/dist/src/domain/model/content/entities/Content.js.map +1 -0
- package/dist/src/domain/model/content/entities/index.d.ts +1 -0
- package/dist/src/domain/model/content/entities/index.js +18 -0
- package/dist/src/domain/model/content/entities/index.js.map +1 -0
- package/dist/src/domain/model/content/index.d.ts +2 -0
- package/dist/src/domain/model/content/index.js +19 -0
- package/dist/src/domain/model/content/index.js.map +1 -0
- package/dist/src/domain/model/currency/dtos/createCurrency.d.ts +9 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/currency/dtos/index.js +19 -0
- package/dist/src/domain/model/currency/dtos/index.js.map +1 -0
- package/dist/src/domain/model/currency/dtos/updateCurrency.d.ts +9 -0
- 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 +10 -0
- package/dist/src/domain/model/currency/entities/BaseCurrency.js +8 -0
- package/dist/src/domain/model/currency/entities/BaseCurrency.js.map +1 -0
- package/dist/src/domain/model/currency/entities/Currency.d.ts +5 -0
- package/dist/src/domain/model/currency/entities/Currency.js +8 -0
- package/dist/src/domain/model/currency/entities/Currency.js.map +1 -0
- package/dist/src/domain/model/currency/entities/index.d.ts +2 -0
- package/dist/src/domain/model/currency/entities/index.js +19 -0
- package/dist/src/domain/model/currency/entities/index.js.map +1 -0
- package/dist/src/domain/model/currency/index.d.ts +2 -0
- package/dist/src/domain/model/currency/index.js +19 -0
- package/dist/src/domain/model/currency/index.js.map +1 -0
- 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/index.d.ts +1 -0
- package/dist/src/domain/model/customer-details/dtos/index.js +18 -0
- package/dist/src/domain/model/customer-details/dtos/index.js.map +1 -0
- package/dist/src/domain/model/customer-details/entities/CustomerDetails.d.ts +10 -0
- package/dist/src/domain/model/customer-details/entities/CustomerDetails.js +8 -0
- package/dist/src/domain/model/customer-details/entities/CustomerDetails.js.map +1 -0
- package/dist/src/domain/model/customer-details/entities/index.d.ts +1 -0
- package/dist/src/domain/model/customer-details/entities/index.js +18 -0
- package/dist/src/domain/model/customer-details/entities/index.js.map +1 -0
- package/dist/src/domain/model/customer-details/index.d.ts +2 -0
- package/dist/src/domain/model/customer-details/index.js +19 -0
- package/dist/src/domain/model/customer-details/index.js.map +1 -0
- package/dist/src/domain/model/discordDetails/dtos/createDiscordDetails.d.ts +6 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/discordDetails/dtos/index.js +19 -0
- package/dist/src/domain/model/discordDetails/dtos/index.js.map +1 -0
- package/dist/src/domain/model/discordDetails/dtos/updateDiscordDetails.d.ts +5 -0
- 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 +7 -0
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.js +8 -0
- package/dist/src/domain/model/discordDetails/entities/BaseDiscordDetails.js.map +1 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.d.ts +5 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.js +8 -0
- package/dist/src/domain/model/discordDetails/entities/DiscordDetails.js.map +1 -0
- package/dist/src/domain/model/discordDetails/entities/index.d.ts +2 -0
- package/dist/src/domain/model/discordDetails/entities/index.js +19 -0
- package/dist/src/domain/model/discordDetails/entities/index.js.map +1 -0
- package/dist/src/domain/model/discordDetails/index.d.ts +2 -0
- package/dist/src/domain/model/discordDetails/index.js +19 -0
- package/dist/src/domain/model/discordDetails/index.js.map +1 -0
- 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.d.ts +1 -0
- package/dist/src/domain/model/email/dtos/index.js +18 -0
- package/dist/src/domain/model/email/dtos/index.js.map +1 -0
- package/dist/src/domain/model/email/index.d.ts +1 -0
- package/dist/src/domain/model/email/index.js +18 -0
- package/dist/src/domain/model/email/index.js.map +1 -0
- package/dist/src/domain/model/entity/Entity.d.ts +4 -0
- package/dist/src/domain/model/entity/Entity.js +14 -0
- package/dist/src/domain/model/entity/Entity.js.map +1 -0
- package/dist/src/domain/model/entity/index.d.ts +1 -0
- package/dist/src/domain/model/entity/index.js +6 -0
- package/dist/src/domain/model/entity/index.js.map +1 -0
- package/dist/src/domain/model/index.d.ts +21 -0
- package/dist/src/domain/model/index.js +38 -0
- package/dist/src/domain/model/index.js.map +1 -0
- package/dist/src/domain/model/link-features/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/link-features/dtos/index.js +18 -0
- package/dist/src/domain/model/link-features/dtos/index.js.map +1 -0
- package/dist/src/domain/model/link-features/dtos/linkFeaturesDto.d.ts +11 -0
- package/dist/src/domain/model/link-features/dtos/linkFeaturesDto.js +62 -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 +5 -0
- package/dist/src/domain/model/link-features/entities/LinkFeatures.js +8 -0
- package/dist/src/domain/model/link-features/entities/LinkFeatures.js.map +1 -0
- package/dist/src/domain/model/link-features/entities/index.d.ts +1 -0
- package/dist/src/domain/model/link-features/entities/index.js +18 -0
- package/dist/src/domain/model/link-features/entities/index.js.map +1 -0
- package/dist/src/domain/model/link-features/index.d.ts +2 -0
- package/dist/src/domain/model/link-features/index.js +19 -0
- package/dist/src/domain/model/link-features/index.js.map +1 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.d.ts +17 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.js +107 -0
- package/dist/src/domain/model/paylink/dtos/createPaylinkDto.js.map +1 -0
- package/dist/src/domain/model/paylink/dtos/index.d.ts +2 -0
- package/dist/src/domain/model/paylink/dtos/index.js +19 -0
- package/dist/src/domain/model/paylink/dtos/index.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 +7 -0
- package/dist/src/domain/model/paylink/entities/BasePaylink.js +8 -0
- package/dist/src/domain/model/paylink/entities/BasePaylink.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentPaylink.d.ts +5 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentPaylink.js +8 -0
- package/dist/src/domain/model/paylink/entities/OnlyContentPaylink.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/Paylink.d.ts +7 -0
- package/dist/src/domain/model/paylink/entities/Paylink.js +8 -0
- package/dist/src/domain/model/paylink/entities/Paylink.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.d.ts +7 -0
- package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.js +8 -0
- package/dist/src/domain/model/paylink/entities/ShallowEnrichedPaylink.js.map +1 -0
- package/dist/src/domain/model/paylink/entities/index.d.ts +4 -0
- package/dist/src/domain/model/paylink/entities/index.js +21 -0
- package/dist/src/domain/model/paylink/entities/index.js.map +1 -0
- package/dist/src/domain/model/paylink/index.d.ts +2 -0
- package/dist/src/domain/model/paylink/index.js +19 -0
- package/dist/src/domain/model/paylink/index.js.map +1 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/paylink-tx/dtos/index.js +19 -0
- package/dist/src/domain/model/paylink-tx/dtos/index.js.map +1 -0
- 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 -0
- package/dist/src/domain/model/paylink-tx/entities/BasePaylinkTx.js +8 -0
- package/dist/src/domain/model/paylink-tx/entities/BasePaylinkTx.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTx.d.ts +7 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTx.js +8 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTx.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.d.ts +7 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.js +8 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.d.ts +7 -0
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.js +8 -0
- package/dist/src/domain/model/paylink-tx/entities/ShallowEnrichedPaylinkTx.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/index.d.ts +4 -0
- package/dist/src/domain/model/paylink-tx/entities/index.js +21 -0
- package/dist/src/domain/model/paylink-tx/entities/index.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/index.d.ts +2 -0
- package/dist/src/domain/model/paylink-tx/index.js +19 -0
- package/dist/src/domain/model/paylink-tx/index.js.map +1 -0
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.d.ts +12 -0
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.js +8 -0
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.js.map +1 -0
- package/dist/src/domain/model/payment-request/entities/PaymentRequest.d.ts +11 -0
- package/dist/src/domain/model/payment-request/entities/PaymentRequest.js +8 -0
- package/dist/src/domain/model/payment-request/entities/PaymentRequest.js.map +1 -0
- package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.d.ts +11 -0
- package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.js +8 -0
- package/dist/src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.js.map +1 -0
- package/dist/src/domain/model/payment-request/entities/index.d.ts +3 -0
- package/dist/src/domain/model/payment-request/entities/index.js +20 -0
- package/dist/src/domain/model/payment-request/entities/index.js.map +1 -0
- package/dist/src/domain/model/payment-request/index.d.ts +1 -0
- package/dist/src/domain/model/payment-request/index.js +18 -0
- package/dist/src/domain/model/payment-request/index.js.map +1 -0
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.d.ts +10 -0
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.js +8 -0
- package/dist/src/domain/model/payment-request-features/entities/PaymentRequestFeatures.js.map +1 -0
- package/dist/src/domain/model/payment-request-features/entities/index.d.ts +1 -0
- package/dist/src/domain/model/payment-request-features/entities/index.js +18 -0
- package/dist/src/domain/model/payment-request-features/entities/index.js.map +1 -0
- package/dist/src/domain/model/payment-request-features/index.d.ts +1 -0
- package/dist/src/domain/model/payment-request-features/index.js +18 -0
- package/dist/src/domain/model/payment-request-features/index.js.map +1 -0
- 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.d.ts +2 -0
- package/dist/src/domain/model/role/dtos/index.js +19 -0
- package/dist/src/domain/model/role/dtos/index.js.map +1 -0
- 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 +6 -0
- package/dist/src/domain/model/role/entities/BaseRole.js +8 -0
- package/dist/src/domain/model/role/entities/BaseRole.js.map +1 -0
- package/dist/src/domain/model/role/entities/Role.d.ts +7 -0
- package/dist/src/domain/model/role/entities/Role.js +8 -0
- package/dist/src/domain/model/role/entities/Role.js.map +1 -0
- package/dist/src/domain/model/role/entities/RoleType.d.ts +5 -0
- package/dist/src/domain/model/role/entities/RoleType.js +10 -0
- package/dist/src/domain/model/role/entities/RoleType.js.map +1 -0
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.d.ts +7 -0
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.js +8 -0
- package/dist/src/domain/model/role/entities/ShallowEnrichedRole.js.map +1 -0
- package/dist/src/domain/model/role/entities/index.d.ts +4 -0
- package/dist/src/domain/model/role/entities/index.js +21 -0
- package/dist/src/domain/model/role/entities/index.js.map +1 -0
- package/dist/src/domain/model/role/index.d.ts +2 -0
- package/dist/src/domain/model/role/index.js +19 -0
- package/dist/src/domain/model/role/index.js.map +1 -0
- package/dist/src/domain/model/slug/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/slug/dtos/index.js +18 -0
- package/dist/src/domain/model/slug/dtos/index.js.map +1 -0
- package/dist/src/domain/model/slug/dtos/slug.d.ts +6 -0
- 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/entities/Slug.d.ts +9 -0
- package/dist/src/domain/model/slug/entities/Slug.js +8 -0
- package/dist/src/domain/model/slug/entities/Slug.js.map +1 -0
- package/dist/src/domain/model/slug/entities/SlugObjectType.d.ts +5 -0
- package/dist/src/domain/model/slug/entities/SlugObjectType.js +10 -0
- package/dist/src/domain/model/slug/entities/SlugObjectType.js.map +1 -0
- package/dist/src/domain/model/slug/entities/index.d.ts +2 -0
- package/dist/src/domain/model/slug/entities/index.js +19 -0
- package/dist/src/domain/model/slug/entities/index.js.map +1 -0
- package/dist/src/domain/model/slug/index.d.ts +2 -0
- package/dist/src/domain/model/slug/index.js +19 -0
- package/dist/src/domain/model/slug/index.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.d.ts +9 -0
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.js +49 -0
- package/dist/src/domain/model/transaction-meta/dtos/CreateTransactionMetaDto.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/transaction-meta/dtos/index.js +18 -0
- package/dist/src/domain/model/transaction-meta/dtos/index.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/entities/BaseTransactionMeta.d.ts +10 -0
- package/dist/src/domain/model/transaction-meta/entities/BaseTransactionMeta.js +8 -0
- package/dist/src/domain/model/transaction-meta/entities/BaseTransactionMeta.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/entities/ShallowEnrichedTransactionMeta.d.ts +5 -0
- package/dist/src/domain/model/transaction-meta/entities/ShallowEnrichedTransactionMeta.js +8 -0
- package/dist/src/domain/model/transaction-meta/entities/ShallowEnrichedTransactionMeta.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/entities/TransactionMeta.d.ts +5 -0
- package/dist/src/domain/model/transaction-meta/entities/TransactionMeta.js +8 -0
- package/dist/src/domain/model/transaction-meta/entities/TransactionMeta.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/entities/index.d.ts +3 -0
- package/dist/src/domain/model/transaction-meta/entities/index.js +20 -0
- package/dist/src/domain/model/transaction-meta/entities/index.js.map +1 -0
- package/dist/src/domain/model/transaction-meta/index.d.ts +2 -0
- package/dist/src/domain/model/transaction-meta/index.js +19 -0
- package/dist/src/domain/model/transaction-meta/index.js.map +1 -0
- 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/index.d.ts +2 -0
- package/dist/src/domain/model/user/dtos/index.js +19 -0
- package/dist/src/domain/model/user/dtos/index.js.map +1 -0
- package/dist/src/domain/model/user/entities/BaseUser.d.ts +8 -0
- package/dist/src/domain/model/user/entities/BaseUser.js +8 -0
- package/dist/src/domain/model/user/entities/BaseUser.js.map +1 -0
- package/dist/src/domain/model/user/entities/ShallowEnrichedUser.d.ts +7 -0
- package/dist/src/domain/model/user/entities/ShallowEnrichedUser.js +8 -0
- package/dist/src/domain/model/user/entities/ShallowEnrichedUser.js.map +1 -0
- package/dist/src/domain/model/user/entities/User.d.ts +7 -0
- package/dist/src/domain/model/user/entities/User.js +8 -0
- package/dist/src/domain/model/user/entities/User.js.map +1 -0
- package/dist/src/domain/model/user/entities/index.d.ts +3 -0
- package/dist/src/domain/model/user/entities/index.js +20 -0
- package/dist/src/domain/model/user/entities/index.js.map +1 -0
- package/dist/src/domain/model/user/index.d.ts +2 -0
- package/dist/src/domain/model/user/index.js +19 -0
- package/dist/src/domain/model/user/index.js.map +1 -0
- 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.d.ts +1 -0
- package/dist/src/domain/model/wallet/dtos/index.js +18 -0
- package/dist/src/domain/model/wallet/dtos/index.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/BaseWallet.d.ts +5 -0
- package/dist/src/domain/model/wallet/entities/BaseWallet.js +8 -0
- package/dist/src/domain/model/wallet/entities/BaseWallet.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/Wallet.d.ts +5 -0
- package/dist/src/domain/model/wallet/entities/Wallet.js +8 -0
- package/dist/src/domain/model/wallet/entities/Wallet.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/index.d.ts +2 -0
- package/dist/src/domain/model/wallet/entities/index.js +19 -0
- package/dist/src/domain/model/wallet/entities/index.js.map +1 -0
- package/dist/src/domain/model/wallet/index.d.ts +2 -0
- package/dist/src/domain/model/wallet/index.js +19 -0
- package/dist/src/domain/model/wallet/index.js.map +1 -0
- package/dist/src/domain/services/EmailService.d.ts +3 -0
- package/dist/src/domain/services/EmailService.js +11 -0
- package/dist/src/domain/services/EmailService.js.map +1 -0
- package/dist/src/domain/services/index.d.ts +1 -0
- package/dist/src/domain/services/index.js +18 -0
- package/dist/src/domain/services/index.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +18 -0
- package/dist/src/index.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,21 @@
|
|
|
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("./PaylinkTx"), exports);
|
|
18
|
+
__exportStar(require("./BasePaylinkTx"), exports);
|
|
19
|
+
__exportStar(require("./ShallowEnrichedPaylinkTx"), exports);
|
|
20
|
+
__exportStar(require("./PaylinkTxWithShallowEnrichedPaylink"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/paylink-tx/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,kDAAgC;AAChC,6DAA2C;AAC3C,wEAAsD"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dtos"), exports);
|
|
18
|
+
__exportStar(require("./entities"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/paylink-tx/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Entity } from '../../entity';
|
|
2
|
+
export declare class BasePaymentRequest extends Entity {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
normalizedPrice: bigint;
|
|
8
|
+
notifySenderByEmail: boolean;
|
|
9
|
+
notifyReceiverByEmail: boolean;
|
|
10
|
+
addDiscordRole: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasePaymentRequest = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class BasePaymentRequest extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.BasePaymentRequest = BasePaymentRequest;
|
|
8
|
+
//# sourceMappingURL=BasePaymentRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BasePaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/BasePaymentRequest.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,kBAAmB,SAAQ,eAAM;CAkB7C;AAlBD,gDAkBC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Company } from '../../company';
|
|
2
|
+
import type { User } from '../../user';
|
|
3
|
+
import type { Currency } from '../../currency';
|
|
4
|
+
import type { Wallet } from '../../wallet';
|
|
5
|
+
import { BasePaymentRequest } from './BasePaymentRequest';
|
|
6
|
+
export declare class PaymentRequest extends BasePaymentRequest {
|
|
7
|
+
creator: User;
|
|
8
|
+
company: Company;
|
|
9
|
+
currency: Currency;
|
|
10
|
+
wallet: Wallet;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentRequest = void 0;
|
|
4
|
+
const BasePaymentRequest_1 = require("./BasePaymentRequest");
|
|
5
|
+
class PaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
6
|
+
}
|
|
7
|
+
exports.PaymentRequest = PaymentRequest;
|
|
8
|
+
//# sourceMappingURL=PaymentRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/PaymentRequest.ts"],"names":[],"mappings":";;;AAIA,6DAA0D;AAE1D,MAAa,cAAe,SAAQ,uCAAkB;CAQrD;AARD,wCAQC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Company } from '../../company';
|
|
2
|
+
import { BasePaymentRequest } from './BasePaymentRequest';
|
|
3
|
+
import type { BaseUser } from '../../user';
|
|
4
|
+
import type { BaseCurrency } from '../../currency';
|
|
5
|
+
import type { BaseWallet } from '../../wallet';
|
|
6
|
+
export declare class ShallowEnrichedPaymentRequest extends BasePaymentRequest {
|
|
7
|
+
creator: BaseUser;
|
|
8
|
+
company: Company;
|
|
9
|
+
currency: BaseCurrency;
|
|
10
|
+
wallet: BaseWallet;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShallowEnrichedPaymentRequest = void 0;
|
|
4
|
+
const BasePaymentRequest_1 = require("./BasePaymentRequest");
|
|
5
|
+
class ShallowEnrichedPaymentRequest extends BasePaymentRequest_1.BasePaymentRequest {
|
|
6
|
+
}
|
|
7
|
+
exports.ShallowEnrichedPaymentRequest = ShallowEnrichedPaymentRequest;
|
|
8
|
+
//# sourceMappingURL=ShallowEnrichedPaymentRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShallowEnrichedPaymentRequest.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/ShallowEnrichedPaymentRequest.ts"],"names":[],"mappings":";;;AACA,6DAA0D;AAK1D,MAAa,6BAA8B,SAAQ,uCAAkB;CAQpE;AARD,sEAQC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,uDAAqC;AACrC,kEAAgD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './entities';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./entities"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/payment-request/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Entity } from '../../entity';
|
|
2
|
+
export declare class PaymentRequestFeatures extends Entity {
|
|
3
|
+
requireEmail: boolean;
|
|
4
|
+
requireDiscordUsername: boolean;
|
|
5
|
+
requireFullName: boolean;
|
|
6
|
+
requireTwitterUsername: boolean;
|
|
7
|
+
requireCountry: boolean;
|
|
8
|
+
requireDeliveryAddress: boolean;
|
|
9
|
+
requirePhoneNumber: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentRequestFeatures = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class PaymentRequestFeatures extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.PaymentRequestFeatures = PaymentRequestFeatures;
|
|
8
|
+
//# sourceMappingURL=PaymentRequestFeatures.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentRequestFeatures.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request-features/entities/PaymentRequestFeatures.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,sBAAuB,SAAQ,eAAM;CAcjD;AAdD,wDAcC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './PaymentRequestFeatures';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./PaymentRequestFeatures"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/payment-request-features/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './entities';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./entities"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/payment-request-features/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateRoleDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const entities_1 = require("../entities");
|
|
16
|
+
class CreateRoleDto {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, swagger_1.ApiProperty)(),
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], CreateRoleDto.prototype, "company", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, swagger_1.ApiProperty)(),
|
|
26
|
+
(0, class_validator_1.IsEnum)(entities_1.RoleType),
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], CreateRoleDto.prototype, "type", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, swagger_1.ApiProperty)(),
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], CreateRoleDto.prototype, "user", void 0);
|
|
36
|
+
exports.CreateRoleDto = CreateRoleDto;
|
|
37
|
+
//# sourceMappingURL=createRoleDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createRoleDto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/dtos/createRoleDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAC/D,6CAA8C;AAC9C,0CAAuC;AAEvC,MAAa,aAAa;CAezB;AAXC;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8CACG;AAKhB;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,wBAAM,EAAC,mBAAQ,CAAC;IAChB,IAAA,4BAAU,GAAE;;2CACE;AAKf;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2CACA;AAdf,sCAeC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./createRoleDto"), exports);
|
|
18
|
+
__exportStar(require("./updateRoleDto"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,kDAAgC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.UpdateRoleDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const entities_1 = require("../entities");
|
|
16
|
+
class UpdateRoleDto {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, swagger_1.ApiProperty)(),
|
|
20
|
+
(0, class_validator_1.IsEnum)(entities_1.RoleType),
|
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], UpdateRoleDto.prototype, "type", void 0);
|
|
24
|
+
exports.UpdateRoleDto = UpdateRoleDto;
|
|
25
|
+
//# sourceMappingURL=updateRoleDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateRoleDto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/dtos/updateRoleDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAqD;AACrD,6CAA8C;AAC9C,0CAAuC;AAEvC,MAAa,aAAa;CAKzB;AADC;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,wBAAM,EAAC,mBAAQ,CAAC;IAChB,IAAA,4BAAU,GAAE;;2CACE;AAJjB,sCAKC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BaseRole = void 0;
|
|
4
|
+
const entity_1 = require("../../entity");
|
|
5
|
+
class BaseRole extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.BaseRole = BaseRole;
|
|
8
|
+
//# sourceMappingURL=BaseRole.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseRole.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/entities/BaseRole.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,QAAS,SAAQ,eAAM;CAInC;AAJD,4BAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Role.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/entities/Role.ts"],"names":[],"mappings":";;;AAEA,yCAAsC;AAEtC,MAAa,IAAK,SAAQ,mBAAQ;CAIjC;AAJD,oBAIC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RoleType = void 0;
|
|
4
|
+
var RoleType;
|
|
5
|
+
(function (RoleType) {
|
|
6
|
+
RoleType["ADMIN"] = "ADMIN";
|
|
7
|
+
RoleType["WRITE"] = "WRITE";
|
|
8
|
+
RoleType["READ"] = "READ";
|
|
9
|
+
})(RoleType = exports.RoleType || (exports.RoleType = {}));
|
|
10
|
+
//# sourceMappingURL=RoleType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleType.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/entities/RoleType.ts"],"names":[],"mappings":";;;AAAA,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,2BAAe,CAAA;IACf,2BAAe,CAAA;IACf,yBAAa,CAAA;AACf,CAAC,EAJW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAInB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShallowEnrichedRole = void 0;
|
|
4
|
+
const BaseRole_1 = require("./BaseRole");
|
|
5
|
+
class ShallowEnrichedRole extends BaseRole_1.BaseRole {
|
|
6
|
+
}
|
|
7
|
+
exports.ShallowEnrichedRole = ShallowEnrichedRole;
|
|
8
|
+
//# sourceMappingURL=ShallowEnrichedRole.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShallowEnrichedRole.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/entities/ShallowEnrichedRole.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAGtC,MAAa,mBAAoB,SAAQ,mBAAQ;CAIhD;AAJD,kDAIC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
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("./RoleType"), exports);
|
|
18
|
+
__exportStar(require("./Role"), exports);
|
|
19
|
+
__exportStar(require("./BaseRole"), exports);
|
|
20
|
+
__exportStar(require("./ShallowEnrichedRole"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/role/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,yCAAuB;AACvB,6CAA2B;AAC3B,wDAAsC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./entities"), exports);
|
|
18
|
+
__exportStar(require("./dtos"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/role/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,yCAAuB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './slug';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./slug"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/slug/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.SlugDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const entities_1 = require("../entities");
|
|
16
|
+
class SlugDto {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, swagger_1.ApiProperty)(),
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], SlugDto.prototype, "slug", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, swagger_1.ApiProperty)(),
|
|
26
|
+
(0, class_validator_1.IsEnum)(entities_1.SlugObjectType),
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], SlugDto.prototype, "objectType", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, swagger_1.ApiProperty)(),
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], SlugDto.prototype, "objectId", void 0);
|
|
36
|
+
exports.SlugDto = SlugDto;
|
|
37
|
+
//# sourceMappingURL=slug.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slug.js","sourceRoot":"","sources":["../../../../../../src/domain/model/slug/dtos/slug.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAC/D,6CAA8C;AAC9C,0CAA6C;AAE7C,MAAa,OAAO;CAenB;AAXC;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qCACA;AAKb;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,wBAAM,EAAC,yBAAc,CAAC;IACtB,IAAA,4BAAU,GAAE;;2CACc;AAK3B;IAHC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yCACI;AAdnB,0BAeC"}
|