modal 0.73.77__py3-none-any.whl → 0.73.79__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.
- modal/client.pyi +2 -2
- modal/cls.py +27 -7
- modal/functions.pyi +6 -6
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/METADATA +1 -1
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/RECORD +13 -13
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +252 -252
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/LICENSE +0 -0
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/WHEEL +0 -0
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/entry_points.txt +0 -0
- {modal-0.73.77.dist-info → modal-0.73.79.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -7470,19 +7470,22 @@ class SandboxInfo(google.protobuf.message.Message):
|
|
7470
7470
|
ID_FIELD_NUMBER: builtins.int
|
7471
7471
|
CREATED_AT_FIELD_NUMBER: builtins.int
|
7472
7472
|
TASK_INFO_FIELD_NUMBER: builtins.int
|
7473
|
+
APP_ID_FIELD_NUMBER: builtins.int
|
7473
7474
|
id: builtins.str
|
7474
7475
|
created_at: builtins.float
|
7475
7476
|
@property
|
7476
7477
|
def task_info(self) -> global___TaskInfo: ...
|
7478
|
+
app_id: builtins.str
|
7477
7479
|
def __init__(
|
7478
7480
|
self,
|
7479
7481
|
*,
|
7480
7482
|
id: builtins.str = ...,
|
7481
7483
|
created_at: builtins.float = ...,
|
7482
7484
|
task_info: global___TaskInfo | None = ...,
|
7485
|
+
app_id: builtins.str = ...,
|
7483
7486
|
) -> None: ...
|
7484
7487
|
def HasField(self, field_name: typing_extensions.Literal["task_info", b"task_info"]) -> builtins.bool: ...
|
7485
|
-
def ClearField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
|
7488
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
|
7486
7489
|
|
7487
7490
|
global___SandboxInfo = SandboxInfo
|
7488
7491
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|