modal 1.1.1.dev32__py3-none-any.whl → 1.1.1.dev33__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
@@ -4715,11 +4715,14 @@ class FunctionBindParamsRequest(google.protobuf.message.Message):
4715
4715
  SERIALIZED_PARAMS_FIELD_NUMBER: builtins.int
4716
4716
  FUNCTION_OPTIONS_FIELD_NUMBER: builtins.int
4717
4717
  ENVIRONMENT_NAME_FIELD_NUMBER: builtins.int
4718
+ AUTH_SECRET_FIELD_NUMBER: builtins.int
4718
4719
  function_id: builtins.str
4719
4720
  serialized_params: builtins.bytes
4720
4721
  @property
4721
4722
  def function_options(self) -> global___FunctionOptions: ...
4722
4723
  environment_name: builtins.str
4724
+ auth_secret: builtins.str
4725
+ """Only used for the input plane."""
4723
4726
  def __init__(
4724
4727
  self,
4725
4728
  *,
@@ -4727,9 +4730,10 @@ class FunctionBindParamsRequest(google.protobuf.message.Message):
4727
4730
  serialized_params: builtins.bytes = ...,
4728
4731
  function_options: global___FunctionOptions | None = ...,
4729
4732
  environment_name: builtins.str = ...,
4733
+ auth_secret: builtins.str = ...,
4730
4734
  ) -> None: ...
4731
4735
  def HasField(self, field_name: typing_extensions.Literal["function_options", b"function_options"]) -> builtins.bool: ...
4732
- def ClearField(self, field_name: typing_extensions.Literal["environment_name", b"environment_name", "function_id", b"function_id", "function_options", b"function_options", "serialized_params", b"serialized_params"]) -> None: ...
4736
+ def ClearField(self, field_name: typing_extensions.Literal["auth_secret", b"auth_secret", "environment_name", b"environment_name", "function_id", b"function_id", "function_options", b"function_options", "serialized_params", b"serialized_params"]) -> None: ...
4733
4737
 
4734
4738
  global___FunctionBindParamsRequest = FunctionBindParamsRequest
4735
4739
 
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.1.dev32"
4
+ __version__ = "1.1.1.dev33"