modal 1.0.6.dev44__py3-none-any.whl → 1.0.6.dev46__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
@@ -4481,7 +4481,8 @@ class Function(google.protobuf.message.Message):
4481
4481
  def autoscaler_settings(self) -> global___AutoscalerSettings:
4482
4482
  """Bundle of parameters related to autoscaling"""
4483
4483
  @property
4484
- def function_schema(self) -> global___FunctionSchema: ...
4484
+ def function_schema(self) -> global___FunctionSchema:
4485
+ """Function schema, may be missing: client doesn't block deployment if it fails to get it"""
4485
4486
  @property
4486
4487
  def experimental_options(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
4487
4488
  """For server-side experimental functionality. Prefer using this over individual _experimental_* fields.
@@ -4720,18 +4721,15 @@ class FunctionCallGetDataRequest(google.protobuf.message.Message):
4720
4721
 
4721
4722
  FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
4722
4723
  LAST_INDEX_FIELD_NUMBER: builtins.int
4723
- ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
4724
4724
  function_call_id: builtins.str
4725
4725
  last_index: builtins.int
4726
- attempt_token: builtins.str
4727
4726
  def __init__(
4728
4727
  self,
4729
4728
  *,
4730
4729
  function_call_id: builtins.str = ...,
4731
4730
  last_index: builtins.int = ...,
4732
- attempt_token: builtins.str = ...,
4733
4731
  ) -> None: ...
4734
- def ClearField(self, field_name: typing_extensions.Literal["attempt_token", b"attempt_token", "function_call_id", b"function_call_id", "last_index", b"last_index"]) -> None: ...
4732
+ def ClearField(self, field_name: typing_extensions.Literal["function_call_id", b"function_call_id", "last_index", b"last_index"]) -> None: ...
4735
4733
 
4736
4734
  global___FunctionCallGetDataRequest = FunctionCallGetDataRequest
4737
4735
 
@@ -4818,21 +4816,16 @@ class FunctionCallPutDataRequest(google.protobuf.message.Message):
4818
4816
 
4819
4817
  FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
4820
4818
  DATA_CHUNKS_FIELD_NUMBER: builtins.int
4821
- ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
4822
4819
  function_call_id: builtins.str
4823
4820
  @property
4824
4821
  def data_chunks(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DataChunk]: ...
4825
- attempt_token: builtins.str
4826
4822
  def __init__(
4827
4823
  self,
4828
4824
  *,
4829
4825
  function_call_id: builtins.str = ...,
4830
4826
  data_chunks: collections.abc.Iterable[global___DataChunk] | None = ...,
4831
- attempt_token: builtins.str | None = ...,
4832
4827
  ) -> 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: ...
4828
+ def ClearField(self, field_name: typing_extensions.Literal["data_chunks", b"data_chunks", "function_call_id", b"function_call_id"]) -> None: ...
4836
4829
 
4837
4830
  global___FunctionCallPutDataRequest = FunctionCallPutDataRequest
4838
4831
 
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.dev44"
4
+ __version__ = "1.0.6.dev46"