modal 0.68.14__py3-none-any.whl → 0.68.16__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/_runtime/asgi.py +4 -0
- modal/_runtime/user_code_imports.py +13 -18
- modal/_utils/blob_utils.py +9 -87
- modal/_utils/bytes_io_segment_payload.py +97 -0
- modal/_utils/http_utils.py +19 -10
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- modal/partial_function.py +8 -0
- modal/partial_function.pyi +8 -0
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/METADATA +1 -1
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/RECORD +19 -18
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +64 -64
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/LICENSE +0 -0
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/WHEEL +0 -0
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/entry_points.txt +0 -0
- {modal-0.68.14.dist-info → modal-0.68.16.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -8662,6 +8662,7 @@ class WebhookConfig(google.protobuf.message.Message):
|
|
8662
8662
|
WEB_SERVER_PORT_FIELD_NUMBER: builtins.int
|
8663
8663
|
WEB_SERVER_STARTUP_TIMEOUT_FIELD_NUMBER: builtins.int
|
8664
8664
|
WEB_ENDPOINT_DOCS_FIELD_NUMBER: builtins.int
|
8665
|
+
REQUIRES_PROXY_AUTH_FIELD_NUMBER: builtins.int
|
8665
8666
|
type: global___WebhookType.ValueType
|
8666
8667
|
method: builtins.str
|
8667
8668
|
requested_suffix: builtins.str
|
@@ -8671,6 +8672,7 @@ class WebhookConfig(google.protobuf.message.Message):
|
|
8671
8672
|
web_server_port: builtins.int
|
8672
8673
|
web_server_startup_timeout: builtins.float
|
8673
8674
|
web_endpoint_docs: builtins.bool
|
8675
|
+
requires_proxy_auth: builtins.bool
|
8674
8676
|
def __init__(
|
8675
8677
|
self,
|
8676
8678
|
*,
|
@@ -8682,8 +8684,9 @@ class WebhookConfig(google.protobuf.message.Message):
|
|
8682
8684
|
web_server_port: builtins.int = ...,
|
8683
8685
|
web_server_startup_timeout: builtins.float = ...,
|
8684
8686
|
web_endpoint_docs: builtins.bool = ...,
|
8687
|
+
requires_proxy_auth: builtins.bool = ...,
|
8685
8688
|
) -> None: ...
|
8686
|
-
def ClearField(self, field_name: typing_extensions.Literal["async_mode", b"async_mode", "custom_domains", b"custom_domains", "method", b"method", "requested_suffix", b"requested_suffix", "type", b"type", "web_endpoint_docs", b"web_endpoint_docs", "web_server_port", b"web_server_port", "web_server_startup_timeout", b"web_server_startup_timeout"]) -> None: ...
|
8689
|
+
def ClearField(self, field_name: typing_extensions.Literal["async_mode", b"async_mode", "custom_domains", b"custom_domains", "method", b"method", "requested_suffix", b"requested_suffix", "requires_proxy_auth", b"requires_proxy_auth", "type", b"type", "web_endpoint_docs", b"web_endpoint_docs", "web_server_port", b"web_server_port", "web_server_startup_timeout", b"web_server_startup_timeout"]) -> None: ...
|
8687
8690
|
|
8688
8691
|
global___WebhookConfig = WebhookConfig
|
8689
8692
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|