modal 1.0.0.dev10__py3-none-any.whl → 1.0.0.dev11__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/_functions.py +9 -11
- modal/_partial_function.py +1 -1
- modal/app.py +0 -8
- modal/app.pyi +0 -6
- modal/cli/app.py +0 -19
- modal/client.pyi +2 -2
- modal/cls.py +8 -11
- modal/cls.pyi +2 -17
- modal/config.py +5 -11
- modal/dict.py +2 -1
- modal/functions.pyi +6 -6
- modal/image.py +4 -15
- modal/image.pyi +0 -1
- modal/network_file_system.py +2 -1
- modal/queue.py +2 -1
- modal/sandbox.py +5 -8
- modal/volume.py +2 -1
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/METADATA +1 -1
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/RECORD +27 -27
- modal_proto/api.proto +1 -1
- modal_proto/api_pb2.py +756 -756
- modal_proto/api_pb2.pyi +1 -5
- modal_version/__init__.py +1 -1
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/WHEEL +0 -0
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/entry_points.txt +0 -0
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.0.dev10.dist-info → modal-1.0.0.dev11.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -2193,14 +2193,11 @@ class ClassGetRequest(google.protobuf.message.Message):
|
|
2193
2193
|
OBJECT_TAG_FIELD_NUMBER: builtins.int
|
2194
2194
|
NAMESPACE_FIELD_NUMBER: builtins.int
|
2195
2195
|
ENVIRONMENT_NAME_FIELD_NUMBER: builtins.int
|
2196
|
-
LOOKUP_PUBLISHED_FIELD_NUMBER: builtins.int
|
2197
2196
|
ONLY_CLASS_FUNCTION_FIELD_NUMBER: builtins.int
|
2198
2197
|
app_name: builtins.str
|
2199
2198
|
object_tag: builtins.str
|
2200
2199
|
namespace: global___DeploymentNamespace.ValueType
|
2201
2200
|
environment_name: builtins.str
|
2202
|
-
lookup_published: builtins.bool
|
2203
|
-
"""Lookup class on app published by another workspace"""
|
2204
2201
|
only_class_function: builtins.bool
|
2205
2202
|
"""True starting with 0.67.x clients, which don't create method placeholder functions"""
|
2206
2203
|
def __init__(
|
@@ -2210,10 +2207,9 @@ class ClassGetRequest(google.protobuf.message.Message):
|
|
2210
2207
|
object_tag: builtins.str = ...,
|
2211
2208
|
namespace: global___DeploymentNamespace.ValueType = ...,
|
2212
2209
|
environment_name: builtins.str = ...,
|
2213
|
-
lookup_published: builtins.bool = ...,
|
2214
2210
|
only_class_function: builtins.bool = ...,
|
2215
2211
|
) -> None: ...
|
2216
|
-
def ClearField(self, field_name: typing_extensions.Literal["app_name", b"app_name", "environment_name", b"environment_name", "
|
2212
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_name", b"app_name", "environment_name", b"environment_name", "namespace", b"namespace", "object_tag", b"object_tag", "only_class_function", b"only_class_function"]) -> None: ...
|
2217
2213
|
|
2218
2214
|
global___ClassGetRequest = ClassGetRequest
|
2219
2215
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|