modal 1.0.6.dev42__py3-none-any.whl → 1.0.6.dev43__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 modal might be problematic. Click here for more details.

modal_proto/api_pb2.pyi CHANGED
@@ -4818,16 +4818,21 @@ class FunctionCallPutDataRequest(google.protobuf.message.Message):
4818
4818
 
4819
4819
  FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
4820
4820
  DATA_CHUNKS_FIELD_NUMBER: builtins.int
4821
+ ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
4821
4822
  function_call_id: builtins.str
4822
4823
  @property
4823
4824
  def data_chunks(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DataChunk]: ...
4825
+ attempt_token: builtins.str
4824
4826
  def __init__(
4825
4827
  self,
4826
4828
  *,
4827
4829
  function_call_id: builtins.str = ...,
4828
4830
  data_chunks: collections.abc.Iterable[global___DataChunk] | None = ...,
4831
+ attempt_token: builtins.str | None = ...,
4829
4832
  ) -> None: ...
4830
- def ClearField(self, field_name: typing_extensions.Literal["data_chunks", b"data_chunks", "function_call_id", b"function_call_id"]) -> None: ...
4833
+ def HasField(self, field_name: typing_extensions.Literal["_attempt_token", b"_attempt_token", "attempt_token", b"attempt_token"]) -> builtins.bool: ...
4834
+ def ClearField(self, field_name: typing_extensions.Literal["_attempt_token", b"_attempt_token", "attempt_token", b"attempt_token", "data_chunks", b"data_chunks", "function_call_id", b"function_call_id"]) -> None: ...
4835
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_attempt_token", b"_attempt_token"]) -> typing_extensions.Literal["attempt_token"] | None: ...
4831
4836
 
4832
4837
  global___FunctionCallPutDataRequest = FunctionCallPutDataRequest
4833
4838
 
modal_version/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # Copyright Modal Labs 2025
2
2
  """Supplies the current version of the modal client library."""
3
3
 
4
- __version__ = "1.0.6.dev42"
4
+ __version__ = "1.0.6.dev43"