amsdal 0.5.10__cp311-cp311-macosx_10_9_universal2.whl → 0.5.11__cp311-cp311-macosx_10_9_universal2.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.
- amsdal/__about__.py +1 -1
- amsdal/__migrations__/0004_update_class_file.py +45 -0
- amsdal/cloud/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/client.cpython-311-darwin.so +0 -0
- amsdal/cloud/constants.cpython-311-darwin.so +0 -0
- amsdal/cloud/enums.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/token.cpython-311-darwin.so +0 -0
- amsdal/contrib/__init__.cpython-311-darwin.so +0 -0
- amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
- amsdal/fixtures/utils.cpython-311-darwin.so +0 -0
- amsdal/manager.cpython-311-darwin.so +0 -0
- amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
- amsdal/models/core/file.py +10 -17
- amsdal/schemas/manager.cpython-311-darwin.so +0 -0
- amsdal/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
- {amsdal-0.5.10.dist-info → amsdal-0.5.11.dist-info}/METADATA +1 -1
- {amsdal-0.5.10.dist-info → amsdal-0.5.11.dist-info}/RECORD +56 -55
- {amsdal-0.5.10.dist-info → amsdal-0.5.11.dist-info}/WHEEL +0 -0
- {amsdal-0.5.10.dist-info → amsdal-0.5.11.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.10.dist-info → amsdal-0.5.11.dist-info}/top_level.txt +0 -0
amsdal/__about__.py
CHANGED
@@ -0,0 +1,45 @@
|
|
1
|
+
from amsdal_models.migration import migrations
|
2
|
+
from amsdal_utils.models.enums import ModuleType
|
3
|
+
|
4
|
+
|
5
|
+
class Migration(migrations.Migration):
|
6
|
+
operations: list[migrations.Operation] = [
|
7
|
+
migrations.UpdateClass(
|
8
|
+
module_type=ModuleType.CORE,
|
9
|
+
class_name="File",
|
10
|
+
old_schema={
|
11
|
+
"title": "File",
|
12
|
+
"required": ["filename"],
|
13
|
+
"properties": {
|
14
|
+
"filename": {"type": "string", "title": "Filename"},
|
15
|
+
"data": {"type": "binary", "title": "Data"},
|
16
|
+
"size": {"type": "number", "title": "Size"},
|
17
|
+
"storage_address": {"type": "anything", "title": "Storage Reference"},
|
18
|
+
},
|
19
|
+
"custom_code": 'import base64\nimport io\nfrom contextlib import suppress\nfrom pathlib import Path\nfrom typing import IO\nfrom typing import Any\nfrom typing import BinaryIO\n\nfrom amsdal_models.storage.backends.db import DBStorage\nfrom amsdal_models.storage.base import Storage\nfrom pydantic import model_validator\n\n\n@classmethod\ndef data_base64_decode(cls, data: Any) -> bytes:\n if isinstance(data, str):\n data = data.encode(\'utf-8\')\n is_base64: bool = False\n with suppress(Exception):\n is_base64 = base64.b64encode(base64.b64decode(data)) == data\n if is_base64:\n return base64.b64decode(data)\n return data\n\n@classmethod\ndef from_bytes(cls, filename: str, data: bytes) -> \'File\':\n """\n Creates a `File` object from a byte string.\n\n Args:\n filename (str): The filename of the file.\n data (bytes): The byte string containing the file data.:\n\n Returns:\n File: The created `File` object.\n """\n obj = cls(filename=filename, data=data, size=len(data))\n obj._needs_persist = True\n return obj\n\n@classmethod\ndef from_file(cls, file_or_path: Path | BinaryIO) -> \'File\':\n """\n Creates a `File` object from a file path or a binary file object.\n\n Args:\n file_or_path (Path | BinaryIO): The file path or binary file object.\n\n Returns:\n File: The created `File` object.\n\n Raises:\n ValueError: If the provided path is a directory.\n """\n f: BinaryIO | io.BufferedReader\n if isinstance(file_or_path, Path):\n if file_or_path.is_dir():\n msg = f\'{file_or_path} is a directory\'\n raise ValueError(msg)\n f = file_or_path.open(\'rb\')\n filename = file_or_path.name\n size = file_or_path.stat().st_size\n else:\n f = file_or_path\n filename = Path(getattr(f, \'name\', \'unnamed\')).name\n try:\n if f.seekable():\n f.seek(0, io.SEEK_END)\n size = f.tell()\n f.seek(0)\n else:\n size = None\n except (OSError, AttributeError):\n size = None\n obj = cls(filename=filename, size=size)\n obj._source = f\n obj._needs_persist = True\n return obj\n\n@model_validator(mode=\'before\')\n@classmethod\ndef validate_model_data(cls, data: Any) -> Any:\n if isinstance(data, dict):\n if \'data\' in data:\n if data[\'data\']:\n data[\'data\'] = cls.data_base64_decode(data[\'data\'])\n data[\'size\'] = len(data[\'data\'])\n else:\n data[\'size\'] = 0\n return data\n\n@property\ndef mimetype(self) -> str | None:\n """\n Returns the MIME type of the file based on its filename.\n\n This method uses the `mimetypes` module to guess the MIME type of the file.\n\n Returns:\n str | None: The guessed MIME type of the file, or None if it cannot be determined.\n """\n import mimetypes\n return mimetypes.guess_type(self.filename)[0]\n\n@property\ndef storage(self) -> Storage:\n from amsdal.storages import default_storage\n if self._storage:\n return self._storage\n if self.storage_address:\n return Storage.from_storage_spec({\'storage_class\': self.storage_address.ref.resource})\n return default_storage()\n\nasync def aopen(self, mode: str=\'rb\') -> Any:\n """\n Async variant of open().\n\n Uses the resolved storage to call aopen(); if the backend does not implement\n async, falls back to the sync open().\n """\n try:\n return await self.storage.aopen(self, mode)\n except NotImplementedError:\n return self.storage.open(self, mode)\n\nasync def apre_create(self) -> None:\n if self._needs_persist:\n from amsdal_models.storage.persistence import apersist_file\n await apersist_file(self, storage=self.storage)\n\nasync def apre_update(self) -> None:\n if self._needs_persist:\n from amsdal_models.storage.persistence import apersist_file\n await apersist_file(self, storage=self.storage)\n\nasync def aread_bytes(self) -> bytes:\n async with await self.aopen() as f:\n return await f.read()\n\nasync def aurl(self) -> str:\n """\n Async variant of url().\n\n Uses the resolved storage to call aurl(); if the backend does not implement\n async, falls back to the sync url().\n """\n try:\n return await self.storage.aurl(self)\n except NotImplementedError:\n return self.storage.url(self)\n\ndef __repr__(self) -> str:\n return f"File<{self.filename}>({self.size or len(self.data or \'\') or 0} bytes)"\n\ndef __str__(self) -> str:\n return repr(self)\n\ndef open(self, mode: str=\'rb\') -> IO[Any]:\n """\n Open a binary stream for reading (or other modes if supported) using storage_address.\n\n Raises StateError if storage_address is missing.\n """\n return self.storage.open(self, mode)\n\ndef pre_create(self) -> None:\n if self._needs_persist:\n from amsdal_models.storage.persistence import persist_file\n persist_file(self, storage=self.storage)\n\ndef pre_update(self) -> None:\n if self._needs_persist:\n from amsdal_models.storage.persistence import persist_file\n persist_file(self, storage=self.storage)\n\ndef read_bytes(self) -> bytes:\n with self.open() as f:\n return f.read()\n\ndef set_data(self, data: bytes | str) -> None:\n if not isinstance(self.storage, DBStorage):\n msg = \'Cannot set data on a file that is not stored in a database. Use `File.from_bytes` instead.\'\n raise ValueError(msg)\n self.data = self.data_base64_decode(data)\n self.size = len(self.data)\n self._needs_persist = True\n\ndef to_file(self, file_or_path: Path | BinaryIO) -> None:\n """\n Writes the object\'s data to a file path or a binary file object.\n\n Args:\n file_or_path (Path | BinaryIO): The file path or binary file object where the data will be written.\n\n Returns:\n None\n\n Raises:\n ValueError: If the provided path is a directory.\n """\n with self.open() as f:\n if isinstance(file_or_path, Path):\n if file_or_path.is_dir():\n file_or_path = file_or_path / self.name\n file_or_path.write_bytes(f.read())\n else:\n file_or_path.write(f.read())\n file_or_path.seek(0)\n\ndef url(self) -> str:\n """\n Return a URL for this file using its storage_address.\n\n Raises StateError if storage_address is missing.\n """\n return self.storage.url(self)',
|
20
|
+
"storage_metadata": {
|
21
|
+
"table_name": "File",
|
22
|
+
"db_fields": {},
|
23
|
+
"primary_key": ["partition_key"],
|
24
|
+
"foreign_keys": {},
|
25
|
+
},
|
26
|
+
},
|
27
|
+
new_schema={
|
28
|
+
"title": "File",
|
29
|
+
"required": ["filename"],
|
30
|
+
"properties": {
|
31
|
+
"filename": {"type": "string", "title": "Filename"},
|
32
|
+
"data": {"type": "binary", "title": "Data"},
|
33
|
+
"size": {"type": "number", "title": "Size"},
|
34
|
+
"storage_address": {"type": "anything", "title": "Storage Reference"},
|
35
|
+
},
|
36
|
+
"custom_code": 'import base64\nimport io\nfrom contextlib import suppress\nfrom pathlib import Path\nfrom typing import IO\nfrom typing import Any\nfrom typing import BinaryIO\n\nfrom amsdal_models.storage.backends.db import AsyncFileWrapper\nfrom amsdal_models.storage.backends.db import DBStorage\nfrom amsdal_models.storage.base import Storage\nfrom pydantic import model_validator\n\n\n@classmethod\ndef data_base64_decode(cls, data: Any) -> bytes:\n if isinstance(data, str):\n data = data.encode(\'utf-8\')\n is_base64: bool = False\n with suppress(Exception):\n is_base64 = base64.b64encode(base64.b64decode(data)) == data\n if is_base64:\n return base64.b64decode(data)\n return data\n\n@classmethod\ndef from_bytes(cls, filename: str, data: bytes) -> \'File\':\n """\n Creates a `File` object from a byte string.\n\n Args:\n filename (str): The filename of the file.\n data (bytes): The byte string containing the file data.:\n\n Returns:\n File: The created `File` object.\n """\n obj = cls(filename=filename, data=data, size=len(data))\n return obj\n\n@classmethod\ndef from_file(cls, file_or_path: Path | BinaryIO) -> \'File\':\n """\n Creates a `File` object from a file path or a binary file object.\n\n Args:\n file_or_path (Path | BinaryIO): The file path or binary file object.\n\n Returns:\n File: The created `File` object.\n\n Raises:\n ValueError: If the provided path is a directory.\n """\n f: BinaryIO | io.BufferedReader\n if isinstance(file_or_path, Path):\n if file_or_path.is_dir():\n msg = f\'{file_or_path} is a directory\'\n raise ValueError(msg)\n f = file_or_path.open(\'rb\')\n filename = file_or_path.name\n size = file_or_path.stat().st_size\n else:\n f = file_or_path\n filename = Path(getattr(f, \'name\', \'unnamed\')).name\n try:\n if f.seekable():\n f.seek(0, io.SEEK_END)\n size = f.tell()\n f.seek(0)\n else:\n size = None\n except (OSError, AttributeError):\n size = None\n obj = cls(filename=filename, size=size)\n obj._source = f\n return obj\n\n@model_validator(mode=\'before\')\n@classmethod\ndef validate_model_data(cls, data: Any) -> Any:\n if isinstance(data, dict):\n if \'data\' in data:\n if data[\'data\']:\n data[\'data\'] = cls.data_base64_decode(data[\'data\'])\n data[\'size\'] = len(data[\'data\'])\n else:\n data[\'size\'] = 0\n return data\n\n@property\ndef mimetype(self) -> str | None:\n """\n Returns the MIME type of the file based on its filename.\n\n This method uses the `mimetypes` module to guess the MIME type of the file.\n\n Returns:\n str | None: The guessed MIME type of the file, or None if it cannot be determined.\n """\n import mimetypes\n return mimetypes.guess_type(self.filename)[0]\n\n@property\ndef storage(self) -> Storage:\n from amsdal.storages import default_storage\n if self._storage:\n return self._storage\n if self.storage_address:\n return Storage.from_storage_spec({\'storage_class\': self.storage_address.ref.resource})\n return default_storage()\n\nasync def aopen(self, mode: str=\'rb\') -> Any:\n """\n Async variant of open().\n\n Uses the resolved storage to call aopen(); if the backend does not implement\n async, falls back to the sync open().\n """\n try:\n return await self.storage.aopen(self, mode)\n except NotImplementedError:\n return AsyncFileWrapper(self.storage.open(self, mode))\n\nasync def apre_create(self) -> None:\n from amsdal_models.storage.persistence import apersist_file\n await apersist_file(self, storage=self.storage)\n\nasync def apre_update(self) -> None:\n from amsdal_models.storage.persistence import apersist_file\n await apersist_file(self, storage=self.storage)\n\nasync def aread_bytes(self) -> bytes:\n async with await self.aopen() as f:\n return await f.read()\n\nasync def aurl(self) -> str:\n """\n Async variant of url().\n\n Uses the resolved storage to call aurl(); if the backend does not implement\n async, falls back to the sync url().\n """\n try:\n return await self.storage.aurl(self)\n except NotImplementedError:\n return self.storage.url(self)\n\ndef __repr__(self) -> str:\n return f"File<{self.filename}>({self.size or len(self.data or \'\') or 0} bytes)"\n\ndef __str__(self) -> str:\n return repr(self)\n\ndef open(self, mode: str=\'rb\') -> IO[Any]:\n """\n Open a binary stream for reading (or other modes if supported) using storage_address.\n\n Raises StateError if storage_address is missing.\n """\n return self.storage.open(self, mode)\n\ndef pre_create(self) -> None:\n from amsdal_models.storage.persistence import persist_file\n persist_file(self, storage=self.storage)\n\ndef pre_update(self) -> None:\n from amsdal_models.storage.persistence import persist_file\n persist_file(self, storage=self.storage)\n\ndef read_bytes(self) -> bytes:\n with self.open() as f:\n return f.read()\n\ndef set_data(self, data: bytes | str) -> None:\n if not isinstance(self.storage, DBStorage):\n msg = \'Cannot set data on a file that is not stored in a database. Use `File.from_bytes` instead.\'\n raise ValueError(msg)\n self.data = self.data_base64_decode(data)\n self.size = len(self.data)\n\ndef to_file(self, file_or_path: Path | BinaryIO) -> None:\n """\n Writes the object\'s data to a file path or a binary file object.\n\n Args:\n file_or_path (Path | BinaryIO): The file path or binary file object where the data will be written.\n\n Returns:\n None\n\n Raises:\n ValueError: If the provided path is a directory.\n """\n with self.open() as f:\n if isinstance(file_or_path, Path):\n if file_or_path.is_dir():\n file_or_path = file_or_path / self.name\n file_or_path.write_bytes(f.read())\n else:\n file_or_path.write(f.read())\n file_or_path.seek(0)\n\ndef url(self) -> str:\n """\n Return a URL for this file using its storage_address.\n\n Raises StateError if storage_address is missing.\n """\n return self.storage.url(self)',
|
37
|
+
"storage_metadata": {
|
38
|
+
"table_name": "File",
|
39
|
+
"db_fields": {},
|
40
|
+
"primary_key": ["partition_key"],
|
41
|
+
"foreign_keys": {},
|
42
|
+
},
|
43
|
+
},
|
44
|
+
),
|
45
|
+
]
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
amsdal/models/core/file.py
CHANGED
@@ -8,6 +8,7 @@ from typing import BinaryIO
|
|
8
8
|
from typing import ClassVar
|
9
9
|
|
10
10
|
from amsdal_models.classes.model import Model
|
11
|
+
from amsdal_models.storage.backends.db import AsyncFileWrapper
|
11
12
|
from amsdal_models.storage.backends.db import DBStorage
|
12
13
|
from amsdal_models.storage.base import Storage
|
13
14
|
from amsdal_utils.models.data_models.reference import Reference
|
@@ -25,7 +26,6 @@ class File(Model):
|
|
25
26
|
storage_address: Reference | None = Field(default=None, title='Storage Reference')
|
26
27
|
|
27
28
|
_source: BinaryIO | None = PrivateAttr(default=None)
|
28
|
-
_needs_persist: bool = PrivateAttr(default=False)
|
29
29
|
_storage: Storage | None = PrivateAttr(default=None)
|
30
30
|
|
31
31
|
@property
|
@@ -47,28 +47,24 @@ class File(Model):
|
|
47
47
|
return repr(self)
|
48
48
|
|
49
49
|
def pre_create(self) -> None:
|
50
|
-
|
51
|
-
from amsdal_models.storage.persistence import persist_file
|
50
|
+
from amsdal_models.storage.persistence import persist_file
|
52
51
|
|
53
|
-
|
52
|
+
persist_file(self, storage=self.storage)
|
54
53
|
|
55
54
|
def pre_update(self) -> None:
|
56
|
-
|
57
|
-
from amsdal_models.storage.persistence import persist_file
|
55
|
+
from amsdal_models.storage.persistence import persist_file
|
58
56
|
|
59
|
-
|
57
|
+
persist_file(self, storage=self.storage)
|
60
58
|
|
61
59
|
async def apre_create(self) -> None:
|
62
|
-
|
63
|
-
from amsdal_models.storage.persistence import apersist_file
|
60
|
+
from amsdal_models.storage.persistence import apersist_file
|
64
61
|
|
65
|
-
|
62
|
+
await apersist_file(self, storage=self.storage)
|
66
63
|
|
67
64
|
async def apre_update(self) -> None:
|
68
|
-
|
69
|
-
from amsdal_models.storage.persistence import apersist_file
|
65
|
+
from amsdal_models.storage.persistence import apersist_file
|
70
66
|
|
71
|
-
|
67
|
+
await apersist_file(self, storage=self.storage)
|
72
68
|
|
73
69
|
@model_validator(mode='before')
|
74
70
|
@classmethod
|
@@ -137,7 +133,6 @@ class File(Model):
|
|
137
133
|
|
138
134
|
obj = cls(filename=filename, size=size)
|
139
135
|
obj._source = f
|
140
|
-
obj._needs_persist = True
|
141
136
|
return obj
|
142
137
|
|
143
138
|
@classmethod
|
@@ -153,7 +148,6 @@ class File(Model):
|
|
153
148
|
File: The created `File` object.
|
154
149
|
"""
|
155
150
|
obj = cls(filename=filename, data=data, size=len(data))
|
156
|
-
obj._needs_persist = True
|
157
151
|
return obj
|
158
152
|
|
159
153
|
def to_file(self, file_or_path: Path | BinaryIO) -> None:
|
@@ -216,7 +210,7 @@ class File(Model):
|
|
216
210
|
try:
|
217
211
|
return await self.storage.aopen(self, mode)
|
218
212
|
except NotImplementedError:
|
219
|
-
return self.storage.open(self, mode)
|
213
|
+
return AsyncFileWrapper(self.storage.open(self, mode))
|
220
214
|
|
221
215
|
@property
|
222
216
|
def mimetype(self) -> str | None:
|
@@ -247,4 +241,3 @@ class File(Model):
|
|
247
241
|
|
248
242
|
self.data = self.data_base64_decode(data)
|
249
243
|
self.size = len(self.data)
|
250
|
-
self._needs_persist = True
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,9 +1,9 @@
|
|
1
1
|
amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
|
2
2
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
3
3
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
4
|
-
amsdal/manager.cpython-311-darwin.so,sha256=
|
4
|
+
amsdal/manager.cpython-311-darwin.so,sha256=bwJoCjsLvD6V8UL4230eV9xWPTO2tPbWEOa70OIt6OI,518288
|
5
5
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
6
|
-
amsdal/__about__.py,sha256=
|
6
|
+
amsdal/__about__.py,sha256=L5tj-PVMFqHOJMvqYtQckSVfhE7MXzcQWLoMxnxqIwI,125
|
7
7
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
8
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
@@ -18,8 +18,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
19
19
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
20
20
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
-
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=
|
22
|
-
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=
|
21
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=im_uhzGU9q0ZsJ_e8s_zRiYb6HK582X_fNmh7IMW4QE,120656
|
22
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=njG17jVrz_WobRHnE39gK4qlqYkPp3S-puUXmSiSKxU,180576
|
23
23
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
25
25
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -40,12 +40,12 @@ amsdal/models/core/fixture.py,sha256=V4SS1rAYD6mtRjwZ5tEaGgZL3fgRuP2KJ4x7R3AkBWo
|
|
40
40
|
amsdal/models/core/option.py,sha256=W2w9tmNrdmOF6x5QohJghRrnUY-RFCQ0YFULhVGdDzw,326
|
41
41
|
amsdal/models/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
42
|
amsdal/models/core/storage_metadata.py,sha256=q-IOcsIpZHf_bt7v2NTtXAfV2i8fip3F_wtes16WY78,716
|
43
|
-
amsdal/models/core/file.py,sha256=
|
43
|
+
amsdal/models/core/file.py,sha256=IZIS3H_RHYYlwlgOpTROspMNHcpthofMbyzd3bD8lcY,7685
|
44
44
|
amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IPSBdld7I,1098
|
45
45
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
46
46
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
48
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
48
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=Ov1oXgAYNR-qquVdPGgw8P8yxQzrQOxqLU6kPImjddM,120656
|
49
49
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
50
50
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -103,7 +103,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
103
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
104
104
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
105
105
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
106
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=Et35HqcYiFWGuaVX2PWERqb79pvAKFNkgnO7lHSegjw,120656
|
107
107
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
108
108
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
109
109
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -142,6 +142,7 @@ amsdal/schemas/mixins/check_dependencies_mixin.py,sha256=M3Wi1g4F9pbEEpOUlXUhCnv
|
|
142
142
|
amsdal/queryset/__init__.pyi,sha256=U8YdXkB_drnE4aX54kg7B8my9fyPg-pwsVct6QfM5Bc,545
|
143
143
|
amsdal/queryset/__init__.py,sha256=CzNaFx6yHvePtd3JY1ZGF3QLfE-e_ll5iSnaCVWdKHI,676
|
144
144
|
amsdal/__migrations__/0002_create_class_file.py,sha256=Aq72H968urji4D5aEMCsEol6gaXp1SGylmhua-hxBec,9360
|
145
|
+
amsdal/__migrations__/0004_update_class_file.py,sha256=ZxCgHFsR7WBxoAKlncEHbXusrnCLZgqVuk4yiQ9gzCg,15261
|
145
146
|
amsdal/__migrations__/0000_initial.py,sha256=USn8u2uhHy9yFtONsTec-LMdCl3f7GQ_AgSL-yQZmO4,1874
|
146
147
|
amsdal/__migrations__/0001_create_class_file.py,sha256=ujBYnCvk-UhswWlSIsiQqMbgSrXBsdWDFNaFLlc0Trc,3762
|
147
148
|
amsdal/__migrations__/0003_update_class_file.py,sha256=sKzNB9Lc5w6mGIYfyN0jI7wLgkHQVVybdCkJIqw0UYk,16118
|
@@ -153,94 +154,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
153
154
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
155
|
amsdal/configs/main.pyi,sha256=2pCKNMnSdnggHNGj37VSDhAxegrzXqVerz0HLtx7Ni4,6937
|
155
156
|
amsdal/configs/main.py,sha256=9iwtIPIy3Dbpenkhq2rSl2ar1nuJjGv4PRQeEv4z71A,9756
|
156
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
157
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=D0X4jObchgZUp9Y3tAa6XG3KisFNmcJqqTvtH4xXSx0,216208
|
157
158
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
159
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
159
160
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
160
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
161
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
162
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
161
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=MxtNkxKyPSvfrEzsJmkmrSpAh4uXF_QJHnGDd6c7G5E,158064
|
162
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=rEmr-_Cdaj69Pb9AKcmYp48gr3NaL0NEBj0VstVs9Ec,158688
|
163
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=Ji-xbhIitEG5jJiT2yMTFmWxAKwizUpqBFyeT3lBYF8,120656
|
163
164
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
164
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
165
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=kTs7TLIrO-wTQIw7EUghPxJpn6Yih6vMqaz7xwvOmpc,211632
|
165
166
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
166
167
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
168
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=UNQk9RwSb_5QXJ3IaWTI81glfWtJPE-RODY5EPFsbyg,120688
|
168
169
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
170
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
170
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=fqmSoYmegL-eD5KJ4M_Bf0AYFmDSPCLjbMUrsL-Jfds,120688
|
171
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=1e4Q-PVUmPX2WYSWGXXeLqsW5HwKsDdPrgwcEeZCWhg,163104
|
171
172
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
172
173
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
173
174
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
175
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
175
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
176
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
176
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=XihJLmTTA_kqAj2iUxCwuKxhoEoz_GjeMKMVA4cR9bw,251536
|
177
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=NaOAagCm1CADnonO9CPWjg2zSwRowY6o67O_nEtkBVA,214128
|
177
178
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
178
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
179
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
180
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
179
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=XN-VJLoodAsmgoapI7irc1C7UhwrYFwylW8Ba1lGWiI,216216
|
180
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=d82SjJjZb1kzq114DcMjZJzyqUu1dOCGGyBYxZTYySc,120704
|
181
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=RjzHCgRjKYhuALI2dEBj9wYBTmtAcBmdY0naOtjO_vc,304408
|
181
182
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
182
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
183
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
183
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=CqUEvM6fwK0PKdKld8f7GPNItO1itBAUEIC2fyQpQRQ,181112
|
184
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=666HkCSj52JagaXIVsfEAbdcRf5vpHk6UAIC6Dyqu-o,323552
|
184
185
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
185
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
186
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=bzvjg2vTqk9GCPjODcxtmMIY96HeoRfwKuzlcKeeeTw,180744
|
186
187
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
187
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
188
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
188
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=81EVHkfhwOGIMutYz912TfIFUZmcjcSfVrTZG9yfwj4,180776
|
189
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=Hfxe-cOQ2qjqNEuleCiRhsTyWV5xrrgVCpSNpVIKals,180584
|
189
190
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
190
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
191
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
191
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=tIyt6HmgeSjABFPiQnLbWuj_mid5PmS7wfqXEr8vRnc,180760
|
192
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=VchlhRp2ZeR8jbN2LiOjqKHgZn7Fhjq5XCI5hZky440,181184
|
192
193
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
193
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
194
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=dak_mKGdH-by5dhDMAI445-XaUWnp8nsdONtYCOlA6E,180632
|
194
195
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
195
196
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
196
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=dehqXBvBwWB4___-aO3TNfgwvsPsStGewwMkuFFDcac,181304
|
197
198
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
199
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
199
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
200
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
201
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
202
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
203
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
204
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
200
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=_6rfv-8xoOWF7ciwIv_lxUyC5eTi19juVajJhjy8AOo,181080
|
201
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=_2kziDV7N4dcwHIikE3oO0qVOBbhZC43yQBsWslocqs,180752
|
202
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=Z3r7qWtuGk0wwux89xWTEg8ZACDC2UbSDHNRtbDdPBw,181304
|
203
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=OnIHtAkw7WbsJ8xSfSeWBlsnmQxNtEHaOYuDkHAnNYw,180536
|
204
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=0x_M6hw-uYmSH_jjVga3vlrtOrg9eVk82lW7Iwo0qJU,180984
|
205
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=kulMsSAsFXerc_6_mXqqL2aUdxOcPL0OyI07FX-DVEI,269240
|
205
206
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
206
207
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
207
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
208
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=Ugtty5Csqdy5keMppCyLInYFIAd8lRG04KXpSVB3PDo,371312
|
208
209
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
209
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
210
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=ZRL9ufcUU2fqUeqAhq1m7tUfQ6Jx4It-fsAge8NYwO8,180712
|
210
211
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
211
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
212
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=nkC9Y6YvB5OjVbY_LM-GNY0RVGUrr2jmU6avIt48EUs,180832
|
212
213
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
213
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
214
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=n6z3rbterBK7dZMPDYrgI5cnDhGSjSeiJBDZDA1oQyQ,181112
|
214
215
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
215
216
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
216
217
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
217
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
218
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
218
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=SQYJEZNoWu3dIQM5iOXU8Z-hq_z-9KWPFy6gQK6h-xs,180976
|
219
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=putBDcwGJyUuByYnoxq_U6OjNtNj9efgkBxvpweOKsc,181064
|
219
220
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
220
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
221
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=LhkEqUrSOIJUVyGq3BrwWV5j2YpSUGELgafV6XgdWng,180824
|
221
222
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
222
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
223
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
223
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=wXJh287AvTOJef4DbaY2FZxime3e_YdvJoyxR1izTzg,180824
|
224
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=q9D80hbviK0yAarkR_KOOwunVm7ZgNKKaZ8eK-G4oOk,120720
|
224
225
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
225
226
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
226
227
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
227
228
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
228
229
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
229
230
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
230
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
231
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=8Sy2Ux2VpzQ-LJS5NJp9_IpGjI8HLJGFVjRQMeRTy1o,180680
|
231
232
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
232
233
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
233
234
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
235
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=LvLg_c4Y0ajOviHz4bceRWIURun4ifkxWCP3Vqn3f7I,622896
|
235
236
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
236
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
237
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
237
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=zDENqFEN5efdwgUWgRTXm31j0BkvwnSBzp3II4HdaXM,306720
|
238
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=BRWZbHygbP7kbiLFkmVGkvTj_knwDR2YtYE8-Y8Nc1I,120672
|
238
239
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
239
240
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
241
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
242
|
-
amsdal-0.5.
|
243
|
-
amsdal-0.5.
|
244
|
-
amsdal-0.5.
|
245
|
-
amsdal-0.5.
|
246
|
-
amsdal-0.5.
|
241
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=Xq8akVC_bqerupxt42U10KPxKu6gIPZATtf_ix7_m6M,120672
|
242
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=H-ragfO090pBXdlB3GuYYE2vkFnDMiqColrNGhxpbK4,452176
|
243
|
+
amsdal-0.5.11.dist-info/RECORD,,
|
244
|
+
amsdal-0.5.11.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
245
|
+
amsdal-0.5.11.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
246
|
+
amsdal-0.5.11.dist-info/METADATA,sha256=blriDQBHUpEI5skBbBAUFgGaCzZjW8d0fxNURbytJpM,57623
|
247
|
+
amsdal-0.5.11.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|