modal 0.66.31__py3-none-any.whl → 0.66.33__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 +1 -4
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/METADATA +1 -1
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/RECORD +13 -13
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +342 -342
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/LICENSE +0 -0
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/WHEEL +0 -0
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/entry_points.txt +0 -0
- {modal-0.66.31.dist-info → modal-0.66.33.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5547,6 +5547,7 @@ class MethodDefinition(google.protobuf.message.Message):
|
|
5547
5547
|
WEBHOOK_CONFIG_FIELD_NUMBER: builtins.int
|
5548
5548
|
WEB_URL_FIELD_NUMBER: builtins.int
|
5549
5549
|
WEB_URL_INFO_FIELD_NUMBER: builtins.int
|
5550
|
+
CUSTOM_DOMAIN_INFO_FIELD_NUMBER: builtins.int
|
5550
5551
|
function_name: builtins.str
|
5551
5552
|
function_type: global___Function.FunctionType.ValueType
|
5552
5553
|
@property
|
@@ -5554,6 +5555,8 @@ class MethodDefinition(google.protobuf.message.Message):
|
|
5554
5555
|
web_url: builtins.str
|
5555
5556
|
@property
|
5556
5557
|
def web_url_info(self) -> global___WebUrlInfo: ...
|
5558
|
+
@property
|
5559
|
+
def custom_domain_info(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___CustomDomainInfo]: ...
|
5557
5560
|
def __init__(
|
5558
5561
|
self,
|
5559
5562
|
*,
|
@@ -5562,9 +5565,10 @@ class MethodDefinition(google.protobuf.message.Message):
|
|
5562
5565
|
webhook_config: global___WebhookConfig | None = ...,
|
5563
5566
|
web_url: builtins.str = ...,
|
5564
5567
|
web_url_info: global___WebUrlInfo | None = ...,
|
5568
|
+
custom_domain_info: collections.abc.Iterable[global___CustomDomainInfo] | None = ...,
|
5565
5569
|
) -> None: ...
|
5566
5570
|
def HasField(self, field_name: typing_extensions.Literal["web_url_info", b"web_url_info", "webhook_config", b"webhook_config"]) -> builtins.bool: ...
|
5567
|
-
def ClearField(self, field_name: typing_extensions.Literal["function_name", b"function_name", "function_type", b"function_type", "web_url", b"web_url", "web_url_info", b"web_url_info", "webhook_config", b"webhook_config"]) -> None: ...
|
5571
|
+
def ClearField(self, field_name: typing_extensions.Literal["custom_domain_info", b"custom_domain_info", "function_name", b"function_name", "function_type", b"function_type", "web_url", b"web_url", "web_url_info", b"web_url_info", "webhook_config", b"webhook_config"]) -> None: ...
|
5568
5572
|
|
5569
5573
|
global___MethodDefinition = MethodDefinition
|
5570
5574
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|