meshtrade 1.5.0__py3-none-any.whl → 1.7.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.

Files changed (73) hide show
  1. meshtrade/compliance/client/v1/client_pb2.py +2 -2
  2. meshtrade/compliance/client/v1/company_pb2.py +2 -2
  3. meshtrade/compliance/client/v1/company_representative_pb2.py +2 -2
  4. meshtrade/compliance/client/v1/company_representative_role_pb2.py +2 -2
  5. meshtrade/compliance/client/v1/fund_pb2.py +2 -2
  6. meshtrade/compliance/client/v1/identification_document_type_pb2.py +2 -2
  7. meshtrade/compliance/client/v1/industry_classification_pb2.py +2 -2
  8. meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py +2 -2
  9. meshtrade/compliance/client/v1/natural_person_pb2.py +2 -2
  10. meshtrade/compliance/client/v1/pep_status_pb2.py +2 -2
  11. meshtrade/compliance/client/v1/service_pb2.py +2 -2
  12. meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py +2 -2
  13. meshtrade/compliance/client/v1/tax_residency_pb2.py +2 -2
  14. meshtrade/compliance/client/v1/trust_pb2.py +2 -2
  15. meshtrade/compliance/client/v1/verification_status_pb2.py +2 -2
  16. meshtrade/iam/api_user/v1/api_credentials_pb2.py +4 -4
  17. meshtrade/iam/api_user/v1/api_user_pb2.py +16 -10
  18. meshtrade/iam/api_user/v1/service_pb2.py +36 -30
  19. meshtrade/iam/group/v1/group_pb2.py +9 -7
  20. meshtrade/iam/group/v1/service_pb2.py +11 -11
  21. meshtrade/iam/role/v1/role_pb2.py +3 -3
  22. meshtrade/iam/role/v1/role_pb2.pyi +8 -0
  23. meshtrade/iam/user/v1/__init__.py +17 -1
  24. meshtrade/iam/user/v1/service_meshpy.py +87 -0
  25. meshtrade/iam/user/v1/service_pb2.py +48 -11
  26. meshtrade/iam/user/v1/service_pb2.pyi +65 -6
  27. meshtrade/iam/user/v1/service_pb2_grpc.py +278 -4
  28. meshtrade/iam/user/v1/user_pb2.py +15 -4
  29. meshtrade/iam/user/v1/user_pb2.pyi +9 -2
  30. meshtrade/ledger/transaction/v1/transaction_action_pb2.py +2 -2
  31. meshtrade/ledger/transaction/v1/transaction_state_pb2.py +2 -2
  32. meshtrade/option/v1/method_type_pb2.py +2 -2
  33. meshtrade/reporting/account_report/v1/account_report_pb2.py +2 -2
  34. meshtrade/reporting/account_report/v1/disclaimer_pb2.py +2 -2
  35. meshtrade/reporting/account_report/v1/fee_entry_pb2.py +2 -2
  36. meshtrade/reporting/account_report/v1/income_entry_pb2.py +2 -2
  37. meshtrade/reporting/account_report/v1/service_pb2.py +26 -12
  38. meshtrade/reporting/account_report/v1/service_pb2_grpc.py +29 -25
  39. meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py +2 -2
  40. meshtrade/studio/instrument/v1/__init__.py +43 -0
  41. meshtrade/studio/instrument/v1/instrument_pb2.py +47 -0
  42. meshtrade/studio/instrument/v1/instrument_pb2.pyi +23 -0
  43. meshtrade/studio/instrument/v1/instrument_pb2_grpc.py +4 -0
  44. meshtrade/studio/instrument/v1/type_pb2.py +37 -0
  45. meshtrade/studio/instrument/v1/type_pb2.pyi +58 -0
  46. meshtrade/studio/instrument/v1/type_pb2_grpc.py +4 -0
  47. meshtrade/studio/instrument/v1/unit_pb2.py +37 -0
  48. meshtrade/studio/instrument/v1/unit_pb2.pyi +46 -0
  49. meshtrade/studio/instrument/v1/unit_pb2_grpc.py +4 -0
  50. meshtrade/trading/limit_order/v1/limit_order_pb2.py +2 -2
  51. meshtrade/trading/limit_order/v1/service_pb2.py +2 -2
  52. meshtrade/trading/market_order/v1/market_order_pb2.py +2 -2
  53. meshtrade/trading/market_order/v1/service_pb2.py +2 -2
  54. meshtrade/type/v1/address_pb2.py +2 -2
  55. meshtrade/type/v1/amount_pb2.py +2 -2
  56. meshtrade/type/v1/contact_details_pb2.py +2 -2
  57. meshtrade/type/v1/date_pb2.py +2 -2
  58. meshtrade/type/v1/decimal_pb2.py +2 -2
  59. meshtrade/type/v1/ledger_pb2.py +2 -2
  60. meshtrade/type/v1/sorting_pb2.py +2 -2
  61. meshtrade/type/v1/time_of_day_pb2.py +2 -2
  62. meshtrade/type/v1/token_pb2.py +2 -2
  63. meshtrade/wallet/account/v1/__init__.py +21 -1
  64. meshtrade/wallet/account/v1/account_pb2.py +30 -4
  65. meshtrade/wallet/account/v1/account_pb2.pyi +59 -3
  66. meshtrade/wallet/account/v1/service_meshpy.py +70 -0
  67. meshtrade/wallet/account/v1/service_pb2.py +64 -21
  68. meshtrade/wallet/account/v1/service_pb2.pyi +82 -19
  69. meshtrade/wallet/account/v1/service_pb2_grpc.py +244 -8
  70. {meshtrade-1.5.0.dist-info → meshtrade-1.7.0.dist-info}/METADATA +1 -1
  71. {meshtrade-1.5.0.dist-info → meshtrade-1.7.0.dist-info}/RECORD +73 -63
  72. {meshtrade-1.5.0.dist-info → meshtrade-1.7.0.dist-info}/WHEEL +0 -0
  73. {meshtrade-1.5.0.dist-info → meshtrade-1.7.0.dist-info}/top_level.txt +0 -0
@@ -8,7 +8,17 @@ from meshtrade.wallet.account.v1 import service_pb2 as meshtrade_dot_wallet_dot_
8
8
 
9
9
  class AccountServiceStub(object):
10
10
  """
11
- AccountService provides access to and management of wallet accounts.
11
+ AccountService manages blockchain wallet accounts and their lifecycle operations (BETA).
12
+
13
+ This service provides comprehensive account management capabilities across multiple
14
+ blockchain networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
15
+ primary containers for holding and managing digital assets on the Mesh platform.
16
+
17
+ Key capabilities include account creation, opening on-chain, balance queries,
18
+ and account lifecycle management. All operations are scoped to the authenticated
19
+ group's hierarchy and require appropriate wallet domain permissions.
20
+
21
+ Note: This service is currently in BETA. Interface and functionality may change.
12
22
  """
13
23
 
14
24
  def __init__(self, channel):
@@ -22,11 +32,31 @@ class AccountServiceStub(object):
22
32
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.SerializeToString,
23
33
  response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
24
34
  _registered_method=True)
35
+ self.UpdateAccount = channel.unary_unary(
36
+ '/meshtrade.wallet.account.v1.AccountService/UpdateAccount',
37
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.SerializeToString,
38
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
39
+ _registered_method=True)
40
+ self.OpenAccount = channel.unary_unary(
41
+ '/meshtrade.wallet.account.v1.AccountService/OpenAccount',
42
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.SerializeToString,
43
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.FromString,
44
+ _registered_method=True)
45
+ self.CloseAccount = channel.unary_unary(
46
+ '/meshtrade.wallet.account.v1.AccountService/CloseAccount',
47
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountRequest.SerializeToString,
48
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountResponse.FromString,
49
+ _registered_method=True)
25
50
  self.GetAccount = channel.unary_unary(
26
51
  '/meshtrade.wallet.account.v1.AccountService/GetAccount',
27
52
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.SerializeToString,
28
53
  response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
29
54
  _registered_method=True)
55
+ self.GetAccountByNumber = channel.unary_unary(
56
+ '/meshtrade.wallet.account.v1.AccountService/GetAccountByNumber',
57
+ request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.SerializeToString,
58
+ response_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
59
+ _registered_method=True)
30
60
  self.ListAccounts = channel.unary_unary(
31
61
  '/meshtrade.wallet.account.v1.AccountService/ListAccounts',
32
62
  request_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.SerializeToString,
@@ -41,13 +71,61 @@ class AccountServiceStub(object):
41
71
 
42
72
  class AccountServiceServicer(object):
43
73
  """
44
- AccountService provides access to and management of wallet accounts.
74
+ AccountService manages blockchain wallet accounts and their lifecycle operations (BETA).
75
+
76
+ This service provides comprehensive account management capabilities across multiple
77
+ blockchain networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
78
+ primary containers for holding and managing digital assets on the Mesh platform.
79
+
80
+ Key capabilities include account creation, opening on-chain, balance queries,
81
+ and account lifecycle management. All operations are scoped to the authenticated
82
+ group's hierarchy and require appropriate wallet domain permissions.
83
+
84
+ Note: This service is currently in BETA. Interface and functionality may change.
45
85
  """
46
86
 
47
87
  def CreateAccount(self, request, context):
48
88
  """
49
- Creates a new wallet account.
50
- This is a write operation restricted to administrative roles.
89
+ Creates a new account record in the system (off-chain).
90
+
91
+ The account is created in a pending state and must be explicitly opened
92
+ on the blockchain using OpenAccount before it can receive funds or execute
93
+ transactions. Account ownership must match the executing context.
94
+ """
95
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
96
+ context.set_details('Method not implemented!')
97
+ raise NotImplementedError('Method not implemented!')
98
+
99
+ def UpdateAccount(self, request, context):
100
+ """
101
+ Updates an existing account's mutable metadata.
102
+
103
+ Only the display_name field can be modified. All other fields including
104
+ ownership, ledger, and account number are immutable after creation.
105
+ """
106
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
107
+ context.set_details('Method not implemented!')
108
+ raise NotImplementedError('Method not implemented!')
109
+
110
+ def OpenAccount(self, request, context):
111
+ """
112
+ Opens an account on the blockchain ledger.
113
+
114
+ Initializes the account on-chain, making it ready to receive deposits
115
+ and execute transactions. Returns the opened account and a transaction
116
+ reference for monitoring the blockchain operation.
117
+ """
118
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
119
+ context.set_details('Method not implemented!')
120
+ raise NotImplementedError('Method not implemented!')
121
+
122
+ def CloseAccount(self, request, context):
123
+ """
124
+ Closes an account on the blockchain ledger.
125
+
126
+ Deactivates the account on-chain, preventing further transactions.
127
+ The account record remains queryable for historical purposes.
128
+ Returns the closed account and a transaction reference.
51
129
  """
52
130
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
53
131
  context.set_details('Method not implemented!')
@@ -55,7 +133,21 @@ class AccountServiceServicer(object):
55
133
 
56
134
  def GetAccount(self, request, context):
57
135
  """
58
- Retrieves a single wallet account by its unique number.
136
+ Retrieves a specific account by its resource identifier.
137
+
138
+ Provides access to account metadata and optionally fetches live
139
+ balance data from the blockchain when populate_ledger_data is true.
140
+ """
141
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
142
+ context.set_details('Method not implemented!')
143
+ raise NotImplementedError('Method not implemented!')
144
+
145
+ def GetAccountByNumber(self, request, context):
146
+ """
147
+ Retrieves an account using its Account Number.
148
+
149
+ Provides a convenient lookup method using the 7-digit account number.
150
+ Optionally fetches live balance data when populate_ledger_data is true.
59
151
  """
60
152
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
61
153
  context.set_details('Method not implemented!')
@@ -63,7 +155,10 @@ class AccountServiceServicer(object):
63
155
 
64
156
  def ListAccounts(self, request, context):
65
157
  """
66
- Retrieves a list of all accounts for the authenticated principal.
158
+ Lists all accounts within the authenticated group's hierarchical scope.
159
+
160
+ Returns the complete set of accounts accessible to the executing context,
161
+ including accounts owned by the group and all descendant groups.
67
162
  """
68
163
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
69
164
  context.set_details('Method not implemented!')
@@ -71,7 +166,10 @@ class AccountServiceServicer(object):
71
166
 
72
167
  def SearchAccounts(self, request, context):
73
168
  """
74
- Searches for accounts based on a partial label match.
169
+ Searches accounts using flexible text criteria within the hierarchy.
170
+
171
+ Performs case-insensitive substring matching on display names,
172
+ returning accounts that match the search criteria.
75
173
  """
76
174
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
77
175
  context.set_details('Method not implemented!')
@@ -85,11 +183,31 @@ def add_AccountServiceServicer_to_server(servicer, server):
85
183
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CreateAccountRequest.FromString,
86
184
  response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
87
185
  ),
186
+ 'UpdateAccount': grpc.unary_unary_rpc_method_handler(
187
+ servicer.UpdateAccount,
188
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.FromString,
189
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
190
+ ),
191
+ 'OpenAccount': grpc.unary_unary_rpc_method_handler(
192
+ servicer.OpenAccount,
193
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.FromString,
194
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.SerializeToString,
195
+ ),
196
+ 'CloseAccount': grpc.unary_unary_rpc_method_handler(
197
+ servicer.CloseAccount,
198
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountRequest.FromString,
199
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountResponse.SerializeToString,
200
+ ),
88
201
  'GetAccount': grpc.unary_unary_rpc_method_handler(
89
202
  servicer.GetAccount,
90
203
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountRequest.FromString,
91
204
  response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
92
205
  ),
206
+ 'GetAccountByNumber': grpc.unary_unary_rpc_method_handler(
207
+ servicer.GetAccountByNumber,
208
+ request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.FromString,
209
+ response_serializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.SerializeToString,
210
+ ),
93
211
  'ListAccounts': grpc.unary_unary_rpc_method_handler(
94
212
  servicer.ListAccounts,
95
213
  request_deserializer=meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.ListAccountsRequest.FromString,
@@ -110,7 +228,17 @@ def add_AccountServiceServicer_to_server(servicer, server):
110
228
  # This class is part of an EXPERIMENTAL API.
111
229
  class AccountService(object):
112
230
  """
113
- AccountService provides access to and management of wallet accounts.
231
+ AccountService manages blockchain wallet accounts and their lifecycle operations (BETA).
232
+
233
+ This service provides comprehensive account management capabilities across multiple
234
+ blockchain networks (Stellar, Solana, Bitcoin, Ethereum). Accounts serve as the
235
+ primary containers for holding and managing digital assets on the Mesh platform.
236
+
237
+ Key capabilities include account creation, opening on-chain, balance queries,
238
+ and account lifecycle management. All operations are scoped to the authenticated
239
+ group's hierarchy and require appropriate wallet domain permissions.
240
+
241
+ Note: This service is currently in BETA. Interface and functionality may change.
114
242
  """
115
243
 
116
244
  @staticmethod
@@ -140,6 +268,87 @@ class AccountService(object):
140
268
  metadata,
141
269
  _registered_method=True)
142
270
 
271
+ @staticmethod
272
+ def UpdateAccount(request,
273
+ target,
274
+ options=(),
275
+ channel_credentials=None,
276
+ call_credentials=None,
277
+ insecure=False,
278
+ compression=None,
279
+ wait_for_ready=None,
280
+ timeout=None,
281
+ metadata=None):
282
+ return grpc.experimental.unary_unary(
283
+ request,
284
+ target,
285
+ '/meshtrade.wallet.account.v1.AccountService/UpdateAccount',
286
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.UpdateAccountRequest.SerializeToString,
287
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
288
+ options,
289
+ channel_credentials,
290
+ insecure,
291
+ call_credentials,
292
+ compression,
293
+ wait_for_ready,
294
+ timeout,
295
+ metadata,
296
+ _registered_method=True)
297
+
298
+ @staticmethod
299
+ def OpenAccount(request,
300
+ target,
301
+ options=(),
302
+ channel_credentials=None,
303
+ call_credentials=None,
304
+ insecure=False,
305
+ compression=None,
306
+ wait_for_ready=None,
307
+ timeout=None,
308
+ metadata=None):
309
+ return grpc.experimental.unary_unary(
310
+ request,
311
+ target,
312
+ '/meshtrade.wallet.account.v1.AccountService/OpenAccount',
313
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountRequest.SerializeToString,
314
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.OpenAccountResponse.FromString,
315
+ options,
316
+ channel_credentials,
317
+ insecure,
318
+ call_credentials,
319
+ compression,
320
+ wait_for_ready,
321
+ timeout,
322
+ metadata,
323
+ _registered_method=True)
324
+
325
+ @staticmethod
326
+ def CloseAccount(request,
327
+ target,
328
+ options=(),
329
+ channel_credentials=None,
330
+ call_credentials=None,
331
+ insecure=False,
332
+ compression=None,
333
+ wait_for_ready=None,
334
+ timeout=None,
335
+ metadata=None):
336
+ return grpc.experimental.unary_unary(
337
+ request,
338
+ target,
339
+ '/meshtrade.wallet.account.v1.AccountService/CloseAccount',
340
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountRequest.SerializeToString,
341
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.CloseAccountResponse.FromString,
342
+ options,
343
+ channel_credentials,
344
+ insecure,
345
+ call_credentials,
346
+ compression,
347
+ wait_for_ready,
348
+ timeout,
349
+ metadata,
350
+ _registered_method=True)
351
+
143
352
  @staticmethod
144
353
  def GetAccount(request,
145
354
  target,
@@ -167,6 +376,33 @@ class AccountService(object):
167
376
  metadata,
168
377
  _registered_method=True)
169
378
 
379
+ @staticmethod
380
+ def GetAccountByNumber(request,
381
+ target,
382
+ options=(),
383
+ channel_credentials=None,
384
+ call_credentials=None,
385
+ insecure=False,
386
+ compression=None,
387
+ wait_for_ready=None,
388
+ timeout=None,
389
+ metadata=None):
390
+ return grpc.experimental.unary_unary(
391
+ request,
392
+ target,
393
+ '/meshtrade.wallet.account.v1.AccountService/GetAccountByNumber',
394
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_service__pb2.GetAccountByNumberRequest.SerializeToString,
395
+ meshtrade_dot_wallet_dot_account_dot_v1_dot_account__pb2.Account.FromString,
396
+ options,
397
+ channel_credentials,
398
+ insecure,
399
+ call_credentials,
400
+ compression,
401
+ wait_for_ready,
402
+ timeout,
403
+ metadata,
404
+ _registered_method=True)
405
+
170
406
  @staticmethod
171
407
  def ListAccounts(request,
172
408
  target,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshtrade
3
- Version: 1.5.0
3
+ Version: 1.7.0
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,191 +7,201 @@ meshtrade/common/grpc_client.py,sha256=xb-E1uFSH_gC1P8CMn-oRzASgcHHfvGoH5wBR0bzY
7
7
  meshtrade/compliance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  meshtrade/compliance/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  meshtrade/compliance/client/v1/__init__.py,sha256=2bxbtTqqNQE18mQVovbeeY6JBjBbgT8uS9lr4qMuOMo,3045
10
- meshtrade/compliance/client/v1/client_pb2.py,sha256=HyRGFKv3ESSh7txZOMpHqTE8ayWmM01LlMGD8W_qR4w,3633
10
+ meshtrade/compliance/client/v1/client_pb2.py,sha256=ywM_gzUC7WzwPdAyL0qBryECvUndgVqM1TJ-lUc1U4Q,3635
11
11
  meshtrade/compliance/client/v1/client_pb2.pyi,sha256=TTRVskF2-GWz9vpgYG7DLQ9RTpBSS07wWIAPkte5IeM,2598
12
12
  meshtrade/compliance/client/v1/client_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
13
- meshtrade/compliance/client/v1/company_pb2.py,sha256=JuYz6b5z5TriY27uxgkxorWg2CCMx5oJNeJPiSEJi0g,5905
13
+ meshtrade/compliance/client/v1/company_pb2.py,sha256=n6bc5QpSH525crQTZ5qW4hJ3K7flifE2BM-BPVXtJBQ,5907
14
14
  meshtrade/compliance/client/v1/company_pb2.pyi,sha256=vVAZY0eLTImihbMKvI8Ojfw60Cux3yGehPXKEfyfcLg,6551
15
15
  meshtrade/compliance/client/v1/company_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
16
- meshtrade/compliance/client/v1/company_representative_pb2.py,sha256=rGLnPF5nbXhcAZOtgvWXkqVEPvujR6rNEXl5_A773UE,3145
16
+ meshtrade/compliance/client/v1/company_representative_pb2.py,sha256=Iad5eymz1jIEHgIiuRGR9FYh0MMHPdrGMZNIqWD5cVo,3147
17
17
  meshtrade/compliance/client/v1/company_representative_pb2.pyi,sha256=jlmg_p6kkDzcSrJiuXIr9Km4JvO44-OGvFnvrCM2ufQ,1925
18
18
  meshtrade/compliance/client/v1/company_representative_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
19
- meshtrade/compliance/client/v1/company_representative_role_pb2.py,sha256=i2Nvo7KfUgGBV05NfGGKxdcDA4sga9XXXYrHQ2E2bwE,2300
19
+ meshtrade/compliance/client/v1/company_representative_role_pb2.py,sha256=xRaRHYZBh2GdSm73aB03reUhMHHRkmDbcwyNjzcHM9c,2302
20
20
  meshtrade/compliance/client/v1/company_representative_role_pb2.pyi,sha256=-1G5XsOHquw6VXtdTzEAcurclTZm-Odm5rQA110gkk8,1697
21
21
  meshtrade/compliance/client/v1/company_representative_role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
22
- meshtrade/compliance/client/v1/fund_pb2.py,sha256=7lw7-bjOWRCO3RXBIc4l1wS6-MCATvdMQh9nJPLR6Zw,2076
22
+ meshtrade/compliance/client/v1/fund_pb2.py,sha256=gxkHHKJsW7evM4GGO67mFXRP_7Ga6I394qOA6A3EmpM,2078
23
23
  meshtrade/compliance/client/v1/fund_pb2.pyi,sha256=am7O53ZrkOQSgAc2RbbbYPWhIpNQQKUeCUZpwY7bqqI,1137
24
24
  meshtrade/compliance/client/v1/fund_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
25
- meshtrade/compliance/client/v1/identification_document_type_pb2.py,sha256=ZbrPhxFcD7bWh2esF6zhr6_u7JG1eknjSOZVW27krPI,2071
25
+ meshtrade/compliance/client/v1/identification_document_type_pb2.py,sha256=rzvr5DBzpuXrWU56rZEu9SxEQ8JQJQEcdQyP9qQ4EIU,2073
26
26
  meshtrade/compliance/client/v1/identification_document_type_pb2.pyi,sha256=Sl7t5fW9oC04jMWpYwKFZ-LsIJoLpG0NdJE2JkOxxxk,1094
27
27
  meshtrade/compliance/client/v1/identification_document_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
28
- meshtrade/compliance/client/v1/industry_classification_pb2.py,sha256=TXK_dcK-oKegrSqYldHugkcas88B4c4TvsndYNa_OOc,2223
28
+ meshtrade/compliance/client/v1/industry_classification_pb2.py,sha256=uxiv0bFzh3HEsb-6_t-YO2cRAY3_3wlxr21-joFq-Ws,2225
29
29
  meshtrade/compliance/client/v1/industry_classification_pb2.pyi,sha256=sWu7pheba8b1cfwc3FBb_IKwsBMTb9OjB7bqNl3oLbU,1364
30
30
  meshtrade/compliance/client/v1/industry_classification_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
31
- meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py,sha256=wGK_ofoXRLjt3cMAk_6RREvsLtQTPi8PoxVkxm5fLHs,2748
31
+ meshtrade/compliance/client/v1/natural_person_connection_type_pb2.py,sha256=zDASDiU5RM6cCxJCVaUhEm1xFbx4ThAhrhI3D9B__-I,2750
32
32
  meshtrade/compliance/client/v1/natural_person_connection_type_pb2.pyi,sha256=BXVfJJnIzy6P5UBGKFQogIvLd62LIdljFWo5CMDXXV4,2908
33
33
  meshtrade/compliance/client/v1/natural_person_connection_type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
34
- meshtrade/compliance/client/v1/natural_person_pb2.py,sha256=ekbYSGLr6p7zZ8FLTRjSxdDiCoYjWM5pnpMf-FOmVMU,4226
34
+ meshtrade/compliance/client/v1/natural_person_pb2.py,sha256=rjThfDz2icX_Xw81jIAtnVwjYAMUro24LG7D-KAtMAk,4228
35
35
  meshtrade/compliance/client/v1/natural_person_pb2.pyi,sha256=sjtLLxbCQWsXUprMzzVGrplrkUK_yACweEDhc5VjOwI,3800
36
36
  meshtrade/compliance/client/v1/natural_person_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
37
- meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=nyLNhJbGhrWEGN5Y6YIVm3a3OORLiTyl4TXJ5n81iFE,1817
37
+ meshtrade/compliance/client/v1/pep_status_pb2.py,sha256=6qf7nq4OI_O82nZ3zLlAePbeI24E3rnJxPY8b7wgynU,1819
38
38
  meshtrade/compliance/client/v1/pep_status_pb2.pyi,sha256=jBJjLEjA16K53Ss85Yab_KtrRG_2lWxFYcMJ0QuQpUk,622
39
39
  meshtrade/compliance/client/v1/pep_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
40
40
  meshtrade/compliance/client/v1/service_meshpy.py,sha256=oLD6eh6gsSxsDA8tl1oCMpe4DK2zJlpKMAF0m2KVXw4,6859
41
41
  meshtrade/compliance/client/v1/service_options_meshpy.py,sha256=7h5Pt-5G50NRvNcsqo3BFVs7qfnRuBlG7h-f370HjX0,2544
42
- meshtrade/compliance/client/v1/service_pb2.py,sha256=E7z_nwBwuCvGHtp_ewddCEAgMTkV61AMAnXzY5oTuWM,4105
42
+ meshtrade/compliance/client/v1/service_pb2.py,sha256=RcwGN2K2WfLRY7AADBWuYbhlinnqpCJ3Sm3hBti5BZs,4107
43
43
  meshtrade/compliance/client/v1/service_pb2.pyi,sha256=0EBxdT7VlxVWiMDVAPBRq3TAqLqimjDIUAf4oOed9J0,1383
44
44
  meshtrade/compliance/client/v1/service_pb2_grpc.py,sha256=_gDQ7jNUpTbjh7YGhgDFLwq4_Y0rgmzCMlNPW-s8JWI,8438
45
- meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py,sha256=zhCWGPuHOz8wAfgjvWZHyTD9o6fskwQv22XmaHl26Tg,3162
45
+ meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.py,sha256=EHgV3xckVkxcEwlDpmsIAE7q4E1xxGXlYnrvEZx4WIY,3164
46
46
  meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2.pyi,sha256=c2RuUjrykzgnuiIfn1i-ClFdGocEhZjnFolNKFzn7Ac,3883
47
47
  meshtrade/compliance/client/v1/source_of_income_and_wealth_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
48
- meshtrade/compliance/client/v1/tax_residency_pb2.py,sha256=R2ZiOT8LW05DxemjFuEV75471PP9tLIkBYdk0KVpI_g,1766
48
+ meshtrade/compliance/client/v1/tax_residency_pb2.py,sha256=v2BjJ77qBB9d8JQJA2ZyHPVc5b3bpcFcpZF-Ry2lXnk,1768
49
49
  meshtrade/compliance/client/v1/tax_residency_pb2.pyi,sha256=J2o8MGBTMY40_mlesQHwayM_ijx-MGPQ3AJKoaIWH2c,502
50
50
  meshtrade/compliance/client/v1/tax_residency_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
51
- meshtrade/compliance/client/v1/trust_pb2.py,sha256=ruHHjn4dnwACOpJBfOVvzPwB86e8sH14jOetr0wKs2c,2080
51
+ meshtrade/compliance/client/v1/trust_pb2.py,sha256=iVRD2m9ghf37_mTa3aFhlbctChX6m-7-Fgf07oSMCk0,2082
52
52
  meshtrade/compliance/client/v1/trust_pb2.pyi,sha256=9gxetO-sEGVEvg3OpsuI7--MTd32V0nH63BwAURVdpg,1138
53
53
  meshtrade/compliance/client/v1/trust_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
54
- meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=I9nSlMztg1wJ-2BXEsyntZSu60qhypdFK9AszJ47Wgs,1962
54
+ meshtrade/compliance/client/v1/verification_status_pb2.py,sha256=RBI8-LnSLSSv6pVADL_OrYIzNmo8-OOPXhp5dBwO2m4,1964
55
55
  meshtrade/compliance/client/v1/verification_status_pb2.pyi,sha256=kqP24po3o2Ks8HWAoQ-tLlMirCJCKwxlQlWJXWkRmAI,880
56
56
  meshtrade/compliance/client/v1/verification_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
57
57
  meshtrade/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  meshtrade/iam/api_user/v1/__init__.py,sha256=aCPxJxlwo3TRlVvyTx_QqgJcufQFV-48VIfMJgR0tIk,2969
59
59
  meshtrade/iam/api_user/v1/api_credentials.py,sha256=apo3p_YcncNphbxLXegqoYh35bPydhjR-ULsZ7kj4D4,5272
60
- meshtrade/iam/api_user/v1/api_credentials_pb2.py,sha256=s5ToUuEU6xyIXqitzsbNyXqq0UyUNNd4scpsj3AqzCY,3616
60
+ meshtrade/iam/api_user/v1/api_credentials_pb2.py,sha256=9fHMQxGxCSK2kctHzVsdHx-upG-xqxv0Rj5tVaG0Qag,3707
61
61
  meshtrade/iam/api_user/v1/api_credentials_pb2.pyi,sha256=TRv0xnm4VJ62sCMz_utdLvQR_vNQqWH_wCE0mtF3ZsY,547
62
62
  meshtrade/iam/api_user/v1/api_credentials_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
63
- meshtrade/iam/api_user/v1/api_user_pb2.py,sha256=3-kUZrf1LT6QK214MlMhTRR4DIXgqXdGogS4mJhOvAE,4774
63
+ meshtrade/iam/api_user/v1/api_user_pb2.py,sha256=HkpquEjsHJ5elzCU1YXAGotLmQYjXH8lK5uXuh2WPo4,5328
64
64
  meshtrade/iam/api_user/v1/api_user_pb2.pyi,sha256=s-62eSyhiTKpRcBb38iHLU9-K417RP6K7mJK76mVpV0,2307
65
65
  meshtrade/iam/api_user/v1/api_user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
66
66
  meshtrade/iam/api_user/v1/service.py,sha256=_7-LK9LDkKh7JOQHOryNBE1Xgr-DclAMO2QQhGoumUg,1827
67
67
  meshtrade/iam/api_user/v1/service_meshpy.py,sha256=hLkfRqm1NPll_GVLlCOXnAsJEQo888tNacnM4Fu6Po4,9315
68
68
  meshtrade/iam/api_user/v1/service_options_meshpy.py,sha256=hkWJmNCsNDQ_OBdwZBK_zAUgl-B9ZsddmcrPfF7PyZI,2541
69
- meshtrade/iam/api_user/v1/service_pb2.py,sha256=VUcxM629vCkz4nGoxLXfL3XK4rvvC1mbbmaIAPE3wxE,8298
69
+ meshtrade/iam/api_user/v1/service_pb2.py,sha256=1bzYkwnSI8AG3kIkk4OM7ULuull0wXqxvMRAjUWcaVw,8926
70
70
  meshtrade/iam/api_user/v1/service_pb2.pyi,sha256=cmQuOBMR0C1IRB8CoAcri6YiGtaSjf7p7QmBHvX_bt4,2607
71
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=tayQlse2nLxoo0oZbM9FYdX-jH7_jkCTLCf0Yw8IaeY,2069
74
- meshtrade/iam/group/v1/group_pb2.py,sha256=mc65OFIhy7NnZet7Yz34pPEdcsym_pSZR33Yhpacz6M,4456
74
+ meshtrade/iam/group/v1/group_pb2.py,sha256=HCFjHrQu0zdO7aWWAZJXiNV5JZp8o4UTbb0b79ET6RY,3533
75
75
  meshtrade/iam/group/v1/group_pb2.pyi,sha256=cFDjl9VlphF0NpZzP0qJZH7GMq8hb3uWrpiFWVFElss,1024
76
76
  meshtrade/iam/group/v1/group_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
77
77
  meshtrade/iam/group/v1/service_meshpy.py,sha256=dJWdunAQViIG6-LaYTNk0-vOsL8eLFDO3y6oc0yOSHw,7954
78
78
  meshtrade/iam/group/v1/service_options_meshpy.py,sha256=04luV1eQlZ6yeJVdgl6XqR3mpaQyxc0XASfSQt_C0jY,2534
79
- meshtrade/iam/group/v1/service_pb2.py,sha256=YrWy4gITfWD98Q_WWPIF8g0zw_Oyk5t5wKrZHu1iHLk,10209
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
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=4E4YAKyr4XwwKi8Rzz8LQDQSHFEfCOsv0iCNljutciI,2870
85
- meshtrade/iam/role/v1/role_pb2.pyi,sha256=kz5gCruhDRbXsgOOOcDiH11YFr-QPZgMg4QuVZcxr-g,1978
84
+ meshtrade/iam/role/v1/role_pb2.py,sha256=pr46IXoaQEPzsBFhjXnJQYAf8McNLxZHP77PmHPHKkw,3089
85
+ meshtrade/iam/role/v1/role_pb2.pyi,sha256=75K7UGAqx-IpwFrchuw_Q_W9-HJm0G0jiNUJA-nBu1k,2290
86
86
  meshtrade/iam/role/v1/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
87
- meshtrade/iam/user/v1/__init__.py,sha256=Of7OG_BzVdVqnmSFdu0b_8s6JSXsDrQ1SCUdNW2cO5M,1762
88
- meshtrade/iam/user/v1/service_meshpy.py,sha256=a_1TSUDBD4WXfsfDG1uWN05ZD_69_uEJD0ymwSNpaC0,5672
87
+ meshtrade/iam/user/v1/__init__.py,sha256=qDt73VDovPzAcog5CRsgB9iFddJZu2juItiI1Sef9hc,2105
88
+ meshtrade/iam/user/v1/service_meshpy.py,sha256=5m51VNCeaLVYc8SwespkZT2fdpNgaVdQM7Hv8O_BKgo,8484
89
89
  meshtrade/iam/user/v1/service_options_meshpy.py,sha256=KPdpKUBF0iZsW6TshxgI6j0SNl7t-iLOXlhnYP3IlJ0,2531
90
- meshtrade/iam/user/v1/service_pb2.py,sha256=XC73hKhxgNJPtyysUt35xZ3Jg_uvYmGjH7n2w2bIwN0,4431
91
- meshtrade/iam/user/v1/service_pb2.pyi,sha256=X2VRSPoakeecULYt3C2XI7qAjaPd5MjlUhu6mwadigU,868
92
- meshtrade/iam/user/v1/service_pb2_grpc.py,sha256=wUyNL1jVc4YoACrHMZ2qyNqk3CBY0tgJ1JnfKS5qilo,3185
93
- meshtrade/iam/user/v1/user_pb2.py,sha256=gL3P-l3rrCwLKZmG01dVMv80A7CVc2FxCs5yIxVfex4,1624
94
- meshtrade/iam/user/v1/user_pb2.pyi,sha256=tlvJ9Z12ucdR9truPTpxVPJ2DEYBrhhgyev-b1z6YpI,640
90
+ meshtrade/iam/user/v1/service_pb2.py,sha256=2xMJONr5CsC60F5k2PkX8BNcBm0dNlohn1kBKU-svxM,9260
91
+ meshtrade/iam/user/v1/service_pb2.pyi,sha256=-jBiRko_1qAVZl3mZ-S2s7HQiXymT_L4ykzlRZON04g,3459
92
+ meshtrade/iam/user/v1/service_pb2_grpc.py,sha256=3oo77hLOMVOB24jdpOdFgtJVpJVJgfFiNUPeaAEK6ek,15245
93
+ meshtrade/iam/user/v1/user_pb2.py,sha256=iiMg5vKNqLJS-TGBKcxyJQ1-YW1qx6xxngfBYeSm6XE,3532
94
+ meshtrade/iam/user/v1/user_pb2.pyi,sha256=EZULReDMzb-0UsPpvHHGqZ9KLpWLRJvf3V3jr194DpY,1024
95
95
  meshtrade/iam/user/v1/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
96
96
  meshtrade/ledger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  meshtrade/ledger/transaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
98
  meshtrade/ledger/transaction/v1/__init__.py,sha256=LGIlhzpgewn0u_wQ_IH-jHJqs4Af_BsxKshYnnmIWyU,1507
99
- meshtrade/ledger/transaction/v1/transaction_action_pb2.py,sha256=_BumHE2VF1Xs31u6iVfn-ogaIx3XM_TtiUdtfSh_5tk,2060
99
+ meshtrade/ledger/transaction/v1/transaction_action_pb2.py,sha256=baOxZ8Z06m8X7fMs63CqZDrvphwYz-2pqDJUdAuIEe8,2062
100
100
  meshtrade/ledger/transaction/v1/transaction_action_pb2.pyi,sha256=h85ohgkpEu2K6qP4Ge66PowcU2FNaEjXVLlOwff7Log,1067
101
101
  meshtrade/ledger/transaction/v1/transaction_action_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
102
- meshtrade/ledger/transaction/v1/transaction_state_pb2.py,sha256=lhgS7XbQnQFTUe882i1Pb7oq0gbp8XNJq1VqYw1TyB8,2112
102
+ meshtrade/ledger/transaction/v1/transaction_state_pb2.py,sha256=bP2YkM3DQC1Ss13uR_rqI6-vOJAKRqQLi45KpLnmdj8,2114
103
103
  meshtrade/ledger/transaction/v1/transaction_state_pb2.pyi,sha256=pl93a9UVYiVEPPrF1SuKUz47CDjytstLLROZ-YpvR8Y,1205
104
104
  meshtrade/ledger/transaction/v1/transaction_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
105
105
  meshtrade/option/v1/__init__.py,sha256=B8U0UVf7gUA3D5si5m8H5il7Hy_-KLeLaeGtizQVVJc,1405
106
- meshtrade/option/v1/method_type_pb2.py,sha256=zUEIrZTPEh2ZTwvQlh9W6_be5i4e211D7EYXrHPxJ58,1937
106
+ meshtrade/option/v1/method_type_pb2.py,sha256=73cTzlRaEeeshTkvOmUBMYJJtPlyT5Sp8zOaCqeiBB0,1939
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
109
  meshtrade/reporting/account_report/v1/__init__.py,sha256=VW6rnEZMntUvEX7kIRbCKzmcPE2MKULC1r1nz7Wr6Wg,2290
110
- meshtrade/reporting/account_report/v1/account_report_pb2.py,sha256=mmh49DIeq5o6JyPhn8dtZcEpjDHUgy_fYmFGg4mx_uM,4367
110
+ meshtrade/reporting/account_report/v1/account_report_pb2.py,sha256=MsSykds_bG5TjXZyoG637L37Vc1V8P1SfsJrhOrQssQ,4369
111
111
  meshtrade/reporting/account_report/v1/account_report_pb2.pyi,sha256=3a4AqxLc_KcMxHAJ0bQOMPR6ra86aD1YbCkZvS59zJk,3645
112
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
113
+ meshtrade/reporting/account_report/v1/disclaimer_pb2.py,sha256=kNgbeafwDZlvBw0th9E-BTMr8Cb4CCbFinOIt8F33xo,1833
114
114
  meshtrade/reporting/account_report/v1/disclaimer_pb2.pyi,sha256=bQfBKSVLo5flu6ZO36weavNoRdF9OgO293GpxdeLQic,504
115
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
116
+ meshtrade/reporting/account_report/v1/fee_entry_pb2.py,sha256=VNOFxNIq0bEhDBeJnTY9zi_YuT9watZMLw3NZgOYdyI,2462
117
117
  meshtrade/reporting/account_report/v1/fee_entry_pb2.pyi,sha256=jdOoKWwRsthoV-Ed_aI4FzxexlIueJSn8f_O4jw9sdM,1435
118
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
119
+ meshtrade/reporting/account_report/v1/income_entry_pb2.py,sha256=0wAUQGtHo2TilGsYPWmgespNileAdM7oGz1cksJTKa8,2966
120
120
  meshtrade/reporting/account_report/v1/income_entry_pb2.pyi,sha256=UGSDpiL0IagXEVI5qDn6ZpBTM70cL60xJhmwycPe9NI,2051
121
121
  meshtrade/reporting/account_report/v1/income_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
122
122
  meshtrade/reporting/account_report/v1/service_meshpy.py,sha256=s9PHSsaSq_ZpR2Z8oXGCPSSrj4-7zDF1k6e5iLqK7V0,6615
123
123
  meshtrade/reporting/account_report/v1/service_options_meshpy.py,sha256=oagptW02D9QtyonYlakMyCbK-zDUm8L5SVkHrcGsNsU,2565
124
- meshtrade/reporting/account_report/v1/service_pb2.py,sha256=EdMKydMryW2jA2wtHac81tKFdsfHeS7ryWi9a_n5glc,6244
124
+ meshtrade/reporting/account_report/v1/service_pb2.py,sha256=E-cjoqI75BOltsajgea46BhxRQXpZdBGavY8obqgkQs,7696
125
125
  meshtrade/reporting/account_report/v1/service_pb2.pyi,sha256=DqdHVAGE8kUK4jo1iTykAE8MGlTo186v7iu6XSxexSk,2550
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
126
+ meshtrade/reporting/account_report/v1/service_pb2_grpc.py,sha256=z-qbHsZIez7zvTs0SPrr_xrhnpDApi7oYjt5MxfsPss,7340
127
+ meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.py,sha256=gY_7xkWApxo9UAWkqgjev-NwtPSGOTz-ARMy7ap3tTw,2681
128
128
  meshtrade/reporting/account_report/v1/trading_statement_entry_pb2.pyi,sha256=3Ys1u6lu9Zxn9l-2b6jau5_J9lCFrM_X7zDy8bJjkWw,1644
129
129
  meshtrade/reporting/account_report/v1/trading_statement_entry_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
130
+ meshtrade/studio/instrument/v1/__init__.py,sha256=-_M0jq7abZlmzRaqC0PwNTQ9jWYJmL2e6UjzsWwJ0Z8,1506
131
+ meshtrade/studio/instrument/v1/instrument_pb2.py,sha256=tOk2TjtZRBTmaB_hfCEfU9yPc929Q4JHSKcysgbPkNI,3581
132
+ meshtrade/studio/instrument/v1/instrument_pb2.pyi,sha256=YOZW-MN9nrA-44BynH-Q36Bsgd2XmqdDHwGrOQNvZPI,1141
133
+ meshtrade/studio/instrument/v1/instrument_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
134
+ meshtrade/studio/instrument/v1/type_pb2.py,sha256=j3aAjqOxHXSCXoGxcZZ1zKB0R9N8RCaaiQBCC7e3sjM,2783
135
+ meshtrade/studio/instrument/v1/type_pb2.pyi,sha256=g08lX0MXPSOPOuNaVGloHMwTOLPrRJkglnEnEeDYtOc,2756
136
+ meshtrade/studio/instrument/v1/type_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
137
+ meshtrade/studio/instrument/v1/unit_pb2.py,sha256=lcODI5_EnV4aOU0KlE3XMdyC_Y6F_ZeWl5QzXeROuv4,2257
138
+ meshtrade/studio/instrument/v1/unit_pb2.pyi,sha256=-BMg8h2KblJEBs9And8wjEYwomZmfTAkpy3kRaHRPSI,1350
139
+ meshtrade/studio/instrument/v1/unit_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
130
140
  meshtrade/trading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
141
  meshtrade/trading/limit_order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
142
  meshtrade/trading/limit_order/v1/__init__.py,sha256=1XwHm6cYfkFdWr1wf-ukjnvoYA-uhh86jjzTBB5xzQI,1818
133
- meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=6hXZ2N2EQvxKfbYkSGTiXT62rRIgDbnEy8qoFk7evgE,1720
143
+ meshtrade/trading/limit_order/v1/limit_order_pb2.py,sha256=n0dmnmlM7V80cdFST7D_H5zj4mA57lv2gri7mW6BbKM,1724
134
144
  meshtrade/trading/limit_order/v1/limit_order_pb2.pyi,sha256=qqW6yIlOa146Cr7vuiHBLd8DSOvhhUy3CwJJeC52zFU,393
135
145
  meshtrade/trading/limit_order/v1/limit_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
136
146
  meshtrade/trading/limit_order/v1/service_meshpy.py,sha256=t956DtwPu8GbI1IqNJnC3xZBOm9tOpbh6Uvhyj2Je6Y,5822
137
147
  meshtrade/trading/limit_order/v1/service_options_meshpy.py,sha256=B8H-GWdi7mrnwLaQ_TP6CSaRyFtSIEe9mGZuHjapvEY,2554
138
- meshtrade/trading/limit_order/v1/service_pb2.py,sha256=ApcxidLeLOSLxI3AWSb5cH6Y3z5-IwbRGq9Kd7UYMqY,2807
148
+ meshtrade/trading/limit_order/v1/service_pb2.py,sha256=UHgBFqd2n1CDWu9mW4_cYeyFevBrhrZjq1gG1VlXuvQ,2811
139
149
  meshtrade/trading/limit_order/v1/service_pb2.pyi,sha256=L9ZgLzBDaxqIsAYABtVlrY_qe0Co0Ht99USR_307SXc,608
140
150
  meshtrade/trading/limit_order/v1/service_pb2_grpc.py,sha256=ALpSeJl1-3r7jKkcWU7g_QOtks_ZZ7ciVbJgdHvew5k,3390
141
151
  meshtrade/trading/market_order/v1/__init__.py,sha256=SULATh4Gddsa6A8959ZYXFgE7acwewAo0jx_9tHZ9MM,1830
142
- meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=miDtNnqxWAbZ_Ub9Oqo8_GsOLFwWjEeNz3JSzzFIpys,1740
152
+ meshtrade/trading/market_order/v1/market_order_pb2.py,sha256=Jlp4vNYcULH5fzQvpHsmwg9Gy3KwWoi07vbniEK4ERA,1742
143
153
  meshtrade/trading/market_order/v1/market_order_pb2.pyi,sha256=NaWtrs1iNO8jY5XQRvS1ex3skmVJFTGxdDHdknIDvfI,394
144
154
  meshtrade/trading/market_order/v1/market_order_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
145
155
  meshtrade/trading/market_order/v1/service_meshpy.py,sha256=R8uaSFSxAmI6G2W4wj5F84wKW-8nZyDTzqOMsWMeU7A,5855
146
156
  meshtrade/trading/market_order/v1/service_options_meshpy.py,sha256=Ido0GNgd1FSpqzjj-tknXMwYot6g8tAV5fa3oIzYVmk,2557
147
- meshtrade/trading/market_order/v1/service_pb2.py,sha256=tB6aQqnDwAg8Ogya2AYPKs_6YXgdIe_hslAKd2SxQSA,2841
157
+ meshtrade/trading/market_order/v1/service_pb2.py,sha256=EW0Ax6qDvJaqrpWrrb41eLcJEtovNbCjumqlWHmSiKA,2843
148
158
  meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=MIGhHksXG6hw6N-afJEEAR3fUqKoNU2EdfffDcLMO3c,612
149
159
  meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
150
160
  meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
161
  meshtrade/type/v1/__init__.py,sha256=e3ggm22xjJ4UDqMQlD-4rEOTQI6u_tZ4jlKhsQU0oX4,3521
152
- meshtrade/type/v1/address_pb2.py,sha256=uZQcUd_Nr1gQrWMZz6dmbcOvqMPuJ-T6daQmeJzI-jw,1858
162
+ meshtrade/type/v1/address_pb2.py,sha256=3FdfM1n2SRyoHsXJUxo5K6XHFohQJ-Mol1DHkpifrJQ,1860
153
163
  meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
154
164
  meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
155
165
  meshtrade/type/v1/amount.py,sha256=pBQqWAU88r2DXyXyD1hmxRVVXxEyGOD0u5SQykuC-Vs,3658
156
- meshtrade/type/v1/amount_pb2.py,sha256=ZU1JWZNZ98MXEgfqeXImxApl-n2SUfQnDHlz4vt1AkI,1918
166
+ meshtrade/type/v1/amount_pb2.py,sha256=_9GarF5pgJyxffvugu3gPQXb1cNaH0jQUU-Hcn1gDIE,1920
157
167
  meshtrade/type/v1/amount_pb2.pyi,sha256=uI8D2Ch66e2hvzQCA5SARE8lrGdU_BYby__P_H-QwvY,749
158
168
  meshtrade/type/v1/amount_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
159
- meshtrade/type/v1/contact_details_pb2.py,sha256=QHbiNCwaAZhWWOy5ATXPSQbSY8nLJaretF2kPFVlAyk,2070
169
+ meshtrade/type/v1/contact_details_pb2.py,sha256=AgHU_O3hYPFYByhky5GasIrMzhKcRzjWWYN32COj1yY,2072
160
170
  meshtrade/type/v1/contact_details_pb2.pyi,sha256=Wk9EFWI_rPuuOvPdKsW9Qo0_c8uNg61U-w__YwPQD9E,1292
161
171
  meshtrade/type/v1/contact_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
162
172
  meshtrade/type/v1/date.py,sha256=kUtGimBRyxmoVqktjF3ThMiK9n8ifrLVgtNxZhIbs_o,10629
163
- meshtrade/type/v1/date_pb2.py,sha256=cQPlctiZ5pDD6vqnmDiLhQ63NZ8iEXVb_yf01XZZHe4,1648
173
+ meshtrade/type/v1/date_pb2.py,sha256=8PGY1cIo62PUrIt24ZB-kYncv2JW51AVxBFkXROHdTw,1650
164
174
  meshtrade/type/v1/date_pb2.pyi,sha256=knrar5r3GE7weH87Ie0IWv-jN57W3EJN6pTJeXGGPTw,554
165
175
  meshtrade/type/v1/date_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
166
176
  meshtrade/type/v1/decimal_built_in_conversions.py,sha256=_T6JfN_3YErRtRLGD3-z2BWJYjasEKue03nsbDybJv8,910
167
- meshtrade/type/v1/decimal_pb2.py,sha256=8FEO-YAJe3KAZ_5v0XVStapGQ0E-RLEYawinSfld2qM,1572
177
+ meshtrade/type/v1/decimal_pb2.py,sha256=Bg7Vy2Nhz7JBepg7dQGanfe3h-FOhS-bLPZa06Jfj5U,1574
168
178
  meshtrade/type/v1/decimal_pb2.pyi,sha256=8qhL7jqAhoYJNzTpEiEPKDSRAYSWgvKd8altyVLISFg,386
169
179
  meshtrade/type/v1/decimal_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
170
180
  meshtrade/type/v1/ledger.py,sha256=Nh8ySOE2G78oWoJ0PF2_7QahF6Lbsy4K4vymO0by_3Y,719
171
- meshtrade/type/v1/ledger_pb2.py,sha256=QTJWEH9XAkM-aKorcUKEqf4OcDv2UwDfBOYZMx76wng,1813
181
+ meshtrade/type/v1/ledger_pb2.py,sha256=M3Oe0vMt1D3iD0PA4Pd3OzWu8QT6kXbkrA-Jqhu-HMQ,1812
172
182
  meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
173
183
  meshtrade/type/v1/ledger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
174
- meshtrade/type/v1/sorting_pb2.py,sha256=vpMAo_3ImcSEk5oiymF6men8MUpZxnn_KXV71lOELKY,1663
184
+ meshtrade/type/v1/sorting_pb2.py,sha256=YLOryA4D1-ja2-1qJxhCjo4ccVRoVbCQ84BfeeSrIzc,1662
175
185
  meshtrade/type/v1/sorting_pb2.pyi,sha256=Ki-91U-rzKZ9dsTHqjeSLN6x4vgsa-UxUNDd0nJo4fk,558
176
186
  meshtrade/type/v1/sorting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
177
187
  meshtrade/type/v1/time_of_day.py,sha256=jJSf5WoCv5oSDy1FtJ8rcSgUEtZ2ro9gUDsqwsqPArw,7990
178
- meshtrade/type/v1/time_of_day_pb2.py,sha256=zScN4lbJxZsoLWM5IUU5rOP3ACOqbaP5wSgD1e0rclc,1729
188
+ meshtrade/type/v1/time_of_day_pb2.py,sha256=hQVTUpa3T-On9lO8KXcnP-RGxp8uSv1b7G1-3bgP7pY,1731
179
189
  meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
180
190
  meshtrade/type/v1/time_of_day_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
181
- meshtrade/type/v1/token_pb2.py,sha256=72Od9JTmBrvpzXtC1X5_4NJd6CTlGN5gXS0KAj0GeF0,1804
191
+ meshtrade/type/v1/token_pb2.py,sha256=3x3qj5rOA_i2nnMPlXWl0erdKGCdYu98ihPNQcajU3Q,1806
182
192
  meshtrade/type/v1/token_pb2.pyi,sha256=vsEKtXtIo5xisr1I4oqxcaMMYyfV-GBMM_f9l8cRxlc,687
183
193
  meshtrade/type/v1/token_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
184
194
  meshtrade/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- meshtrade/wallet/account/v1/__init__.py,sha256=6zHLLKaNdJTVPiwt_AcqeEWl-6YbsG6_LbzSq5AUkgM,2063
186
- meshtrade/wallet/account/v1/account_pb2.py,sha256=Mvpo6MNpQ0au2SA1dT9Eg1_Kb6pnnI2UMWMpgo1k9kU,1657
187
- meshtrade/wallet/account/v1/account_pb2.pyi,sha256=GN2bT5Ld2B0KyQUmkDQjHfeXEjLSwfuIE2j70jSMIJE,382
195
+ meshtrade/wallet/account/v1/__init__.py,sha256=F8MrT6oHgkz3bihJ1Dh4CXaY-cLvS9LKPqrbvcF29fM,2514
196
+ meshtrade/wallet/account/v1/account_pb2.py,sha256=HxnR3iECSnQjx1XkMPf5pbJ-hB2qeNX0We7FHu9obxY,6456
197
+ meshtrade/wallet/account/v1/account_pb2.pyi,sha256=auS5KvSvumVFdEOELU2mHywaJNJfcjPz9M5TKcJE6No,3466
188
198
  meshtrade/wallet/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
189
- meshtrade/wallet/account/v1/service_meshpy.py,sha256=qdZWJj9fLsDEdMBVtiIjDoWq8LAt1-ES_dh9jmLgYoI,7520
199
+ meshtrade/wallet/account/v1/service_meshpy.py,sha256=LjBO5Yt8_Dmz2Hk55sGxAwKM05g30yNVVgWFD5agfG0,9912
190
200
  meshtrade/wallet/account/v1/service_options_meshpy.py,sha256=ROVvFr-sub9TMtzHO-s2GkNVvzkjf0Hh7Gw9nO-cljg,2543
191
- meshtrade/wallet/account/v1/service_pb2.py,sha256=4huN7EQVoNpqMf5UK9iIyAKUGhWPj-a9OdC2soqXxlQ,5208
192
- meshtrade/wallet/account/v1/service_pb2.pyi,sha256=PL7ANYkhNYTrC8fXv9Pjfz2x-IeUj8HnytTAn4wnvNU,2132
193
- meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=lTykth2v98aluqtqaID78HJ6dubXqI0ShpvfFmu3_pY,9480
194
- meshtrade-1.5.0.dist-info/METADATA,sha256=8f4rZ2b7o3A21492k4b2-kS-9egmAgtzQkiLFBtPiIE,3006
195
- meshtrade-1.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
196
- meshtrade-1.5.0.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
197
- meshtrade-1.5.0.dist-info/RECORD,,
201
+ meshtrade/wallet/account/v1/service_pb2.py,sha256=NQv7lnrplTcR2xg50xXGazE6eOrjgf-45XHbAP-cWZw,12781
202
+ meshtrade/wallet/account/v1/service_pb2.pyi,sha256=wLMWFI5dqcabuFojdskc2N5Cast1CRLPw1I7mXc6DnU,5318
203
+ meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=TDGEjiEg_HI1nUOpHns9cDrers7O4aQTOSX4hnQCFJs,20794
204
+ meshtrade-1.7.0.dist-info/METADATA,sha256=_3SU1A9dERSYBPk9umL1I6NMlRFADlDjvjsNmhY4Tx8,3006
205
+ meshtrade-1.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
206
+ meshtrade-1.7.0.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
207
+ meshtrade-1.7.0.dist-info/RECORD,,