@plutonlabs/sdk 0.0.1-beta
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/README.md +1 -0
- package/Readme.md +0 -0
- package/dist/common/consts/globalConst.d.ts +12 -0
- package/dist/common/consts/globalConst.d.ts.map +1 -0
- package/dist/common/consts/globalConst.js +15 -0
- package/dist/common/consts/globalConst.js.map +1 -0
- package/dist/common/enums/calc_mode.enum.d.ts +8 -0
- package/dist/common/enums/calc_mode.enum.d.ts.map +1 -0
- package/dist/common/enums/calc_mode.enum.js +32 -0
- package/dist/common/enums/calc_mode.enum.js.map +1 -0
- package/dist/common/enums/index.d.ts +3 -0
- package/dist/common/enums/index.d.ts.map +1 -0
- package/dist/common/enums/index.js +19 -0
- package/dist/common/enums/index.js.map +1 -0
- package/dist/common/enums/intent_type.enum.d.ts +6 -0
- package/dist/common/enums/intent_type.enum.d.ts.map +1 -0
- package/dist/common/enums/intent_type.enum.js +10 -0
- package/dist/common/enums/intent_type.enum.js.map +1 -0
- package/dist/common/index.d.ts +3 -0
- package/dist/common/index.d.ts.map +1 -0
- package/dist/common/index.js +19 -0
- package/dist/common/index.js.map +1 -0
- package/dist/common/interfaces/IChain.d.ts +20 -0
- package/dist/common/interfaces/IChain.d.ts.map +1 -0
- package/dist/common/interfaces/IChain.js +3 -0
- package/dist/common/interfaces/IChain.js.map +1 -0
- package/dist/common/interfaces/ILog.d.ts +8 -0
- package/dist/common/interfaces/ILog.d.ts.map +1 -0
- package/dist/common/interfaces/ILog.js +3 -0
- package/dist/common/interfaces/ILog.js.map +1 -0
- package/dist/common/utils/bignumber.column.transformer.d.ts +6 -0
- package/dist/common/utils/bignumber.column.transformer.d.ts.map +1 -0
- package/dist/common/utils/bignumber.column.transformer.js +17 -0
- package/dist/common/utils/bignumber.column.transformer.js.map +1 -0
- package/dist/common/utils/index.d.ts +3 -0
- package/dist/common/utils/index.d.ts.map +1 -0
- package/dist/common/utils/index.js +19 -0
- package/dist/common/utils/index.js.map +1 -0
- package/dist/common/utils/list.d.ts +3 -0
- package/dist/common/utils/list.d.ts.map +1 -0
- package/dist/common/utils/list.js +25 -0
- package/dist/common/utils/list.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_contract.dto.d.ts +35 -0
- package/dist/modules/chainsync/domain/dto/chain_contract.dto.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_contract.dto.js +44 -0
- package/dist/modules/chainsync/domain/dto/chain_contract.dto.js.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction.dto.d.ts +131 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction.dto.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction.dto.js +133 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction.dto.js.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction_event_log.dto.d.ts +43 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction_event_log.dto.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction_event_log.dto.js +51 -0
- package/dist/modules/chainsync/domain/dto/chain_transaction_event_log.dto.js.map +1 -0
- package/dist/modules/chainsync/domain/dto/index.d.ts +5 -0
- package/dist/modules/chainsync/domain/dto/index.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/dto/index.js +21 -0
- package/dist/modules/chainsync/domain/dto/index.js.map +1 -0
- package/dist/modules/chainsync/domain/dto/pluton_request.dto.d.ts +10 -0
- package/dist/modules/chainsync/domain/dto/pluton_request.dto.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/dto/pluton_request.dto.js +54 -0
- package/dist/modules/chainsync/domain/dto/pluton_request.dto.js.map +1 -0
- package/dist/modules/chainsync/domain/index.d.ts +2 -0
- package/dist/modules/chainsync/domain/index.d.ts.map +1 -0
- package/dist/modules/chainsync/domain/index.js +18 -0
- package/dist/modules/chainsync/domain/index.js.map +1 -0
- package/dist/modules/chainsync/index.d.ts +2 -0
- package/dist/modules/chainsync/index.d.ts.map +1 -0
- package/dist/modules/chainsync/index.js +18 -0
- package/dist/modules/chainsync/index.js.map +1 -0
- package/dist/modules/index.d.ts +6 -0
- package/dist/modules/index.d.ts.map +1 -0
- package/dist/modules/index.js +22 -0
- package/dist/modules/index.js.map +1 -0
- package/dist/modules/network/domain/dto/index.d.ts +5 -0
- package/dist/modules/network/domain/dto/index.d.ts.map +1 -0
- package/dist/modules/network/domain/dto/index.js +21 -0
- package/dist/modules/network/domain/dto/index.js.map +1 -0
- package/dist/modules/network/domain/dto/network.dto.d.ts +50 -0
- package/dist/modules/network/domain/dto/network.dto.d.ts.map +1 -0
- package/dist/modules/network/domain/dto/network.dto.js +66 -0
- package/dist/modules/network/domain/dto/network.dto.js.map +1 -0
- package/dist/modules/network/domain/dto/network.update.dto.d.ts +66 -0
- package/dist/modules/network/domain/dto/network.update.dto.d.ts.map +1 -0
- package/dist/modules/network/domain/dto/network.update.dto.js +87 -0
- package/dist/modules/network/domain/dto/network.update.dto.js.map +1 -0
- package/dist/modules/network/domain/dto/network_provider.dto.d.ts +42 -0
- package/dist/modules/network/domain/dto/network_provider.dto.d.ts.map +1 -0
- package/dist/modules/network/domain/dto/network_provider.dto.js +53 -0
- package/dist/modules/network/domain/dto/network_provider.dto.js.map +1 -0
- package/dist/modules/network/domain/dto/network_provider.update.dto.d.ts +45 -0
- package/dist/modules/network/domain/dto/network_provider.update.dto.d.ts.map +1 -0
- package/dist/modules/network/domain/dto/network_provider.update.dto.js +58 -0
- package/dist/modules/network/domain/dto/network_provider.update.dto.js.map +1 -0
- package/dist/modules/network/domain/enums/chain_type.enum.d.ts +8 -0
- package/dist/modules/network/domain/enums/chain_type.enum.d.ts.map +1 -0
- package/dist/modules/network/domain/enums/chain_type.enum.js +25 -0
- package/dist/modules/network/domain/enums/chain_type.enum.js.map +1 -0
- package/dist/modules/network/domain/enums/coin_type.enum.d.ts +8 -0
- package/dist/modules/network/domain/enums/coin_type.enum.d.ts.map +1 -0
- package/dist/modules/network/domain/enums/coin_type.enum.js +12 -0
- package/dist/modules/network/domain/enums/coin_type.enum.js.map +1 -0
- package/dist/modules/network/domain/enums/index.d.ts +4 -0
- package/dist/modules/network/domain/enums/index.d.ts.map +1 -0
- package/dist/modules/network/domain/enums/index.js +20 -0
- package/dist/modules/network/domain/enums/index.js.map +1 -0
- package/dist/modules/network/domain/enums/provider_protocol_type.enum.d.ts +7 -0
- package/dist/modules/network/domain/enums/provider_protocol_type.enum.d.ts.map +1 -0
- package/dist/modules/network/domain/enums/provider_protocol_type.enum.js +11 -0
- package/dist/modules/network/domain/enums/provider_protocol_type.enum.js.map +1 -0
- package/dist/modules/network/domain/index.d.ts +3 -0
- package/dist/modules/network/domain/index.d.ts.map +1 -0
- package/dist/modules/network/domain/index.js +19 -0
- package/dist/modules/network/domain/index.js.map +1 -0
- package/dist/modules/network/index.d.ts +2 -0
- package/dist/modules/network/index.d.ts.map +1 -0
- package/dist/modules/network/index.js +18 -0
- package/dist/modules/network/index.js.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_request.dto.d.ts +21 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_request.dto.js +35 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_response.dto.d.ts +24 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_response.dto.js +40 -0
- package/dist/modules/quote/domain/dto/affiliate/claim_affiliate_signature_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_request.dto.d.ts +28 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_request.dto.js +40 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_response.dto.d.ts +35 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_response.dto.js +19 -0
- package/dist/modules/quote/domain/dto/affiliate/create_claim_affiliate_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/index.d.ts +5 -0
- package/dist/modules/quote/domain/dto/affiliate/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/affiliate/index.js +21 -0
- package/dist/modules/quote/domain/dto/affiliate/index.js.map +1 -0
- package/dist/modules/quote/domain/dto/index.d.ts +4 -0
- package/dist/modules/quote/domain/dto/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/index.js +20 -0
- package/dist/modules/quote/domain/dto/index.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/index.d.ts +16 -0
- package/dist/modules/quote/domain/dto/quote/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/index.js +32 -0
- package/dist/modules/quote/domain/dto/quote/index.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote.dto.d.ts +9 -0
- package/dist/modules/quote/domain/dto/quote/quote.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote.dto.js +21 -0
- package/dist/modules/quote/domain/dto/quote/quote.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_base_intent_request.dto.d.ts +14 -0
- package/dist/modules/quote/domain/dto/quote/quote_base_intent_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_base_intent_request.dto.js +27 -0
- package/dist/modules/quote/domain/dto/quote/quote_base_intent_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_request.dto.d.ts +14 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_request.dto.js +28 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_response.dto.d.ts +17 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_response.dto.js +22 -0
- package/dist/modules/quote/domain/dto/quote/quote_bridge_intent_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_request.dto.d.ts +44 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_request.dto.js +47 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_response.dto.d.ts +8 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_response.dto.js +22 -0
- package/dist/modules/quote/domain/dto/quote/quote_estimate_bridge_intent_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent.dto.d.ts +4 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent.dto.js +3 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_request.dto.d.ts +10 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_request.dto.js +3 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_response.dto.d.ts +16 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_response.dto.js +57 -0
- package/dist/modules/quote/domain/dto/quote/quote_intent_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_request.dto.d.ts +9 -0
- package/dist/modules/quote/domain/dto/quote/quote_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_request.dto.js +26 -0
- package/dist/modules/quote/domain/dto/quote/quote_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_request_lifecycle.dto.d.ts +50 -0
- package/dist/modules/quote/domain/dto/quote/quote_request_lifecycle.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_request_lifecycle.dto.js +21 -0
- package/dist/modules/quote/domain/dto/quote/quote_request_lifecycle.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_response.dto.d.ts +24 -0
- package/dist/modules/quote/domain/dto/quote/quote_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_response.dto.js +41 -0
- package/dist/modules/quote/domain/dto/quote/quote_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_response_lifecycle.dto.d.ts +50 -0
- package/dist/modules/quote/domain/dto/quote/quote_response_lifecycle.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_response_lifecycle.dto.js +21 -0
- package/dist/modules/quote/domain/dto/quote/quote_response_lifecycle.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.d.ts +14 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.js +31 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_resposne.dto.d.ts +3 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_resposne.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_resposne.dto.js +7 -0
- package/dist/modules/quote/domain/dto/quote/quote_selected_intents_resposne.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.d.ts +8 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.js +21 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.d.ts +8 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.js +21 -0
- package/dist/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_request.dto.d.ts +18 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_request.dto.js +30 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_response.dto.d.ts +23 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_response.dto.js +7 -0
- package/dist/modules/quote/domain/dto/refund/create_quote_refund_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/refund/index.d.ts +5 -0
- package/dist/modules/quote/domain/dto/refund/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/refund/index.js +21 -0
- package/dist/modules/quote/domain/dto/refund/index.js.map +1 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.d.ts +13 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.js +26 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.js.map +1 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.d.ts +8 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.d.ts.map +1 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.js +21 -0
- package/dist/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.js.map +1 -0
- package/dist/modules/quote/domain/enums/index.d.ts +9 -0
- package/dist/modules/quote/domain/enums/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/index.js +25 -0
- package/dist/modules/quote/domain/enums/index.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_action.enum.d.ts +4 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_action.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_action.enum.js +8 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_action.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.d.ts +15 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.js +22 -0
- package/dist/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_intent_type.enum.d.ts +4 -0
- package/dist/modules/quote/domain/enums/quote_intent_type.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_intent_type.enum.js +8 -0
- package/dist/modules/quote/domain/enums/quote_intent_type.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_request_action.enum.d.ts +16 -0
- package/dist/modules/quote/domain/enums/quote_request_action.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_request_action.enum.js +20 -0
- package/dist/modules/quote/domain/enums/quote_request_action.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_request_lifecycle.enum.d.ts +31 -0
- package/dist/modules/quote/domain/enums/quote_request_lifecycle.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_request_lifecycle.enum.js +40 -0
- package/dist/modules/quote/domain/enums/quote_request_lifecycle.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_response_action.enum.d.ts +12 -0
- package/dist/modules/quote/domain/enums/quote_response_action.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_response_action.enum.js +16 -0
- package/dist/modules/quote/domain/enums/quote_response_action.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/quote_response_lifecycle.enum.d.ts +26 -0
- package/dist/modules/quote/domain/enums/quote_response_lifecycle.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/quote_response_lifecycle.enum.js +35 -0
- package/dist/modules/quote/domain/enums/quote_response_lifecycle.enum.js.map +1 -0
- package/dist/modules/quote/domain/enums/selection_status.enum.d.ts +5 -0
- package/dist/modules/quote/domain/enums/selection_status.enum.d.ts.map +1 -0
- package/dist/modules/quote/domain/enums/selection_status.enum.js +9 -0
- package/dist/modules/quote/domain/enums/selection_status.enum.js.map +1 -0
- package/dist/modules/quote/domain/index.d.ts +3 -0
- package/dist/modules/quote/domain/index.d.ts.map +1 -0
- package/dist/modules/quote/domain/index.js +19 -0
- package/dist/modules/quote/domain/index.js.map +1 -0
- package/dist/modules/quote/index.d.ts +2 -0
- package/dist/modules/quote/index.d.ts.map +1 -0
- package/dist/modules/quote/index.js +18 -0
- package/dist/modules/quote/index.js.map +1 -0
- package/dist/modules/swap/domain/dto/index.d.ts +4 -0
- package/dist/modules/swap/domain/dto/index.d.ts.map +1 -0
- package/dist/modules/swap/domain/dto/index.js +20 -0
- package/dist/modules/swap/domain/dto/index.js.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_output_estimate_response.dto.d.ts +9 -0
- package/dist/modules/swap/domain/dto/token_swap_output_estimate_response.dto.d.ts.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_output_estimate_response.dto.js +25 -0
- package/dist/modules/swap/domain/dto/token_swap_output_estimate_response.dto.js.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_request.dto.d.ts +18 -0
- package/dist/modules/swap/domain/dto/token_swap_request.dto.d.ts.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_request.dto.js +31 -0
- package/dist/modules/swap/domain/dto/token_swap_request.dto.js.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_response.dto.d.ts +18 -0
- package/dist/modules/swap/domain/dto/token_swap_response.dto.d.ts.map +1 -0
- package/dist/modules/swap/domain/dto/token_swap_response.dto.js +32 -0
- package/dist/modules/swap/domain/dto/token_swap_response.dto.js.map +1 -0
- package/dist/modules/swap/domain/index.d.ts +2 -0
- package/dist/modules/swap/domain/index.d.ts.map +1 -0
- package/dist/modules/swap/domain/index.js +18 -0
- package/dist/modules/swap/domain/index.js.map +1 -0
- package/dist/modules/swap/index.d.ts +2 -0
- package/dist/modules/swap/index.d.ts.map +1 -0
- package/dist/modules/swap/index.js +18 -0
- package/dist/modules/swap/index.js.map +1 -0
- package/dist/modules/token/domain/dto/index.d.ts +4 -0
- package/dist/modules/token/domain/dto/index.d.ts.map +1 -0
- package/dist/modules/token/domain/dto/index.js +20 -0
- package/dist/modules/token/domain/dto/index.js.map +1 -0
- package/dist/modules/token/domain/dto/network_contract_find_token.dto.d.ts +27 -0
- package/dist/modules/token/domain/dto/network_contract_find_token.dto.d.ts.map +1 -0
- package/dist/modules/token/domain/dto/network_contract_find_token.dto.js +46 -0
- package/dist/modules/token/domain/dto/network_contract_find_token.dto.js.map +1 -0
- package/dist/modules/token/domain/dto/token.dto.d.ts +59 -0
- package/dist/modules/token/domain/dto/token.dto.d.ts.map +1 -0
- package/dist/modules/token/domain/dto/token.dto.js +70 -0
- package/dist/modules/token/domain/dto/token.dto.js.map +1 -0
- package/dist/modules/token/domain/dto/token.update.dto.d.ts +66 -0
- package/dist/modules/token/domain/dto/token.update.dto.d.ts.map +1 -0
- package/dist/modules/token/domain/dto/token.update.dto.js +75 -0
- package/dist/modules/token/domain/dto/token.update.dto.js.map +1 -0
- package/dist/modules/token/domain/index.d.ts +2 -0
- package/dist/modules/token/domain/index.d.ts.map +1 -0
- package/dist/modules/token/domain/index.js +18 -0
- package/dist/modules/token/domain/index.js.map +1 -0
- package/dist/modules/token/index.d.ts +2 -0
- package/dist/modules/token/index.d.ts.map +1 -0
- package/dist/modules/token/index.js +18 -0
- package/dist/modules/token/index.js.map +1 -0
- package/package.json +22 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteSelectedIntentsResponseDto = void 0;
|
|
4
|
+
class QuoteSelectedIntentsResponseDto {
|
|
5
|
+
}
|
|
6
|
+
exports.QuoteSelectedIntentsResponseDto = QuoteSelectedIntentsResponseDto;
|
|
7
|
+
//# sourceMappingURL=quote_selected_intents_resposne.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_selected_intents_resposne.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_selected_intents_resposne.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,+BAA+B;CAK3C;AALD,0EAKC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_set_transaction_request.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,6BAA6B;IACxC;;;OAGG;IAEH,YAAY,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
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.QuoteSetTransactionRequestDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class QuoteSetTransactionRequestDto {
|
|
15
|
+
}
|
|
16
|
+
exports.QuoteSetTransactionRequestDto = QuoteSetTransactionRequestDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], QuoteSetTransactionRequestDto.prototype, "propertyName", void 0);
|
|
21
|
+
//# sourceMappingURL=quote_set_transaction_request.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_set_transaction_request.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_set_transaction_request.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAE7C,MAAa,6BAA6B;CAOzC;AAPD,sEAOC;AADC;IADC,IAAA,4BAAU,GAAE;;mEACQ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_set_transaction_response.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,8BAA8B;IACzC;;;OAGG;IAEH,YAAY,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
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.QuoteSetTransactionResponseDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class QuoteSetTransactionResponseDto {
|
|
15
|
+
}
|
|
16
|
+
exports.QuoteSetTransactionResponseDto = QuoteSetTransactionResponseDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], QuoteSetTransactionResponseDto.prototype, "propertyName", void 0);
|
|
21
|
+
//# sourceMappingURL=quote_set_transaction_response.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_set_transaction_response.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/quote/quote_set_transaction_response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAE7C,MAAa,8BAA8B;CAO1C;AAPD,wEAOC;AADC;IADC,IAAA,4BAAU,GAAE;;oEACQ"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare class CreateUserRefundSignatureRequestDto {
|
|
2
|
+
/**
|
|
3
|
+
* @description The quote request ID that the user sent money for
|
|
4
|
+
* @example '123e4567-e89b-12d3-a456-426614174000'
|
|
5
|
+
*/
|
|
6
|
+
bridgeQuoteRequestId: string;
|
|
7
|
+
/**
|
|
8
|
+
* @description The address of the user that should be refunded to
|
|
9
|
+
* @example '0x112233445566778899abcdef'
|
|
10
|
+
*/
|
|
11
|
+
address: string;
|
|
12
|
+
/**
|
|
13
|
+
* @description The signature of the user
|
|
14
|
+
* @example '0x112233445566778899abcdef'
|
|
15
|
+
*/
|
|
16
|
+
signature: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=create_quote_refund_request.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create_quote_refund_request.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/create_quote_refund_request.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,mCAAmC;IAC9C;;;OAGG;IAGH,oBAAoB,EAAE,MAAM,CAAC;IAE7B;;;OAGG;IAEH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IAEH,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
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.CreateUserRefundSignatureRequestDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CreateUserRefundSignatureRequestDto {
|
|
15
|
+
}
|
|
16
|
+
exports.CreateUserRefundSignatureRequestDto = CreateUserRefundSignatureRequestDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
(0, class_validator_1.IsUUID)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreateUserRefundSignatureRequestDto.prototype, "bridgeQuoteRequestId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], CreateUserRefundSignatureRequestDto.prototype, "address", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], CreateUserRefundSignatureRequestDto.prototype, "signature", void 0);
|
|
30
|
+
//# sourceMappingURL=create_quote_refund_request.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create_quote_refund_request.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/create_quote_refund_request.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA+D;AAE/D,MAAa,mCAAmC;CAsB/C;AAtBD,kFAsBC;AAfC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;iFACoB;AAO7B;IADC,IAAA,4BAAU,GAAE;;oEACG;AAOhB;IADC,IAAA,4BAAU,GAAE;;sEACK"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class CreateUserRefundSignatureResponseDto {
|
|
2
|
+
/**
|
|
3
|
+
* @description The signature for the refund request
|
|
4
|
+
* @example '0xabcdef...'
|
|
5
|
+
*/
|
|
6
|
+
signature: string;
|
|
7
|
+
/**
|
|
8
|
+
* @description The type of coin for the refund
|
|
9
|
+
* @example 60
|
|
10
|
+
*/
|
|
11
|
+
coinType: number;
|
|
12
|
+
/**
|
|
13
|
+
* @description The chain ID where the refund will be processed
|
|
14
|
+
* @example 1
|
|
15
|
+
*/
|
|
16
|
+
chainId: number;
|
|
17
|
+
/**
|
|
18
|
+
* @description The address of the asset for the refunded
|
|
19
|
+
* @example '0x123456...'
|
|
20
|
+
*/
|
|
21
|
+
assetAddress: string;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=create_quote_refund_response.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create_quote_refund_response.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/create_quote_refund_response.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,oCAAoC;IAC/C;;;OAGG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateUserRefundSignatureResponseDto = void 0;
|
|
4
|
+
class CreateUserRefundSignatureResponseDto {
|
|
5
|
+
}
|
|
6
|
+
exports.CreateUserRefundSignatureResponseDto = CreateUserRefundSignatureResponseDto;
|
|
7
|
+
//# sourceMappingURL=create_quote_refund_response.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create_quote_refund_response.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/create_quote_refund_response.dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,oCAAoC;CAwBhD;AAxBD,oFAwBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC"}
|
|
@@ -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("./quote_refund_signature_request.dto"), exports);
|
|
18
|
+
__exportStar(require("./quote_refund_signature_response.dto"), exports);
|
|
19
|
+
__exportStar(require("./create_quote_refund_request.dto"), exports);
|
|
20
|
+
__exportStar(require("./create_quote_refund_response.dto"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uEAAqD;AACrD,wEAAsD;AACtD,oEAAkD;AAClD,qEAAmD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class QuoteRefundSignatureRequestDto {
|
|
2
|
+
/**
|
|
3
|
+
* @description quote request id that the user sent money for
|
|
4
|
+
* @example '123e4567-e89b-12d3-a456-426614174000'
|
|
5
|
+
*/
|
|
6
|
+
bridgeQuoteRequestId: string;
|
|
7
|
+
/**
|
|
8
|
+
* @description address of the user that should be refunded to
|
|
9
|
+
* @example '0x112233445566778899abcdef'
|
|
10
|
+
*/
|
|
11
|
+
address: string;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=quote_refund_signature_request.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_refund_signature_request.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,8BAA8B;IACzC;;;OAGG;IAGH,oBAAoB,EAAE,MAAM,CAAC;IAE7B;;;OAGG;IAEH,OAAO,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.QuoteRefundSignatureRequestDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class QuoteRefundSignatureRequestDto {
|
|
15
|
+
}
|
|
16
|
+
exports.QuoteRefundSignatureRequestDto = QuoteRefundSignatureRequestDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
(0, class_validator_1.IsUUID)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], QuoteRefundSignatureRequestDto.prototype, "bridgeQuoteRequestId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], QuoteRefundSignatureRequestDto.prototype, "address", void 0);
|
|
26
|
+
//# sourceMappingURL=quote_refund_signature_request.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_refund_signature_request.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/quote_refund_signature_request.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAqD;AAErD,MAAa,8BAA8B;CAe1C;AAfD,wEAeC;AARC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;;4EACoB;AAO7B;IADC,IAAA,4BAAU,GAAE;;+DACG"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare class QuoteRefundSignatureResponseDto {
|
|
2
|
+
/**
|
|
3
|
+
* @description The message to be signed to authenticate the user address
|
|
4
|
+
* @example 'i am a message to be signed by user'
|
|
5
|
+
*/
|
|
6
|
+
message: string;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=quote_refund_signature_response.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_refund_signature_response.dto.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,+BAA+B;IAC1C;;;OAGG;IAEH,OAAO,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
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.QuoteRefundSignatureResponseDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class QuoteRefundSignatureResponseDto {
|
|
15
|
+
}
|
|
16
|
+
exports.QuoteRefundSignatureResponseDto = QuoteRefundSignatureResponseDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], QuoteRefundSignatureResponseDto.prototype, "message", void 0);
|
|
21
|
+
//# sourceMappingURL=quote_refund_signature_response.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_refund_signature_response.dto.js","sourceRoot":"","sources":["../../../../../../src/modules/quote/domain/dto/refund/quote_refund_signature_response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAE7C,MAAa,+BAA+B;CAO3C;AAPD,0EAOC;AADC;IADC,IAAA,4BAAU,GAAE;;gEACG"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './quote_affiliate_action.enum';
|
|
2
|
+
export * from './quote_affiliate_lifecycle.enum';
|
|
3
|
+
export * from './quote_intent_type.enum';
|
|
4
|
+
export * from './quote_request_action.enum';
|
|
5
|
+
export * from './quote_request_lifecycle.enum';
|
|
6
|
+
export * from './quote_response_action.enum';
|
|
7
|
+
export * from './quote_response_lifecycle.enum';
|
|
8
|
+
export * from './selection_status.enum';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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("./quote_affiliate_action.enum"), exports);
|
|
18
|
+
__exportStar(require("./quote_affiliate_lifecycle.enum"), exports);
|
|
19
|
+
__exportStar(require("./quote_intent_type.enum"), exports);
|
|
20
|
+
__exportStar(require("./quote_request_action.enum"), exports);
|
|
21
|
+
__exportStar(require("./quote_request_lifecycle.enum"), exports);
|
|
22
|
+
__exportStar(require("./quote_response_action.enum"), exports);
|
|
23
|
+
__exportStar(require("./quote_response_lifecycle.enum"), exports);
|
|
24
|
+
__exportStar(require("./selection_status.enum"), exports);
|
|
25
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA8C;AAC9C,mEAAiD;AACjD,2DAAyC;AACzC,8DAA4C;AAC5C,iEAA+C;AAC/C,+DAA6C;AAC7C,kEAAgD;AAChD,0DAAwC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_affiliate_action.enum.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_affiliate_action.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,iCAAiC;IAC3C,IAAI,IAAI;CACT"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteAffiliateLifecycleActionType = void 0;
|
|
4
|
+
var QuoteAffiliateLifecycleActionType;
|
|
5
|
+
(function (QuoteAffiliateLifecycleActionType) {
|
|
6
|
+
QuoteAffiliateLifecycleActionType[QuoteAffiliateLifecycleActionType["NONE"] = 1] = "NONE";
|
|
7
|
+
})(QuoteAffiliateLifecycleActionType || (exports.QuoteAffiliateLifecycleActionType = QuoteAffiliateLifecycleActionType = {}));
|
|
8
|
+
//# sourceMappingURL=quote_affiliate_action.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_affiliate_action.enum.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_affiliate_action.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,iCAEX;AAFD,WAAY,iCAAiC;IAC3C,yFAAQ,CAAA;AACV,CAAC,EAFW,iCAAiC,iDAAjC,iCAAiC,QAE5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum QuoteAffiliateLifecycleStage {
|
|
2
|
+
NONE = 1
|
|
3
|
+
}
|
|
4
|
+
export declare enum QuoteAffiliateLifecycleState {
|
|
5
|
+
NONE = 1
|
|
6
|
+
}
|
|
7
|
+
export declare enum QuoteAffiliateLifecycleStatus {
|
|
8
|
+
NONE = 1,
|
|
9
|
+
SUCCESS = 2,
|
|
10
|
+
PENDING = 3,
|
|
11
|
+
EXPIRED = 4,
|
|
12
|
+
FAILURE = 5,
|
|
13
|
+
IN_PROGRESS = 6
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=quote_affiliate_lifecycle.enum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_affiliate_lifecycle.enum.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,4BAA4B;IACtC,IAAI,IAAI;CACT;AAED,oBAAY,4BAA4B;IAEtC,IAAI,IAAI;CACT;AAED,oBAAY,6BAA6B;IACvC,IAAI,IAAI;IACR,OAAO,IAAA;IACP,OAAO,IAAA;IACP,OAAO,IAAA;IACP,OAAO,IAAA;IACP,WAAW,IAAA;CACZ"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteAffiliateLifecycleStatus = exports.QuoteAffiliateLifecycleState = exports.QuoteAffiliateLifecycleStage = void 0;
|
|
4
|
+
var QuoteAffiliateLifecycleStage;
|
|
5
|
+
(function (QuoteAffiliateLifecycleStage) {
|
|
6
|
+
QuoteAffiliateLifecycleStage[QuoteAffiliateLifecycleStage["NONE"] = 1] = "NONE";
|
|
7
|
+
})(QuoteAffiliateLifecycleStage || (exports.QuoteAffiliateLifecycleStage = QuoteAffiliateLifecycleStage = {}));
|
|
8
|
+
var QuoteAffiliateLifecycleState;
|
|
9
|
+
(function (QuoteAffiliateLifecycleState) {
|
|
10
|
+
// entrance stage
|
|
11
|
+
QuoteAffiliateLifecycleState[QuoteAffiliateLifecycleState["NONE"] = 1] = "NONE";
|
|
12
|
+
})(QuoteAffiliateLifecycleState || (exports.QuoteAffiliateLifecycleState = QuoteAffiliateLifecycleState = {}));
|
|
13
|
+
var QuoteAffiliateLifecycleStatus;
|
|
14
|
+
(function (QuoteAffiliateLifecycleStatus) {
|
|
15
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["NONE"] = 1] = "NONE";
|
|
16
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["SUCCESS"] = 2] = "SUCCESS";
|
|
17
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["PENDING"] = 3] = "PENDING";
|
|
18
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["EXPIRED"] = 4] = "EXPIRED";
|
|
19
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["FAILURE"] = 5] = "FAILURE";
|
|
20
|
+
QuoteAffiliateLifecycleStatus[QuoteAffiliateLifecycleStatus["IN_PROGRESS"] = 6] = "IN_PROGRESS";
|
|
21
|
+
})(QuoteAffiliateLifecycleStatus || (exports.QuoteAffiliateLifecycleStatus = QuoteAffiliateLifecycleStatus = {}));
|
|
22
|
+
//# sourceMappingURL=quote_affiliate_lifecycle.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_affiliate_lifecycle.enum.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_affiliate_lifecycle.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,4BAEX;AAFD,WAAY,4BAA4B;IACtC,+EAAQ,CAAA;AACV,CAAC,EAFW,4BAA4B,4CAA5B,4BAA4B,QAEvC;AAED,IAAY,4BAGX;AAHD,WAAY,4BAA4B;IACtC,iBAAiB;IACjB,+EAAQ,CAAA;AACV,CAAC,EAHW,4BAA4B,4CAA5B,4BAA4B,QAGvC;AAED,IAAY,6BAOX;AAPD,WAAY,6BAA6B;IACvC,iFAAQ,CAAA;IACR,uFAAO,CAAA;IACP,uFAAO,CAAA;IACP,uFAAO,CAAA;IACP,uFAAO,CAAA;IACP,+FAAW,CAAA;AACb,CAAC,EAPW,6BAA6B,6CAA7B,6BAA6B,QAOxC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_intent_type.enum.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_intent_type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,MAAM,IAAI;CACX"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteIntentType = void 0;
|
|
4
|
+
var QuoteIntentType;
|
|
5
|
+
(function (QuoteIntentType) {
|
|
6
|
+
QuoteIntentType[QuoteIntentType["BRIDGE"] = 1] = "BRIDGE";
|
|
7
|
+
})(QuoteIntentType || (exports.QuoteIntentType = QuoteIntentType = {}));
|
|
8
|
+
//# sourceMappingURL=quote_intent_type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_intent_type.enum.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_intent_type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAEX;AAFD,WAAY,eAAe;IACzB,yDAAU,CAAA;AACZ,CAAC,EAFW,eAAe,+BAAf,eAAe,QAE1B"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum QuoteRequestLifecycleActionType {
|
|
2
|
+
NONE = 1,
|
|
3
|
+
CREATE_QUOTE_REQUEST = 2,
|
|
4
|
+
QUOTE_REQUEST_ANSWERED = 3,
|
|
5
|
+
QUOTE_REQUEST_NOT_ANSWERED = 4,
|
|
6
|
+
INITIATED_QUOTE_REQUEST_TRANSACTION = 5,
|
|
7
|
+
QUOTE_REQUEST_TRANSACTION_INITIATION_EXPIRED = 6,
|
|
8
|
+
QUOTE_REQUEST_TRANSACTION_CONFIRMED = 7,
|
|
9
|
+
QUOTE_REQUEST_TRANSACTION_NOT_CONFIRMED = 8,
|
|
10
|
+
SOLVING_QUOTE_REQUEST = 9,
|
|
11
|
+
SOLVING_QUOTE_REQUEST_TIMED_OUT = 10,
|
|
12
|
+
QUOTE_REQUEST_REFUND_SIGNATURE = 11,
|
|
13
|
+
SOLVED_QUOTE_REQUEST = 12,
|
|
14
|
+
QUOTE_REQUEST_REFUNDED = 13
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=quote_request_action.enum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_request_action.enum.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_request_action.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,+BAA+B;IACzC,IAAI,IAAI;IAER,oBAAoB,IAAA;IAEpB,sBAAsB,IAAA;IACtB,0BAA0B,IAAA;IAE1B,mCAAmC,IAAA;IACnC,4CAA4C,IAAA;IAE5C,mCAAmC,IAAA;IACnC,uCAAuC,IAAA;IAEvC,qBAAqB,IAAA;IAErB,+BAA+B,KAAA;IAE/B,8BAA8B,KAAA;IAE9B,oBAAoB,KAAA;IAEpB,sBAAsB,KAAA;CACvB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteRequestLifecycleActionType = void 0;
|
|
4
|
+
var QuoteRequestLifecycleActionType;
|
|
5
|
+
(function (QuoteRequestLifecycleActionType) {
|
|
6
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["NONE"] = 1] = "NONE";
|
|
7
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["CREATE_QUOTE_REQUEST"] = 2] = "CREATE_QUOTE_REQUEST";
|
|
8
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_ANSWERED"] = 3] = "QUOTE_REQUEST_ANSWERED";
|
|
9
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_NOT_ANSWERED"] = 4] = "QUOTE_REQUEST_NOT_ANSWERED";
|
|
10
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["INITIATED_QUOTE_REQUEST_TRANSACTION"] = 5] = "INITIATED_QUOTE_REQUEST_TRANSACTION";
|
|
11
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_TRANSACTION_INITIATION_EXPIRED"] = 6] = "QUOTE_REQUEST_TRANSACTION_INITIATION_EXPIRED";
|
|
12
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_TRANSACTION_CONFIRMED"] = 7] = "QUOTE_REQUEST_TRANSACTION_CONFIRMED";
|
|
13
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_TRANSACTION_NOT_CONFIRMED"] = 8] = "QUOTE_REQUEST_TRANSACTION_NOT_CONFIRMED";
|
|
14
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["SOLVING_QUOTE_REQUEST"] = 9] = "SOLVING_QUOTE_REQUEST";
|
|
15
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["SOLVING_QUOTE_REQUEST_TIMED_OUT"] = 10] = "SOLVING_QUOTE_REQUEST_TIMED_OUT";
|
|
16
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_REFUND_SIGNATURE"] = 11] = "QUOTE_REQUEST_REFUND_SIGNATURE";
|
|
17
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["SOLVED_QUOTE_REQUEST"] = 12] = "SOLVED_QUOTE_REQUEST";
|
|
18
|
+
QuoteRequestLifecycleActionType[QuoteRequestLifecycleActionType["QUOTE_REQUEST_REFUNDED"] = 13] = "QUOTE_REQUEST_REFUNDED";
|
|
19
|
+
})(QuoteRequestLifecycleActionType || (exports.QuoteRequestLifecycleActionType = QuoteRequestLifecycleActionType = {}));
|
|
20
|
+
//# sourceMappingURL=quote_request_action.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_request_action.enum.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_request_action.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,+BAuBX;AAvBD,WAAY,+BAA+B;IACzC,qFAAQ,CAAA;IAER,qHAAoB,CAAA;IAEpB,yHAAsB,CAAA;IACtB,iIAA0B,CAAA;IAE1B,mJAAmC,CAAA;IACnC,qKAA4C,CAAA;IAE5C,mJAAmC,CAAA;IACnC,2JAAuC,CAAA;IAEvC,uHAAqB,CAAA;IAErB,4IAA+B,CAAA;IAE/B,0IAA8B,CAAA;IAE9B,sHAAoB,CAAA;IAEpB,0HAAsB,CAAA;AACxB,CAAC,EAvBW,+BAA+B,+CAA/B,+BAA+B,QAuB1C"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare enum QuoteRequestLifecycleStage {
|
|
2
|
+
NONE = 1,
|
|
3
|
+
ENTRANCE = 2,
|
|
4
|
+
RETENTION = 3,
|
|
5
|
+
TERMINATION = 4
|
|
6
|
+
}
|
|
7
|
+
export declare enum QuoteRequestLifecycleState {
|
|
8
|
+
NONE = 1,
|
|
9
|
+
CREATION = 2,
|
|
10
|
+
ESTIMATED = 3,// => success transition of creation
|
|
11
|
+
RESPONSE_SELECTED = 4,// => success transition of ESTIMATED
|
|
12
|
+
TX_INITIATED = 5,// => pending transition of answered
|
|
13
|
+
TX_CONFIRMED = 6,// => success transition of tx_initiated, in this state we will move response quote to another state INIT_SOLVING and notify solver if solver responded we will success transition request to solving if not will keep trying to notify solver
|
|
14
|
+
SOLVING = 7,// => in_progress transition of tx_confirmed
|
|
15
|
+
SOLVING_TIMED_OUT = 8,// => expired transition of solving
|
|
16
|
+
REFUND_SIGNATURE = 9,// => pending transition of solving_timedout
|
|
17
|
+
NO_ESTIMATION = 10,// => failure transition of creation
|
|
18
|
+
INITIATION_EXPIRED = 11,// => expired transition of RESPONSE_SELECTED
|
|
19
|
+
TX_NOT_CONFIRMED = 12,// => failure transition of tx_initiated
|
|
20
|
+
SOLVED = 13,// => success transition of solving
|
|
21
|
+
REFUNDED = 14
|
|
22
|
+
}
|
|
23
|
+
export declare enum QuoteRequestLifecycleStatus {
|
|
24
|
+
NONE = 1,
|
|
25
|
+
SUCCESS = 2,
|
|
26
|
+
PENDING = 3,
|
|
27
|
+
EXPIRED = 4,
|
|
28
|
+
FAILURE = 5,
|
|
29
|
+
IN_PROGRESS = 6
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=quote_request_lifecycle.enum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_request_lifecycle.enum.d.ts","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_request_lifecycle.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,0BAA0B;IACpC,IAAI,IAAI;IACR,QAAQ,IAAA;IACR,SAAS,IAAA;IACT,WAAW,IAAA;CACZ;AAED,oBAAY,0BAA0B;IAEpC,IAAI,IAAI;IACR,QAAQ,IAAA;IACR,SAAS,IAAA,CAAE,oCAAoC;IAC/C,iBAAiB,IAAA,CAAE,qCAAqC;IACxD,YAAY,IAAA,CAAE,oCAAoC;IAGlD,YAAY,IAAA,CAAE,8OAA8O;IAC5P,OAAO,IAAA,CAAE,4CAA4C;IACrD,iBAAiB,IAAA,CAAE,mCAAmC;IACtD,gBAAgB,IAAA,CAAE,4CAA4C;IAG9D,aAAa,KAAA,CAAE,oCAAoC;IACnD,kBAAkB,KAAA,CAAE,6CAA6C;IACjE,gBAAgB,KAAA,CAAE,wCAAwC;IAC1D,MAAM,KAAA,CAAE,mCAAmC;IAC3C,QAAQ,KAAA;CACT;AAED,oBAAY,2BAA2B;IACrC,IAAI,IAAI;IACR,OAAO,IAAA;IACP,OAAO,IAAA;IACP,OAAO,IAAA;IACP,OAAO,IAAA;IACP,WAAW,IAAA;CACZ"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QuoteRequestLifecycleStatus = exports.QuoteRequestLifecycleState = exports.QuoteRequestLifecycleStage = void 0;
|
|
4
|
+
var QuoteRequestLifecycleStage;
|
|
5
|
+
(function (QuoteRequestLifecycleStage) {
|
|
6
|
+
QuoteRequestLifecycleStage[QuoteRequestLifecycleStage["NONE"] = 1] = "NONE";
|
|
7
|
+
QuoteRequestLifecycleStage[QuoteRequestLifecycleStage["ENTRANCE"] = 2] = "ENTRANCE";
|
|
8
|
+
QuoteRequestLifecycleStage[QuoteRequestLifecycleStage["RETENTION"] = 3] = "RETENTION";
|
|
9
|
+
QuoteRequestLifecycleStage[QuoteRequestLifecycleStage["TERMINATION"] = 4] = "TERMINATION";
|
|
10
|
+
})(QuoteRequestLifecycleStage || (exports.QuoteRequestLifecycleStage = QuoteRequestLifecycleStage = {}));
|
|
11
|
+
var QuoteRequestLifecycleState;
|
|
12
|
+
(function (QuoteRequestLifecycleState) {
|
|
13
|
+
// entrance stage
|
|
14
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["NONE"] = 1] = "NONE";
|
|
15
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["CREATION"] = 2] = "CREATION";
|
|
16
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["ESTIMATED"] = 3] = "ESTIMATED";
|
|
17
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["RESPONSE_SELECTED"] = 4] = "RESPONSE_SELECTED";
|
|
18
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["TX_INITIATED"] = 5] = "TX_INITIATED";
|
|
19
|
+
// retention stage
|
|
20
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["TX_CONFIRMED"] = 6] = "TX_CONFIRMED";
|
|
21
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["SOLVING"] = 7] = "SOLVING";
|
|
22
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["SOLVING_TIMED_OUT"] = 8] = "SOLVING_TIMED_OUT";
|
|
23
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["REFUND_SIGNATURE"] = 9] = "REFUND_SIGNATURE";
|
|
24
|
+
// termination stage
|
|
25
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["NO_ESTIMATION"] = 10] = "NO_ESTIMATION";
|
|
26
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["INITIATION_EXPIRED"] = 11] = "INITIATION_EXPIRED";
|
|
27
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["TX_NOT_CONFIRMED"] = 12] = "TX_NOT_CONFIRMED";
|
|
28
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["SOLVED"] = 13] = "SOLVED";
|
|
29
|
+
QuoteRequestLifecycleState[QuoteRequestLifecycleState["REFUNDED"] = 14] = "REFUNDED";
|
|
30
|
+
})(QuoteRequestLifecycleState || (exports.QuoteRequestLifecycleState = QuoteRequestLifecycleState = {}));
|
|
31
|
+
var QuoteRequestLifecycleStatus;
|
|
32
|
+
(function (QuoteRequestLifecycleStatus) {
|
|
33
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["NONE"] = 1] = "NONE";
|
|
34
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["SUCCESS"] = 2] = "SUCCESS";
|
|
35
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["PENDING"] = 3] = "PENDING";
|
|
36
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["EXPIRED"] = 4] = "EXPIRED";
|
|
37
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["FAILURE"] = 5] = "FAILURE";
|
|
38
|
+
QuoteRequestLifecycleStatus[QuoteRequestLifecycleStatus["IN_PROGRESS"] = 6] = "IN_PROGRESS";
|
|
39
|
+
})(QuoteRequestLifecycleStatus || (exports.QuoteRequestLifecycleStatus = QuoteRequestLifecycleStatus = {}));
|
|
40
|
+
//# sourceMappingURL=quote_request_lifecycle.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote_request_lifecycle.enum.js","sourceRoot":"","sources":["../../../../../src/modules/quote/domain/enums/quote_request_lifecycle.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,0BAKX;AALD,WAAY,0BAA0B;IACpC,2EAAQ,CAAA;IACR,mFAAQ,CAAA;IACR,qFAAS,CAAA;IACT,yFAAW,CAAA;AACb,CAAC,EALW,0BAA0B,0CAA1B,0BAA0B,QAKrC;AAED,IAAY,0BAoBX;AApBD,WAAY,0BAA0B;IACpC,iBAAiB;IACjB,2EAAQ,CAAA;IACR,mFAAQ,CAAA;IACR,qFAAS,CAAA;IACT,qGAAiB,CAAA;IACjB,2FAAY,CAAA;IAEZ,kBAAkB;IAClB,2FAAY,CAAA;IACZ,iFAAO,CAAA;IACP,qGAAiB,CAAA;IACjB,mGAAgB,CAAA;IAEhB,oBAAoB;IACpB,8FAAa,CAAA;IACb,wGAAkB,CAAA;IAClB,oGAAgB,CAAA;IAChB,gFAAM,CAAA;IACN,oFAAQ,CAAA;AACV,CAAC,EApBW,0BAA0B,0CAA1B,0BAA0B,QAoBrC;AAED,IAAY,2BAOX;AAPD,WAAY,2BAA2B;IACrC,6EAAQ,CAAA;IACR,mFAAO,CAAA;IACP,mFAAO,CAAA;IACP,mFAAO,CAAA;IACP,mFAAO,CAAA;IACP,2FAAW,CAAA;AACb,CAAC,EAPW,2BAA2B,2CAA3B,2BAA2B,QAOtC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum QuoteResponseLifecycleActionType {
|
|
2
|
+
NONE = 1,
|
|
3
|
+
CREATE_QUOTE_RESPONSE = 2,
|
|
4
|
+
QUOTE_RESPONSE_NOT_SELECTED = 3,
|
|
5
|
+
QUOTE_RESPONSE_SELECTED = 4,
|
|
6
|
+
QUOTE_RESPONSE_REQUEST_CANCELED = 5,
|
|
7
|
+
QUOTE_RESPONSE_INITIATE_SOLVING = 6,
|
|
8
|
+
QUOTE_RESPONSE_CHECK_SOLVE_STATE = 7,
|
|
9
|
+
FULFILLED_QUOTE_RESPONSE = 8,
|
|
10
|
+
QUOTE_RESPONSE_TIMED_OUT = 9
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=quote_response_action.enum.d.ts.map
|