@elizaos/python 2.0.0-alpha.10 → 2.0.0-alpha.26
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.
- package/elizaos/__init__.py +0 -1
- package/elizaos/advanced_capabilities/__init__.py +6 -41
- package/elizaos/advanced_capabilities/actions/__init__.py +1 -21
- package/elizaos/advanced_capabilities/actions/add_contact.py +21 -11
- package/elizaos/advanced_capabilities/actions/follow_room.py +28 -28
- package/elizaos/advanced_capabilities/actions/image_generation.py +13 -26
- package/elizaos/advanced_capabilities/actions/mute_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/remove_contact.py +16 -2
- package/elizaos/advanced_capabilities/actions/roles.py +13 -27
- package/elizaos/advanced_capabilities/actions/schedule_follow_up.py +70 -15
- package/elizaos/advanced_capabilities/actions/search_contacts.py +17 -3
- package/elizaos/advanced_capabilities/actions/send_message.py +183 -50
- package/elizaos/advanced_capabilities/actions/settings.py +16 -2
- package/elizaos/advanced_capabilities/actions/unfollow_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/unmute_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/update_contact.py +16 -2
- package/elizaos/advanced_capabilities/actions/update_entity.py +16 -2
- package/elizaos/advanced_capabilities/evaluators/__init__.py +2 -9
- package/elizaos/advanced_capabilities/evaluators/reflection.py +3 -132
- package/elizaos/advanced_capabilities/evaluators/relationship_extraction.py +5 -201
- package/elizaos/advanced_capabilities/providers/__init__.py +1 -12
- package/elizaos/advanced_capabilities/providers/knowledge.py +24 -3
- package/elizaos/advanced_capabilities/services/__init__.py +2 -9
- package/elizaos/advanced_memory/actions/reset_session.py +11 -0
- package/elizaos/advanced_memory/evaluators/reflection.py +134 -0
- package/elizaos/advanced_memory/evaluators/relationship_extraction.py +203 -0
- package/elizaos/advanced_memory/memory_service.py +15 -17
- package/elizaos/advanced_memory/test_advanced_memory.py +357 -0
- package/elizaos/advanced_planning/actions/schedule_follow_up.py +222 -0
- package/elizaos/advanced_planning/planning_service.py +26 -14
- package/elizaos/basic_capabilities/__init__.py +0 -2
- package/elizaos/basic_capabilities/providers/__init__.py +0 -3
- package/elizaos/basic_capabilities/providers/actions.py +118 -29
- package/elizaos/basic_capabilities/providers/agent_settings.py +64 -0
- package/elizaos/basic_capabilities/providers/character.py +19 -21
- package/elizaos/basic_capabilities/providers/contacts.py +79 -0
- package/elizaos/basic_capabilities/providers/current_time.py +7 -4
- package/elizaos/basic_capabilities/providers/facts.py +87 -0
- package/elizaos/basic_capabilities/providers/follow_ups.py +117 -0
- package/elizaos/basic_capabilities/providers/knowledge.py +97 -0
- package/elizaos/basic_capabilities/providers/relationships.py +107 -0
- package/elizaos/basic_capabilities/providers/roles.py +96 -0
- package/elizaos/basic_capabilities/providers/settings.py +56 -0
- package/elizaos/basic_capabilities/providers/time.py +7 -4
- package/elizaos/bootstrap/__init__.py +21 -2
- package/elizaos/bootstrap/actions/schedule_follow_up.py +65 -7
- package/elizaos/bootstrap/actions/send_message.py +162 -15
- package/elizaos/bootstrap/autonomy/__init__.py +5 -1
- package/elizaos/bootstrap/autonomy/action.py +161 -0
- package/elizaos/bootstrap/autonomy/evaluators.py +217 -0
- package/elizaos/bootstrap/autonomy/service.py +238 -28
- package/elizaos/bootstrap/plugin.py +7 -0
- package/elizaos/bootstrap/providers/actions.py +118 -27
- package/elizaos/bootstrap/providers/agent_settings.py +1 -0
- package/elizaos/bootstrap/providers/attachments.py +1 -0
- package/elizaos/bootstrap/providers/capabilities.py +1 -0
- package/elizaos/bootstrap/providers/character.py +1 -0
- package/elizaos/bootstrap/providers/choice.py +1 -0
- package/elizaos/bootstrap/providers/contacts.py +1 -0
- package/elizaos/bootstrap/providers/current_time.py +8 -2
- package/elizaos/bootstrap/providers/entities.py +1 -0
- package/elizaos/bootstrap/providers/evaluators.py +1 -0
- package/elizaos/bootstrap/providers/facts.py +1 -0
- package/elizaos/bootstrap/providers/follow_ups.py +1 -0
- package/elizaos/bootstrap/providers/knowledge.py +27 -3
- package/elizaos/bootstrap/providers/providers_list.py +1 -0
- package/elizaos/bootstrap/providers/relationships.py +1 -0
- package/elizaos/bootstrap/providers/roles.py +1 -0
- package/elizaos/bootstrap/providers/settings.py +1 -0
- package/elizaos/bootstrap/providers/time.py +8 -4
- package/elizaos/bootstrap/providers/world.py +1 -0
- package/elizaos/bootstrap/services/embedding.py +156 -1
- package/elizaos/deterministic.py +193 -0
- package/elizaos/generated/__init__.py +1 -0
- package/elizaos/generated/action_docs.py +3181 -0
- package/elizaos/generated/spec_helpers.py +175 -0
- package/elizaos/media/mime.py +2 -2
- package/elizaos/media/search.py +23 -23
- package/elizaos/runtime.py +215 -57
- package/elizaos/services/message_service.py +175 -29
- package/elizaos/types/components.py +2 -2
- package/elizaos/types/generated/__init__.py +12 -0
- package/elizaos/types/generated/eliza/v1/agent_pb2.py +63 -0
- package/elizaos/types/generated/eliza/v1/agent_pb2.pyi +159 -0
- package/elizaos/types/generated/eliza/v1/components_pb2.py +65 -0
- package/elizaos/types/generated/eliza/v1/components_pb2.pyi +160 -0
- package/elizaos/types/generated/eliza/v1/database_pb2.py +78 -0
- package/elizaos/types/generated/eliza/v1/database_pb2.pyi +305 -0
- package/elizaos/types/generated/eliza/v1/environment_pb2.py +58 -0
- package/elizaos/types/generated/eliza/v1/environment_pb2.pyi +135 -0
- package/elizaos/types/generated/eliza/v1/events_pb2.py +82 -0
- package/elizaos/types/generated/eliza/v1/events_pb2.pyi +322 -0
- package/elizaos/types/generated/eliza/v1/ipc_pb2.py +113 -0
- package/elizaos/types/generated/eliza/v1/ipc_pb2.pyi +367 -0
- package/elizaos/types/generated/eliza/v1/knowledge_pb2.py +41 -0
- package/elizaos/types/generated/eliza/v1/knowledge_pb2.pyi +26 -0
- package/elizaos/types/generated/eliza/v1/memory_pb2.py +55 -0
- package/elizaos/types/generated/eliza/v1/memory_pb2.pyi +111 -0
- package/elizaos/types/generated/eliza/v1/message_service_pb2.py +48 -0
- package/elizaos/types/generated/eliza/v1/message_service_pb2.pyi +69 -0
- package/elizaos/types/generated/eliza/v1/messaging_pb2.py +51 -0
- package/elizaos/types/generated/eliza/v1/messaging_pb2.pyi +97 -0
- package/elizaos/types/generated/eliza/v1/model_pb2.py +84 -0
- package/elizaos/types/generated/eliza/v1/model_pb2.pyi +280 -0
- package/elizaos/types/generated/eliza/v1/payment_pb2.py +44 -0
- package/elizaos/types/generated/eliza/v1/payment_pb2.pyi +70 -0
- package/elizaos/types/generated/eliza/v1/plugin_pb2.py +68 -0
- package/elizaos/types/generated/eliza/v1/plugin_pb2.pyi +145 -0
- package/elizaos/types/generated/eliza/v1/primitives_pb2.py +48 -0
- package/elizaos/types/generated/eliza/v1/primitives_pb2.pyi +92 -0
- package/elizaos/types/generated/eliza/v1/prompts_pb2.py +52 -0
- package/elizaos/types/generated/eliza/v1/prompts_pb2.pyi +74 -0
- package/elizaos/types/generated/eliza/v1/service_interfaces_pb2.py +211 -0
- package/elizaos/types/generated/eliza/v1/service_interfaces_pb2.pyi +1296 -0
- package/elizaos/types/generated/eliza/v1/service_pb2.py +42 -0
- package/elizaos/types/generated/eliza/v1/service_pb2.pyi +69 -0
- package/elizaos/types/generated/eliza/v1/settings_pb2.py +58 -0
- package/elizaos/types/generated/eliza/v1/settings_pb2.pyi +85 -0
- package/elizaos/types/generated/eliza/v1/state_pb2.py +60 -0
- package/elizaos/types/generated/eliza/v1/state_pb2.pyi +114 -0
- package/elizaos/types/generated/eliza/v1/task_pb2.py +42 -0
- package/elizaos/types/generated/eliza/v1/task_pb2.pyi +58 -0
- package/elizaos/types/generated/eliza/v1/tee_pb2.py +52 -0
- package/elizaos/types/generated/eliza/v1/tee_pb2.pyi +90 -0
- package/elizaos/types/generated/eliza/v1/testing_pb2.py +39 -0
- package/elizaos/types/generated/eliza/v1/testing_pb2.pyi +23 -0
- package/elizaos/types/model.py +30 -0
- package/elizaos/types/runtime.py +6 -2
- package/elizaos/utils/validation.py +76 -0
- package/package.json +3 -2
- package/tests/test_action_parameters.py +2 -3
- package/tests/test_actions_provider_examples.py +58 -1
- package/tests/test_advanced_memory_behavior.py +0 -2
- package/tests/test_advanced_memory_flag.py +0 -2
- package/tests/test_advanced_planning_behavior.py +11 -5
- package/tests/test_async_embedding.py +124 -0
- package/tests/test_autonomy.py +24 -3
- package/tests/test_runtime.py +8 -17
- package/tests/test_schedule_follow_up_action.py +260 -0
- package/tests/test_send_message_action_targets.py +114 -0
- package/tests/test_settings_crypto.py +0 -2
- package/tests/test_validation.py +141 -0
- package/tests/verify_memory_architecture.py +192 -0
- package/uv.lock +1565 -0
- package/elizaos/basic_capabilities/providers/capabilities.py +0 -62
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/primitives.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
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
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/primitives.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x65liza/v1/primitives.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"\x1c\n\x04UUID\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\"#\n\x0b\x44\x65\x66\x61ultUUID\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\"\x88\x02\n\x05Media\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url\x12\x19\n\x05title\x18\x03 \x01(\tH\x00R\x05title\x88\x01\x01\x12\x1b\n\x06source\x18\x04 \x01(\tH\x01R\x06source\x88\x01\x01\x12%\n\x0b\x64\x65scription\x18\x05 \x01(\tH\x02R\x0b\x64\x65scription\x88\x01\x01\x12\x17\n\x04text\x18\x06 \x01(\tH\x03R\x04text\x88\x01\x01\x12&\n\x0c\x63ontent_type\x18\x07 \x01(\tH\x04R\x0b\x63ontentType\x88\x01\x01\x42\x08\n\x06_titleB\t\n\x07_sourceB\x0e\n\x0c_descriptionB\x07\n\x05_textB\x0f\n\r_content_type\"\xa0\x01\n\x0eMentionContext\x12\x1d\n\nis_mention\x18\x01 \x01(\x08R\tisMention\x12\x19\n\x08is_reply\x18\x02 \x01(\x08R\x07isReply\x12\x1b\n\tis_thread\x18\x03 \x01(\x08R\x08isThread\x12&\n\x0cmention_type\x18\x04 \x01(\tH\x00R\x0bmentionType\x88\x01\x01\x42\x0f\n\r_mention_type\"\xf4\x05\n\x07\x43ontent\x12\x1d\n\x07thought\x18\x01 \x01(\tH\x00R\x07thought\x88\x01\x01\x12\x17\n\x04text\x18\x02 \x01(\tH\x01R\x04text\x88\x01\x01\x12\x18\n\x07\x61\x63tions\x18\x03 \x03(\tR\x07\x61\x63tions\x12\x1c\n\tproviders\x18\x04 \x03(\tR\tproviders\x12\x1b\n\x06source\x18\x05 \x01(\tH\x02R\x06source\x88\x01\x01\x12\x1b\n\x06target\x18\x06 \x01(\tH\x03R\x06target\x88\x01\x01\x12\x15\n\x03url\x18\x07 \x01(\tH\x04R\x03url\x88\x01\x01\x12#\n\x0bin_reply_to\x18\x08 \x01(\tH\x05R\tinReplyTo\x88\x01\x01\x12\x31\n\x0b\x61ttachments\x18\t \x03(\x0b\x32\x0f.eliza.v1.MediaR\x0b\x61ttachments\x12&\n\x0c\x63hannel_type\x18\n \x01(\tH\x06R\x0b\x63hannelType\x88\x01\x01\x12\x46\n\x0fmention_context\x18\x0b \x01(\x0b\x32\x18.eliza.v1.MentionContextH\x07R\x0ementionContext\x88\x01\x01\x12\x33\n\x13response_message_id\x18\x0c \x01(\tH\x08R\x11responseMessageId\x88\x01\x01\x12$\n\x0bresponse_id\x18\r \x01(\tH\tR\nresponseId\x88\x01\x01\x12\x1b\n\x06simple\x18\x0e \x01(\x08H\nR\x06simple\x88\x01\x01\x12\x17\n\x04type\x18\x0f \x01(\tH\x0bR\x04type\x88\x01\x01\x12+\n\x04\x64\x61ta\x18\x10 \x01(\x0b\x32\x17.google.protobuf.StructR\x04\x64\x61taB\n\n\x08_thoughtB\x07\n\x05_textB\t\n\x07_sourceB\t\n\x07_targetB\x06\n\x04_urlB\x0e\n\x0c_in_reply_toB\x0f\n\r_channel_typeB\x12\n\x10_mention_contextB\x16\n\x14_response_message_idB\x0e\n\x0c_response_idB\t\n\x07_simpleB\x07\n\x05_type\";\n\x08Metadata\x12/\n\x06values\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x06valuesB\x92\x01\n\x0c\x63om.eliza.v1B\x0fPrimitivesProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.primitives_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\017PrimitivesProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_UUID']._serialized_start=69
|
|
37
|
+
_globals['_UUID']._serialized_end=97
|
|
38
|
+
_globals['_DEFAULTUUID']._serialized_start=99
|
|
39
|
+
_globals['_DEFAULTUUID']._serialized_end=134
|
|
40
|
+
_globals['_MEDIA']._serialized_start=137
|
|
41
|
+
_globals['_MEDIA']._serialized_end=401
|
|
42
|
+
_globals['_MENTIONCONTEXT']._serialized_start=404
|
|
43
|
+
_globals['_MENTIONCONTEXT']._serialized_end=564
|
|
44
|
+
_globals['_CONTENT']._serialized_start=567
|
|
45
|
+
_globals['_CONTENT']._serialized_end=1323
|
|
46
|
+
_globals['_METADATA']._serialized_start=1325
|
|
47
|
+
_globals['_METADATA']._serialized_end=1384
|
|
48
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class UUID(_message.Message):
|
|
11
|
+
__slots__ = ("value",)
|
|
12
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
value: str
|
|
14
|
+
def __init__(self, value: _Optional[str] = ...) -> None: ...
|
|
15
|
+
|
|
16
|
+
class DefaultUUID(_message.Message):
|
|
17
|
+
__slots__ = ("value",)
|
|
18
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
value: str
|
|
20
|
+
def __init__(self, value: _Optional[str] = ...) -> None: ...
|
|
21
|
+
|
|
22
|
+
class Media(_message.Message):
|
|
23
|
+
__slots__ = ("id", "url", "title", "source", "description", "text", "content_type")
|
|
24
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
URL_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
TITLE_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
SOURCE_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
TEXT_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
CONTENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
id: str
|
|
32
|
+
url: str
|
|
33
|
+
title: str
|
|
34
|
+
source: str
|
|
35
|
+
description: str
|
|
36
|
+
text: str
|
|
37
|
+
content_type: str
|
|
38
|
+
def __init__(self, id: _Optional[str] = ..., url: _Optional[str] = ..., title: _Optional[str] = ..., source: _Optional[str] = ..., description: _Optional[str] = ..., text: _Optional[str] = ..., content_type: _Optional[str] = ...) -> None: ...
|
|
39
|
+
|
|
40
|
+
class MentionContext(_message.Message):
|
|
41
|
+
__slots__ = ("is_mention", "is_reply", "is_thread", "mention_type")
|
|
42
|
+
IS_MENTION_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
IS_REPLY_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
IS_THREAD_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
MENTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
is_mention: bool
|
|
47
|
+
is_reply: bool
|
|
48
|
+
is_thread: bool
|
|
49
|
+
mention_type: str
|
|
50
|
+
def __init__(self, is_mention: _Optional[bool] = ..., is_reply: _Optional[bool] = ..., is_thread: _Optional[bool] = ..., mention_type: _Optional[str] = ...) -> None: ...
|
|
51
|
+
|
|
52
|
+
class Content(_message.Message):
|
|
53
|
+
__slots__ = ("thought", "text", "actions", "providers", "source", "target", "url", "in_reply_to", "attachments", "channel_type", "mention_context", "response_message_id", "response_id", "simple", "type", "data")
|
|
54
|
+
THOUGHT_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
TEXT_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
ACTIONS_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
PROVIDERS_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
SOURCE_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
TARGET_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
URL_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
IN_REPLY_TO_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
ATTACHMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
CHANNEL_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
MENTION_CONTEXT_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
RESPONSE_MESSAGE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
RESPONSE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
SIMPLE_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
thought: str
|
|
71
|
+
text: str
|
|
72
|
+
actions: _containers.RepeatedScalarFieldContainer[str]
|
|
73
|
+
providers: _containers.RepeatedScalarFieldContainer[str]
|
|
74
|
+
source: str
|
|
75
|
+
target: str
|
|
76
|
+
url: str
|
|
77
|
+
in_reply_to: str
|
|
78
|
+
attachments: _containers.RepeatedCompositeFieldContainer[Media]
|
|
79
|
+
channel_type: str
|
|
80
|
+
mention_context: MentionContext
|
|
81
|
+
response_message_id: str
|
|
82
|
+
response_id: str
|
|
83
|
+
simple: bool
|
|
84
|
+
type: str
|
|
85
|
+
data: _struct_pb2.Struct
|
|
86
|
+
def __init__(self, thought: _Optional[str] = ..., text: _Optional[str] = ..., actions: _Optional[_Iterable[str]] = ..., providers: _Optional[_Iterable[str]] = ..., source: _Optional[str] = ..., target: _Optional[str] = ..., url: _Optional[str] = ..., in_reply_to: _Optional[str] = ..., attachments: _Optional[_Iterable[_Union[Media, _Mapping]]] = ..., channel_type: _Optional[str] = ..., mention_context: _Optional[_Union[MentionContext, _Mapping]] = ..., response_message_id: _Optional[str] = ..., response_id: _Optional[str] = ..., simple: _Optional[bool] = ..., type: _Optional[str] = ..., data: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
87
|
+
|
|
88
|
+
class Metadata(_message.Message):
|
|
89
|
+
__slots__ = ("values",)
|
|
90
|
+
VALUES_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
values: _struct_pb2.Struct
|
|
92
|
+
def __init__(self, values: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/prompts.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
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
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/prompts.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x65liza/v1/prompts.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"\xb0\x01\n\x0fPromptFieldInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x14\n\x05label\x18\x03 \x01(\tR\x05label\x12%\n\x0b\x64\x65scription\x18\x04 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12\x1f\n\x08\x63riteria\x18\x05 \x01(\tH\x01R\x08\x63riteria\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0b\n\t_criteria\"\xe4\x01\n\x12\x42uildPromptOptions\x12\x1a\n\x08template\x18\x01 \x01(\tR\x08template\x12-\n\x05state\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x05state\x12\x46\n\x08\x64\x65\x66\x61ults\x18\x03 \x03(\x0b\x32*.eliza.v1.BuildPromptOptions.DefaultsEntryR\x08\x64\x65\x66\x61ults\x1a;\n\rDefaultsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xaf\x01\n\x0b\x42uiltPrompt\x12\x16\n\x06prompt\x18\x01 \x01(\tR\x06prompt\x12\x1b\n\x06system\x18\x02 \x01(\tH\x00R\x06system\x88\x01\x01\x12\x33\n\x15substituted_variables\x18\x03 \x03(\tR\x14substitutedVariables\x12+\n\x11missing_variables\x18\x04 \x03(\tR\x10missingVariablesB\t\n\x07_system\"\xe2\x02\n\x14PromptTemplateConfig\x12\x1a\n\x08template\x18\x01 \x01(\tR\x08template\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12%\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12H\n\x08\x64\x65\x66\x61ults\x18\x04 \x03(\x0b\x32,.eliza.v1.PromptTemplateConfig.DefaultsEntryR\x08\x64\x65\x66\x61ults\x12-\n\x12required_variables\x18\x05 \x03(\tR\x11requiredVariables\x12-\n\x12optional_variables\x18\x06 \x03(\tR\x11optionalVariables\x1a;\n\rDefaultsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x0e\n\x0c_descriptionB\x8f\x01\n\x0c\x63om.eliza.v1B\x0cPromptsProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.prompts_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\014PromptsProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_BUILDPROMPTOPTIONS_DEFAULTSENTRY']._loaded_options = None
|
|
37
|
+
_globals['_BUILDPROMPTOPTIONS_DEFAULTSENTRY']._serialized_options = b'8\001'
|
|
38
|
+
_globals['_PROMPTTEMPLATECONFIG_DEFAULTSENTRY']._loaded_options = None
|
|
39
|
+
_globals['_PROMPTTEMPLATECONFIG_DEFAULTSENTRY']._serialized_options = b'8\001'
|
|
40
|
+
_globals['_PROMPTFIELDINFO']._serialized_start=67
|
|
41
|
+
_globals['_PROMPTFIELDINFO']._serialized_end=243
|
|
42
|
+
_globals['_BUILDPROMPTOPTIONS']._serialized_start=246
|
|
43
|
+
_globals['_BUILDPROMPTOPTIONS']._serialized_end=474
|
|
44
|
+
_globals['_BUILDPROMPTOPTIONS_DEFAULTSENTRY']._serialized_start=415
|
|
45
|
+
_globals['_BUILDPROMPTOPTIONS_DEFAULTSENTRY']._serialized_end=474
|
|
46
|
+
_globals['_BUILTPROMPT']._serialized_start=477
|
|
47
|
+
_globals['_BUILTPROMPT']._serialized_end=652
|
|
48
|
+
_globals['_PROMPTTEMPLATECONFIG']._serialized_start=655
|
|
49
|
+
_globals['_PROMPTTEMPLATECONFIG']._serialized_end=1009
|
|
50
|
+
_globals['_PROMPTTEMPLATECONFIG_DEFAULTSENTRY']._serialized_start=415
|
|
51
|
+
_globals['_PROMPTTEMPLATECONFIG_DEFAULTSENTRY']._serialized_end=474
|
|
52
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class PromptFieldInfo(_message.Message):
|
|
11
|
+
__slots__ = ("id", "type", "label", "description", "criteria")
|
|
12
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
LABEL_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
CRITERIA_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
id: str
|
|
18
|
+
type: str
|
|
19
|
+
label: str
|
|
20
|
+
description: str
|
|
21
|
+
criteria: str
|
|
22
|
+
def __init__(self, id: _Optional[str] = ..., type: _Optional[str] = ..., label: _Optional[str] = ..., description: _Optional[str] = ..., criteria: _Optional[str] = ...) -> None: ...
|
|
23
|
+
|
|
24
|
+
class BuildPromptOptions(_message.Message):
|
|
25
|
+
__slots__ = ("template", "state", "defaults")
|
|
26
|
+
class DefaultsEntry(_message.Message):
|
|
27
|
+
__slots__ = ("key", "value")
|
|
28
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
key: str
|
|
31
|
+
value: str
|
|
32
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
33
|
+
TEMPLATE_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
STATE_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
DEFAULTS_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
template: str
|
|
37
|
+
state: _struct_pb2.Struct
|
|
38
|
+
defaults: _containers.ScalarMap[str, str]
|
|
39
|
+
def __init__(self, template: _Optional[str] = ..., state: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., defaults: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
|
40
|
+
|
|
41
|
+
class BuiltPrompt(_message.Message):
|
|
42
|
+
__slots__ = ("prompt", "system", "substituted_variables", "missing_variables")
|
|
43
|
+
PROMPT_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
SUBSTITUTED_VARIABLES_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
MISSING_VARIABLES_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
prompt: str
|
|
48
|
+
system: str
|
|
49
|
+
substituted_variables: _containers.RepeatedScalarFieldContainer[str]
|
|
50
|
+
missing_variables: _containers.RepeatedScalarFieldContainer[str]
|
|
51
|
+
def __init__(self, prompt: _Optional[str] = ..., system: _Optional[str] = ..., substituted_variables: _Optional[_Iterable[str]] = ..., missing_variables: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
52
|
+
|
|
53
|
+
class PromptTemplateConfig(_message.Message):
|
|
54
|
+
__slots__ = ("template", "name", "description", "defaults", "required_variables", "optional_variables")
|
|
55
|
+
class DefaultsEntry(_message.Message):
|
|
56
|
+
__slots__ = ("key", "value")
|
|
57
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
key: str
|
|
60
|
+
value: str
|
|
61
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
62
|
+
TEMPLATE_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
DEFAULTS_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
REQUIRED_VARIABLES_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
OPTIONAL_VARIABLES_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
template: str
|
|
69
|
+
name: str
|
|
70
|
+
description: str
|
|
71
|
+
defaults: _containers.ScalarMap[str, str]
|
|
72
|
+
required_variables: _containers.RepeatedScalarFieldContainer[str]
|
|
73
|
+
optional_variables: _containers.RepeatedScalarFieldContainer[str]
|
|
74
|
+
def __init__(self, template: _Optional[str] = ..., name: _Optional[str] = ..., description: _Optional[str] = ..., defaults: _Optional[_Mapping[str, str]] = ..., required_variables: _Optional[_Iterable[str]] = ..., optional_variables: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/service_interfaces.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
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
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/service_interfaces.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!eliza/v1/service_interfaces.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x85\x02\n\x0cTokenBalance\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12\x18\n\x07\x62\x61lance\x18\x02 \x01(\tR\x07\x62\x61lance\x12\x1a\n\x08\x64\x65\x63imals\x18\x03 \x01(\x05R\x08\x64\x65\x63imals\x12 \n\tui_amount\x18\x04 \x01(\x01H\x00R\x08uiAmount\x88\x01\x01\x12\x17\n\x04name\x18\x05 \x01(\tH\x01R\x04name\x88\x01\x01\x12\x1b\n\x06symbol\x18\x06 \x01(\tH\x02R\x06symbol\x88\x01\x01\x12\x1e\n\x08logo_uri\x18\x07 \x01(\tH\x03R\x07logoUri\x88\x01\x01\x42\x0c\n\n_ui_amountB\x07\n\x05_nameB\t\n\x07_symbolB\x0b\n\t_logo_uri\"\xaa\x06\n\tTokenData\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n\x06symbol\x18\x02 \x01(\tR\x06symbol\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x18\n\x07\x61\x64\x64ress\x18\x04 \x01(\tR\x07\x61\x64\x64ress\x12\x14\n\x05\x63hain\x18\x05 \x01(\tR\x05\x63hain\x12\'\n\x0fsource_provider\x18\x06 \x01(\tR\x0esourceProvider\x12\x19\n\x05price\x18\x07 \x01(\x01H\x00R\x05price\x88\x01\x01\x12<\n\x18price_change_24h_percent\x18\x08 \x01(\x01H\x01R\x15priceChange24hPercent\x88\x01\x01\x12\x34\n\x14price_change_24h_usd\x18\t \x01(\x01H\x02R\x11priceChange24hUsd\x88\x01\x01\x12)\n\x0evolume_24h_usd\x18\n \x01(\x01H\x03R\x0cvolume24hUsd\x88\x01\x01\x12)\n\x0emarket_cap_usd\x18\x0b \x01(\x01H\x04R\x0cmarketCapUsd\x88\x01\x01\x12!\n\tliquidity\x18\x0c \x01(\x01H\x05R\tliquidity\x88\x01\x01\x12\x1d\n\x07holders\x18\r \x01(\x01H\x06R\x07holders\x88\x01\x01\x12\x1e\n\x08logo_uri\x18\x0e \x01(\tH\x07R\x07logoUri\x88\x01\x01\x12\x1f\n\x08\x64\x65\x63imals\x18\x0f \x01(\x05H\x08R\x08\x64\x65\x63imals\x88\x01\x01\x12G\n\x0flast_updated_at\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\tR\rlastUpdatedAt\x88\x01\x01\x12)\n\x03raw\x18\x11 \x01(\x0b\x32\x17.google.protobuf.StructR\x03rawB\x08\n\x06_priceB\x1b\n\x19_price_change_24h_percentB\x17\n\x15_price_change_24h_usdB\x11\n\x0f_volume_24h_usdB\x11\n\x0f_market_cap_usdB\x0c\n\n_liquidityB\n\n\x08_holdersB\x0b\n\t_logo_uriB\x0b\n\t_decimalsB\x12\n\x10_last_updated_at\"\xe4\x02\n\x0bWalletAsset\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12\x18\n\x07\x62\x61lance\x18\x02 \x01(\tR\x07\x62\x61lance\x12\x1a\n\x08\x64\x65\x63imals\x18\x03 \x01(\x05R\x08\x64\x65\x63imals\x12 \n\tui_amount\x18\x04 \x01(\x01H\x00R\x08uiAmount\x88\x01\x01\x12\x17\n\x04name\x18\x05 \x01(\tH\x01R\x04name\x88\x01\x01\x12\x1b\n\x06symbol\x18\x06 \x01(\tH\x02R\x06symbol\x88\x01\x01\x12\x1e\n\x08logo_uri\x18\x07 \x01(\tH\x03R\x07logoUri\x88\x01\x01\x12 \n\tprice_usd\x18\x08 \x01(\x01H\x04R\x08priceUsd\x88\x01\x01\x12 \n\tvalue_usd\x18\t \x01(\x01H\x05R\x08valueUsd\x88\x01\x01\x42\x0c\n\n_ui_amountB\x07\n\x05_nameB\t\n\x07_symbolB\x0b\n\t_logo_uriB\x0c\n\n_price_usdB\x0c\n\n_value_usd\"h\n\x0fWalletPortfolio\x12&\n\x0ftotal_value_usd\x18\x01 \x01(\x01R\rtotalValueUsd\x12-\n\x06\x61ssets\x18\x02 \x03(\x0b\x32\x15.eliza.v1.WalletAssetR\x06\x61ssets\"\xa4\x01\n\rPoolTokenInfo\x12\x12\n\x04mint\x18\x01 \x01(\tR\x04mint\x12\x1b\n\x06symbol\x18\x02 \x01(\tH\x00R\x06symbol\x88\x01\x01\x12\x1d\n\x07reserve\x18\x03 \x01(\tH\x01R\x07reserve\x88\x01\x01\x12\x1f\n\x08\x64\x65\x63imals\x18\x04 \x01(\x05H\x02R\x08\x64\x65\x63imals\x88\x01\x01\x42\t\n\x07_symbolB\n\n\x08_reserveB\x0b\n\t_decimals\"\xb5\x03\n\x08PoolInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12&\n\x0c\x64isplay_name\x18\x02 \x01(\tH\x00R\x0b\x64isplayName\x88\x01\x01\x12\x10\n\x03\x64\x65x\x18\x03 \x01(\tR\x03\x64\x65x\x12\x30\n\x07token_a\x18\x04 \x01(\x0b\x32\x17.eliza.v1.PoolTokenInfoR\x06tokenA\x12\x30\n\x07token_b\x18\x05 \x01(\x0b\x32\x17.eliza.v1.PoolTokenInfoR\x06tokenB\x12\'\n\rlp_token_mint\x18\x06 \x01(\tH\x01R\x0blpTokenMint\x88\x01\x01\x12\x15\n\x03\x61pr\x18\x07 \x01(\x01H\x02R\x03\x61pr\x88\x01\x01\x12\x15\n\x03\x61py\x18\x08 \x01(\x01H\x03R\x03\x61py\x88\x01\x01\x12\x15\n\x03tvl\x18\t \x01(\x01H\x04R\x03tvl\x88\x01\x01\x12\x15\n\x03\x66\x65\x65\x18\n \x01(\x01H\x05R\x03\x66\x65\x65\x88\x01\x01\x12\x33\n\x08metadata\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadataB\x0f\n\r_display_nameB\x10\n\x0e_lp_token_mintB\x06\n\x04_aprB\x06\n\x04_apyB\x06\n\x04_tvlB\x06\n\x04_fee\"\x97\x03\n\x11LpPositionDetails\x12\x17\n\x07pool_id\x18\x01 \x01(\tR\x06poolId\x12\x10\n\x03\x64\x65x\x18\x02 \x01(\tR\x03\x64\x65x\x12@\n\x10lp_token_balance\x18\x03 \x01(\x0b\x32\x16.eliza.v1.TokenBalanceR\x0elpTokenBalance\x12\x43\n\x11underlying_tokens\x18\x04 \x03(\x0b\x32\x16.eliza.v1.TokenBalanceR\x10underlyingTokens\x12 \n\tvalue_usd\x18\x05 \x01(\x01H\x00R\x08valueUsd\x88\x01\x01\x12\x39\n\x0c\x61\x63\x63rued_fees\x18\x06 \x03(\x0b\x32\x16.eliza.v1.TokenBalanceR\x0b\x61\x63\x63ruedFees\x12\x30\n\x07rewards\x18\x07 \x03(\x0b\x32\x16.eliza.v1.TokenBalanceR\x07rewards\x12\x33\n\x08metadata\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadataB\x0c\n\n_value_usd\"\xbe\x01\n\x11TransactionResult\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12*\n\x0etransaction_id\x18\x02 \x01(\tH\x00R\rtransactionId\x88\x01\x01\x12\x19\n\x05\x65rror\x18\x03 \x01(\tH\x01R\x05\x65rror\x88\x01\x01\x12+\n\x04\x64\x61ta\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructR\x04\x64\x61taB\x11\n\x0f_transaction_idB\x08\n\x06_error\"\xd0\x03\n\x14TranscriptionOptions\x12\x1f\n\x08language\x18\x01 \x01(\tH\x00R\x08language\x88\x01\x01\x12\x19\n\x05model\x18\x02 \x01(\tH\x01R\x05model\x88\x01\x01\x12%\n\x0btemperature\x18\x03 \x01(\x01H\x02R\x0btemperature\x88\x01\x01\x12\x1b\n\x06prompt\x18\x04 \x01(\tH\x03R\x06prompt\x88\x01\x01\x12,\n\x0fresponse_format\x18\x05 \x01(\tH\x04R\x0eresponseFormat\x88\x01\x01\x12\x37\n\x17timestamp_granularities\x18\x06 \x03(\tR\x16timestampGranularities\x12,\n\x0fword_timestamps\x18\x07 \x01(\x08H\x05R\x0ewordTimestamps\x88\x01\x01\x12\x32\n\x12segment_timestamps\x18\x08 \x01(\x08H\x06R\x11segmentTimestamps\x88\x01\x01\x42\x0b\n\t_languageB\x08\n\x06_modelB\x0e\n\x0c_temperatureB\t\n\x07_promptB\x12\n\x10_response_formatB\x12\n\x10_word_timestampsB\x15\n\x13_segment_timestamps\"\xa8\x02\n\x13TranscriptionResult\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x1f\n\x08language\x18\x02 \x01(\tH\x00R\x08language\x88\x01\x01\x12\x1f\n\x08\x64uration\x18\x03 \x01(\x01H\x01R\x08\x64uration\x88\x01\x01\x12:\n\x08segments\x18\x04 \x03(\x0b\x32\x1e.eliza.v1.TranscriptionSegmentR\x08segments\x12\x31\n\x05words\x18\x05 \x03(\x0b\x32\x1b.eliza.v1.TranscriptionWordR\x05words\x12#\n\nconfidence\x18\x06 \x01(\x01H\x02R\nconfidence\x88\x01\x01\x42\x0b\n\t_languageB\x0b\n\t_durationB\r\n\x0b_confidence\"\xa1\x03\n\x14TranscriptionSegment\x12\x0e\n\x02id\x18\x01 \x01(\x05R\x02id\x12\x12\n\x04text\x18\x02 \x01(\tR\x04text\x12\x14\n\x05start\x18\x03 \x01(\x01R\x05start\x12\x10\n\x03\x65nd\x18\x04 \x01(\x01R\x03\x65nd\x12#\n\nconfidence\x18\x05 \x01(\x01H\x00R\nconfidence\x88\x01\x01\x12\x16\n\x06tokens\x18\x06 \x03(\x05R\x06tokens\x12%\n\x0btemperature\x18\x07 \x01(\x01H\x01R\x0btemperature\x88\x01\x01\x12$\n\x0b\x61vg_logprob\x18\x08 \x01(\x01H\x02R\navgLogprob\x88\x01\x01\x12\x30\n\x11\x63ompression_ratio\x18\t \x01(\x01H\x03R\x10\x63ompressionRatio\x88\x01\x01\x12)\n\x0eno_speech_prob\x18\n \x01(\x01H\x04R\x0cnoSpeechProb\x88\x01\x01\x42\r\n\x0b_confidenceB\x0e\n\x0c_temperatureB\x0e\n\x0c_avg_logprobB\x14\n\x12_compression_ratioB\x11\n\x0f_no_speech_prob\"\x83\x01\n\x11TranscriptionWord\x12\x12\n\x04word\x18\x01 \x01(\tR\x04word\x12\x14\n\x05start\x18\x02 \x01(\x01R\x05start\x12\x10\n\x03\x65nd\x18\x03 \x01(\x01R\x03\x65nd\x12#\n\nconfidence\x18\x04 \x01(\x01H\x00R\nconfidence\x88\x01\x01\x42\r\n\x0b_confidence\"\xa3\x02\n\x13SpeechToTextOptions\x12\x1f\n\x08language\x18\x01 \x01(\tH\x00R\x08language\x88\x01\x01\x12\x19\n\x05model\x18\x02 \x01(\tH\x01R\x05model\x88\x01\x01\x12#\n\ncontinuous\x18\x03 \x01(\x08H\x02R\ncontinuous\x88\x01\x01\x12,\n\x0finterim_results\x18\x04 \x01(\x08H\x03R\x0einterimResults\x88\x01\x01\x12.\n\x10max_alternatives\x18\x05 \x01(\x05H\x04R\x0fmaxAlternatives\x88\x01\x01\x42\x0b\n\t_languageB\x08\n\x06_modelB\r\n\x0b_continuousB\x12\n\x10_interim_resultsB\x13\n\x11_max_alternatives\"\xee\x01\n\x13TextToSpeechOptions\x12\x19\n\x05voice\x18\x01 \x01(\tH\x00R\x05voice\x88\x01\x01\x12\x19\n\x05model\x18\x02 \x01(\tH\x01R\x05model\x88\x01\x01\x12\x19\n\x05speed\x18\x03 \x01(\x01H\x02R\x05speed\x88\x01\x01\x12\x1b\n\x06\x66ormat\x18\x04 \x01(\tH\x03R\x06\x66ormat\x88\x01\x01\x12,\n\x0fresponse_format\x18\x05 \x01(\tH\x04R\x0eresponseFormat\x88\x01\x01\x42\x08\n\x06_voiceB\x08\n\x06_modelB\x08\n\x06_speedB\t\n\x07_formatB\x12\n\x10_response_format\"\xbc\x03\n\tVideoInfo\x12\x19\n\x05title\x18\x01 \x01(\tH\x00R\x05title\x88\x01\x01\x12\x1f\n\x08\x64uration\x18\x02 \x01(\x01H\x01R\x08\x64uration\x88\x01\x01\x12\x10\n\x03url\x18\x03 \x01(\tR\x03url\x12!\n\tthumbnail\x18\x04 \x01(\tH\x02R\tthumbnail\x88\x01\x01\x12%\n\x0b\x64\x65scription\x18\x05 \x01(\tH\x03R\x0b\x64\x65scription\x88\x01\x01\x12\x1f\n\x08uploader\x18\x06 \x01(\tH\x04R\x08uploader\x88\x01\x01\x12\"\n\nview_count\x18\x07 \x01(\x01H\x05R\tviewCount\x88\x01\x01\x12@\n\x0bupload_date\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x06R\nuploadDate\x88\x01\x01\x12/\n\x07\x66ormats\x18\t \x03(\x0b\x32\x15.eliza.v1.VideoFormatR\x07\x66ormatsB\x08\n\x06_titleB\x0b\n\t_durationB\x0c\n\n_thumbnailB\x0e\n\x0c_descriptionB\x0b\n\t_uploaderB\r\n\x0b_view_countB\x0e\n\x0c_upload_date\"\x8e\x03\n\x0bVideoFormat\x12\x1b\n\tformat_id\x18\x01 \x01(\tR\x08\x66ormatId\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url\x12\x1c\n\textension\x18\x03 \x01(\tR\textension\x12\x18\n\x07quality\x18\x04 \x01(\tR\x07quality\x12 \n\tfile_size\x18\x05 \x01(\x03H\x00R\x08\x66ileSize\x88\x01\x01\x12$\n\x0bvideo_codec\x18\x06 \x01(\tH\x01R\nvideoCodec\x88\x01\x01\x12$\n\x0b\x61udio_codec\x18\x07 \x01(\tH\x02R\naudioCodec\x88\x01\x01\x12#\n\nresolution\x18\x08 \x01(\tH\x03R\nresolution\x88\x01\x01\x12\x15\n\x03\x66ps\x18\t \x01(\x01H\x04R\x03\x66ps\x88\x01\x01\x12\x1d\n\x07\x62itrate\x18\n \x01(\x01H\x05R\x07\x62itrate\x88\x01\x01\x42\x0c\n\n_file_sizeB\x0e\n\x0c_video_codecB\x0e\n\x0c_audio_codecB\r\n\x0b_resolutionB\x06\n\x04_fpsB\n\n\x08_bitrate\"\xaa\x03\n\x14VideoDownloadOptions\x12\x1b\n\x06\x66ormat\x18\x01 \x01(\tH\x00R\x06\x66ormat\x88\x01\x01\x12\x1d\n\x07quality\x18\x02 \x01(\tH\x01R\x07quality\x88\x01\x01\x12$\n\x0boutput_path\x18\x03 \x01(\tH\x02R\noutputPath\x88\x01\x01\x12\"\n\naudio_only\x18\x04 \x01(\x08H\x03R\taudioOnly\x88\x01\x01\x12\"\n\nvideo_only\x18\x05 \x01(\x08H\x04R\tvideoOnly\x88\x01\x01\x12!\n\tsubtitles\x18\x06 \x01(\x08H\x05R\tsubtitles\x88\x01\x01\x12\"\n\nembed_subs\x18\x07 \x01(\x08H\x06R\tembedSubs\x88\x01\x01\x12+\n\x0fwrite_info_json\x18\x08 \x01(\x08H\x07R\rwriteInfoJson\x88\x01\x01\x42\t\n\x07_formatB\n\n\x08_qualityB\x0e\n\x0c_output_pathB\r\n\x0b_audio_onlyB\r\n\x0b_video_onlyB\x0c\n\n_subtitlesB\r\n\x0b_embed_subsB\x12\n\x10_write_info_json\"\xb0\x03\n\x16VideoProcessingOptions\x12\"\n\nstart_time\x18\x01 \x01(\x01H\x00R\tstartTime\x88\x01\x01\x12\x1e\n\x08\x65nd_time\x18\x02 \x01(\x01H\x01R\x07\x65ndTime\x88\x01\x01\x12(\n\routput_format\x18\x03 \x01(\tH\x02R\x0coutputFormat\x88\x01\x01\x12#\n\nresolution\x18\x04 \x01(\tH\x03R\nresolution\x88\x01\x01\x12\x1d\n\x07\x62itrate\x18\x05 \x01(\tH\x04R\x07\x62itrate\x88\x01\x01\x12!\n\tframerate\x18\x06 \x01(\x01H\x05R\tframerate\x88\x01\x01\x12$\n\x0b\x61udio_codec\x18\x07 \x01(\tH\x06R\naudioCodec\x88\x01\x01\x12$\n\x0bvideo_codec\x18\x08 \x01(\tH\x07R\nvideoCodec\x88\x01\x01\x42\r\n\x0b_start_timeB\x0b\n\t_end_timeB\x10\n\x0e_output_formatB\r\n\x0b_resolutionB\n\n\x08_bitrateB\x0c\n\n_framerateB\x0e\n\x0c_audio_codecB\x0e\n\x0c_video_codec\"?\n\x0f\x42rowserViewport\x12\x14\n\x05width\x18\x01 \x01(\x05R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x05R\x06height\"\xfb\x02\n\x18\x42rowserNavigationOptions\x12\x1d\n\x07timeout\x18\x01 \x01(\x05H\x00R\x07timeout\x88\x01\x01\x12\"\n\nwait_until\x18\x02 \x01(\tH\x01R\twaitUntil\x88\x01\x01\x12:\n\x08viewport\x18\x03 \x01(\x0b\x32\x19.eliza.v1.BrowserViewportH\x02R\x08viewport\x88\x01\x01\x12\"\n\nuser_agent\x18\x04 \x01(\tH\x03R\tuserAgent\x88\x01\x01\x12I\n\x07headers\x18\x05 \x03(\x0b\x32/.eliza.v1.BrowserNavigationOptions.HeadersEntryR\x07headers\x1a:\n\x0cHeadersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\n\n\x08_timeoutB\r\n\x0b_wait_untilB\x0b\n\t_viewportB\r\n\x0b_user_agent\"Z\n\x0eScreenshotClip\x12\x0c\n\x01x\x18\x01 \x01(\x05R\x01x\x12\x0c\n\x01y\x18\x02 \x01(\x05R\x01y\x12\x14\n\x05width\x18\x03 \x01(\x05R\x05width\x12\x16\n\x06height\x18\x04 \x01(\x05R\x06height\"\x94\x02\n\x11ScreenshotOptions\x12 \n\tfull_page\x18\x01 \x01(\x08H\x00R\x08\x66ullPage\x88\x01\x01\x12\x31\n\x04\x63lip\x18\x02 \x01(\x0b\x32\x18.eliza.v1.ScreenshotClipH\x01R\x04\x63lip\x88\x01\x01\x12\x1b\n\x06\x66ormat\x18\x03 \x01(\tH\x02R\x06\x66ormat\x88\x01\x01\x12\x1d\n\x07quality\x18\x04 \x01(\x05H\x03R\x07quality\x88\x01\x01\x12,\n\x0fomit_background\x18\x05 \x01(\x08H\x04R\x0eomitBackground\x88\x01\x01\x42\x0c\n\n_full_pageB\x07\n\x05_clipB\t\n\x07_formatB\n\n\x08_qualityB\x12\n\x10_omit_background\"z\n\x0f\x45lementSelector\x12\x1a\n\x08selector\x18\x01 \x01(\tR\x08selector\x12\x17\n\x04text\x18\x02 \x01(\tH\x00R\x04text\x88\x01\x01\x12\x1d\n\x07timeout\x18\x03 \x01(\x05H\x01R\x07timeout\x88\x01\x01\x42\x07\n\x05_textB\n\n\x08_timeout\"0\n\x08LinkInfo\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x12\n\x04text\x18\x02 \x01(\tR\x04text\"<\n\tImageInfo\x12\x10\n\x03src\x18\x01 \x01(\tR\x03src\x12\x15\n\x03\x61lt\x18\x02 \x01(\tH\x00R\x03\x61lt\x88\x01\x01\x42\x06\n\x04_alt\"\xb9\x02\n\x10\x45xtractedContent\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x12\n\x04html\x18\x02 \x01(\tR\x04html\x12(\n\x05links\x18\x03 \x03(\x0b\x32\x12.eliza.v1.LinkInfoR\x05links\x12+\n\x06images\x18\x04 \x03(\x0b\x32\x13.eliza.v1.ImageInfoR\x06images\x12\x19\n\x05title\x18\x05 \x01(\tH\x00R\x05title\x88\x01\x01\x12\x44\n\x08metadata\x18\x06 \x03(\x0b\x32(.eliza.v1.ExtractedContent.MetadataEntryR\x08metadata\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06_title\"\xab\x01\n\x0c\x43lickOptions\x12\x1d\n\x07timeout\x18\x01 \x01(\x05H\x00R\x07timeout\x88\x01\x01\x12\x19\n\x05\x66orce\x18\x02 \x01(\x08H\x01R\x05\x66orce\x88\x01\x01\x12\x33\n\x13wait_for_navigation\x18\x03 \x01(\x08H\x02R\x11waitForNavigation\x88\x01\x01\x42\n\n\x08_timeoutB\x08\n\x06_forceB\x16\n\x14_wait_for_navigation\"\x82\x01\n\x0bTypeOptions\x12\x19\n\x05\x64\x65lay\x18\x01 \x01(\x05H\x00R\x05\x64\x65lay\x88\x01\x01\x12\x1d\n\x07timeout\x18\x02 \x01(\x05H\x01R\x07timeout\x88\x01\x01\x12\x19\n\x05\x63lear\x18\x03 \x01(\x08H\x02R\x05\x63lear\x88\x01\x01\x42\x08\n\x06_delayB\n\n\x08_timeoutB\x08\n\x06_clear\"\xfb\x01\n\x0bPdfMetadata\x12\x19\n\x05title\x18\x01 \x01(\tH\x00R\x05title\x88\x01\x01\x12\x1b\n\x06\x61uthor\x18\x02 \x01(\tH\x01R\x06\x61uthor\x88\x01\x01\x12>\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02R\tcreatedAt\x88\x01\x01\x12@\n\x0bmodified_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\nmodifiedAt\x88\x01\x01\x42\x08\n\x06_titleB\t\n\x07_authorB\r\n\x0b_created_atB\x0e\n\x0c_modified_at\"\x8d\x01\n\x13PdfExtractionResult\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x1d\n\npage_count\x18\x02 \x01(\x05R\tpageCount\x12\x36\n\x08metadata\x18\x03 \x01(\x0b\x32\x15.eliza.v1.PdfMetadataH\x00R\x08metadata\x88\x01\x01\x42\x0b\n\t_metadata\"\x9a\x01\n\nPdfMargins\x12\x15\n\x03top\x18\x01 \x01(\x01H\x00R\x03top\x88\x01\x01\x12\x1b\n\x06\x62ottom\x18\x02 \x01(\x01H\x01R\x06\x62ottom\x88\x01\x01\x12\x17\n\x04left\x18\x03 \x01(\x01H\x02R\x04left\x88\x01\x01\x12\x19\n\x05right\x18\x04 \x01(\x01H\x03R\x05right\x88\x01\x01\x42\x06\n\x04_topB\t\n\x07_bottomB\x07\n\x05_leftB\x08\n\x06_right\"\x86\x02\n\x14PdfGenerationOptions\x12\x1b\n\x06\x66ormat\x18\x01 \x01(\tH\x00R\x06\x66ormat\x88\x01\x01\x12%\n\x0borientation\x18\x02 \x01(\tH\x01R\x0borientation\x88\x01\x01\x12\x33\n\x07margins\x18\x03 \x01(\x0b\x32\x14.eliza.v1.PdfMarginsH\x02R\x07margins\x88\x01\x01\x12\x1b\n\x06header\x18\x04 \x01(\tH\x03R\x06header\x88\x01\x01\x12\x1b\n\x06\x66ooter\x18\x05 \x01(\tH\x04R\x06\x66ooter\x88\x01\x01\x42\t\n\x07_formatB\x0e\n\x0c_orientationB\n\n\x08_marginsB\t\n\x07_headerB\t\n\x07_footer\"\xb4\x01\n\x14PdfConversionOptions\x12\x1d\n\x07quality\x18\x01 \x01(\tH\x00R\x07quality\x88\x01\x01\x12(\n\routput_format\x18\x02 \x01(\tH\x01R\x0coutputFormat\x88\x01\x01\x12%\n\x0b\x63ompression\x18\x03 \x01(\x08H\x02R\x0b\x63ompression\x88\x01\x01\x42\n\n\x08_qualityB\x10\n\x0e_output_formatB\x0e\n\x0c_compression\"\x87\x01\n\tDateRange\x12\x35\n\x05start\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x05start\x88\x01\x01\x12\x31\n\x03\x65nd\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01R\x03\x65nd\x88\x01\x01\x42\x08\n\x06_startB\x06\n\x04_end\"\xac\x03\n\rSearchOptions\x12\x19\n\x05limit\x18\x01 \x01(\x05H\x00R\x05limit\x88\x01\x01\x12\x1b\n\x06offset\x18\x02 \x01(\x05H\x01R\x06offset\x88\x01\x01\x12\x1f\n\x08language\x18\x03 \x01(\tH\x02R\x08language\x88\x01\x01\x12\x1b\n\x06region\x18\x04 \x01(\tH\x03R\x06region\x88\x01\x01\x12\x37\n\ndate_range\x18\x05 \x01(\x0b\x32\x13.eliza.v1.DateRangeH\x04R\tdateRange\x88\x01\x01\x12 \n\tfile_type\x18\x06 \x01(\tH\x05R\x08\x66ileType\x88\x01\x01\x12\x17\n\x04site\x18\x07 \x01(\tH\x06R\x04site\x88\x01\x01\x12\x1c\n\x07sort_by\x18\x08 \x01(\tH\x07R\x06sortBy\x88\x01\x01\x12$\n\x0bsafe_search\x18\t \x01(\tH\x08R\nsafeSearch\x88\x01\x01\x42\x08\n\x06_limitB\t\n\x07_offsetB\x0b\n\t_languageB\t\n\x07_regionB\r\n\x0b_date_rangeB\x0c\n\n_file_typeB\x07\n\x05_siteB\n\n\x08_sort_byB\x0e\n\x0c_safe_search\"\xaf\x03\n\x0cSearchResult\x12\x14\n\x05title\x18\x01 \x01(\tR\x05title\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12$\n\x0b\x64isplay_url\x18\x04 \x01(\tH\x00R\ndisplayUrl\x88\x01\x01\x12!\n\tthumbnail\x18\x05 \x01(\tH\x01R\tthumbnail\x88\x01\x01\x12\x46\n\x0epublished_date\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02R\rpublishedDate\x88\x01\x01\x12\x1b\n\x06source\x18\x07 \x01(\tH\x03R\x06source\x88\x01\x01\x12,\n\x0frelevance_score\x18\x08 \x01(\x01H\x04R\x0erelevanceScore\x88\x01\x01\x12\x1d\n\x07snippet\x18\t \x01(\tH\x05R\x07snippet\x88\x01\x01\x42\x0e\n\x0c_display_urlB\x0c\n\n_thumbnailB\x11\n\x0f_published_dateB\t\n\x07_sourceB\x12\n\x10_relevance_scoreB\n\n\x08_snippet\"\xd8\x02\n\x0eSearchResponse\x12\x14\n\x05query\x18\x01 \x01(\tR\x05query\x12\x30\n\x07results\x18\x02 \x03(\x0b\x32\x16.eliza.v1.SearchResultR\x07results\x12(\n\rtotal_results\x18\x03 \x01(\x05H\x00R\x0ctotalResults\x88\x01\x01\x12$\n\x0bsearch_time\x18\x04 \x01(\x01H\x01R\nsearchTime\x88\x01\x01\x12 \n\x0bsuggestions\x18\x05 \x03(\tR\x0bsuggestions\x12+\n\x0fnext_page_token\x18\x06 \x01(\tH\x02R\rnextPageToken\x88\x01\x01\x12)\n\x10related_searches\x18\x07 \x03(\tR\x0frelatedSearchesB\x10\n\x0e_total_resultsB\x0e\n\x0c_search_timeB\x12\n\x10_next_page_token\"\x9f\x01\n\x11NewsSearchOptions\x12+\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32\x17.eliza.v1.SearchOptionsR\x04\x62\x61se\x12\x1f\n\x08\x63\x61tegory\x18\x02 \x01(\tH\x00R\x08\x63\x61tegory\x88\x01\x01\x12!\n\tfreshness\x18\x03 \x01(\tH\x01R\tfreshness\x88\x01\x01\x42\x0b\n\t_categoryB\x0c\n\n_freshness\"\xfd\x01\n\x12ImageSearchOptions\x12+\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32\x17.eliza.v1.SearchOptionsR\x04\x62\x61se\x12\x17\n\x04size\x18\x02 \x01(\tH\x00R\x04size\x88\x01\x01\x12\x19\n\x05\x63olor\x18\x03 \x01(\tH\x01R\x05\x63olor\x88\x01\x01\x12\x17\n\x04type\x18\x04 \x01(\tH\x02R\x04type\x88\x01\x01\x12\x1b\n\x06layout\x18\x05 \x01(\tH\x03R\x06layout\x88\x01\x01\x12\x1d\n\x07license\x18\x06 \x01(\tH\x04R\x07license\x88\x01\x01\x42\x07\n\x05_sizeB\x08\n\x06_colorB\x07\n\x05_typeB\t\n\x07_layoutB\n\n\x08_license\"\xce\x01\n\x12VideoSearchOptions\x12+\n\x04\x62\x61se\x18\x01 \x01(\x0b\x32\x17.eliza.v1.SearchOptionsR\x04\x62\x61se\x12\x1f\n\x08\x64uration\x18\x02 \x01(\tH\x00R\x08\x64uration\x88\x01\x01\x12#\n\nresolution\x18\x03 \x01(\tH\x01R\nresolution\x88\x01\x01\x12\x1d\n\x07quality\x18\x04 \x01(\tH\x02R\x07quality\x88\x01\x01\x42\x0b\n\t_durationB\r\n\x0b_resolutionB\n\n\x08_quality\"F\n\x0c\x45mailAddress\x12\x14\n\x05\x65mail\x18\x01 \x01(\tR\x05\x65mail\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x42\x07\n\x05_name\"\xaa\x02\n\x0f\x45mailAttachment\x12\x1a\n\x08\x66ilename\x18\x01 \x01(\tR\x08\x66ilename\x12%\n\rcontent_bytes\x18\x02 \x01(\x0cH\x00R\x0c\x63ontentBytes\x12#\n\x0c\x63ontent_text\x18\x03 \x01(\tH\x00R\x0b\x63ontentText\x12&\n\x0c\x63ontent_type\x18\x04 \x01(\tH\x01R\x0b\x63ontentType\x88\x01\x01\x12\x34\n\x13\x63ontent_disposition\x18\x05 \x01(\tH\x02R\x12\x63ontentDisposition\x88\x01\x01\x12\x15\n\x03\x63id\x18\x06 \x01(\tH\x03R\x03\x63id\x88\x01\x01\x42\t\n\x07\x63ontentB\x0f\n\r_content_typeB\x16\n\x14_content_dispositionB\x06\n\x04_cid\"\x88\x05\n\x0c\x45mailMessage\x12*\n\x04\x66rom\x18\x01 \x01(\x0b\x32\x16.eliza.v1.EmailAddressR\x04\x66rom\x12&\n\x02to\x18\x02 \x03(\x0b\x32\x16.eliza.v1.EmailAddressR\x02to\x12&\n\x02\x63\x63\x18\x03 \x03(\x0b\x32\x16.eliza.v1.EmailAddressR\x02\x63\x63\x12(\n\x03\x62\x63\x63\x18\x04 \x03(\x0b\x32\x16.eliza.v1.EmailAddressR\x03\x62\x63\x63\x12\x18\n\x07subject\x18\x05 \x01(\tR\x07subject\x12\x17\n\x04text\x18\x06 \x01(\tH\x00R\x04text\x88\x01\x01\x12\x17\n\x04html\x18\x07 \x01(\tH\x01R\x04html\x88\x01\x01\x12;\n\x0b\x61ttachments\x18\x08 \x03(\x0b\x32\x19.eliza.v1.EmailAttachmentR\x0b\x61ttachments\x12\x36\n\x08reply_to\x18\t \x01(\x0b\x32\x16.eliza.v1.EmailAddressH\x02R\x07replyTo\x88\x01\x01\x12\x33\n\x04\x64\x61te\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\x04\x64\x61te\x88\x01\x01\x12\"\n\nmessage_id\x18\x0b \x01(\tH\x04R\tmessageId\x88\x01\x01\x12\x1e\n\nreferences\x18\x0c \x03(\tR\nreferences\x12#\n\x0bin_reply_to\x18\r \x01(\tH\x05R\tinReplyTo\x88\x01\x01\x12\x1f\n\x08priority\x18\x0e \x01(\tH\x06R\x08priority\x88\x01\x01\x42\x07\n\x05_textB\x07\n\x05_htmlB\x0b\n\t_reply_toB\x07\n\x05_dateB\r\n\x0b_message_idB\x0e\n\x0c_in_reply_toB\x0b\n\t_priority\"\xe5\x01\n\x10\x45mailSendOptions\x12\x19\n\x05retry\x18\x01 \x01(\x05H\x00R\x05retry\x88\x01\x01\x12\x1d\n\x07timeout\x18\x02 \x01(\x05H\x01R\x07timeout\x88\x01\x01\x12$\n\x0btrack_opens\x18\x03 \x01(\x08H\x02R\ntrackOpens\x88\x01\x01\x12&\n\x0ctrack_clicks\x18\x04 \x01(\x08H\x03R\x0btrackClicks\x88\x01\x01\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tagsB\x08\n\x06_retryB\n\n\x08_timeoutB\x0e\n\x0c_track_opensB\x0f\n\r_track_clicks\"\xb1\x04\n\x12\x45mailSearchOptions\x12\x19\n\x05query\x18\x01 \x01(\tH\x00R\x05query\x88\x01\x01\x12\x17\n\x04\x66rom\x18\x02 \x01(\tH\x01R\x04\x66rom\x88\x01\x01\x12\x13\n\x02to\x18\x03 \x01(\tH\x02R\x02to\x88\x01\x01\x12\x1d\n\x07subject\x18\x04 \x01(\tH\x03R\x07subject\x88\x01\x01\x12\x1b\n\x06\x66older\x18\x05 \x01(\tH\x04R\x06\x66older\x88\x01\x01\x12\x35\n\x05since\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x05R\x05since\x88\x01\x01\x12\x37\n\x06\x62\x65\x66ore\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x06R\x06\x62\x65\x66ore\x88\x01\x01\x12\x19\n\x05limit\x18\x08 \x01(\x05H\x07R\x05limit\x88\x01\x01\x12\x1b\n\x06offset\x18\t \x01(\x05H\x08R\x06offset\x88\x01\x01\x12\x1b\n\x06unread\x18\n \x01(\x08H\tR\x06unread\x88\x01\x01\x12\x1d\n\x07\x66lagged\x18\x0b \x01(\x08H\nR\x07\x66lagged\x88\x01\x01\x12,\n\x0fhas_attachments\x18\x0c \x01(\x08H\x0bR\x0ehasAttachments\x88\x01\x01\x42\x08\n\x06_queryB\x07\n\x05_fromB\x05\n\x03_toB\n\n\x08_subjectB\t\n\x07_folderB\x08\n\x06_sinceB\t\n\x07_beforeB\x08\n\x06_limitB\t\n\x07_offsetB\t\n\x07_unreadB\n\n\x08_flaggedB\x12\n\x10_has_attachments\"\xf1\x01\n\x0b\x45mailFolder\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04path\x18\x02 \x01(\tR\x04path\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12(\n\rmessage_count\x18\x04 \x01(\x05H\x00R\x0cmessageCount\x88\x01\x01\x12&\n\x0cunread_count\x18\x05 \x01(\x05H\x01R\x0bunreadCount\x88\x01\x01\x12\x31\n\x08\x63hildren\x18\x06 \x03(\x0b\x32\x15.eliza.v1.EmailFolderR\x08\x63hildrenB\x10\n\x0e_message_countB\x0f\n\r_unread_count\"\x8e\x02\n\x0c\x45mailAccount\x12\x14\n\x05\x65mail\x18\x01 \x01(\tR\x05\x65mail\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x12\x1f\n\x08provider\x18\x03 \x01(\tH\x01R\x08provider\x88\x01\x01\x12/\n\x07\x66olders\x18\x04 \x03(\x0b\x32\x15.eliza.v1.EmailFolderR\x07\x66olders\x12\"\n\nquota_used\x18\x05 \x01(\x03H\x02R\tquotaUsed\x88\x01\x01\x12$\n\x0bquota_limit\x18\x06 \x01(\x03H\x03R\nquotaLimit\x88\x01\x01\x42\x07\n\x05_nameB\x0b\n\t_providerB\r\n\x0b_quota_usedB\x0e\n\x0c_quota_limit\"\xb6\x01\n\x12MessageParticipant\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1f\n\x08username\x18\x03 \x01(\tH\x00R\x08username\x88\x01\x01\x12\x1b\n\x06\x61vatar\x18\x04 \x01(\tH\x01R\x06\x61vatar\x88\x01\x01\x12\x1b\n\x06status\x18\x05 \x01(\tH\x02R\x06status\x88\x01\x01\x42\x0b\n\t_usernameB\t\n\x07_avatarB\t\n\x07_status\"\xae\x02\n\x11MessageAttachment\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1a\n\x08\x66ilename\x18\x02 \x01(\tR\x08\x66ilename\x12\x10\n\x03url\x18\x03 \x01(\tR\x03url\x12\x1b\n\tmime_type\x18\x04 \x01(\tR\x08mimeType\x12\x12\n\x04size\x18\x05 \x01(\x03R\x04size\x12\x19\n\x05width\x18\x06 \x01(\x05H\x00R\x05width\x88\x01\x01\x12\x1b\n\x06height\x18\x07 \x01(\x05H\x01R\x06height\x88\x01\x01\x12\x1f\n\x08\x64uration\x18\x08 \x01(\x01H\x02R\x08\x64uration\x88\x01\x01\x12!\n\tthumbnail\x18\t \x01(\tH\x03R\tthumbnail\x88\x01\x01\x42\x08\n\x06_widthB\t\n\x07_heightB\x0b\n\t_durationB\x0c\n\n_thumbnail\"t\n\x0fMessageReaction\x12\x14\n\x05\x65moji\x18\x01 \x01(\tR\x05\x65moji\x12\x14\n\x05\x63ount\x18\x02 \x01(\x05R\x05\x63ount\x12\x14\n\x05users\x18\x03 \x03(\tR\x05users\x12\x1f\n\x0bhas_reacted\x18\x04 \x01(\x08R\nhasReacted\"d\n\x10MessageReference\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12\x1d\n\nchannel_id\x18\x02 \x01(\tR\tchannelId\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\"^\n\nEmbedField\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12\x1b\n\x06inline\x18\x03 \x01(\x08H\x00R\x06inline\x88\x01\x01\x42\t\n\x07_inline\"\xdc\x01\n\x0cMessageEmbed\x12\x19\n\x05title\x18\x01 \x01(\tH\x00R\x05title\x88\x01\x01\x12%\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12\x15\n\x03url\x18\x03 \x01(\tH\x02R\x03url\x88\x01\x01\x12\x19\n\x05image\x18\x04 \x01(\tH\x03R\x05image\x88\x01\x01\x12,\n\x06\x66ields\x18\x05 \x03(\x0b\x32\x14.eliza.v1.EmbedFieldR\x06\x66ieldsB\x08\n\x06_titleB\x0e\n\x0c_descriptionB\x06\n\x04_urlB\x08\n\x06_image\"\x93\x03\n\x0eMessageContent\x12\x17\n\x04text\x18\x01 \x01(\tH\x00R\x04text\x88\x01\x01\x12\x17\n\x04html\x18\x02 \x01(\tH\x01R\x04html\x88\x01\x01\x12\x1f\n\x08markdown\x18\x03 \x01(\tH\x02R\x08markdown\x88\x01\x01\x12=\n\x0b\x61ttachments\x18\x04 \x03(\x0b\x32\x1b.eliza.v1.MessageAttachmentR\x0b\x61ttachments\x12\x37\n\treactions\x18\x05 \x03(\x0b\x32\x19.eliza.v1.MessageReactionR\treactions\x12=\n\treference\x18\x06 \x01(\x0b\x32\x1a.eliza.v1.MessageReferenceH\x03R\treference\x88\x01\x01\x12\x1a\n\x08mentions\x18\x07 \x03(\tR\x08mentions\x12.\n\x06\x65mbeds\x18\x08 \x03(\x0b\x32\x16.eliza.v1.MessageEmbedR\x06\x65mbedsB\x07\n\x05_textB\x07\n\x05_htmlB\x0b\n\t_markdownB\x0c\n\n_reference\"\xb0\x01\n\x11MessageThreadInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12#\n\rmessage_count\x18\x02 \x01(\x05R\x0cmessageCount\x12\"\n\x0cparticipants\x18\x03 \x03(\tR\x0cparticipants\x12\x42\n\x0flast_message_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rlastMessageAt\"\xbf\x03\n\x0bMessageInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n\nchannel_id\x18\x02 \x01(\tR\tchannelId\x12\x1b\n\tsender_id\x18\x03 \x01(\tR\x08senderId\x12\x32\n\x07\x63ontent\x18\x04 \x01(\x0b\x32\x18.eliza.v1.MessageContentR\x07\x63ontent\x12\x38\n\ttimestamp\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\ttimestamp\x12\x37\n\x06\x65\x64ited\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x06\x65\x64ited\x88\x01\x01\x12\x39\n\x07\x64\x65leted\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01R\x07\x64\x65leted\x88\x01\x01\x12\x1b\n\x06pinned\x18\x08 \x01(\x08H\x02R\x06pinned\x88\x01\x01\x12\x38\n\x06thread\x18\t \x01(\x0b\x32\x1b.eliza.v1.MessageThreadInfoH\x03R\x06thread\x88\x01\x01\x42\t\n\x07_editedB\n\n\x08_deletedB\t\n\x07_pinnedB\t\n\x07_thread\"\xb4\x02\n\x12MessageSendOptions\x12\x1e\n\x08reply_to\x18\x01 \x01(\tH\x00R\x07replyTo\x88\x01\x01\x12!\n\tephemeral\x18\x02 \x01(\x08H\x01R\tephemeral\x88\x01\x01\x12\x1b\n\x06silent\x18\x03 \x01(\x08H\x02R\x06silent\x88\x01\x01\x12=\n\tscheduled\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\tscheduled\x88\x01\x01\x12\x1b\n\x06thread\x18\x05 \x01(\tH\x04R\x06thread\x88\x01\x01\x12\x19\n\x05nonce\x18\x06 \x01(\tH\x05R\x05nonce\x88\x01\x01\x42\x0b\n\t_reply_toB\x0c\n\n_ephemeralB\t\n\x07_silentB\x0c\n\n_scheduledB\t\n\x07_threadB\x08\n\x06_nonce\"\x88\x04\n\x14MessageSearchOptions\x12\x19\n\x05query\x18\x01 \x01(\tH\x00R\x05query\x88\x01\x01\x12\"\n\nchannel_id\x18\x02 \x01(\tH\x01R\tchannelId\x88\x01\x01\x12 \n\tsender_id\x18\x03 \x01(\tH\x02R\x08senderId\x88\x01\x01\x12\x37\n\x06\x62\x65\x66ore\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\x06\x62\x65\x66ore\x88\x01\x01\x12\x35\n\x05\x61\x66ter\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x04R\x05\x61\x66ter\x88\x01\x01\x12\x19\n\x05limit\x18\x06 \x01(\x05H\x05R\x05limit\x88\x01\x01\x12\x1b\n\x06offset\x18\x07 \x01(\x05H\x06R\x06offset\x88\x01\x01\x12,\n\x0fhas_attachments\x18\x08 \x01(\x08H\x07R\x0ehasAttachments\x88\x01\x01\x12\x1b\n\x06pinned\x18\t \x01(\x08H\x08R\x06pinned\x88\x01\x01\x12\x1f\n\x08mentions\x18\n \x01(\tH\tR\x08mentions\x88\x01\x01\x42\x08\n\x06_queryB\r\n\x0b_channel_idB\x0c\n\n_sender_idB\t\n\x07_beforeB\x08\n\x06_afterB\x08\n\x06_limitB\t\n\x07_offsetB\x12\n\x10_has_attachmentsB\t\n\x07_pinnedB\x0b\n\t_mentions\"\xa1\x01\n\x12\x43hannelPermissions\x12\x19\n\x08\x63\x61n_send\x18\x01 \x01(\x08R\x07\x63\x61nSend\x12\x19\n\x08\x63\x61n_read\x18\x02 \x01(\x08R\x07\x63\x61nRead\x12\x1d\n\ncan_delete\x18\x03 \x01(\x08R\tcanDelete\x12\x17\n\x07\x63\x61n_pin\x18\x04 \x01(\x08R\x06\x63\x61nPin\x12\x1d\n\ncan_manage\x18\x05 \x01(\x08R\tcanManage\"\xe8\x03\n\x0eMessageChannel\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12%\n\x0b\x64\x65scription\x18\x04 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12@\n\x0cparticipants\x18\x05 \x03(\x0b\x32\x1c.eliza.v1.MessageParticipantR\x0cparticipants\x12\x43\n\x0bpermissions\x18\x06 \x01(\x0b\x32\x1c.eliza.v1.ChannelPermissionsH\x01R\x0bpermissions\x88\x01\x01\x12G\n\x0flast_message_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02R\rlastMessageAt\x88\x01\x01\x12(\n\rmessage_count\x18\x08 \x01(\x05H\x03R\x0cmessageCount\x88\x01\x01\x12&\n\x0cunread_count\x18\t \x01(\x05H\x04R\x0bunreadCount\x88\x01\x01\x42\x0e\n\x0c_descriptionB\x0e\n\x0c_permissionsB\x12\n\x10_last_message_atB\x10\n\x0e_message_countB\x0f\n\r_unread_count\"\x82\x03\n\tPostMedia\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url\x12\x12\n\x04type\x18\x03 \x01(\tR\x04type\x12\x1b\n\tmime_type\x18\x04 \x01(\tR\x08mimeType\x12\x12\n\x04size\x18\x05 \x01(\x03R\x04size\x12\x19\n\x05width\x18\x06 \x01(\x05H\x00R\x05width\x88\x01\x01\x12\x1b\n\x06height\x18\x07 \x01(\x05H\x01R\x06height\x88\x01\x01\x12\x1f\n\x08\x64uration\x18\x08 \x01(\x01H\x02R\x08\x64uration\x88\x01\x01\x12!\n\tthumbnail\x18\t \x01(\tH\x03R\tthumbnail\x88\x01\x01\x12%\n\x0b\x64\x65scription\x18\n \x01(\tH\x04R\x0b\x64\x65scription\x88\x01\x01\x12\x1e\n\x08\x61lt_text\x18\x0b \x01(\tH\x05R\x07\x61ltText\x88\x01\x01\x42\x08\n\x06_widthB\t\n\x07_heightB\x0b\n\t_durationB\x0c\n\n_thumbnailB\x0e\n\x0c_descriptionB\x0b\n\t_alt_text\"S\n\x17PostLocationCoordinates\x12\x1a\n\x08latitude\x18\x01 \x01(\x01R\x08latitude\x12\x1c\n\tlongitude\x18\x02 \x01(\x01R\tlongitude\"\xd4\x01\n\x0cPostLocation\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\x07\x61\x64\x64ress\x18\x02 \x01(\tH\x00R\x07\x61\x64\x64ress\x88\x01\x01\x12H\n\x0b\x63oordinates\x18\x03 \x01(\x0b\x32!.eliza.v1.PostLocationCoordinatesH\x01R\x0b\x63oordinates\x88\x01\x01\x12\x1e\n\x08place_id\x18\x04 \x01(\tH\x02R\x07placeId\x88\x01\x01\x42\n\n\x08_addressB\x0e\n\x0c_coordinatesB\x0b\n\t_place_id\"\xfc\x02\n\nPostAuthor\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1a\n\x08username\x18\x02 \x01(\tR\x08username\x12!\n\x0c\x64isplay_name\x18\x03 \x01(\tR\x0b\x64isplayName\x12\x1b\n\x06\x61vatar\x18\x04 \x01(\tH\x00R\x06\x61vatar\x88\x01\x01\x12\x1f\n\x08verified\x18\x05 \x01(\x08H\x01R\x08verified\x88\x01\x01\x12*\n\x0e\x66ollower_count\x18\x06 \x01(\x05H\x02R\rfollowerCount\x88\x01\x01\x12,\n\x0f\x66ollowing_count\x18\x07 \x01(\x05H\x03R\x0e\x66ollowingCount\x88\x01\x01\x12\x15\n\x03\x62io\x18\x08 \x01(\tH\x04R\x03\x62io\x88\x01\x01\x12\x1d\n\x07website\x18\t \x01(\tH\x05R\x07website\x88\x01\x01\x42\t\n\x07_avatarB\x0b\n\t_verifiedB\x11\n\x0f_follower_countB\x12\n\x10_following_countB\x06\n\x04_bioB\n\n\x08_website\"\xfd\x01\n\x0ePostEngagement\x12\x14\n\x05likes\x18\x01 \x01(\x05R\x05likes\x12\x16\n\x06shares\x18\x02 \x01(\x05R\x06shares\x12\x1a\n\x08\x63omments\x18\x03 \x01(\x05R\x08\x63omments\x12\x19\n\x05views\x18\x04 \x01(\x05H\x00R\x05views\x88\x01\x01\x12\x1b\n\thas_liked\x18\x05 \x01(\x08R\x08hasLiked\x12\x1d\n\nhas_shared\x18\x06 \x01(\x08R\thasShared\x12#\n\rhas_commented\x18\x07 \x01(\x08R\x0chasCommented\x12\x1b\n\thas_saved\x18\x08 \x01(\x08R\x08hasSavedB\x08\n\x06_views\"\xa4\x01\n\x0fPostLinkPreview\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x19\n\x05title\x18\x02 \x01(\tH\x00R\x05title\x88\x01\x01\x12%\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12\x19\n\x05image\x18\x04 \x01(\tH\x02R\x05image\x88\x01\x01\x42\x08\n\x06_titleB\x0e\n\x0c_descriptionB\x08\n\x06_image\":\n\x0ePostPollOption\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x14\n\x05votes\x18\x02 \x01(\x05R\x05votes\"\xeb\x01\n\x08PostPoll\x12\x1a\n\x08question\x18\x01 \x01(\tR\x08question\x12\x32\n\x07options\x18\x02 \x03(\x0b\x32\x18.eliza.v1.PostPollOptionR\x07options\x12>\n\nexpires_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\texpiresAt\x88\x01\x01\x12,\n\x0fmultiple_choice\x18\x04 \x01(\x08H\x01R\x0emultipleChoice\x88\x01\x01\x42\r\n\x0b_expires_atB\x12\n\x10_multiple_choice\"\xd9\x02\n\x0bPostContent\x12\x17\n\x04text\x18\x01 \x01(\tH\x00R\x04text\x88\x01\x01\x12\x17\n\x04html\x18\x02 \x01(\tH\x01R\x04html\x88\x01\x01\x12)\n\x05media\x18\x03 \x03(\x0b\x32\x13.eliza.v1.PostMediaR\x05media\x12\x37\n\x08location\x18\x04 \x01(\x0b\x32\x16.eliza.v1.PostLocationH\x02R\x08location\x88\x01\x01\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tags\x12\x1a\n\x08mentions\x18\x06 \x03(\tR\x08mentions\x12/\n\x05links\x18\x07 \x03(\x0b\x32\x19.eliza.v1.PostLinkPreviewR\x05links\x12+\n\x04poll\x18\x08 \x01(\x0b\x32\x12.eliza.v1.PostPollH\x03R\x04poll\x88\x01\x01\x42\x07\n\x05_textB\x07\n\x05_htmlB\x0b\n\t_locationB\x07\n\x05_poll\"R\n\x0ePostThreadInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1a\n\x08position\x18\x02 \x01(\x05R\x08position\x12\x14\n\x05total\x18\x03 \x01(\x05R\x05total\"^\n\rCrossPostInfo\x12\x1a\n\x08platform\x18\x01 \x01(\tR\x08platform\x12\x1f\n\x0bplatform_id\x18\x02 \x01(\tR\nplatformId\x12\x10\n\x03url\x18\x03 \x01(\tR\x03url\"\xa9\x05\n\x08PostInfo\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12,\n\x06\x61uthor\x18\x02 \x01(\x0b\x32\x14.eliza.v1.PostAuthorR\x06\x61uthor\x12/\n\x07\x63ontent\x18\x03 \x01(\x0b\x32\x15.eliza.v1.PostContentR\x07\x63ontent\x12\x1a\n\x08platform\x18\x04 \x01(\tR\x08platform\x12\x1f\n\x0bplatform_id\x18\x05 \x01(\tR\nplatformId\x12\x10\n\x03url\x18\x06 \x01(\tR\x03url\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\tedited_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x08\x65\x64itedAt\x88\x01\x01\x12\x42\n\x0cscheduled_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01R\x0bscheduledAt\x88\x01\x01\x12\x38\n\nengagement\x18\n \x01(\x0b\x32\x18.eliza.v1.PostEngagementR\nengagement\x12\x1e\n\nvisibility\x18\x0b \x01(\tR\nvisibility\x12\x1e\n\x08reply_to\x18\x0c \x01(\tH\x02R\x07replyTo\x88\x01\x01\x12\x35\n\x06thread\x18\r \x01(\x0b\x32\x18.eliza.v1.PostThreadInfoH\x03R\x06thread\x88\x01\x01\x12:\n\x0c\x63ross_posted\x18\x0e \x03(\x0b\x32\x17.eliza.v1.CrossPostInfoR\x0b\x63rossPostedB\x0c\n\n_edited_atB\x0f\n\r_scheduled_atB\x0b\n\t_reply_toB\t\n\x07_thread\"\xf9\x04\n\x11PostCreateOptions\x12\x1c\n\tplatforms\x18\x01 \x03(\tR\tplatforms\x12\x42\n\x0cscheduled_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x0bscheduledAt\x88\x01\x01\x12#\n\nvisibility\x18\x03 \x01(\tH\x01R\nvisibility\x88\x01\x01\x12\x1e\n\x08reply_to\x18\x04 \x01(\tH\x02R\x07replyTo\x88\x01\x01\x12\x1b\n\x06thread\x18\x05 \x01(\x08H\x03R\x06thread\x88\x01\x01\x12\x37\n\x08location\x18\x06 \x01(\x0b\x32\x16.eliza.v1.PostLocationH\x04R\x08location\x88\x01\x01\x12\x12\n\x04tags\x18\x07 \x03(\tR\x04tags\x12\x1a\n\x08mentions\x18\x08 \x03(\tR\x08mentions\x12,\n\x0f\x65nable_comments\x18\t \x01(\x08H\x05R\x0e\x65nableComments\x88\x01\x01\x12*\n\x0e\x65nable_sharing\x18\n \x01(\x08H\x06R\renableSharing\x88\x01\x01\x12,\n\x0f\x63ontent_warning\x18\x0b \x01(\tH\x07R\x0e\x63ontentWarning\x88\x01\x01\x12!\n\tsensitive\x18\x0c \x01(\x08H\x08R\tsensitive\x88\x01\x01\x42\x0f\n\r_scheduled_atB\r\n\x0b_visibilityB\x0b\n\t_reply_toB\t\n\x07_threadB\x0b\n\t_locationB\x12\n\x10_enable_commentsB\x11\n\x0f_enable_sharingB\x12\n\x10_content_warningB\x0c\n\n_sensitive\"\xd7\x04\n\x11PostSearchOptions\x12\x19\n\x05query\x18\x01 \x01(\tH\x00R\x05query\x88\x01\x01\x12\x1b\n\x06\x61uthor\x18\x02 \x01(\tH\x01R\x06\x61uthor\x88\x01\x01\x12\x1f\n\x08platform\x18\x03 \x01(\tH\x02R\x08platform\x88\x01\x01\x12\x12\n\x04tags\x18\x04 \x03(\tR\x04tags\x12\x1a\n\x08mentions\x18\x05 \x03(\tR\x08mentions\x12\x35\n\x05since\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x03R\x05since\x88\x01\x01\x12\x37\n\x06\x62\x65\x66ore\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x04R\x06\x62\x65\x66ore\x88\x01\x01\x12\x19\n\x05limit\x18\x08 \x01(\x05H\x05R\x05limit\x88\x01\x01\x12\x1b\n\x06offset\x18\t \x01(\x05H\x06R\x06offset\x88\x01\x01\x12 \n\thas_media\x18\n \x01(\x08H\x07R\x08hasMedia\x88\x01\x01\x12&\n\x0chas_location\x18\x0b \x01(\x08H\x08R\x0bhasLocation\x88\x01\x01\x12#\n\nvisibility\x18\x0c \x01(\tH\tR\nvisibility\x88\x01\x01\x12\x1c\n\x07sort_by\x18\r \x01(\tH\nR\x06sortBy\x88\x01\x01\x42\x08\n\x06_queryB\t\n\x07_authorB\x0b\n\t_platformB\x08\n\x06_sinceB\t\n\x07_beforeB\x08\n\x06_limitB\t\n\x07_offsetB\x0c\n\n_has_mediaB\x0f\n\r_has_locationB\r\n\x0b_visibilityB\n\n\x08_sort_by\"\xef\x02\n\x0c\x44\x65mographics\x12\x31\n\x03\x61ge\x18\x01 \x03(\x0b\x32\x1f.eliza.v1.Demographics.AgeEntryR\x03\x61ge\x12:\n\x06gender\x18\x02 \x03(\x0b\x32\".eliza.v1.Demographics.GenderEntryR\x06gender\x12@\n\x08location\x18\x03 \x03(\x0b\x32$.eliza.v1.Demographics.LocationEntryR\x08location\x1a\x36\n\x08\x41geEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\x01R\x05value:\x02\x38\x01\x1a\x39\n\x0bGenderEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\x01R\x05value:\x02\x38\x01\x1a;\n\rLocationEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\x01R\x05value:\x02\x38\x01\"G\n\x11TopPerformingHour\x12\x12\n\x04hour\x18\x01 \x01(\x05R\x04hour\x12\x1e\n\nengagement\x18\x02 \x01(\x05R\nengagement\"\x9d\x03\n\rPostAnalytics\x12\x17\n\x07post_id\x18\x01 \x01(\tR\x06postId\x12\x1a\n\x08platform\x18\x02 \x01(\tR\x08platform\x12 \n\x0bimpressions\x18\x03 \x01(\x05R\x0bimpressions\x12\x14\n\x05reach\x18\x04 \x01(\x05R\x05reach\x12\x38\n\nengagement\x18\x05 \x01(\x0b\x32\x18.eliza.v1.PostEngagementR\nengagement\x12\x16\n\x06\x63licks\x18\x06 \x01(\x05R\x06\x63licks\x12\x16\n\x06shares\x18\x07 \x01(\x05R\x06shares\x12\x14\n\x05saves\x18\x08 \x01(\x05R\x05saves\x12?\n\x0c\x64\x65mographics\x18\t \x01(\x0b\x32\x16.eliza.v1.DemographicsH\x00R\x0c\x64\x65mographics\x88\x01\x01\x12M\n\x14top_performing_hours\x18\n \x03(\x0b\x32\x1b.eliza.v1.TopPerformingHourR\x12topPerformingHoursB\x0f\n\r_demographicsB\x99\x01\n\x0c\x63om.eliza.v1B\x16ServiceInterfacesProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.service_interfaces_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\026ServiceInterfacesProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
37
|
+
_globals['_BROWSERNAVIGATIONOPTIONS_HEADERSENTRY']._loaded_options = None
|
|
38
|
+
_globals['_BROWSERNAVIGATIONOPTIONS_HEADERSENTRY']._serialized_options = b'8\001'
|
|
39
|
+
_globals['_EXTRACTEDCONTENT_METADATAENTRY']._loaded_options = None
|
|
40
|
+
_globals['_EXTRACTEDCONTENT_METADATAENTRY']._serialized_options = b'8\001'
|
|
41
|
+
_globals['_DEMOGRAPHICS_AGEENTRY']._loaded_options = None
|
|
42
|
+
_globals['_DEMOGRAPHICS_AGEENTRY']._serialized_options = b'8\001'
|
|
43
|
+
_globals['_DEMOGRAPHICS_GENDERENTRY']._loaded_options = None
|
|
44
|
+
_globals['_DEMOGRAPHICS_GENDERENTRY']._serialized_options = b'8\001'
|
|
45
|
+
_globals['_DEMOGRAPHICS_LOCATIONENTRY']._loaded_options = None
|
|
46
|
+
_globals['_DEMOGRAPHICS_LOCATIONENTRY']._serialized_options = b'8\001'
|
|
47
|
+
_globals['_TOKENBALANCE']._serialized_start=111
|
|
48
|
+
_globals['_TOKENBALANCE']._serialized_end=372
|
|
49
|
+
_globals['_TOKENDATA']._serialized_start=375
|
|
50
|
+
_globals['_TOKENDATA']._serialized_end=1185
|
|
51
|
+
_globals['_WALLETASSET']._serialized_start=1188
|
|
52
|
+
_globals['_WALLETASSET']._serialized_end=1544
|
|
53
|
+
_globals['_WALLETPORTFOLIO']._serialized_start=1546
|
|
54
|
+
_globals['_WALLETPORTFOLIO']._serialized_end=1650
|
|
55
|
+
_globals['_POOLTOKENINFO']._serialized_start=1653
|
|
56
|
+
_globals['_POOLTOKENINFO']._serialized_end=1817
|
|
57
|
+
_globals['_POOLINFO']._serialized_start=1820
|
|
58
|
+
_globals['_POOLINFO']._serialized_end=2257
|
|
59
|
+
_globals['_LPPOSITIONDETAILS']._serialized_start=2260
|
|
60
|
+
_globals['_LPPOSITIONDETAILS']._serialized_end=2667
|
|
61
|
+
_globals['_TRANSACTIONRESULT']._serialized_start=2670
|
|
62
|
+
_globals['_TRANSACTIONRESULT']._serialized_end=2860
|
|
63
|
+
_globals['_TRANSCRIPTIONOPTIONS']._serialized_start=2863
|
|
64
|
+
_globals['_TRANSCRIPTIONOPTIONS']._serialized_end=3327
|
|
65
|
+
_globals['_TRANSCRIPTIONRESULT']._serialized_start=3330
|
|
66
|
+
_globals['_TRANSCRIPTIONRESULT']._serialized_end=3626
|
|
67
|
+
_globals['_TRANSCRIPTIONSEGMENT']._serialized_start=3629
|
|
68
|
+
_globals['_TRANSCRIPTIONSEGMENT']._serialized_end=4046
|
|
69
|
+
_globals['_TRANSCRIPTIONWORD']._serialized_start=4049
|
|
70
|
+
_globals['_TRANSCRIPTIONWORD']._serialized_end=4180
|
|
71
|
+
_globals['_SPEECHTOTEXTOPTIONS']._serialized_start=4183
|
|
72
|
+
_globals['_SPEECHTOTEXTOPTIONS']._serialized_end=4474
|
|
73
|
+
_globals['_TEXTTOSPEECHOPTIONS']._serialized_start=4477
|
|
74
|
+
_globals['_TEXTTOSPEECHOPTIONS']._serialized_end=4715
|
|
75
|
+
_globals['_VIDEOINFO']._serialized_start=4718
|
|
76
|
+
_globals['_VIDEOINFO']._serialized_end=5162
|
|
77
|
+
_globals['_VIDEOFORMAT']._serialized_start=5165
|
|
78
|
+
_globals['_VIDEOFORMAT']._serialized_end=5563
|
|
79
|
+
_globals['_VIDEODOWNLOADOPTIONS']._serialized_start=5566
|
|
80
|
+
_globals['_VIDEODOWNLOADOPTIONS']._serialized_end=5992
|
|
81
|
+
_globals['_VIDEOPROCESSINGOPTIONS']._serialized_start=5995
|
|
82
|
+
_globals['_VIDEOPROCESSINGOPTIONS']._serialized_end=6427
|
|
83
|
+
_globals['_BROWSERVIEWPORT']._serialized_start=6429
|
|
84
|
+
_globals['_BROWSERVIEWPORT']._serialized_end=6492
|
|
85
|
+
_globals['_BROWSERNAVIGATIONOPTIONS']._serialized_start=6495
|
|
86
|
+
_globals['_BROWSERNAVIGATIONOPTIONS']._serialized_end=6874
|
|
87
|
+
_globals['_BROWSERNAVIGATIONOPTIONS_HEADERSENTRY']._serialized_start=6761
|
|
88
|
+
_globals['_BROWSERNAVIGATIONOPTIONS_HEADERSENTRY']._serialized_end=6819
|
|
89
|
+
_globals['_SCREENSHOTCLIP']._serialized_start=6876
|
|
90
|
+
_globals['_SCREENSHOTCLIP']._serialized_end=6966
|
|
91
|
+
_globals['_SCREENSHOTOPTIONS']._serialized_start=6969
|
|
92
|
+
_globals['_SCREENSHOTOPTIONS']._serialized_end=7245
|
|
93
|
+
_globals['_ELEMENTSELECTOR']._serialized_start=7247
|
|
94
|
+
_globals['_ELEMENTSELECTOR']._serialized_end=7369
|
|
95
|
+
_globals['_LINKINFO']._serialized_start=7371
|
|
96
|
+
_globals['_LINKINFO']._serialized_end=7419
|
|
97
|
+
_globals['_IMAGEINFO']._serialized_start=7421
|
|
98
|
+
_globals['_IMAGEINFO']._serialized_end=7481
|
|
99
|
+
_globals['_EXTRACTEDCONTENT']._serialized_start=7484
|
|
100
|
+
_globals['_EXTRACTEDCONTENT']._serialized_end=7797
|
|
101
|
+
_globals['_EXTRACTEDCONTENT_METADATAENTRY']._serialized_start=7728
|
|
102
|
+
_globals['_EXTRACTEDCONTENT_METADATAENTRY']._serialized_end=7787
|
|
103
|
+
_globals['_CLICKOPTIONS']._serialized_start=7800
|
|
104
|
+
_globals['_CLICKOPTIONS']._serialized_end=7971
|
|
105
|
+
_globals['_TYPEOPTIONS']._serialized_start=7974
|
|
106
|
+
_globals['_TYPEOPTIONS']._serialized_end=8104
|
|
107
|
+
_globals['_PDFMETADATA']._serialized_start=8107
|
|
108
|
+
_globals['_PDFMETADATA']._serialized_end=8358
|
|
109
|
+
_globals['_PDFEXTRACTIONRESULT']._serialized_start=8361
|
|
110
|
+
_globals['_PDFEXTRACTIONRESULT']._serialized_end=8502
|
|
111
|
+
_globals['_PDFMARGINS']._serialized_start=8505
|
|
112
|
+
_globals['_PDFMARGINS']._serialized_end=8659
|
|
113
|
+
_globals['_PDFGENERATIONOPTIONS']._serialized_start=8662
|
|
114
|
+
_globals['_PDFGENERATIONOPTIONS']._serialized_end=8924
|
|
115
|
+
_globals['_PDFCONVERSIONOPTIONS']._serialized_start=8927
|
|
116
|
+
_globals['_PDFCONVERSIONOPTIONS']._serialized_end=9107
|
|
117
|
+
_globals['_DATERANGE']._serialized_start=9110
|
|
118
|
+
_globals['_DATERANGE']._serialized_end=9245
|
|
119
|
+
_globals['_SEARCHOPTIONS']._serialized_start=9248
|
|
120
|
+
_globals['_SEARCHOPTIONS']._serialized_end=9676
|
|
121
|
+
_globals['_SEARCHRESULT']._serialized_start=9679
|
|
122
|
+
_globals['_SEARCHRESULT']._serialized_end=10110
|
|
123
|
+
_globals['_SEARCHRESPONSE']._serialized_start=10113
|
|
124
|
+
_globals['_SEARCHRESPONSE']._serialized_end=10457
|
|
125
|
+
_globals['_NEWSSEARCHOPTIONS']._serialized_start=10460
|
|
126
|
+
_globals['_NEWSSEARCHOPTIONS']._serialized_end=10619
|
|
127
|
+
_globals['_IMAGESEARCHOPTIONS']._serialized_start=10622
|
|
128
|
+
_globals['_IMAGESEARCHOPTIONS']._serialized_end=10875
|
|
129
|
+
_globals['_VIDEOSEARCHOPTIONS']._serialized_start=10878
|
|
130
|
+
_globals['_VIDEOSEARCHOPTIONS']._serialized_end=11084
|
|
131
|
+
_globals['_EMAILADDRESS']._serialized_start=11086
|
|
132
|
+
_globals['_EMAILADDRESS']._serialized_end=11156
|
|
133
|
+
_globals['_EMAILATTACHMENT']._serialized_start=11159
|
|
134
|
+
_globals['_EMAILATTACHMENT']._serialized_end=11457
|
|
135
|
+
_globals['_EMAILMESSAGE']._serialized_start=11460
|
|
136
|
+
_globals['_EMAILMESSAGE']._serialized_end=12108
|
|
137
|
+
_globals['_EMAILSENDOPTIONS']._serialized_start=12111
|
|
138
|
+
_globals['_EMAILSENDOPTIONS']._serialized_end=12340
|
|
139
|
+
_globals['_EMAILSEARCHOPTIONS']._serialized_start=12343
|
|
140
|
+
_globals['_EMAILSEARCHOPTIONS']._serialized_end=12904
|
|
141
|
+
_globals['_EMAILFOLDER']._serialized_start=12907
|
|
142
|
+
_globals['_EMAILFOLDER']._serialized_end=13148
|
|
143
|
+
_globals['_EMAILACCOUNT']._serialized_start=13151
|
|
144
|
+
_globals['_EMAILACCOUNT']._serialized_end=13421
|
|
145
|
+
_globals['_MESSAGEPARTICIPANT']._serialized_start=13424
|
|
146
|
+
_globals['_MESSAGEPARTICIPANT']._serialized_end=13606
|
|
147
|
+
_globals['_MESSAGEATTACHMENT']._serialized_start=13609
|
|
148
|
+
_globals['_MESSAGEATTACHMENT']._serialized_end=13911
|
|
149
|
+
_globals['_MESSAGEREACTION']._serialized_start=13913
|
|
150
|
+
_globals['_MESSAGEREACTION']._serialized_end=14029
|
|
151
|
+
_globals['_MESSAGEREFERENCE']._serialized_start=14031
|
|
152
|
+
_globals['_MESSAGEREFERENCE']._serialized_end=14131
|
|
153
|
+
_globals['_EMBEDFIELD']._serialized_start=14133
|
|
154
|
+
_globals['_EMBEDFIELD']._serialized_end=14227
|
|
155
|
+
_globals['_MESSAGEEMBED']._serialized_start=14230
|
|
156
|
+
_globals['_MESSAGEEMBED']._serialized_end=14450
|
|
157
|
+
_globals['_MESSAGECONTENT']._serialized_start=14453
|
|
158
|
+
_globals['_MESSAGECONTENT']._serialized_end=14856
|
|
159
|
+
_globals['_MESSAGETHREADINFO']._serialized_start=14859
|
|
160
|
+
_globals['_MESSAGETHREADINFO']._serialized_end=15035
|
|
161
|
+
_globals['_MESSAGEINFO']._serialized_start=15038
|
|
162
|
+
_globals['_MESSAGEINFO']._serialized_end=15485
|
|
163
|
+
_globals['_MESSAGESENDOPTIONS']._serialized_start=15488
|
|
164
|
+
_globals['_MESSAGESENDOPTIONS']._serialized_end=15796
|
|
165
|
+
_globals['_MESSAGESEARCHOPTIONS']._serialized_start=15799
|
|
166
|
+
_globals['_MESSAGESEARCHOPTIONS']._serialized_end=16319
|
|
167
|
+
_globals['_CHANNELPERMISSIONS']._serialized_start=16322
|
|
168
|
+
_globals['_CHANNELPERMISSIONS']._serialized_end=16483
|
|
169
|
+
_globals['_MESSAGECHANNEL']._serialized_start=16486
|
|
170
|
+
_globals['_MESSAGECHANNEL']._serialized_end=16974
|
|
171
|
+
_globals['_POSTMEDIA']._serialized_start=16977
|
|
172
|
+
_globals['_POSTMEDIA']._serialized_end=17363
|
|
173
|
+
_globals['_POSTLOCATIONCOORDINATES']._serialized_start=17365
|
|
174
|
+
_globals['_POSTLOCATIONCOORDINATES']._serialized_end=17448
|
|
175
|
+
_globals['_POSTLOCATION']._serialized_start=17451
|
|
176
|
+
_globals['_POSTLOCATION']._serialized_end=17663
|
|
177
|
+
_globals['_POSTAUTHOR']._serialized_start=17666
|
|
178
|
+
_globals['_POSTAUTHOR']._serialized_end=18046
|
|
179
|
+
_globals['_POSTENGAGEMENT']._serialized_start=18049
|
|
180
|
+
_globals['_POSTENGAGEMENT']._serialized_end=18302
|
|
181
|
+
_globals['_POSTLINKPREVIEW']._serialized_start=18305
|
|
182
|
+
_globals['_POSTLINKPREVIEW']._serialized_end=18469
|
|
183
|
+
_globals['_POSTPOLLOPTION']._serialized_start=18471
|
|
184
|
+
_globals['_POSTPOLLOPTION']._serialized_end=18529
|
|
185
|
+
_globals['_POSTPOLL']._serialized_start=18532
|
|
186
|
+
_globals['_POSTPOLL']._serialized_end=18767
|
|
187
|
+
_globals['_POSTCONTENT']._serialized_start=18770
|
|
188
|
+
_globals['_POSTCONTENT']._serialized_end=19115
|
|
189
|
+
_globals['_POSTTHREADINFO']._serialized_start=19117
|
|
190
|
+
_globals['_POSTTHREADINFO']._serialized_end=19199
|
|
191
|
+
_globals['_CROSSPOSTINFO']._serialized_start=19201
|
|
192
|
+
_globals['_CROSSPOSTINFO']._serialized_end=19295
|
|
193
|
+
_globals['_POSTINFO']._serialized_start=19298
|
|
194
|
+
_globals['_POSTINFO']._serialized_end=19979
|
|
195
|
+
_globals['_POSTCREATEOPTIONS']._serialized_start=19982
|
|
196
|
+
_globals['_POSTCREATEOPTIONS']._serialized_end=20615
|
|
197
|
+
_globals['_POSTSEARCHOPTIONS']._serialized_start=20618
|
|
198
|
+
_globals['_POSTSEARCHOPTIONS']._serialized_end=21217
|
|
199
|
+
_globals['_DEMOGRAPHICS']._serialized_start=21220
|
|
200
|
+
_globals['_DEMOGRAPHICS']._serialized_end=21587
|
|
201
|
+
_globals['_DEMOGRAPHICS_AGEENTRY']._serialized_start=21413
|
|
202
|
+
_globals['_DEMOGRAPHICS_AGEENTRY']._serialized_end=21467
|
|
203
|
+
_globals['_DEMOGRAPHICS_GENDERENTRY']._serialized_start=21469
|
|
204
|
+
_globals['_DEMOGRAPHICS_GENDERENTRY']._serialized_end=21526
|
|
205
|
+
_globals['_DEMOGRAPHICS_LOCATIONENTRY']._serialized_start=21528
|
|
206
|
+
_globals['_DEMOGRAPHICS_LOCATIONENTRY']._serialized_end=21587
|
|
207
|
+
_globals['_TOPPERFORMINGHOUR']._serialized_start=21589
|
|
208
|
+
_globals['_TOPPERFORMINGHOUR']._serialized_end=21660
|
|
209
|
+
_globals['_POSTANALYTICS']._serialized_start=21663
|
|
210
|
+
_globals['_POSTANALYTICS']._serialized_end=22076
|
|
211
|
+
# @@protoc_insertion_point(module_scope)
|