modal 1.0.6.dev51__py3-none-any.whl → 1.0.6.dev54__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/client.pyi +2 -2
- modal/io_streams.py +1 -1
- modal/sandbox.py +11 -10
- modal/sandbox.pyi +3 -6
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/METADATA +1 -1
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/RECORD +14 -14
- modal_proto/api.proto +3 -1
- modal_proto/api_pb2.py +300 -300
- modal_proto/api_pb2.pyi +9 -2
- modal_version/__init__.py +1 -1
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/WHEEL +0 -0
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/entry_points.txt +0 -0
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.6.dev51.dist-info → modal-1.0.6.dev54.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -8087,6 +8087,7 @@ class SandboxCreateRequest(google.protobuf.message.Message):
|
|
|
8087
8087
|
@property
|
|
8088
8088
|
def definition(self) -> global___Sandbox: ...
|
|
8089
8089
|
environment_name: builtins.str
|
|
8090
|
+
"""*DEPRECATED* 7/16/2025"""
|
|
8090
8091
|
def __init__(
|
|
8091
8092
|
self,
|
|
8092
8093
|
*,
|
|
@@ -8118,15 +8119,18 @@ class SandboxGetFromNameRequest(google.protobuf.message.Message):
|
|
|
8118
8119
|
|
|
8119
8120
|
SANDBOX_NAME_FIELD_NUMBER: builtins.int
|
|
8120
8121
|
ENVIRONMENT_NAME_FIELD_NUMBER: builtins.int
|
|
8122
|
+
APP_NAME_FIELD_NUMBER: builtins.int
|
|
8121
8123
|
sandbox_name: builtins.str
|
|
8122
8124
|
environment_name: builtins.str
|
|
8125
|
+
app_name: builtins.str
|
|
8123
8126
|
def __init__(
|
|
8124
8127
|
self,
|
|
8125
8128
|
*,
|
|
8126
8129
|
sandbox_name: builtins.str = ...,
|
|
8127
8130
|
environment_name: builtins.str = ...,
|
|
8131
|
+
app_name: builtins.str = ...,
|
|
8128
8132
|
) -> None: ...
|
|
8129
|
-
def ClearField(self, field_name: typing_extensions.Literal["environment_name", b"environment_name", "sandbox_name", b"sandbox_name"]) -> None: ...
|
|
8133
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_name", b"app_name", "environment_name", b"environment_name", "sandbox_name", b"sandbox_name"]) -> None: ...
|
|
8130
8134
|
|
|
8131
8135
|
global___SandboxGetFromNameRequest = SandboxGetFromNameRequest
|
|
8132
8136
|
|
|
@@ -8387,13 +8391,16 @@ class SandboxRestoreRequest(google.protobuf.message.Message):
|
|
|
8387
8391
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
8388
8392
|
|
|
8389
8393
|
SNAPSHOT_ID_FIELD_NUMBER: builtins.int
|
|
8394
|
+
SANDBOX_NAME_FIELD_NUMBER: builtins.int
|
|
8390
8395
|
snapshot_id: builtins.str
|
|
8396
|
+
sandbox_name: builtins.str
|
|
8391
8397
|
def __init__(
|
|
8392
8398
|
self,
|
|
8393
8399
|
*,
|
|
8394
8400
|
snapshot_id: builtins.str = ...,
|
|
8401
|
+
sandbox_name: builtins.str = ...,
|
|
8395
8402
|
) -> None: ...
|
|
8396
|
-
def ClearField(self, field_name: typing_extensions.Literal["snapshot_id", b"snapshot_id"]) -> None: ...
|
|
8403
|
+
def ClearField(self, field_name: typing_extensions.Literal["sandbox_name", b"sandbox_name", "snapshot_id", b"snapshot_id"]) -> None: ...
|
|
8397
8404
|
|
|
8398
8405
|
global___SandboxRestoreRequest = SandboxRestoreRequest
|
|
8399
8406
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|