modal 1.1.4.dev14__py3-none-any.whl → 1.1.4.dev16__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_proto/api_pb2.pyi CHANGED
@@ -5680,6 +5680,7 @@ class FunctionHandleMetadata(google.protobuf.message.Message):
5680
5680
  INPUT_PLANE_URL_FIELD_NUMBER: builtins.int
5681
5681
  INPUT_PLANE_REGION_FIELD_NUMBER: builtins.int
5682
5682
  MAX_OBJECT_SIZE_BYTES_FIELD_NUMBER: builtins.int
5683
+ _EXPERIMENTAL_FLASH_URLS_FIELD_NUMBER: builtins.int
5683
5684
  function_name: builtins.str
5684
5685
  """Should be a subset and use IDs/types from `Function` above"""
5685
5686
  function_type: global___Function.FunctionType.ValueType
@@ -5701,6 +5702,9 @@ class FunctionHandleMetadata(google.protobuf.message.Message):
5701
5702
  input_plane_region: builtins.str
5702
5703
  max_object_size_bytes: builtins.int
5703
5704
  """Use optional to ensure unset values default to None instead of 0"""
5705
+ @property
5706
+ def _experimental_flash_urls(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
5707
+ """(Optional) urls for flash services"""
5704
5708
  def __init__(
5705
5709
  self,
5706
5710
  *,
@@ -5717,9 +5721,10 @@ class FunctionHandleMetadata(google.protobuf.message.Message):
5717
5721
  input_plane_url: builtins.str | None = ...,
5718
5722
  input_plane_region: builtins.str | None = ...,
5719
5723
  max_object_size_bytes: builtins.int | None = ...,
5724
+ _experimental_flash_urls: collections.abc.Iterable[builtins.str] | None = ...,
5720
5725
  ) -> None: ...
5721
5726
  def HasField(self, field_name: typing_extensions.Literal["_input_plane_region", b"_input_plane_region", "_input_plane_url", b"_input_plane_url", "_max_object_size_bytes", b"_max_object_size_bytes", "class_parameter_info", b"class_parameter_info", "function_schema", b"function_schema", "input_plane_region", b"input_plane_region", "input_plane_url", b"input_plane_url", "max_object_size_bytes", b"max_object_size_bytes"]) -> builtins.bool: ...
5722
- def ClearField(self, field_name: typing_extensions.Literal["_input_plane_region", b"_input_plane_region", "_input_plane_url", b"_input_plane_url", "_max_object_size_bytes", b"_max_object_size_bytes", "class_parameter_info", b"class_parameter_info", "definition_id", b"definition_id", "function_name", b"function_name", "function_schema", b"function_schema", "function_type", b"function_type", "input_plane_region", b"input_plane_region", "input_plane_url", b"input_plane_url", "is_method", b"is_method", "max_object_size_bytes", b"max_object_size_bytes", "method_handle_metadata", b"method_handle_metadata", "use_function_id", b"use_function_id", "use_method_name", b"use_method_name", "web_url", b"web_url"]) -> None: ...
5727
+ def ClearField(self, field_name: typing_extensions.Literal["_experimental_flash_urls", b"_experimental_flash_urls", "_input_plane_region", b"_input_plane_region", "_input_plane_url", b"_input_plane_url", "_max_object_size_bytes", b"_max_object_size_bytes", "class_parameter_info", b"class_parameter_info", "definition_id", b"definition_id", "function_name", b"function_name", "function_schema", b"function_schema", "function_type", b"function_type", "input_plane_region", b"input_plane_region", "input_plane_url", b"input_plane_url", "is_method", b"is_method", "max_object_size_bytes", b"max_object_size_bytes", "method_handle_metadata", b"method_handle_metadata", "use_function_id", b"use_function_id", "use_method_name", b"use_method_name", "web_url", b"web_url"]) -> None: ...
5723
5728
  @typing.overload
5724
5729
  def WhichOneof(self, oneof_group: typing_extensions.Literal["_input_plane_region", b"_input_plane_region"]) -> typing_extensions.Literal["input_plane_region"] | None: ...
5725
5730
  @typing.overload
modal_version/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # Copyright Modal Labs 2025
2
2
  """Supplies the current version of the modal client library."""
3
3
 
4
- __version__ = "1.1.4.dev14"
4
+ __version__ = "1.1.4.dev16"