meshtrade 0.0.10__py3-none-any.whl → 0.0.11__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/type/v1/__init__.py +2 -0
- meshtrade/type/v1/sorting_pb2.py +37 -0
- meshtrade/type/v1/sorting_pb2.pyi +14 -0
- meshtrade/type/v1/sorting_pb2_grpc.py +4 -0
- {meshtrade-0.0.10.dist-info → meshtrade-0.0.11.dist-info}/METADATA +1 -1
- {meshtrade-0.0.10.dist-info → meshtrade-0.0.11.dist-info}/RECORD +8 -5
- {meshtrade-0.0.10.dist-info → meshtrade-0.0.11.dist-info}/WHEEL +0 -0
- {meshtrade-0.0.10.dist-info → meshtrade-0.0.11.dist-info}/top_level.txt +0 -0
meshtrade/type/v1/__init__.py
CHANGED
|
@@ -20,6 +20,7 @@ from .ledger_pb2 import Ledger
|
|
|
20
20
|
from .token_pb2 import Token
|
|
21
21
|
from .amount_pb2 import Amount
|
|
22
22
|
from .date_pb2 import Date
|
|
23
|
+
from .sorting_pb2 import SortingOrder
|
|
23
24
|
from .time_of_day_pb2 import TimeOfDay
|
|
24
25
|
|
|
25
26
|
# ===================================================================
|
|
@@ -88,6 +89,7 @@ __all__ = [
|
|
|
88
89
|
"Date",
|
|
89
90
|
"Decimal",
|
|
90
91
|
"Ledger",
|
|
92
|
+
"SortingOrder",
|
|
91
93
|
"TimeOfDay",
|
|
92
94
|
"Token",
|
|
93
95
|
# Manual exports
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: meshtrade/type/v1/sorting.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/type/v1/sorting.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1fmeshtrade/type/v1/sorting.proto\x12\x11meshtrade.type.v1*\\\n\x0cSortingOrder\x12\x1d\n\x19SORTING_ORDER_UNSPECIFIED\x10\x00\x12\x15\n\x11SORTING_ORDER_ASC\x10\x01\x12\x16\n\x12SORTING_ORDER_DESC\x10\x02\x42\x46\n\x18\x63o.meshtrade.api.type.v1Z*github.com/meshtrade/api/go/type/v1;typev1b\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'meshtrade.type.v1.sorting_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
34
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\030co.meshtrade.api.type.v1Z*github.com/meshtrade/api/go/type/v1;typev1'
|
|
35
|
+
_globals['_SORTINGORDER']._serialized_start=54
|
|
36
|
+
_globals['_SORTINGORDER']._serialized_end=146
|
|
37
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from typing import ClassVar as _ClassVar
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class SortingOrder(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
8
|
+
__slots__ = ()
|
|
9
|
+
SORTING_ORDER_UNSPECIFIED: _ClassVar[SortingOrder]
|
|
10
|
+
SORTING_ORDER_ASC: _ClassVar[SortingOrder]
|
|
11
|
+
SORTING_ORDER_DESC: _ClassVar[SortingOrder]
|
|
12
|
+
SORTING_ORDER_UNSPECIFIED: SortingOrder
|
|
13
|
+
SORTING_ORDER_ASC: SortingOrder
|
|
14
|
+
SORTING_ORDER_DESC: SortingOrder
|
|
@@ -127,7 +127,7 @@ meshtrade/trading/market_order/v1/service_pb2.py,sha256=hRwjWXvH2VeoKA7IIF2POCTn
|
|
|
127
127
|
meshtrade/trading/market_order/v1/service_pb2.pyi,sha256=MIGhHksXG6hw6N-afJEEAR3fUqKoNU2EdfffDcLMO3c,612
|
|
128
128
|
meshtrade/trading/market_order/v1/service_pb2_grpc.py,sha256=MvjbM6EO7A4jFr8e68umjIIxw5swzoVpuxrLvmxr7es,3430
|
|
129
129
|
meshtrade/type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
meshtrade/type/v1/__init__.py,sha256=
|
|
130
|
+
meshtrade/type/v1/__init__.py,sha256=eqJu43Vhe1MWwJ5iMTvAK6uoFQEFdrs80gP0_EzW1Pk,3521
|
|
131
131
|
meshtrade/type/v1/address_pb2.py,sha256=uZQcUd_Nr1gQrWMZz6dmbcOvqMPuJ-T6daQmeJzI-jw,1858
|
|
132
132
|
meshtrade/type/v1/address_pb2.pyi,sha256=A1PdvzCZpd-JKQhTwwQ3gz2Kw9mOkH3S1imSm78_4Uw,1107
|
|
133
133
|
meshtrade/type/v1/address_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
@@ -150,6 +150,9 @@ meshtrade/type/v1/ledger.py,sha256=Nh8ySOE2G78oWoJ0PF2_7QahF6Lbsy4K4vymO0by_3Y,7
|
|
|
150
150
|
meshtrade/type/v1/ledger_pb2.py,sha256=QTJWEH9XAkM-aKorcUKEqf4OcDv2UwDfBOYZMx76wng,1813
|
|
151
151
|
meshtrade/type/v1/ledger_pb2.pyi,sha256=r3emyUDafn9p3XTzwpnM0gzLiwrmgXYTp8GwZxw8_FM,801
|
|
152
152
|
meshtrade/type/v1/ledger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
153
|
+
meshtrade/type/v1/sorting_pb2.py,sha256=vpMAo_3ImcSEk5oiymF6men8MUpZxnn_KXV71lOELKY,1663
|
|
154
|
+
meshtrade/type/v1/sorting_pb2.pyi,sha256=Ki-91U-rzKZ9dsTHqjeSLN6x4vgsa-UxUNDd0nJo4fk,558
|
|
155
|
+
meshtrade/type/v1/sorting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
153
156
|
meshtrade/type/v1/time_of_day.py,sha256=jJSf5WoCv5oSDy1FtJ8rcSgUEtZ2ro9gUDsqwsqPArw,7990
|
|
154
157
|
meshtrade/type/v1/time_of_day_pb2.py,sha256=zScN4lbJxZsoLWM5IUU5rOP3ACOqbaP5wSgD1e0rclc,1729
|
|
155
158
|
meshtrade/type/v1/time_of_day_pb2.pyi,sha256=VJqfuglQos5-kAHBpWVxwDz4SV5aZ6-EyUFQaNl-VyM,679
|
|
@@ -167,7 +170,7 @@ meshtrade/wallet/account/v1/service_options_meshpy.py,sha256=ROVvFr-sub9TMtzHO-s
|
|
|
167
170
|
meshtrade/wallet/account/v1/service_pb2.py,sha256=V_8qQHIqSIoyph5KAmOgm93_-4_I9g1OVawfmhiMvjc,5143
|
|
168
171
|
meshtrade/wallet/account/v1/service_pb2.pyi,sha256=PL7ANYkhNYTrC8fXv9Pjfz2x-IeUj8HnytTAn4wnvNU,2132
|
|
169
172
|
meshtrade/wallet/account/v1/service_pb2_grpc.py,sha256=lTykth2v98aluqtqaID78HJ6dubXqI0ShpvfFmu3_pY,9480
|
|
170
|
-
meshtrade-0.0.
|
|
171
|
-
meshtrade-0.0.
|
|
172
|
-
meshtrade-0.0.
|
|
173
|
-
meshtrade-0.0.
|
|
173
|
+
meshtrade-0.0.11.dist-info/METADATA,sha256=-uO6ShFeERIhTtaGhwBz0Ymi-Ip3vylaobKdg_Yu5_A,3007
|
|
174
|
+
meshtrade-0.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
175
|
+
meshtrade-0.0.11.dist-info/top_level.txt,sha256=NV0mf_yWXSvBwj2_q5aSz2hN5hQF0QypAiJwV4schJI,14
|
|
176
|
+
meshtrade-0.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|