modal 1.0.5.dev4__py3-none-any.whl → 1.0.5.dev6__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
@@ -8041,11 +8041,15 @@ class SandboxInfo(google.protobuf.message.Message):
8041
8041
  CREATED_AT_FIELD_NUMBER: builtins.int
8042
8042
  TASK_INFO_FIELD_NUMBER: builtins.int
8043
8043
  APP_ID_FIELD_NUMBER: builtins.int
8044
+ TAGS_FIELD_NUMBER: builtins.int
8044
8045
  id: builtins.str
8045
8046
  created_at: builtins.float
8046
8047
  @property
8047
8048
  def task_info(self) -> global___TaskInfo: ...
8048
8049
  app_id: builtins.str
8050
+ @property
8051
+ def tags(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SandboxTag]:
8052
+ """TODO: Not yet exposed in client library."""
8049
8053
  def __init__(
8050
8054
  self,
8051
8055
  *,
@@ -8053,9 +8057,10 @@ class SandboxInfo(google.protobuf.message.Message):
8053
8057
  created_at: builtins.float = ...,
8054
8058
  task_info: global___TaskInfo | None = ...,
8055
8059
  app_id: builtins.str = ...,
8060
+ tags: collections.abc.Iterable[global___SandboxTag] | None = ...,
8056
8061
  ) -> None: ...
8057
8062
  def HasField(self, field_name: typing_extensions.Literal["task_info", b"task_info"]) -> builtins.bool: ...
8058
- def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
8063
+ def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "tags", b"tags", "task_info", b"task_info"]) -> None: ...
8059
8064
 
8060
8065
  global___SandboxInfo = SandboxInfo
8061
8066
 
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.0.5.dev4"
4
+ __version__ = "1.0.5.dev6"