meshtrade 1.0.1__py3-none-any.whl → 1.1.0__py3-none-any.whl
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/common/__init__.py +2 -4
- meshtrade/common/config.py +3 -4
- meshtrade/iam/api_user/v1/service_pb2_grpc.py +0 -53
- meshtrade/iam/role/v1/role_pb2.py +2 -2
- meshtrade/iam/role/v1/role_pb2.pyi +4 -4
- meshtrade/reporting/{income_report → account_report}/v1/__init__.py +20 -16
- meshtrade/reporting/account_report/v1/account_report_pb2.py +46 -0
- meshtrade/reporting/account_report/v1/account_report_pb2.pyi +48 -0
- meshtrade/reporting/{income_report → account_report}/v1/disclaimer_pb2.py +7 -7
- meshtrade/reporting/account_report/v1/fee_entry_pb2.py +39 -0
- meshtrade/reporting/account_report/v1/fee_entry_pb2.pyi +26 -0
- meshtrade/reporting/account_report/v1/income_entry_pb2.py +42 -0
- meshtrade/reporting/{income_report/v1/entry_pb2.pyi → account_report/v1/income_entry_pb2.pyi} +10 -10
- meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py +4 -0
- meshtrade/reporting/{income_report → account_report}/v1/service_meshpy.py +35 -35
- meshtrade/reporting/{income_report → account_report}/v1/service_options_meshpy.py +3 -3
- meshtrade/reporting/account_report/v1/service_pb2.py +59 -0
- meshtrade/reporting/account_report/v1/service_pb2.pyi +42 -0
- meshtrade/reporting/account_report/v1/service_pb2_grpc.py +157 -0
- meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py +39 -0
- meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.pyi +30 -0
- meshtrade/reporting/account_report/v1/trading_statement_entry_pb2_grpc.py +4 -0
- {meshtrade-1.0.1.dist-info → meshtrade-1.1.0.dist-info}/METADATA +1 -1
- {meshtrade-1.0.1.dist-info → meshtrade-1.1.0.dist-info}/RECORD +30 -24
- meshtrade/reporting/income_report/v1/entry_pb2.py +0 -42
- meshtrade/reporting/income_report/v1/income_report_pb2.py +0 -44
- meshtrade/reporting/income_report/v1/income_report_pb2.pyi +0 -42
- meshtrade/reporting/income_report/v1/service_pb2.py +0 -58
- meshtrade/reporting/income_report/v1/service_pb2.pyi +0 -37
- meshtrade/reporting/income_report/v1/service_pb2_grpc.py +0 -170
- /meshtrade/reporting/{income_report/v1/disclaimer_pb2_grpc.py → account_report/v1/account_report_pb2_grpc.py} +0 -0
- /meshtrade/reporting/{income_report → account_report}/v1/disclaimer_pb2.pyi +0 -0
- /meshtrade/reporting/{income_report/v1/entry_pb2_grpc.py → account_report/v1/disclaimer_pb2_grpc.py} +0 -0
- /meshtrade/reporting/{income_report/v1/income_report_pb2_grpc.py → account_report/v1/fee_entry_pb2_grpc.py} +0 -0
- {meshtrade-1.0.1.dist-info → meshtrade-1.1.0.dist-info}/WHEEL +0 -0
- {meshtrade-1.0.1.dist-info → meshtrade-1.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Code generated by protoc-gen-meshpy. DO NOT EDIT.
|
|
2
|
-
# source: meshtrade/reporting/
|
|
2
|
+
# source: meshtrade/reporting/account_report/v1/service.proto
|
|
3
3
|
|
|
4
4
|
"""
|
|
5
|
-
|
|
5
|
+
AccountReportService gRPC service wrapper with authentication, timeouts, and resource management.
|
|
6
6
|
|
|
7
|
-
This module provides a high-level gRPC service for the
|
|
7
|
+
This module provides a high-level gRPC service for the AccountReportService service that combines
|
|
8
8
|
the service interface with resource management capabilities, providing authentication,
|
|
9
9
|
timeouts, and proper connection handling.
|
|
10
10
|
"""
|
|
@@ -17,29 +17,29 @@ from meshtrade.iam.api_user.v1.api_credentials import find_credentials
|
|
|
17
17
|
|
|
18
18
|
from .service_options_meshpy import ServiceOptions
|
|
19
19
|
from .service_pb2 import (
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
AccountReport,
|
|
21
|
+
GetAccountReportRequest,
|
|
22
|
+
GetExcelAccountReportRequest,
|
|
23
|
+
GetExcelAccountReportResponse,
|
|
24
24
|
)
|
|
25
|
-
from .service_pb2_grpc import
|
|
25
|
+
from .service_pb2_grpc import AccountReportServiceStub
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
def
|
|
29
|
-
"""Factory function to create
|
|
30
|
-
return
|
|
28
|
+
def _create_accountreportservice_stub(channel):
|
|
29
|
+
"""Factory function to create AccountReportServiceStub from gRPC channel."""
|
|
30
|
+
return AccountReportServiceStub(channel)
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
class
|
|
34
|
-
"""
|
|
33
|
+
class AccountReportService(BaseGRPCClient):
|
|
34
|
+
"""AccountReportService gRPC service with authentication, timeouts, and resource management.
|
|
35
35
|
|
|
36
|
-
This service provides a complete implementation of the
|
|
36
|
+
This service provides a complete implementation of the AccountReportService with proper authentication, timeout handling, and automatic resource cleanup.
|
|
37
37
|
|
|
38
|
-
Full Service documentation: https://meshtrade.github.io/api/docs/api-reference/reporting/
|
|
38
|
+
Full Service documentation: https://meshtrade.github.io/api/docs/api-reference/reporting/account_report/v1
|
|
39
39
|
|
|
40
40
|
Basic service usage with default SDK Configuration:
|
|
41
41
|
```python
|
|
42
|
-
service =
|
|
42
|
+
service = AccountReportService()
|
|
43
43
|
|
|
44
44
|
with service: # `with` ensures proper clean up of underlying connection after use
|
|
45
45
|
response = service.get_api_user(request)
|
|
@@ -70,7 +70,7 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
70
70
|
timeout=timedelta(seconds=60)
|
|
71
71
|
)
|
|
72
72
|
|
|
73
|
-
service =
|
|
73
|
+
service = AccountReportService(options)
|
|
74
74
|
|
|
75
75
|
with service: # `with` ensures proper clean up of underlying connection after use
|
|
76
76
|
response = service.get_api_user(request)
|
|
@@ -80,9 +80,9 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
80
80
|
"""
|
|
81
81
|
|
|
82
82
|
def __init__(self, options: Optional[ServiceOptions] = None):
|
|
83
|
-
"""Construct and initialize the
|
|
83
|
+
"""Construct and initialize the AccountReportService service.
|
|
84
84
|
|
|
85
|
-
Full Service documentation: https://meshtrade.github.io/api/docs/api-reference/reporting/
|
|
85
|
+
Full Service documentation: https://meshtrade.github.io/api/docs/api-reference/reporting/account_report/v1
|
|
86
86
|
|
|
87
87
|
Args:
|
|
88
88
|
options: Optional ServiceOptions for configuring the service.
|
|
@@ -104,7 +104,7 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
104
104
|
Example:
|
|
105
105
|
```python
|
|
106
106
|
# construct with default configuration
|
|
107
|
-
service =
|
|
107
|
+
service = AccountReportService()
|
|
108
108
|
|
|
109
109
|
# construct with custom configuration
|
|
110
110
|
options = ServiceOptions(
|
|
@@ -112,7 +112,7 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
112
112
|
api_key="your-key",
|
|
113
113
|
group="groups/your-group"
|
|
114
114
|
)
|
|
115
|
-
service =
|
|
115
|
+
service = AccountReportService(options)
|
|
116
116
|
```
|
|
117
117
|
"""
|
|
118
118
|
if options is None:
|
|
@@ -120,8 +120,8 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
120
120
|
|
|
121
121
|
# Initialize the base client with all common functionality
|
|
122
122
|
super().__init__(
|
|
123
|
-
service_name="
|
|
124
|
-
stub_factory=
|
|
123
|
+
service_name="AccountReportService",
|
|
124
|
+
stub_factory=_create_accountreportservice_stub,
|
|
125
125
|
find_credentials_func=find_credentials,
|
|
126
126
|
url=options.url,
|
|
127
127
|
port=options.port,
|
|
@@ -131,39 +131,39 @@ class IncomeReportService(BaseGRPCClient):
|
|
|
131
131
|
tls=options.tls,
|
|
132
132
|
)
|
|
133
133
|
|
|
134
|
-
def
|
|
135
|
-
"""
|
|
134
|
+
def get_account_report(self, request: GetAccountReportRequest, timeout: Optional[timedelta] = None) -> AccountReport:
|
|
135
|
+
"""GetAccountReport method.
|
|
136
136
|
|
|
137
137
|
Args:
|
|
138
|
-
request: The
|
|
138
|
+
request: The GetAccountReport request message
|
|
139
139
|
timeout: Optional timeout override for this call
|
|
140
140
|
|
|
141
141
|
Returns:
|
|
142
|
-
The
|
|
142
|
+
The GetAccountReport response message
|
|
143
143
|
|
|
144
144
|
Raises:
|
|
145
145
|
grpc.RpcError: If the gRPC call fails
|
|
146
146
|
ValueError: If authentication credentials are missing
|
|
147
147
|
"""
|
|
148
|
-
return self._execute_method("
|
|
148
|
+
return self._execute_method("GetAccountReport", request, timeout)
|
|
149
149
|
|
|
150
|
-
def
|
|
151
|
-
"""
|
|
150
|
+
def get_excel_account_report(self, request: GetExcelAccountReportRequest, timeout: Optional[timedelta] = None) -> GetExcelAccountReportResponse:
|
|
151
|
+
"""GetExcelAccountReport method.
|
|
152
152
|
|
|
153
153
|
Args:
|
|
154
|
-
request: The
|
|
154
|
+
request: The GetExcelAccountReport request message
|
|
155
155
|
timeout: Optional timeout override for this call
|
|
156
156
|
|
|
157
157
|
Returns:
|
|
158
|
-
The
|
|
158
|
+
The GetExcelAccountReport response message
|
|
159
159
|
|
|
160
160
|
Raises:
|
|
161
161
|
grpc.RpcError: If the gRPC call fails
|
|
162
162
|
ValueError: If authentication credentials are missing
|
|
163
163
|
"""
|
|
164
|
-
return self._execute_method("
|
|
164
|
+
return self._execute_method("GetExcelAccountReport", request, timeout)
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
# Create aliases to match expected exports
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
AccountReportServiceGRPCClient = AccountReportService
|
|
169
|
+
AccountReportServiceGRPCClientInterface = AccountReportService
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Code generated by protoc-gen-meshpy. DO NOT EDIT.
|
|
2
|
-
# source: meshtrade/reporting/
|
|
2
|
+
# source: meshtrade/reporting/account_report/v1/service.proto
|
|
3
3
|
|
|
4
4
|
"""
|
|
5
|
-
Configuration options for
|
|
5
|
+
Configuration options for AccountReportService gRPC service.
|
|
6
6
|
This module provides a clean, extensible way to configure the service with optional
|
|
7
7
|
parameters while maintaining backward compatibility and readability.
|
|
8
8
|
"""
|
|
@@ -11,7 +11,7 @@ from datetime import timedelta
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class ServiceOptions:
|
|
14
|
-
"""Configuration options for
|
|
14
|
+
"""Configuration options for AccountReportService gRPC service.
|
|
15
15
|
|
|
16
16
|
This class provides a clean, extensible way to configure the service with optional
|
|
17
17
|
parameters while maintaining backward compatibility and readability.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: meshtrade/reporting/account_report/v1/service.proto
|
|
5
|
+
# Protobuf Python Version: 6.31.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
31,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'meshtrade/reporting/account_report/v1/service.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
|
|
26
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
27
|
+
from meshtrade.iam.role.v1 import role_pb2 as meshtrade_dot_iam_dot_role_dot_v1_dot_role__pb2
|
|
28
|
+
from meshtrade.option.v1 import method_type_pb2 as meshtrade_dot_option_dot_v1_dot_method__type__pb2
|
|
29
|
+
from meshtrade.reporting.account_report.v1 import account_report_pb2 as meshtrade_dot_reporting_dot_account__report_dot_v1_dot_account__report__pb2
|
|
30
|
+
from meshtrade.type.v1 import token_pb2 as meshtrade_dot_type_dot_v1_dot_token__pb2
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3meshtrade/reporting/account_report/v1/service.proto\x12%meshtrade.reporting.account_report.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a meshtrade/iam/role/v1/role.proto\x1a%meshtrade/option/v1/method_type.proto\x1a:meshtrade/reporting/account_report/v1/account_report.proto\x1a\x1dmeshtrade/type/v1/token.proto\"\xea\x01\n\x17GetAccountReportRequest\x12%\n\x0e\x61\x63\x63ount_number\x18\x01 \x01(\tR\raccountNumber\x12.\n\x04\x66rom\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x04\x66rom\x12*\n\x02to\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x02to\x12L\n\x15reporting_asset_token\x18\x04 \x01(\x0b\x32\x18.meshtrade.type.v1.TokenR\x13reportingAssetToken\"\xdd\x03\n\x1cGetExcelAccountReportRequest\x12\x90\x01\n\x0e\x61\x63\x63ount_number\x18\x01 \x01(\tBi\xbaHfr\x0f\x10\x01\x32\x0b^[0-9]{1,}$\xba\x01R\n\x17\x61\x63\x63ount_number.required\x12\x1a\x61\x63\x63ount_number is required\x1a\x1bthis.matches(\'^[0-9]{1,}$\')R\raccountNumber\x12q\n\x04\x66rom\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampBA\xbaH>\xba\x01;\n\rfrom.required\x12\x1c\'from\' timestamp is required\x1a\x0cthis != nullR\x04\x66rom\x12i\n\x02to\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB=\xbaH:\xba\x01\x37\n\x0bto.required\x12\x1a\'to\' timestamp is required\x1a\x0cthis != nullR\x02to\x12L\n\x15reporting_asset_token\x18\x04 \x01(\x0b\x32\x18.meshtrade.type.v1.TokenR\x13reportingAssetToken\"B\n\x1dGetExcelAccountReportResponse\x12!\n\x0c\x65xcel_base64\x18\x01 \x01(\tR\x0b\x65xcelBase642\xee\x02\n\x14\x41\x63\x63ountReportService\x12\x9c\x01\n\x10GetAccountReport\x12>.meshtrade.reporting.account_report.v1.GetAccountReportRequest\x1a\x34.meshtrade.reporting.account_report.v1.AccountReport\"\x12\xa0\xb5\x18\x01\xaa\xb5\x18\n\n\x08\x80\x9b\xee\x02\x81\x9b\xee\x02\x12\xb6\x01\n\x15GetExcelAccountReport\x12\x43.meshtrade.reporting.account_report.v1.GetExcelAccountReportRequest\x1a\x44.meshtrade.reporting.account_report.v1.GetExcelAccountReportResponse\"\x12\xa0\xb5\x18\x01\xaa\xb5\x18\n\n\x08\x80\x9b\xee\x02\x81\x9b\xee\x02\x42x\n,co.meshtrade.api.reporting.account_report.v1ZHgithub.com/meshtrade/api/go/reporting/account_report/v1;account_reportv1b\x06proto3')
|
|
34
|
+
|
|
35
|
+
_globals = globals()
|
|
36
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
37
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.reporting.account_report.v1.service_pb2', _globals)
|
|
38
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
39
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
40
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n,co.meshtrade.api.reporting.account_report.v1ZHgithub.com/meshtrade/api/go/reporting/account_report/v1;account_reportv1'
|
|
41
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['account_number']._loaded_options = None
|
|
42
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['account_number']._serialized_options = b'\272Hfr\017\020\0012\013^[0-9]{1,}$\272\001R\n\027account_number.required\022\032account_number is required\032\033this.matches(\'^[0-9]{1,}$\')'
|
|
43
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['from']._loaded_options = None
|
|
44
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['from']._serialized_options = b'\272H>\272\001;\n\rfrom.required\022\034\'from\' timestamp is required\032\014this != null'
|
|
45
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['to']._loaded_options = None
|
|
46
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST'].fields_by_name['to']._serialized_options = b'\272H:\272\0017\n\013to.required\022\032\'to\' timestamp is required\032\014this != null'
|
|
47
|
+
_globals['_ACCOUNTREPORTSERVICE'].methods_by_name['GetAccountReport']._loaded_options = None
|
|
48
|
+
_globals['_ACCOUNTREPORTSERVICE'].methods_by_name['GetAccountReport']._serialized_options = b'\240\265\030\001\252\265\030\n\n\010\200\233\356\002\201\233\356\002'
|
|
49
|
+
_globals['_ACCOUNTREPORTSERVICE'].methods_by_name['GetExcelAccountReport']._loaded_options = None
|
|
50
|
+
_globals['_ACCOUNTREPORTSERVICE'].methods_by_name['GetExcelAccountReport']._serialized_options = b'\240\265\030\001\252\265\030\n\n\010\200\233\356\002\201\233\356\002'
|
|
51
|
+
_globals['_GETACCOUNTREPORTREQUEST']._serialized_start=321
|
|
52
|
+
_globals['_GETACCOUNTREPORTREQUEST']._serialized_end=555
|
|
53
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST']._serialized_start=558
|
|
54
|
+
_globals['_GETEXCELACCOUNTREPORTREQUEST']._serialized_end=1035
|
|
55
|
+
_globals['_GETEXCELACCOUNTREPORTRESPONSE']._serialized_start=1037
|
|
56
|
+
_globals['_GETEXCELACCOUNTREPORTRESPONSE']._serialized_end=1103
|
|
57
|
+
_globals['_ACCOUNTREPORTSERVICE']._serialized_start=1106
|
|
58
|
+
_globals['_ACCOUNTREPORTSERVICE']._serialized_end=1472
|
|
59
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
|
|
3
|
+
from buf.validate import validate_pb2 as _validate_pb2
|
|
4
|
+
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
5
|
+
from meshtrade.iam.role.v1 import role_pb2 as _role_pb2
|
|
6
|
+
from meshtrade.option.v1 import method_type_pb2 as _method_type_pb2
|
|
7
|
+
from meshtrade.reporting.account_report.v1 import account_report_pb2 as _account_report_pb2
|
|
8
|
+
from meshtrade.type.v1 import token_pb2 as _token_pb2
|
|
9
|
+
from google.protobuf import descriptor as _descriptor
|
|
10
|
+
from google.protobuf import message as _message
|
|
11
|
+
from collections.abc import Mapping as _Mapping
|
|
12
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
13
|
+
|
|
14
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
15
|
+
|
|
16
|
+
class GetAccountReportRequest(_message.Message):
|
|
17
|
+
__slots__ = ("account_number", "to", "reporting_asset_token")
|
|
18
|
+
ACCOUNT_NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
FROM_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
TO_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
REPORTING_ASSET_TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
account_number: str
|
|
23
|
+
to: _timestamp_pb2.Timestamp
|
|
24
|
+
reporting_asset_token: _token_pb2.Token
|
|
25
|
+
def __init__(self, account_number: _Optional[str] = ..., to: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., reporting_asset_token: _Optional[_Union[_token_pb2.Token, _Mapping]] = ..., **kwargs) -> None: ...
|
|
26
|
+
|
|
27
|
+
class GetExcelAccountReportRequest(_message.Message):
|
|
28
|
+
__slots__ = ("account_number", "to", "reporting_asset_token")
|
|
29
|
+
ACCOUNT_NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
FROM_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
TO_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
REPORTING_ASSET_TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
account_number: str
|
|
34
|
+
to: _timestamp_pb2.Timestamp
|
|
35
|
+
reporting_asset_token: _token_pb2.Token
|
|
36
|
+
def __init__(self, account_number: _Optional[str] = ..., to: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., reporting_asset_token: _Optional[_Union[_token_pb2.Token, _Mapping]] = ..., **kwargs) -> None: ...
|
|
37
|
+
|
|
38
|
+
class GetExcelAccountReportResponse(_message.Message):
|
|
39
|
+
__slots__ = ("excel_base64",)
|
|
40
|
+
EXCEL_BASE64_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
excel_base64: str
|
|
42
|
+
def __init__(self, excel_base64: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from meshtrade.reporting.account_report.v1 import account_report_pb2 as meshtrade_dot_reporting_dot_account__report_dot_v1_dot_account__report__pb2
|
|
6
|
+
from meshtrade.reporting.account_report.v1 import service_pb2 as meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AccountReportServiceStub(object):
|
|
10
|
+
"""
|
|
11
|
+
AccountReportService manages comprehensive account activity report generation and export.
|
|
12
|
+
|
|
13
|
+
This service allows clients to retrieve structured account reports containing
|
|
14
|
+
income entries, fee transactions, and trading statements, as well as download
|
|
15
|
+
them as Excel files. Reports are generated for a specified account over a
|
|
16
|
+
given time range with all values denominated in the account's reporting currency.
|
|
17
|
+
|
|
18
|
+
All operations require Reporting domain permissions and operate within
|
|
19
|
+
the authenticated group context.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self, channel):
|
|
23
|
+
"""Constructor.
|
|
24
|
+
|
|
25
|
+
Args:
|
|
26
|
+
channel: A grpc.Channel.
|
|
27
|
+
"""
|
|
28
|
+
self.GetAccountReport = channel.unary_unary(
|
|
29
|
+
'/meshtrade.reporting.account_report.v1.AccountReportService/GetAccountReport',
|
|
30
|
+
request_serializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetAccountReportRequest.SerializeToString,
|
|
31
|
+
response_deserializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_account__report__pb2.AccountReport.FromString,
|
|
32
|
+
_registered_method=True)
|
|
33
|
+
self.GetExcelAccountReport = channel.unary_unary(
|
|
34
|
+
'/meshtrade.reporting.account_report.v1.AccountReportService/GetExcelAccountReport',
|
|
35
|
+
request_serializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportRequest.SerializeToString,
|
|
36
|
+
response_deserializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportResponse.FromString,
|
|
37
|
+
_registered_method=True)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class AccountReportServiceServicer(object):
|
|
41
|
+
"""
|
|
42
|
+
AccountReportService manages comprehensive account activity report generation and export.
|
|
43
|
+
|
|
44
|
+
This service allows clients to retrieve structured account reports containing
|
|
45
|
+
income entries, fee transactions, and trading statements, as well as download
|
|
46
|
+
them as Excel files. Reports are generated for a specified account over a
|
|
47
|
+
given time range with all values denominated in the account's reporting currency.
|
|
48
|
+
|
|
49
|
+
All operations require Reporting domain permissions and operate within
|
|
50
|
+
the authenticated group context.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def GetAccountReport(self, request, context):
|
|
54
|
+
"""
|
|
55
|
+
Retrieves a structured account report for the given account, within the given time range
|
|
56
|
+
denominated in the given reporting asset token.
|
|
57
|
+
"""
|
|
58
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
59
|
+
context.set_details('Method not implemented!')
|
|
60
|
+
raise NotImplementedError('Method not implemented!')
|
|
61
|
+
|
|
62
|
+
def GetExcelAccountReport(self, request, context):
|
|
63
|
+
"""
|
|
64
|
+
Retrieves a structured account report for the given account, within the given time range
|
|
65
|
+
denominated in the given reporting asset token, exported to an Excel file that can be downloaded.
|
|
66
|
+
"""
|
|
67
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
68
|
+
context.set_details('Method not implemented!')
|
|
69
|
+
raise NotImplementedError('Method not implemented!')
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def add_AccountReportServiceServicer_to_server(servicer, server):
|
|
73
|
+
rpc_method_handlers = {
|
|
74
|
+
'GetAccountReport': grpc.unary_unary_rpc_method_handler(
|
|
75
|
+
servicer.GetAccountReport,
|
|
76
|
+
request_deserializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetAccountReportRequest.FromString,
|
|
77
|
+
response_serializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_account__report__pb2.AccountReport.SerializeToString,
|
|
78
|
+
),
|
|
79
|
+
'GetExcelAccountReport': grpc.unary_unary_rpc_method_handler(
|
|
80
|
+
servicer.GetExcelAccountReport,
|
|
81
|
+
request_deserializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportRequest.FromString,
|
|
82
|
+
response_serializer=meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportResponse.SerializeToString,
|
|
83
|
+
),
|
|
84
|
+
}
|
|
85
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
86
|
+
'meshtrade.reporting.account_report.v1.AccountReportService', rpc_method_handlers)
|
|
87
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
88
|
+
server.add_registered_method_handlers('meshtrade.reporting.account_report.v1.AccountReportService', rpc_method_handlers)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
# This class is part of an EXPERIMENTAL API.
|
|
92
|
+
class AccountReportService(object):
|
|
93
|
+
"""
|
|
94
|
+
AccountReportService manages comprehensive account activity report generation and export.
|
|
95
|
+
|
|
96
|
+
This service allows clients to retrieve structured account reports containing
|
|
97
|
+
income entries, fee transactions, and trading statements, as well as download
|
|
98
|
+
them as Excel files. Reports are generated for a specified account over a
|
|
99
|
+
given time range with all values denominated in the account's reporting currency.
|
|
100
|
+
|
|
101
|
+
All operations require Reporting domain permissions and operate within
|
|
102
|
+
the authenticated group context.
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
@staticmethod
|
|
106
|
+
def GetAccountReport(request,
|
|
107
|
+
target,
|
|
108
|
+
options=(),
|
|
109
|
+
channel_credentials=None,
|
|
110
|
+
call_credentials=None,
|
|
111
|
+
insecure=False,
|
|
112
|
+
compression=None,
|
|
113
|
+
wait_for_ready=None,
|
|
114
|
+
timeout=None,
|
|
115
|
+
metadata=None):
|
|
116
|
+
return grpc.experimental.unary_unary(
|
|
117
|
+
request,
|
|
118
|
+
target,
|
|
119
|
+
'/meshtrade.reporting.account_report.v1.AccountReportService/GetAccountReport',
|
|
120
|
+
meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetAccountReportRequest.SerializeToString,
|
|
121
|
+
meshtrade_dot_reporting_dot_account__report_dot_v1_dot_account__report__pb2.AccountReport.FromString,
|
|
122
|
+
options,
|
|
123
|
+
channel_credentials,
|
|
124
|
+
insecure,
|
|
125
|
+
call_credentials,
|
|
126
|
+
compression,
|
|
127
|
+
wait_for_ready,
|
|
128
|
+
timeout,
|
|
129
|
+
metadata,
|
|
130
|
+
_registered_method=True)
|
|
131
|
+
|
|
132
|
+
@staticmethod
|
|
133
|
+
def GetExcelAccountReport(request,
|
|
134
|
+
target,
|
|
135
|
+
options=(),
|
|
136
|
+
channel_credentials=None,
|
|
137
|
+
call_credentials=None,
|
|
138
|
+
insecure=False,
|
|
139
|
+
compression=None,
|
|
140
|
+
wait_for_ready=None,
|
|
141
|
+
timeout=None,
|
|
142
|
+
metadata=None):
|
|
143
|
+
return grpc.experimental.unary_unary(
|
|
144
|
+
request,
|
|
145
|
+
target,
|
|
146
|
+
'/meshtrade.reporting.account_report.v1.AccountReportService/GetExcelAccountReport',
|
|
147
|
+
meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportRequest.SerializeToString,
|
|
148
|
+
meshtrade_dot_reporting_dot_account__report_dot_v1_dot_service__pb2.GetExcelAccountReportResponse.FromString,
|
|
149
|
+
options,
|
|
150
|
+
channel_credentials,
|
|
151
|
+
insecure,
|
|
152
|
+
call_credentials,
|
|
153
|
+
compression,
|
|
154
|
+
wait_for_ready,
|
|
155
|
+
timeout,
|
|
156
|
+
metadata,
|
|
157
|
+
_registered_method=True)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: meshtrade/reporting/account_report/v1/trading_statement_entry.proto
|
|
5
|
+
# Protobuf Python Version: 6.31.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
31,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'meshtrade/reporting/account_report/v1/trading_statement_entry.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
26
|
+
from meshtrade.type.v1 import amount_pb2 as meshtrade_dot_type_dot_v1_dot_amount__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nCmeshtrade/reporting/account_report/v1/trading_statement_entry.proto\x12%meshtrade.reporting.account_report.v1\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1emeshtrade/type/v1/amount.proto\"\x8e\x03\n\x15TradingStatementEntry\x12\x45\n\x10transaction_date\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0ftransactionDate\x12%\n\x0etransaction_id\x18\x02 \x01(\tR\rtransactionId\x12\x1d\n\ntoken_code\x18\x03 \x01(\tR\ttokenCode\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12\x31\n\x06\x61mount\x18\x05 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x06\x61mount\x12/\n\x05price\x18\x06 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x05price\x12-\n\x04\x63ost\x18\x07 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x04\x63ost\x12\x33\n\x07\x62\x61lance\x18\x08 \x01(\x0b\x32\x19.meshtrade.type.v1.AmountR\x07\x62\x61lanceBx\n,co.meshtrade.api.reporting.account_report.v1ZHgithub.com/meshtrade/api/go/reporting/account_report/v1;account_reportv1b\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.reporting.account_report.v1.trading_statement_entry_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n,co.meshtrade.api.reporting.account_report.v1ZHgithub.com/meshtrade/api/go/reporting/account_report/v1;account_reportv1'
|
|
37
|
+
_globals['_TRADINGSTATEMENTENTRY']._serialized_start=176
|
|
38
|
+
_globals['_TRADINGSTATEMENTENTRY']._serialized_end=574
|
|
39
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
|
|
3
|
+
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
4
|
+
from meshtrade.type.v1 import amount_pb2 as _amount_pb2
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import message as _message
|
|
7
|
+
from collections.abc import Mapping as _Mapping
|
|
8
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
9
|
+
|
|
10
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
11
|
+
|
|
12
|
+
class TradingStatementEntry(_message.Message):
|
|
13
|
+
__slots__ = ("transaction_date", "transaction_id", "token_code", "description", "amount", "price", "cost", "balance")
|
|
14
|
+
TRANSACTION_DATE_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
TRANSACTION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
TOKEN_CODE_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
PRICE_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
COST_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
BALANCE_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
transaction_date: _timestamp_pb2.Timestamp
|
|
23
|
+
transaction_id: str
|
|
24
|
+
token_code: str
|
|
25
|
+
description: str
|
|
26
|
+
amount: _amount_pb2.Amount
|
|
27
|
+
price: _amount_pb2.Amount
|
|
28
|
+
cost: _amount_pb2.Amount
|
|
29
|
+
balance: _amount_pb2.Amount
|
|
30
|
+
def __init__(self, transaction_date: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., transaction_id: _Optional[str] = ..., token_code: _Optional[str] = ..., description: _Optional[str] = ..., amount: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ..., price: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ..., cost: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ..., balance: _Optional[_Union[_amount_pb2.Amount, _Mapping]] = ...) -> None: ...
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
buf/validate/validate_pb2.py,sha256=o1fP90GZz_DPMchPV02HBcVus2k6HzqgBDnbBlFfA3Q,153929
|
|
2
2
|
buf/validate/validate_pb2.pyi,sha256=fUPIBbzonV2mNAClFBYe0BBALoKeFoR_oCYordTjyy0,30793
|
|
3
3
|
meshtrade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
meshtrade/common/__init__.py,sha256=
|
|
5
|
-
meshtrade/common/config.py,sha256=
|
|
4
|
+
meshtrade/common/__init__.py,sha256=E0nRoma1sWcEYNqKfr6TI4tL7JDh7MlLeEfne5HKzIM,555
|
|
5
|
+
meshtrade/common/config.py,sha256=X9KPOirRqWOdpqoFyhHVXC4HgmZ9voI8vCjetQYSaH0,810
|
|
6
6
|
meshtrade/common/grpc_client.py,sha256=xb-E1uFSH_gC1P8CMn-oRzASgcHHfvGoH5wBR0bzYeU,6950
|
|
7
7
|
meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -68,7 +68,7 @@ meshtrade/iam/api_user/v1/service_meshpy.py,sha256=hLkfRqm1NPll_GVLlCOXnAsJEQo88
|
|
|
68
68
|
meshtrade/iam/api_user/v1/service_options_meshpy.py,sha256=hkWJmNCsNDQ_OBdwZBK_zAUgl-B9ZsddmcrPfF7PyZI,2541
|
|
69
69
|
meshtrade/iam/api_user/v1/service_pb2.py,sha256=VUcxM629vCkz4nGoxLXfL3XK4rvvC1mbbmaIAPE3wxE,8298
|
|
70
70
|
meshtrade/iam/api_user/v1/service_pb2.pyi,sha256=cmQuOBMR0C1IRB8CoAcri6YiGtaSjf7p7QmBHvX_bt4,2607
|
|
71
|
-
meshtrade/iam/api_user/v1/service_pb2_grpc.py,sha256=
|
|
71
|
+
meshtrade/iam/api_user/v1/service_pb2_grpc.py,sha256=vOcfWseMyD9qna9QSZ1ilf7WfwByC_OFypvz7SycATc,17683
|
|
72
72
|
meshtrade/iam/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
meshtrade/iam/group/v1/__init__.py,sha256=ROAaDtQDxNt7RHOfUlTmc4Oh5xoJo2x8UN-UPofIVuA,1969
|
|
74
74
|
meshtrade/iam/group/v1/group_pb2.py,sha256=CiOEf0edDOEl4EnRNyJRElfZPG3Vb0nJG8jQW0HKjBg,1592
|
|
@@ -81,8 +81,8 @@ meshtrade/iam/group/v1/service_pb2.pyi,sha256=iRJatuY5NV8VSi1qnntCEFH4liq8Y-Jd88
|
|
|
81
81
|
meshtrade/iam/group/v1/service_pb2_grpc.py,sha256=1eCMHXbtrCxokUUoWkRVpL_xpzxTTYqqg9NIZ1Hm1OA,7001
|
|
82
82
|
meshtrade/iam/role/v1/__init__.py,sha256=xW5_jhEKdb9xYNri0thNpvXAsEa1cqPmjI0XS8BPvQM,1527
|
|
83
83
|
meshtrade/iam/role/v1/role.py,sha256=4uIWnaM5RcrTUlkv8NLHrjPU9AonoPJotdQ496IQnLM,795
|
|
84
|
-
meshtrade/iam/role/v1/role_pb2.py,sha256=
|
|
85
|
-
meshtrade/iam/role/v1/role_pb2.pyi,sha256=
|
|
84
|
+
meshtrade/iam/role/v1/role_pb2.py,sha256=8_rtmPtnYX7R9RowSpAhhKcpKCEMWR7QSN8UW8Ns1Ds,2761
|
|
85
|
+
meshtrade/iam/role/v1/role_pb2.pyi,sha256=_hkVw764rDL_TcL4QGPWPr14lk46c8Rjp-PeWfMr91U,1838
|
|
86
86
|
meshtrade/iam/role/v1/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
87
87
|
meshtrade/iam/user/v1/__init__.py,sha256=Of7OG_BzVdVqnmSFdu0b_8s6JSXsDrQ1SCUdNW2cO5M,1762
|
|
88
88
|
meshtrade/iam/user/v1/service_meshpy.py,sha256=a_1TSUDBD4WXfsfDG1uWN05ZD_69_uEJD0ymwSNpaC0,5672
|
|
@@ -106,21 +106,27 @@ meshtrade/option/v1/__init__.py,sha256=B8U0UVf7gUA3D5si5m8H5il7Hy_-KLeLaeGtizQVV
|
|
|
106
106
|
meshtrade/option/v1/method_type_pb2.py,sha256=zUEIrZTPEh2ZTwvQlh9W6_be5i4e211D7EYXrHPxJ58,1937
|
|
107
107
|
meshtrade/option/v1/method_type_pb2.pyi,sha256=dR04xeb0M19uqhXb8veCxlWylJ7G_G32-mkuzztGaQw,680
|
|
108
108
|
meshtrade/option/v1/method_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
109
|
-
meshtrade/reporting/
|
|
110
|
-
meshtrade/reporting/
|
|
111
|
-
meshtrade/reporting/
|
|
112
|
-
meshtrade/reporting/
|
|
113
|
-
meshtrade/reporting/
|
|
114
|
-
meshtrade/reporting/
|
|
115
|
-
meshtrade/reporting/
|
|
116
|
-
meshtrade/reporting/
|
|
117
|
-
meshtrade/reporting/
|
|
118
|
-
meshtrade/reporting/
|
|
119
|
-
meshtrade/reporting/
|
|
120
|
-
meshtrade/reporting/
|
|
121
|
-
meshtrade/reporting/
|
|
122
|
-
meshtrade/reporting/
|
|
123
|
-
meshtrade/reporting/
|
|
109
|
+
meshtrade/reporting/account_report/v1/__init__.py,sha256=VW6rnEZMntUvEX7kIRbCKzmcPE2MKULC1r1nz7Wr6Wg,2290
|
|
110
|
+
meshtrade/reporting/account_report/v1/account_report_pb2.py,sha256=cf3sgK0VCXhuipufjP98iheWNh4m6SehlwEvWTrOa8Q,4340
|
|
111
|
+
meshtrade/reporting/account_report/v1/account_report_pb2.pyi,sha256=Pl3bghpyeZa-iRjZY3eZPFViRuGoxVA6ssLi5gvetkk,3459
|
|
112
|
+
meshtrade/reporting/account_report/v1/account_report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
113
|
+
meshtrade/reporting/account_report/v1/disclaimer_pb2.py,sha256=izllJKgqoCYQiTpccCykDjXHBrYPYlcF0cshJE_mRKM,1831
|
|
114
|
+
meshtrade/reporting/account_report/v1/disclaimer_pb2.pyi,sha256=bQfBKSVLo5flu6ZO36weavNoRdF9OgO293GpxdeLQic,504
|
|
115
|
+
meshtrade/reporting/account_report/v1/disclaimer_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
116
|
+
meshtrade/reporting/account_report/v1/fee_entry_pb2.py,sha256=Ox6p8bHVvX_lx4-iAe3XQtMb4n3KW-11yHmwRVS9WqU,2460
|
|
117
|
+
meshtrade/reporting/account_report/v1/fee_entry_pb2.pyi,sha256=jdOoKWwRsthoV-Ed_aI4FzxexlIueJSn8f_O4jw9sdM,1435
|
|
118
|
+
meshtrade/reporting/account_report/v1/fee_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
119
|
+
meshtrade/reporting/account_report/v1/income_entry_pb2.py,sha256=GzRBG289a9G56pBrla1hJvS-0tTl7U2zhHzDk-5BOPo,2964
|
|
120
|
+
meshtrade/reporting/account_report/v1/income_entry_pb2.pyi,sha256=UGSDpiL0IagXEVI5qDn6ZpBTM70cL60xJhmwycPe9NI,2051
|
|
121
|
+
meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
122
|
+
meshtrade/reporting/account_report/v1/service_meshpy.py,sha256=1YW3B9dUXYbwdoeHXH1gfpbOB4lQ5C-xebUftY0YRnI,6584
|
|
123
|
+
meshtrade/reporting/account_report/v1/service_options_meshpy.py,sha256=oagptW02D9QtyonYlakMyCbK-zDUm8L5SVkHrcGsNsU,2565
|
|
124
|
+
meshtrade/reporting/account_report/v1/service_pb2.py,sha256=Xh2h0l9WOrEfRuJospy9hL88D333LNTg0fEtB95mtjg,6100
|
|
125
|
+
meshtrade/reporting/account_report/v1/service_pb2.pyi,sha256=k2d9HAxrYIwHhbS4hm25HGoanWkLupiAzg_M7bxRQu0,2184
|
|
126
|
+
meshtrade/reporting/account_report/v1/service_pb2_grpc.py,sha256=sLAV2JMrxkNw8uycB6NL-w5IPsi2h1vqSus4ssVYhxU,7494
|
|
127
|
+
meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py,sha256=Ayk62EfbVzNwkX3AgwBKfdNjbZ03N6MwHen2JEqLWHo,2679
|
|
128
|
+
meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.pyi,sha256=3Ys1u6lu9Zxn9l-2b6jau5_J9lCFrM_X7zDy8bJjkWw,1644
|
|
129
|
+
meshtrade/reporting/account_report/v1/trading_statement_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
124
130
|
meshtrade/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
131
|
meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
132
|
meshtrade/trading/limit_order/v1/__init__.py,sha256=1XwHm6cYfkFdWr1wf-ukjnvoYA-uhh86jjzTBB5xzQI,1818
|
|
@@ -185,7 +191,7 @@ meshtrade/wallet/account/v1/service_options_meshpy.py,sha256=ROVvFr-sub9TMtzHO-s
|
|
|
185
191
|
meshtrade/wallet/account/v1/service_pb2.py,sha256=4huN7EQVoNpqMf5UK9iIyAKUGhWPj-a9OdC2soqXxlQ,5208
|
|
186
192
|
meshtrade/wallet/account/v1/service_pb2.pyi,sha256=PL7ANYkhNYTrC8fXv9Pjfz2x-IeUj8HnytTAn4wnvNU,2132
|
|
187
193
|
meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=lTykth2v98aluqtqaID78HJ6dubXqI0ShpvfFmu3_pY,9480
|
|
188
|
-
meshtrade-1.0.
|
|
189
|
-
meshtrade-1.0.
|
|
190
|
-
meshtrade-1.0.
|
|
191
|
-
meshtrade-1.0.
|
|
194
|
+
meshtrade-1.1.0.dist-info/METADATA,sha256=h0fD_sH5sT8pTPt7rIWeFAi5tjKUe2d0aEY-r03-qSU,3006
|
|
195
|
+
meshtrade-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
196
|
+
meshtrade-1.1.0.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
|
|
197
|
+
meshtrade-1.1.0.dist-info/RECORD,,
|