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/cli/token.py +7 -8
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/METADATA +1 -1
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/RECORD +13 -13
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +562 -562
- modal_proto/api_pb2.pyi +7 -1
- modal_version/__init__.py +1 -1
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/WHEEL +0 -0
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/entry_points.txt +0 -0
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.6.dev22.dist-info → modal-1.0.6.dev24.dist-info}/top_level.txt +0 -0
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
|
|
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
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|