modal 0.73.52__py3-none-any.whl → 0.73.54__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/app.py +3 -0
- modal/client.pyi +2 -2
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/METADATA +1 -1
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/RECORD +12 -12
- modal_proto/api.proto +3 -2
- modal_proto/api_pb2.py +508 -506
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/LICENSE +0 -0
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/WHEEL +0 -0
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/entry_points.txt +0 -0
- {modal-0.73.52.dist-info → modal-0.73.54.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -4328,9 +4328,12 @@ class FunctionCreateResponse(google.protobuf.message.Message):
|
|
4328
4328
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
4329
4329
|
|
4330
4330
|
FUNCTION_ID_FIELD_NUMBER: builtins.int
|
4331
|
+
__DEPRECATED_WEB_URL_FIELD_NUMBER: builtins.int
|
4331
4332
|
FUNCTION_FIELD_NUMBER: builtins.int
|
4332
4333
|
HANDLE_METADATA_FIELD_NUMBER: builtins.int
|
4333
4334
|
function_id: builtins.str
|
4335
|
+
__deprecated_web_url: builtins.str
|
4336
|
+
"""Used up until 0.62.212"""
|
4334
4337
|
@property
|
4335
4338
|
def function(self) -> global___Function: ...
|
4336
4339
|
@property
|
@@ -4339,11 +4342,12 @@ class FunctionCreateResponse(google.protobuf.message.Message):
|
|
4339
4342
|
self,
|
4340
4343
|
*,
|
4341
4344
|
function_id: builtins.str = ...,
|
4345
|
+
__deprecated_web_url: builtins.str = ...,
|
4342
4346
|
function: global___Function | None = ...,
|
4343
4347
|
handle_metadata: global___FunctionHandleMetadata | None = ...,
|
4344
4348
|
) -> None: ...
|
4345
4349
|
def HasField(self, field_name: typing_extensions.Literal["function", b"function", "handle_metadata", b"handle_metadata"]) -> builtins.bool: ...
|
4346
|
-
def ClearField(self, field_name: typing_extensions.Literal["function", b"function", "function_id", b"function_id", "handle_metadata", b"handle_metadata"]) -> None: ...
|
4350
|
+
def ClearField(self, field_name: typing_extensions.Literal["__deprecated_web_url", b"__deprecated_web_url", "function", b"function", "function_id", b"function_id", "handle_metadata", b"handle_metadata"]) -> None: ...
|
4347
4351
|
|
4348
4352
|
global___FunctionCreateResponse = FunctionCreateResponse
|
4349
4353
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|