meshtrade 0.0.8__tar.gz → 0.0.11__tar.gz
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.
Potentially problematic release.
This version of meshtrade might be problematic. Click here for more details.
- meshtrade-0.0.11/PKG-INFO +95 -0
- meshtrade-0.0.11/README.md +64 -0
- meshtrade-0.0.11/pyproject.toml +85 -0
- meshtrade-0.0.11/python/src/buf/validate/validate_pb2.py +450 -0
- meshtrade-0.0.11/python/src/buf/validate/validate_pb2.pyi +627 -0
- meshtrade-0.0.11/python/src/meshtrade/common/__init__.py +28 -0
- meshtrade-0.0.11/python/src/meshtrade/common/config.py +30 -0
- meshtrade-0.0.11/python/src/meshtrade/common/grpc_client.py +202 -0
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/__init__.py +89 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/client_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/client_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/company_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_representative_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/company_representative_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_representative_role_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/company_representative_role_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/fund_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/fund_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/identification_document_type_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/identification_document_type_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/industry_classification_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/industry_classification_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/natural_person_connection_type_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/natural_person_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/natural_person_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/pep_status_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/pep_status_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/service_meshpy.py +186 -0
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/service_pb2.py +54 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/service_pb2.pyi +8 -0
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/service_pb2_grpc.py +192 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/tax_residency_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/tax_residency_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/trust_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/trust_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/verification_status_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/compliance/client/v1/verification_status_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/__init__.py +99 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_credentials.py +156 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_credentials_pb2.py +42 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_credentials_pb2.pyi +14 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_credentials_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_user_pb2.py +48 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_user_pb2.pyi +49 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/api_user_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service.py +58 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service_meshpy.py +255 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service_pb2.py +77 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service_pb2.pyi +63 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/api_user/v1/service_pb2_grpc.py +458 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/__init__.py +63 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/iam/group/v1/group_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/group_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/service_meshpy.py +187 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/service_pb2.py +56 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/service_pb2.pyi +38 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/group/v1/service_pb2_grpc.py +170 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/role/v1/__init__.py +44 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/role/v1/role.py +23 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/role/v1/role_pb2.py +40 -0
- meshtrade-0.0.8/src/meshtrade/option/v1/auth_pb2.pyi → meshtrade-0.0.11/python/src/meshtrade/iam/role/v1/role_pb2.pyi +16 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/role/v1/role_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/__init__.py +53 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/service_meshpy.py +151 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/service_pb2.py +51 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/service_pb2.pyi +19 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/service_pb2_grpc.py +82 -0
- meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument/v1/instrument_pb2.py → meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/user_pb2.py +7 -7
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/user_pb2.pyi +15 -0
- meshtrade-0.0.11/python/src/meshtrade/iam/user/v1/user_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/ledger/transaction/v1/__init__.py +41 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/ledger/transaction/v1/transaction_action_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/ledger/transaction/v1/transaction_action_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/ledger/transaction/v1/transaction_state_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/ledger/transaction/v1/transaction_state_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/option/v1/__init__.py +39 -0
- meshtrade-0.0.8/src/meshtrade/option/v1/service_type_pb2.py → meshtrade-0.0.11/python/src/meshtrade/option/v1/method_type_pb2.py +7 -7
- meshtrade-0.0.11/python/src/meshtrade/option/v1/method_type_pb2.pyi +17 -0
- meshtrade-0.0.11/python/src/meshtrade/option/v1/method_type_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/limit_order/v1/__init__.py +53 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/trading/limit_order/v1/limit_order_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/limit_order/v1/service_meshpy.py +151 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/limit_order/v1/service_options_meshpy.py +65 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/trading/limit_order/v1/service_pb2.py +10 -6
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/trading/limit_order/v1/service_pb2.pyi +2 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/limit_order/v1/service_pb2_grpc.py +78 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/__init__.py +53 -0
- meshtrade-0.0.8/src/meshtrade/trading/direct_order/v1/direct_order_pb2.py → meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/market_order_pb2.py +7 -7
- meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument/v1/instrument_pb2.pyi → meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/market_order_pb2.pyi +1 -1
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/market_order_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/service_meshpy.py +151 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/service_pb2.py +44 -0
- {meshtrade-0.0.8/src/meshtrade/trading/spot → meshtrade-0.0.11/python/src/meshtrade/trading/market_order}/v1/service_pb2.pyi +4 -2
- meshtrade-0.0.11/python/src/meshtrade/trading/market_order/v1/service_pb2_grpc.py +78 -0
- meshtrade-0.0.11/python/src/meshtrade/type/v1/__init__.py +125 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/address_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/address_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/amount.py +2 -8
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/amount_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/amount_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/contact_details_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/contact_details_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/type/v1/date.py +373 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/date_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/date_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/decimal_built_in_conversions.py +1 -1
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/decimal_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/decimal_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/ledger_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/ledger_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/type/v1/sorting_pb2.py +37 -0
- meshtrade-0.0.11/python/src/meshtrade/type/v1/sorting_pb2.pyi +14 -0
- meshtrade-0.0.11/python/src/meshtrade/type/v1/sorting_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/time_of_day.py +52 -87
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/time_of_day_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/time_of_day_pb2_grpc.py +4 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/token_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/type/v1/token_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/__init__.py +65 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/wallet/account/v1/account_pb2.py +2 -2
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/account_pb2_grpc.py +4 -0
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/service_meshpy.py +204 -0
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/service_options_meshpy.py +65 -0
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/service_pb2.py +61 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/wallet/account/v1/service_pb2.pyi +2 -2
- meshtrade-0.0.11/python/src/meshtrade/wallet/account/v1/service_pb2_grpc.py +222 -0
- meshtrade-0.0.11/python/src/meshtrade.egg-info/PKG-INFO +95 -0
- meshtrade-0.0.11/python/src/meshtrade.egg-info/SOURCES.txt +179 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade.egg-info/requires.txt +5 -1
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade.egg-info/top_level.txt +1 -0
- meshtrade-0.0.8/LICENSE +0 -10
- meshtrade-0.0.8/PKG-INFO +0 -35
- meshtrade-0.0.8/README.md +0 -3
- meshtrade-0.0.8/pyproject.toml +0 -63
- meshtrade-0.0.8/src/meshtrade/compliance/client/v1/__init__.py +0 -31
- meshtrade-0.0.8/src/meshtrade/compliance/client/v1/service_pb2.py +0 -44
- meshtrade-0.0.8/src/meshtrade/iam/group/v1/__init__.py +0 -5
- meshtrade-0.0.8/src/meshtrade/iam/group/v1/service_pb2.py +0 -40
- meshtrade-0.0.8/src/meshtrade/iam/group/v1/service_pb2.pyi +0 -10
- meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument/v1/__init__.py +0 -11
- meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument/v1/service_pb2.py +0 -49
- meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument/v1/service_pb2.pyi +0 -46
- meshtrade-0.0.8/src/meshtrade/ledger/transaction/v1/__init__.py +0 -7
- meshtrade-0.0.8/src/meshtrade/option/v1/__init__.py +0 -7
- meshtrade-0.0.8/src/meshtrade/option/v1/auth_pb2.py +0 -40
- meshtrade-0.0.8/src/meshtrade/option/v1/service_type_pb2.pyi +0 -17
- meshtrade-0.0.8/src/meshtrade/trading/direct_order/v1/__init__.py +0 -7
- meshtrade-0.0.8/src/meshtrade/trading/direct_order/v1/direct_order_pb2.pyi +0 -11
- meshtrade-0.0.8/src/meshtrade/trading/direct_order/v1/service_pb2.py +0 -40
- meshtrade-0.0.8/src/meshtrade/trading/direct_order/v1/service_pb2.pyi +0 -12
- meshtrade-0.0.8/src/meshtrade/trading/limit_order/__init__.py +0 -0
- meshtrade-0.0.8/src/meshtrade/trading/limit_order/v1/__init__.py +0 -7
- meshtrade-0.0.8/src/meshtrade/trading/spot/__init__.py +0 -0
- meshtrade-0.0.8/src/meshtrade/trading/spot/v1/__init__.py +0 -7
- meshtrade-0.0.8/src/meshtrade/trading/spot/v1/service_pb2.py +0 -40
- meshtrade-0.0.8/src/meshtrade/trading/spot/v1/spot_pb2.py +0 -37
- meshtrade-0.0.8/src/meshtrade/trading/spot/v1/spot_pb2.pyi +0 -11
- meshtrade-0.0.8/src/meshtrade/type/__init__.py +0 -0
- meshtrade-0.0.8/src/meshtrade/type/v1/__init__.py +0 -84
- meshtrade-0.0.8/src/meshtrade/type/v1/date.py +0 -201
- meshtrade-0.0.8/src/meshtrade/wallet/__init__.py +0 -0
- meshtrade-0.0.8/src/meshtrade/wallet/account/v1/__init__.py +0 -19
- meshtrade-0.0.8/src/meshtrade/wallet/account/v1/service_pb2.py +0 -61
- meshtrade-0.0.8/src/meshtrade.egg-info/PKG-INFO +0 -35
- meshtrade-0.0.8/src/meshtrade.egg-info/SOURCES.txt +0 -116
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/client_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_representative_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/company_representative_role_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/fund_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/identification_document_type_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/industry_classification_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/natural_person_connection_type_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/natural_person_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/pep_status_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/tax_residency_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/trust_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/compliance/client/v1/verification_status_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/iam/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/iam/group/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/iam/group/v1/group_pb2.pyi +0 -0
- {meshtrade-0.0.8/src/meshtrade/issuance_hub → meshtrade-0.0.11/python/src/meshtrade/ledger}/__init__.py +0 -0
- {meshtrade-0.0.8/src/meshtrade/issuance_hub/instrument → meshtrade-0.0.11/python/src/meshtrade/ledger/transaction}/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/ledger/transaction/v1/transaction_action_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/ledger/transaction/v1/transaction_state_pb2.pyi +0 -0
- {meshtrade-0.0.8/src/meshtrade/ledger → meshtrade-0.0.11/python/src/meshtrade/trading}/__init__.py +0 -0
- {meshtrade-0.0.8/src/meshtrade/ledger/transaction → meshtrade-0.0.11/python/src/meshtrade/trading/limit_order}/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/trading/limit_order/v1/limit_order_pb2.pyi +0 -0
- {meshtrade-0.0.8/src/meshtrade/trading → meshtrade-0.0.11/python/src/meshtrade/type}/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/address_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/amount_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/contact_details_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/date_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/decimal_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/ledger.py +1 -1
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/ledger_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/time_of_day_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/type/v1/token_pb2.pyi +0 -0
- {meshtrade-0.0.8/src/meshtrade/trading/direct_order → meshtrade-0.0.11/python/src/meshtrade/wallet}/__init__.py +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade/wallet/account/v1/account_pb2.pyi +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11/python}/src/meshtrade.egg-info/dependency_links.txt +0 -0
- {meshtrade-0.0.8 → meshtrade-0.0.11}/setup.cfg +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meshtrade
|
|
3
|
+
Version: 0.0.11
|
|
4
|
+
Summary: Integration SDK for Mesh API Services
|
|
5
|
+
Author-email: Bernard Bussy <bernard@meshtrade.co>
|
|
6
|
+
License: LicenseRef-My-Custom-License
|
|
7
|
+
Project-URL: Repository, https://github.com/meshtrade/api
|
|
8
|
+
Keywords: meshtrade,mesh,mesh-sdk,grpc,protobuf
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Requires-Python: >=3.12
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: grpcio<2.0,>=1.74.0
|
|
18
|
+
Requires-Dist: protobuf<7.0,>=6.31.1
|
|
19
|
+
Requires-Dist: googleapis-common-protos<2.0.0,>=1.70.0
|
|
20
|
+
Requires-Dist: protovalidate>=0.13.0
|
|
21
|
+
Requires-Dist: platformdirs<5.0,>=4.3.8
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: ruff~=0.11.13; extra == "dev"
|
|
24
|
+
Requires-Dist: pytest~=8.4.0; extra == "dev"
|
|
25
|
+
Requires-Dist: build~=1.2.2; extra == "dev"
|
|
26
|
+
Requires-Dist: twine~=6.1.0; extra == "dev"
|
|
27
|
+
Requires-Dist: tox~=4.26.0; extra == "dev"
|
|
28
|
+
Requires-Dist: types-protobuf~=6.30.2.20250516; extra == "dev"
|
|
29
|
+
Requires-Dist: grpcio-tools>=1.74.0; extra == "dev"
|
|
30
|
+
Requires-Dist: jinja2>=3.0.0; extra == "dev"
|
|
31
|
+
|
|
32
|
+
# Mesh API
|
|
33
|
+
|
|
34
|
+
Mesh API is a comprehensive gRPC-based [Mesh](https://www.mesh.trade) platform API with multi-language SDK support.
|
|
35
|
+
|
|
36
|
+
## Overview
|
|
37
|
+
|
|
38
|
+
This repository contains:
|
|
39
|
+
|
|
40
|
+
- **Protobuf API definitions** - Schema-first API specifications in `/proto`
|
|
41
|
+
- **Multi-language SDKs** - Generated client libraries for Go, Python, and TypeScript
|
|
42
|
+
- **Documentation** - Complete API documentation and integration guides
|
|
43
|
+
|
|
44
|
+
## Quick Start
|
|
45
|
+
|
|
46
|
+
- Browse the complete documentation: **[meshtrade.github.io/api](https://meshtrade.github.io/api)**
|
|
47
|
+
- View API definitions: `/proto` directory
|
|
48
|
+
|
|
49
|
+
## Repository Structure
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
proto/ # Protobuf API definitions (source of truth)
|
|
53
|
+
go/ # Go SDK
|
|
54
|
+
python/ # Python SDK
|
|
55
|
+
ts/ # TypeScript (web) SDK
|
|
56
|
+
java/ # Java SDK
|
|
57
|
+
dev/ # Development tools (generation, testing, etc.)
|
|
58
|
+
docs/ # Documentation site (Docusaurus)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Development
|
|
62
|
+
|
|
63
|
+
For contributors and maintainers, this repository includes comprehensive development tools:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# Generate all SDKs from protobuf definitions
|
|
67
|
+
./dev/tool.sh all
|
|
68
|
+
|
|
69
|
+
# Run comprehensive tests across all languages
|
|
70
|
+
./dev/tool.sh test
|
|
71
|
+
|
|
72
|
+
# Check development environment health
|
|
73
|
+
./dev/tool.sh doctor
|
|
74
|
+
|
|
75
|
+
# Generate specific language SDKs
|
|
76
|
+
./dev/tool.sh generate --targets=go,python
|
|
77
|
+
|
|
78
|
+
# View all available commands
|
|
79
|
+
./dev/tool.sh help
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
See the [Contributor Guide](https://meshtrade.github.io/api/contributors/) for detailed development instructions.
|
|
83
|
+
|
|
84
|
+
## Documentation
|
|
85
|
+
|
|
86
|
+
Visit documentation site at **[meshtrade.github.io/api](https://meshtrade.github.io/api)** for:
|
|
87
|
+
|
|
88
|
+
- API Integration SDKs and usage examples
|
|
89
|
+
- Complete API reference documentation
|
|
90
|
+
- Development guides and best practices
|
|
91
|
+
- Architecture details & more
|
|
92
|
+
|
|
93
|
+
## License
|
|
94
|
+
|
|
95
|
+
See LICENSE file for details.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Mesh API
|
|
2
|
+
|
|
3
|
+
Mesh API is a comprehensive gRPC-based [Mesh](https://www.mesh.trade) platform API with multi-language SDK support.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This repository contains:
|
|
8
|
+
|
|
9
|
+
- **Protobuf API definitions** - Schema-first API specifications in `/proto`
|
|
10
|
+
- **Multi-language SDKs** - Generated client libraries for Go, Python, and TypeScript
|
|
11
|
+
- **Documentation** - Complete API documentation and integration guides
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
- Browse the complete documentation: **[meshtrade.github.io/api](https://meshtrade.github.io/api)**
|
|
16
|
+
- View API definitions: `/proto` directory
|
|
17
|
+
|
|
18
|
+
## Repository Structure
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
proto/ # Protobuf API definitions (source of truth)
|
|
22
|
+
go/ # Go SDK
|
|
23
|
+
python/ # Python SDK
|
|
24
|
+
ts/ # TypeScript (web) SDK
|
|
25
|
+
java/ # Java SDK
|
|
26
|
+
dev/ # Development tools (generation, testing, etc.)
|
|
27
|
+
docs/ # Documentation site (Docusaurus)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
For contributors and maintainers, this repository includes comprehensive development tools:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# Generate all SDKs from protobuf definitions
|
|
36
|
+
./dev/tool.sh all
|
|
37
|
+
|
|
38
|
+
# Run comprehensive tests across all languages
|
|
39
|
+
./dev/tool.sh test
|
|
40
|
+
|
|
41
|
+
# Check development environment health
|
|
42
|
+
./dev/tool.sh doctor
|
|
43
|
+
|
|
44
|
+
# Generate specific language SDKs
|
|
45
|
+
./dev/tool.sh generate --targets=go,python
|
|
46
|
+
|
|
47
|
+
# View all available commands
|
|
48
|
+
./dev/tool.sh help
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
See the [Contributor Guide](https://meshtrade.github.io/api/contributors/) for detailed development instructions.
|
|
52
|
+
|
|
53
|
+
## Documentation
|
|
54
|
+
|
|
55
|
+
Visit documentation site at **[meshtrade.github.io/api](https://meshtrade.github.io/api)** for:
|
|
56
|
+
|
|
57
|
+
- API Integration SDKs and usage examples
|
|
58
|
+
- Complete API reference documentation
|
|
59
|
+
- Development guides and best practices
|
|
60
|
+
- Architecture details & more
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
|
|
64
|
+
See LICENSE file for details.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "meshtrade"
|
|
7
|
+
version = "0.0.11"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Bernard Bussy", email = "bernard@meshtrade.co" },
|
|
10
|
+
]
|
|
11
|
+
description = "Integration SDK for Mesh API Services"
|
|
12
|
+
requires-python = ">=3.12"
|
|
13
|
+
keywords = ["meshtrade", "mesh", "mesh-sdk", "grpc", "protobuf"]
|
|
14
|
+
license = { text = "LicenseRef-My-Custom-License" }
|
|
15
|
+
readme = "README.md"
|
|
16
|
+
|
|
17
|
+
# Production dependencies - only what SDK users need at runtime
|
|
18
|
+
dependencies = [
|
|
19
|
+
"grpcio >= 1.74.0, < 2.0",
|
|
20
|
+
"protobuf >= 6.31.1, < 7.0",
|
|
21
|
+
"googleapis-common-protos >= 1.70.0, < 2.0.0",
|
|
22
|
+
"protovalidate >= 0.13.0",
|
|
23
|
+
"platformdirs >= 4.3.8, < 5.0"
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
classifiers = [
|
|
27
|
+
"Development Status :: 1 - Planning",
|
|
28
|
+
"Intended Audience :: Developers",
|
|
29
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
30
|
+
"Programming Language :: Python :: 3",
|
|
31
|
+
"Programming Language :: Python :: 3.12",
|
|
32
|
+
"License :: Other/Proprietary License",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Repository = "https://github.com/meshtrade/api"
|
|
37
|
+
|
|
38
|
+
[project.optional-dependencies]
|
|
39
|
+
dev = [
|
|
40
|
+
# Development tools
|
|
41
|
+
"ruff ~= 0.11.13",
|
|
42
|
+
"pytest ~= 8.4.0",
|
|
43
|
+
"build ~= 1.2.2",
|
|
44
|
+
"twine ~= 6.1.0",
|
|
45
|
+
"tox ~= 4.26.0",
|
|
46
|
+
"types-protobuf ~= 6.30.2.20250516",
|
|
47
|
+
|
|
48
|
+
# Code generation dependencies
|
|
49
|
+
"grpcio-tools >= 1.74.0",
|
|
50
|
+
"jinja2 >= 3.0.0",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[tool.setuptools.packages.find]
|
|
54
|
+
where = ["python/src"] # Only ship the SDK from python/src
|
|
55
|
+
|
|
56
|
+
# Ruff configuration
|
|
57
|
+
[tool.ruff]
|
|
58
|
+
target-version = "py312"
|
|
59
|
+
line-length = 150
|
|
60
|
+
exclude = [
|
|
61
|
+
"*_pb2.py",
|
|
62
|
+
"*_pb2.pyi",
|
|
63
|
+
"*_pb2_grpc.py",
|
|
64
|
+
"*_pb2_grpc.pyi",
|
|
65
|
+
"*_meshpy.py",
|
|
66
|
+
".venv",
|
|
67
|
+
"__pycache__",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[tool.ruff.lint]
|
|
71
|
+
select = ["E", "W", "F", "I", "B", "C4", "SIM", "UP", "TID"]
|
|
72
|
+
|
|
73
|
+
[tool.pytest.ini_options]
|
|
74
|
+
testpaths = ["python/tests"]
|
|
75
|
+
python_files = ["test_*.py", "*_test.py"]
|
|
76
|
+
python_classes = ["Test*"]
|
|
77
|
+
python_functions = ["test_*"]
|
|
78
|
+
addopts = "--verbose --tb=short"
|
|
79
|
+
|
|
80
|
+
[tool.ruff.lint.isort]
|
|
81
|
+
known-first-party = ["meshtrade"]
|
|
82
|
+
|
|
83
|
+
[tool.ruff.lint.per-file-ignores]
|
|
84
|
+
# Skip import sorting in __init__.py files to preserve auto-generated structure
|
|
85
|
+
"**/__init__.py" = ["I001"]
|