modal 1.1.4.dev4__py3-none-any.whl → 1.1.4.dev6__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/sandbox.py +10 -2
- modal/sandbox.pyi +8 -0
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/METADATA +1 -1
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/RECORD +13 -13
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +659 -659
- modal_proto/api_pb2.pyi +7 -1
- modal_version/__init__.py +1 -1
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/WHEEL +0 -0
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/entry_points.txt +0 -0
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.4.dev4.dist-info → modal-1.1.4.dev6.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -4037,10 +4037,14 @@ class EnvironmentListItem(google.protobuf.message.Message):
|
|
4037
4037
|
WEBHOOK_SUFFIX_FIELD_NUMBER: builtins.int
|
4038
4038
|
CREATED_AT_FIELD_NUMBER: builtins.int
|
4039
4039
|
DEFAULT_FIELD_NUMBER: builtins.int
|
4040
|
+
IS_MANAGED_FIELD_NUMBER: builtins.int
|
4041
|
+
ENVIRONMENT_ID_FIELD_NUMBER: builtins.int
|
4040
4042
|
name: builtins.str
|
4041
4043
|
webhook_suffix: builtins.str
|
4042
4044
|
created_at: builtins.float
|
4043
4045
|
default: builtins.bool
|
4046
|
+
is_managed: builtins.bool
|
4047
|
+
environment_id: builtins.str
|
4044
4048
|
def __init__(
|
4045
4049
|
self,
|
4046
4050
|
*,
|
@@ -4048,8 +4052,10 @@ class EnvironmentListItem(google.protobuf.message.Message):
|
|
4048
4052
|
webhook_suffix: builtins.str = ...,
|
4049
4053
|
created_at: builtins.float = ...,
|
4050
4054
|
default: builtins.bool = ...,
|
4055
|
+
is_managed: builtins.bool = ...,
|
4056
|
+
environment_id: builtins.str = ...,
|
4051
4057
|
) -> None: ...
|
4052
|
-
def ClearField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "default", b"default", "name", b"name", "webhook_suffix", b"webhook_suffix"]) -> None: ...
|
4058
|
+
def ClearField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "default", b"default", "environment_id", b"environment_id", "is_managed", b"is_managed", "name", b"name", "webhook_suffix", b"webhook_suffix"]) -> None: ...
|
4053
4059
|
|
4054
4060
|
global___EnvironmentListItem = EnvironmentListItem
|
4055
4061
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|