Skip to content

Commit

Permalink
[release] update proto
Browse files Browse the repository at this point in the history
  • Loading branch information
ppodolsky committed Apr 20, 2024
1 parent aeaf59d commit e104de8
Show file tree
Hide file tree
Showing 10 changed files with 73 additions and 69 deletions.
2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/consumer_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/dag_pb_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

114 changes: 57 additions & 57 deletions aiosumma/aiosumma/proto/index_service_pb2.py

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions aiosumma/aiosumma/proto/index_service_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -264,14 +264,16 @@ class GetIndicesResponse(_message.Message):
def __init__(self, index_names: _Optional[_Iterable[str]] = ...) -> None: ...

class IndexDocumentStreamRequest(_message.Message):
__slots__ = ("index_name", "documents", "conflict_strategy")
__slots__ = ("index_name", "documents", "conflict_strategy", "skip_updated_at_modification")
INDEX_NAME_FIELD_NUMBER: _ClassVar[int]
DOCUMENTS_FIELD_NUMBER: _ClassVar[int]
CONFLICT_STRATEGY_FIELD_NUMBER: _ClassVar[int]
SKIP_UPDATED_AT_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
index_name: str
documents: _containers.RepeatedScalarFieldContainer[bytes]
conflict_strategy: ConflictStrategy
def __init__(self, index_name: _Optional[str] = ..., documents: _Optional[_Iterable[bytes]] = ..., conflict_strategy: _Optional[_Union[ConflictStrategy, str]] = ...) -> None: ...
skip_updated_at_modification: bool
def __init__(self, index_name: _Optional[str] = ..., documents: _Optional[_Iterable[bytes]] = ..., conflict_strategy: _Optional[_Union[ConflictStrategy, str]] = ..., skip_updated_at_modification: bool = ...) -> None: ...

class IndexDocumentStreamResponse(_message.Message):
__slots__ = ("elapsed_secs", "success_docs", "failed_docs")
Expand All @@ -284,12 +286,14 @@ class IndexDocumentStreamResponse(_message.Message):
def __init__(self, elapsed_secs: _Optional[float] = ..., success_docs: _Optional[int] = ..., failed_docs: _Optional[int] = ...) -> None: ...

class IndexDocumentRequest(_message.Message):
__slots__ = ("index_name", "document")
__slots__ = ("index_name", "document", "skip_updated_at_modification")
INDEX_NAME_FIELD_NUMBER: _ClassVar[int]
DOCUMENT_FIELD_NUMBER: _ClassVar[int]
SKIP_UPDATED_AT_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
index_name: str
document: bytes
def __init__(self, index_name: _Optional[str] = ..., document: _Optional[bytes] = ...) -> None: ...
skip_updated_at_modification: bool
def __init__(self, index_name: _Optional[str] = ..., document: _Optional[bytes] = ..., skip_updated_at_modification: bool = ...) -> None: ...

class IndexDocumentResponse(_message.Message):
__slots__ = ()
Expand Down
2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/public_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/query_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/reflection_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/search_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/unixfs_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aiosumma/aiosumma/proto/utils_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e104de8

Please sign in to comment.