meshtrade 1.23.0__py3-none-any.whl → 1.23.1__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.

@@ -55,6 +55,13 @@ from .service_meshpy import (
55
55
  #
56
56
  # ===================================================================
57
57
 
58
+ from .client_roles import (
59
+ get_client_default_role_index,
60
+ get_client_default_roles,
61
+ must_get_client_default_role_index,
62
+ must_get_client_default_roles,
63
+ )
64
+
58
65
  # ===================================================================
59
66
  # MODULE EXPORTS
60
67
  # ===================================================================
@@ -84,4 +91,9 @@ __all__ = [
84
91
  "TaxResidency",
85
92
  "Trust",
86
93
  "VerificationStatus",
94
+ # Manual exports
95
+ "get_client_default_role_index",
96
+ "get_client_default_roles",
97
+ "must_get_client_default_role_index",
98
+ "must_get_client_default_roles",
87
99
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -62,7 +62,10 @@ from meshtrade.common import (
62
62
  from .api_credentials import (
63
63
  MESH_API_CREDENTIALS_ENV_VAR,
64
64
  api_credentials_from_environment,
65
+ default_credentials_path,
66
+ find_credentials,
65
67
  load_api_credentials_from_file,
68
+ load_default_credentials,
66
69
  )
67
70
 
68
71
  # ===================================================================
@@ -97,5 +100,8 @@ __all__ = [
97
100
  "MESH_API_CREDENTIALS_ENV_VAR",
98
101
  "api_credentials_from_environment",
99
102
  "create_auth_metadata",
103
+ "default_credentials_path",
104
+ "find_credentials",
100
105
  "load_api_credentials_from_file",
106
+ "load_default_credentials",
101
107
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -29,7 +29,15 @@ from .role_pb2 import Role, RoleList
29
29
  #
30
30
  # ===================================================================
31
31
 
32
- from .role import role_full_resource_name_from_group
32
+ from .role import (
33
+ must_parse_role_parts,
34
+ parse_role_parts,
35
+ role_from_full_resource_name,
36
+ role_full_resource_name_from_group,
37
+ role_full_resource_name_from_group_id,
38
+ role_is_valid,
39
+ role_is_valid_and_specified,
40
+ )
33
41
 
34
42
  # ===================================================================
35
43
  # MODULE EXPORTS
@@ -40,5 +48,11 @@ __all__ = [
40
48
  "Role",
41
49
  "RoleList",
42
50
  # Manual exports
51
+ "must_parse_role_parts",
52
+ "parse_role_parts",
53
+ "role_from_full_resource_name",
43
54
  "role_full_resource_name_from_group",
55
+ "role_full_resource_name_from_group_id",
56
+ "role_is_valid",
57
+ "role_is_valid_and_specified",
44
58
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -43,6 +43,8 @@ from .service_meshpy import (
43
43
  #
44
44
  # ===================================================================
45
45
 
46
+ from .transaction_state_machine import transaction_state_can_perform_action_at_state
47
+
46
48
  # ===================================================================
47
49
  # MODULE EXPORTS
48
50
  # ===================================================================
@@ -58,4 +60,6 @@ __all__ = [
58
60
  "TransactionServiceGRPCClient",
59
61
  "TransactionServiceGRPCClientInterface",
60
62
  "TransactionState",
63
+ # Manual exports
64
+ "transaction_state_can_perform_action_at_state",
61
65
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -147,7 +148,7 @@ class TransactionService(BaseGRPCClient):
147
148
  """
148
149
  return self._execute_method("GetTransactionState", request, timeout)
149
150
 
150
- def monitor_transaction_state(self, request: MonitorTransactionStateRequest, timeout: Optional[timedelta] = None):
151
+ def monitor_transaction_state(self, request: MonitorTransactionStateRequest, timeout: Optional[timedelta] = None) -> Iterator[MonitorTransactionStateResponse]:
151
152
  """MonitorTransactionState server-side streaming method with authentication and validation.
152
153
 
153
154
  Args:
@@ -41,6 +41,8 @@ from .service_meshpy import (
41
41
  #
42
42
  # ===================================================================
43
43
 
44
+ from .income_entry import income_narrative_pretty_string
45
+
44
46
  # ===================================================================
45
47
  # MODULE EXPORTS
46
48
  # ===================================================================
@@ -59,4 +61,6 @@ __all__ = [
59
61
  "IncomeEntry",
60
62
  "IncomeNarrative",
61
63
  "TradingStatementEntry",
64
+ # Manual exports
65
+ "income_narrative_pretty_string",
62
66
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -38,43 +38,80 @@ from .time_of_day_pb2 import TimeOfDay
38
38
  # ===================================================================
39
39
 
40
40
  from .amount import (
41
+ amount_add,
42
+ amount_contains_fractions,
43
+ amount_decimal_div,
44
+ amount_decimal_mul,
45
+ amount_is_equal_to,
46
+ amount_is_negative,
47
+ amount_is_same_type_as,
48
+ amount_is_undefined,
49
+ amount_is_zero,
50
+ amount_set_value,
51
+ amount_sub,
41
52
  new_amount,
53
+ new_undefined_amount,
42
54
  )
43
55
  from .date import (
44
56
  date_add_days,
45
57
  date_add_months,
46
58
  date_add_years,
47
- date_to_python_date,
48
- date_to_string,
49
59
  date_is_after,
50
60
  date_is_after_or_equal,
51
61
  date_is_before,
52
62
  date_is_before_or_equal,
53
63
  date_is_complete,
54
64
  date_is_equal,
65
+ date_is_valid,
66
+ date_to_python_date,
67
+ date_to_string,
55
68
  new_date,
56
69
  new_date_from_python_date,
57
- date_is_valid,
70
+ )
71
+ from .decimal_built_in_conversions import (
72
+ built_in_to_decimal,
73
+ decimal_to_built_in,
74
+ )
75
+ from .decimal_operations import (
76
+ decimal_add,
77
+ decimal_div,
78
+ decimal_equal,
79
+ decimal_greater_than,
80
+ decimal_greater_than_or_equal,
81
+ decimal_is_negative,
82
+ decimal_is_positive,
83
+ decimal_is_zero,
84
+ decimal_less_than,
85
+ decimal_less_than_or_equal,
86
+ decimal_mul,
87
+ decimal_round,
88
+ decimal_sub,
89
+ )
90
+ from .ledger import (
91
+ UnsupportedLedgerError,
92
+ get_ledger_no_decimal_places,
93
+ ledger_is_valid,
94
+ ledger_is_valid_and_defined,
95
+ ledger_to_pretty_string,
58
96
  )
59
97
  from .time_of_day import (
60
- time_of_day_is_midnight,
61
98
  new_time_of_day,
62
99
  new_time_of_day_from_datetime,
63
100
  new_time_of_day_from_python_time,
64
101
  new_time_of_day_from_timedelta,
102
+ time_of_day_is_midnight,
103
+ time_of_day_is_valid,
65
104
  time_of_day_to_datetime_with_date,
66
105
  time_of_day_to_python_time,
67
106
  time_of_day_to_string,
68
107
  time_of_day_to_timedelta,
69
108
  time_of_day_total_seconds,
70
- time_of_day_is_valid,
71
109
  )
72
- from .decimal_built_in_conversions import (
73
- built_in_to_decimal,
74
- decimal_to_built_in,
75
- )
76
- from .ledger import (
77
- get_ledger_no_decimal_places,
110
+ from .token import (
111
+ new_undefined_token,
112
+ token_is_equal_to,
113
+ token_is_undefined,
114
+ token_pretty_string,
78
115
  )
79
116
 
80
117
  # ===================================================================
@@ -93,6 +130,18 @@ __all__ = [
93
130
  "TimeOfDay",
94
131
  "Token",
95
132
  # Manual exports
133
+ "UnsupportedLedgerError",
134
+ "amount_add",
135
+ "amount_contains_fractions",
136
+ "amount_decimal_div",
137
+ "amount_decimal_mul",
138
+ "amount_is_equal_to",
139
+ "amount_is_negative",
140
+ "amount_is_same_type_as",
141
+ "amount_is_undefined",
142
+ "amount_is_zero",
143
+ "amount_set_value",
144
+ "amount_sub",
96
145
  "built_in_to_decimal",
97
146
  "date_add_days",
98
147
  "date_add_months",
@@ -106,8 +155,24 @@ __all__ = [
106
155
  "date_is_valid",
107
156
  "date_to_python_date",
108
157
  "date_to_string",
158
+ "decimal_add",
159
+ "decimal_div",
160
+ "decimal_equal",
161
+ "decimal_greater_than",
162
+ "decimal_greater_than_or_equal",
163
+ "decimal_is_negative",
164
+ "decimal_is_positive",
165
+ "decimal_is_zero",
166
+ "decimal_less_than",
167
+ "decimal_less_than_or_equal",
168
+ "decimal_mul",
169
+ "decimal_round",
170
+ "decimal_sub",
109
171
  "decimal_to_built_in",
110
172
  "get_ledger_no_decimal_places",
173
+ "ledger_is_valid",
174
+ "ledger_is_valid_and_defined",
175
+ "ledger_to_pretty_string",
111
176
  "new_amount",
112
177
  "new_date",
113
178
  "new_date_from_python_date",
@@ -115,6 +180,8 @@ __all__ = [
115
180
  "new_time_of_day_from_datetime",
116
181
  "new_time_of_day_from_python_time",
117
182
  "new_time_of_day_from_timedelta",
183
+ "new_undefined_amount",
184
+ "new_undefined_token",
118
185
  "time_of_day_is_midnight",
119
186
  "time_of_day_is_valid",
120
187
  "time_of_day_to_datetime_with_date",
@@ -122,4 +189,7 @@ __all__ = [
122
189
  "time_of_day_to_string",
123
190
  "time_of_day_to_timedelta",
124
191
  "time_of_day_total_seconds",
192
+ "token_is_equal_to",
193
+ "token_is_undefined",
194
+ "token_pretty_string",
125
195
  ]
@@ -9,6 +9,7 @@ the service interface with resource management capabilities, providing authentic
9
9
  timeouts, and proper connection handling.
10
10
  """
11
11
 
12
+ from collections.abc import Iterator
12
13
  from datetime import timedelta
13
14
  from typing import Optional
14
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshtrade
3
- Version: 1.23.0
3
+ Version: 1.23.1
4
4
  Summary: Integration SDK for Mesh API Services
5
5
  Author-email: Bernard Bussy <bernard@meshtrade.co>
6
6
  License: LicenseRef-My-Custom-License
@@ -7,7 +7,7 @@ meshtrade/common/grpc_client.py,sha256=1gzXEVs4G5ASoezwExw7HX47wZmrrUNnIUkCeMojg
7
7
  meshtrade/common/service_options.py,sha256=DWGVZ7uOMD0mMjNvnYUklxDvuCL6eljbcBomdOfHcfQ,1393
8
8
  meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- meshtrade/compliance/client/v1/__init__.py,sha256=HIqwU8rwiCq-fc-oOK0YDQX-S6nJVim4y9zat4c485Y,2974
10
+ meshtrade/compliance/client/v1/__init__.py,sha256=xYL3vBhG-w8je0QglfD2bPPnQ3nmCaVA5ZkGXMi9ewQ,3314
11
11
  meshtrade/compliance/client/v1/client_pb2.py,sha256=hSmwb5nXYc_0KXcfoXfRGQtrKz_uMXiI14bvj9GOAdg,6529
12
12
  meshtrade/compliance/client/v1/client_pb2.pyi,sha256=j9zwElgm5Ui9-lWWNrtS_-Lu4UWO2_2T7bKlH4GhFSo,2975
13
13
  meshtrade/compliance/client/v1/client_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -39,7 +39,7 @@ meshtrade/compliance/client/v1/natural_person_pb2_grpc.py,sha256=1oboBPFxaTEXt9A
39
39
  meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=6qf7nq4OI_O82nZ3zLlAePbeI24E3rnJxPY8b7wgynU,1819
40
40
  meshtrade/compliance/client/v1/pep_status_pb2.pyi,sha256=jBJjLEjA16K53Ss85Yab_KtrRG_2lWxFYcMJ0QuQpUk,622
41
41
  meshtrade/compliance/client/v1/pep_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
42
- meshtrade/compliance/client/v1/service_meshpy.py,sha256=nNH6-lx3urT10maMfrfQ4U8umO02BC_0WWzI8aKuQoY,6868
42
+ meshtrade/compliance/client/v1/service_meshpy.py,sha256=8OEH6G7Cyp3qCJPN_oDMpnlDxkLqndH0OWuhun-2mn0,6905
43
43
  meshtrade/compliance/client/v1/service_pb2.py,sha256=2efiYdXJGKD5HhZ8nI69J3kqMmeFoW3UueuyBSljBbg,4848
44
44
  meshtrade/compliance/client/v1/service_pb2.pyi,sha256=6QUnoMHP4mog4znO8yepi8hiaOXfYBXWKZiWjO9ZSO8,1438
45
45
  meshtrade/compliance/client/v1/service_pb2_grpc.py,sha256=_gDQ7jNUpTbjh7YGhgDFLwq4_Y0rgmzCMlNPW-s8JWI,8438
@@ -56,7 +56,7 @@ meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=RBI8-LnSLSSv6pV
56
56
  meshtrade/compliance/client/v1/verification_status_pb2.pyi,sha256=kqP24po3o2Ks8HWAoQ-tLlMirCJCKwxlQlWJXWkRmAI,880
57
57
  meshtrade/compliance/client/v1/verification_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
58
58
  meshtrade/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- meshtrade/iam/api_user/v1/__init__.py,sha256=vu_AKFesKXOKQZTdZW2vMRUqL52MZ5qsgfkvSLRqrWY,3034
59
+ meshtrade/iam/api_user/v1/__init__.py,sha256=7Eil0rRCLqVYubjJqt5pUpJBhtKlKciu4m4F4JrSWGY,3204
60
60
  meshtrade/iam/api_user/v1/api_credentials.py,sha256=apo3p_YcncNphbxLXegqoYh35bPydhjR-ULsZ7kj4D4,5272
61
61
  meshtrade/iam/api_user/v1/api_credentials_pb2.py,sha256=ssnkOj_oJWlMPXot99Fp1vn4V5u2zKDmie4hKL49x20,3098
62
62
  meshtrade/iam/api_user/v1/api_credentials_pb2.pyi,sha256=TRv0xnm4VJ62sCMz_utdLvQR_vNQqWH_wCE0mtF3ZsY,547
@@ -66,7 +66,7 @@ meshtrade/iam/api_user/v1/api_user_pb2.pyi,sha256=ke6t8bEYc6QUw6V8GWC7iTqju7-WrY
66
66
  meshtrade/iam/api_user/v1/api_user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
67
67
  meshtrade/iam/api_user/v1/api_user_state_machine.py,sha256=fmi0DcYHwpIcUQ7cm01wf0-g0Oj9GSvT_ry7Y53SlmQ,3274
68
68
  meshtrade/iam/api_user/v1/service.py,sha256=_7-LK9LDkKh7JOQHOryNBE1Xgr-DclAMO2QQhGoumUg,1827
69
- meshtrade/iam/api_user/v1/service_meshpy.py,sha256=i9N8WnN9uu2fcyGEohn7l4owqOKfuUhjAvFGu4hjyRM,10580
69
+ meshtrade/iam/api_user/v1/service_meshpy.py,sha256=tQE0aFvF3hwON0ZIfC_9Lchenqn5RYjz_x68DorYxM8,10617
70
70
  meshtrade/iam/api_user/v1/service_pb2.py,sha256=50ZseqB-n61OIBMxWUYT9tHtXURFZyYSdjhgpG--2R0,11858
71
71
  meshtrade/iam/api_user/v1/service_pb2.pyi,sha256=6EfMPzUQuCUn_Dgzqybv-4Opt62xYGHpfafWhBBsw5A,3173
72
72
  meshtrade/iam/api_user/v1/service_pb2_grpc.py,sha256=PQ06cCgKtjQU6cbQQpT5AaeaK1UFpByZPYVTQlHfG_4,22280
@@ -75,17 +75,17 @@ meshtrade/iam/group/v1/__init__.py,sha256=KAIMS3_Lp-oqlm5dAAZzWRKgbadBffgv0x_K1j
75
75
  meshtrade/iam/group/v1/group_pb2.py,sha256=5VZ1m6uUDm7_dRPP1CPHdBfc35UO_D7BcWscU2fp29c,3187
76
76
  meshtrade/iam/group/v1/group_pb2.pyi,sha256=faBCPlZuc66IfOO4TbJ4QX1B8BuFImnYZTkKaAP8yss,762
77
77
  meshtrade/iam/group/v1/group_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
78
- meshtrade/iam/group/v1/service_meshpy.py,sha256=olni7a8S0i7rHDy75yDYJ1fJ8td-nblJwibIeGlnVxo,7963
78
+ meshtrade/iam/group/v1/service_meshpy.py,sha256=dkwCqVXQdJHDSYMrNc-lCVe1VpVvfcDWN04AOYNlh-Q,8000
79
79
  meshtrade/iam/group/v1/service_pb2.py,sha256=6_rGs0f190vP8QNSXtXwwoWIi30R16s0aZ9rDnTUV1o,10303
80
80
  meshtrade/iam/group/v1/service_pb2.pyi,sha256=xg9tmab0dl6szbEAtmRNBPUOYoSQPSzKF7jALB6I2pY,3370
81
81
  meshtrade/iam/group/v1/service_pb2_grpc.py,sha256=RHubfJy336fjw6TTTGyRASCl51SVIgE4oyl2nTWYeKk,13142
82
- meshtrade/iam/role/v1/__init__.py,sha256=YF1pNfl5gIFb1JETZpVrtFZral09rANuHFDmcPBj12Y,1527
82
+ meshtrade/iam/role/v1/__init__.py,sha256=4VPt1fX9Jl3MtZMmqdHAiFbvzVeujXnTNtV6yULS-44,1904
83
83
  meshtrade/iam/role/v1/role.py,sha256=rMTeqvsSEfSlg8dYsr0BCfgIKeTu5DrTpr8RwuRYTRk,5061
84
84
  meshtrade/iam/role/v1/role_pb2.py,sha256=n4bylzkICavD4uaPInp-T9VBL53JLsa3ppJk6AD1XtM,3635
85
85
  meshtrade/iam/role/v1/role_pb2.pyi,sha256=9zpg4jbD1tVwerq2lIRQ-m8IaNNEKa1esAPOHjolnYw,3048
86
86
  meshtrade/iam/role/v1/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
87
87
  meshtrade/iam/user/v1/__init__.py,sha256=jVIneFgOIOwSZJsXggdUpabdnBJWaLxJ-Cjn_MVB4fk,2034
88
- meshtrade/iam/user/v1/service_meshpy.py,sha256=fHZIcXCTKlGftWMaCFEZYgDHDyUQTErU-FPBsqUc7LI,8493
88
+ meshtrade/iam/user/v1/service_meshpy.py,sha256=mzS9E5Up0lo1xzVCdsozHchJi0TgoSKTlQLNMF5A6nc,8530
89
89
  meshtrade/iam/user/v1/service_pb2.py,sha256=QPQm7uGKqOeZUoaGDhSdUgAjJxjCwWlIyVkNy1EohQk,9554
90
90
  meshtrade/iam/user/v1/service_pb2.pyi,sha256=-jBiRko_1qAVZl3mZ-S2s7HQiXymT_L4ykzlRZON04g,3459
91
91
  meshtrade/iam/user/v1/service_pb2_grpc.py,sha256=3oo77hLOMVOB24jdpOdFgtJVpJVJgfFiNUPeaAEK6ek,15245
@@ -94,8 +94,8 @@ meshtrade/iam/user/v1/user_pb2.pyi,sha256=Z3x3J5zUhHTr-HNjxJ6pTa37KB4fSOeNumY_GC
94
94
  meshtrade/iam/user/v1/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
95
95
  meshtrade/ledger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
96
  meshtrade/ledger/transaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- meshtrade/ledger/transaction/v1/__init__.py,sha256=k3ZedV_AsrhEKWtIdrw5HRgl9IFPppkr1jnSzNVSbCk,2089
98
- meshtrade/ledger/transaction/v1/service_meshpy.py,sha256=BBzwwRMBwY_RaJ5XlYWa0mAPU8SKgOhYR8U0LThgEk4,6882
97
+ meshtrade/ledger/transaction/v1/__init__.py,sha256=tlQ15zreMM-6ZvuK_UYnvtI4XmcDDAr8m2Gt7sBTLA8,2249
98
+ meshtrade/ledger/transaction/v1/service_meshpy.py,sha256=oG0vFTn76V81qKzi3FFBMd4fUtm9u4ELqtTFnYoQchE,6964
99
99
  meshtrade/ledger/transaction/v1/service_pb2.py,sha256=HcCoQH2lgg_b2bsAdK-wC_PJH9oFJlPcRCxW_lAQwnk,5118
100
100
  meshtrade/ledger/transaction/v1/service_pb2.pyi,sha256=zmyLqjewfD-YB-qGe0ft-mAb_5tdVYSDCNC2yz0W3Vc,1462
101
101
  meshtrade/ledger/transaction/v1/service_pb2_grpc.py,sha256=7ywyNP7SSRJRh80ShSuFo9PzPNYc1kPFBNxpteT_R9Y,5737
@@ -110,7 +110,7 @@ meshtrade/option/v1/__init__.py,sha256=B8U0UVf7gUA3D5si5m8H5il7Hy_-KLeLaeGtizQVV
110
110
  meshtrade/option/v1/method_type_pb2.py,sha256=73cTzlRaEeeshTkvOmUBMYJJtPlyT5Sp8zOaCqeiBB0,1939
111
111
  meshtrade/option/v1/method_type_pb2.pyi,sha256=dR04xeb0M19uqhXb8veCxlWylJ7G_G32-mkuzztGaQw,680
112
112
  meshtrade/option/v1/method_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
113
- meshtrade/reporting/account_report/v1/__init__.py,sha256=-9aMSuvjMsh4p2LTnQOD_5jevd3YKyxz9YROsqVJ8hs,2219
113
+ meshtrade/reporting/account_report/v1/__init__.py,sha256=CU7HyXi8fmMrkmmUXPQ3WqNdEAUz-QbVx5LuHwNKwDM,2336
114
114
  meshtrade/reporting/account_report/v1/account_report_pb2.py,sha256=MsSykds_bG5TjXZyoG637L37Vc1V8P1SfsJrhOrQssQ,4369
115
115
  meshtrade/reporting/account_report/v1/account_report_pb2.pyi,sha256=3a4AqxLc_KcMxHAJ0bQOMPR6ra86aD1YbCkZvS59zJk,3645
116
116
  meshtrade/reporting/account_report/v1/account_report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -124,7 +124,7 @@ meshtrade/reporting/account_report/v1/income_entry.py,sha256=RYNYZ53byu2jnOsg3B9
124
124
  meshtrade/reporting/account_report/v1/income_entry_pb2.py,sha256=CYIZB975QcyaiLQ4NVVJnqw08aG81aADAwDROD0_uxk,3170
125
125
  meshtrade/reporting/account_report/v1/income_entry_pb2.pyi,sha256=QMXqSULWde3bEGJJvfc-uovg-4-7psQpeCLMogxkSXs,2491
126
126
  meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
127
- meshtrade/reporting/account_report/v1/service_meshpy.py,sha256=WC-vqmEQOwP2kqGqy2pC3liUy6ugDf0QPtZIzxOWCO4,6624
127
+ meshtrade/reporting/account_report/v1/service_meshpy.py,sha256=hYVx9bMQ73_skZqtNAfCi7rIT17_a12q8QFPFXnACGA,6661
128
128
  meshtrade/reporting/account_report/v1/service_pb2.py,sha256=E-cjoqI75BOltsajgea46BhxRQXpZdBGavY8obqgkQs,7696
129
129
  meshtrade/reporting/account_report/v1/service_pb2.pyi,sha256=DqdHVAGE8kUK4jo1iTykAE8MGlTo186v7iu6XSxexSk,2550
130
130
  meshtrade/reporting/account_report/v1/service_pb2_grpc.py,sha256=z-qbHsZIez7zvTs0SPrr_xrhnpDApi7oYjt5MxfsPss,7340
@@ -147,7 +147,7 @@ meshtrade/trading/limit_order/v1/__init__.py,sha256=RVdPyKjJHyglJbA_PsLB2cImUKOK
147
147
  meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=n0dmnmlM7V80cdFST7D_H5zj4mA57lv2gri7mW6BbKM,1724
148
148
  meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=qqW6yIlOa146Cr7vuiHBLd8DSOvhhUy3CwJJeC52zFU,393
149
149
  meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
150
- meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=oIymMCQ-pSxzEXvQvARksWQeOe6bp3cp0l_0BWOpTFM,5831
150
+ meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=MIuThgmiEA2nk5JA0IwY4nhg6ZmZP5_H5sDcCHRL3Nk,5868
151
151
  meshtrade/trading/limit_order/v1/service_pb2.py,sha256=UHgBFqd2n1CDWu9mW4_cYeyFevBrhrZjq1gG1VlXuvQ,2811
152
152
  meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=L9ZgLzBDaxqIsAYABtVlrY_qe0Co0Ht99USR_307SXc,608
153
153
  meshtrade/trading/limit_order/v1/service_pb2_grpc.py,sha256=ALpSeJl1-3r7jKkcWU7g_QOtks_ZZ7ciVbJgdHvew5k,3390
@@ -155,12 +155,12 @@ meshtrade/trading/market_order/v1/__init__.py,sha256=e2Nh_n5GJW34Z-Wyh-nbg-4hROC
155
155
  meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=Jlp4vNYcULH5fzQvpHsmwg9Gy3KwWoi07vbniEK4ERA,1742
156
156
  meshtrade/trading/market_order/v1/market_order_pb2.pyi,sha256=NaWtrs1iNO8jY5XQRvS1ex3skmVJFTGxdDHdknIDvfI,394
157
157
  meshtrade/trading/market_order/v1/market_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
158
- meshtrade/trading/market_order/v1/service_meshpy.py,sha256=sC5IsOt1XtMJ5h42adJGreld6gjVsllsHB132kQTSl0,5864
158
+ meshtrade/trading/market_order/v1/service_meshpy.py,sha256=L421fbS3XjrCToRrMTUUJRaxcAlyNBvetsBzezRYOc0,5901
159
159
  meshtrade/trading/market_order/v1/service_pb2.py,sha256=EW0Ax6qDvJaqrpWrrb41eLcJEtovNbCjumqlWHmSiKA,2843
160
160
  meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=MIGhHksXG6hw6N-afJEEAR3fUqKoNU2EdfffDcLMO3c,612
161
161
  meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
162
162
  meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
- meshtrade/type/v1/__init__.py,sha256=e3ggm22xjJ4UDqMQlD-4rEOTQI6u_tZ4jlKhsQU0oX4,3521
163
+ meshtrade/type/v1/__init__.py,sha256=INsdGlseKGjpLCmsAnIHnoHb5FNFN68aJxnWL-NVsOU,5208
164
164
  meshtrade/type/v1/address_pb2.py,sha256=3FdfM1n2SRyoHsXJUxo5K6XHFohQJ-Mol1DHkpifrJQ,1860
165
165
  meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
166
166
  meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -200,11 +200,11 @@ meshtrade/wallet/account/v1/__init__.py,sha256=AlqBOQx4qk_O10TrOSy8FEY1mgar-UW8S
200
200
  meshtrade/wallet/account/v1/account_pb2.py,sha256=WAaqC_wu0LgH7pYxtGXfVs64DN1Md2zZrA5uiCaLy9c,6143
201
201
  meshtrade/wallet/account/v1/account_pb2.pyi,sha256=pBm246netSQr8IUwdz62Kq69r063JYBhm33-I4eymKo,3361
202
202
  meshtrade/wallet/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
203
- meshtrade/wallet/account/v1/service_meshpy.py,sha256=PM4emjIDDaSCr_3_4ZaYxY-Czvvud_RrxUZrWCD-EOI,9316
203
+ meshtrade/wallet/account/v1/service_meshpy.py,sha256=n9RS90vovMnngy0gX13e97E8oz-kCmQT8wXDg_BvIv8,9353
204
204
  meshtrade/wallet/account/v1/service_pb2.py,sha256=5nCMFtZlx3T9XPO3cycrjPbSSD7_v0lttuPy2iSDjHg,11527
205
205
  meshtrade/wallet/account/v1/service_pb2.pyi,sha256=-DT_P3Pw7The581dI02FbxT53VpZAK8BtdvvoUTe_Nc,4734
206
206
  meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=yXPgA-VvToS7uQqq8Wla8zttwgesTDYW3hNRUmA4sT4,18555
207
- meshtrade-1.23.0.dist-info/METADATA,sha256=oDdppXNU2dGbTuQEO2a55ZoAa-n-D3eWGpsctwJ6Qgc,3007
208
- meshtrade-1.23.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
209
- meshtrade-1.23.0.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
210
- meshtrade-1.23.0.dist-info/RECORD,,
207
+ meshtrade-1.23.1.dist-info/METADATA,sha256=k58Z8PS9D3mryFTbMylskbk7Bo3A-NplReZYYeA-fjQ,3007
208
+ meshtrade-1.23.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
209
+ meshtrade-1.23.1.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
210
+ meshtrade-1.23.1.dist-info/RECORD,,