modal 1.0.6.dev22__py3-none-any.whl → 1.0.6.dev24__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
@@ -4670,15 +4670,21 @@ class FunctionCallCancelRequest(google.protobuf.message.Message):
4670
4670
 
4671
4671
  FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
4672
4672
  TERMINATE_CONTAINERS_FIELD_NUMBER: builtins.int
4673
+ FUNCTION_ID_FIELD_NUMBER: builtins.int
4673
4674
  function_call_id: builtins.str
4674
4675
  terminate_containers: builtins.bool
4676
+ function_id: builtins.str
4677
+ """Only provided for sync input cancellation on the input plane. Async input cancellation does not provide this field this."""
4675
4678
  def __init__(
4676
4679
  self,
4677
4680
  *,
4678
4681
  function_call_id: builtins.str = ...,
4679
4682
  terminate_containers: builtins.bool = ...,
4683
+ function_id: builtins.str | None = ...,
4680
4684
  ) -> None: ...
4681
- def ClearField(self, field_name: typing_extensions.Literal["function_call_id", b"function_call_id", "terminate_containers", b"terminate_containers"]) -> None: ...
4685
+ def HasField(self, field_name: typing_extensions.Literal["_function_id", b"_function_id", "function_id", b"function_id"]) -> builtins.bool: ...
4686
+ def ClearField(self, field_name: typing_extensions.Literal["_function_id", b"_function_id", "function_call_id", b"function_call_id", "function_id", b"function_id", "terminate_containers", b"terminate_containers"]) -> None: ...
4687
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_function_id", b"_function_id"]) -> typing_extensions.Literal["function_id"] | None: ...
4682
4688
 
4683
4689
  global___FunctionCallCancelRequest = FunctionCallCancelRequest
4684
4690
 
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.dev22"
4
+ __version__ = "1.0.6.dev24"