amsdal 0.5.8__cp311-cp311-macosx_10_9_universal2.whl → 0.5.9__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__/0003_update_class_file.py +1 -1
- 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 +1 -6
- 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/utils/tests/migrations.py +0 -1
- {amsdal-0.5.8.dist-info → amsdal-0.5.9.dist-info}/METADATA +1 -1
- {amsdal-0.5.8.dist-info → amsdal-0.5.9.dist-info}/RECORD +57 -57
- {amsdal-0.5.8.dist-info → amsdal-0.5.9.dist-info}/WHEEL +0 -0
- {amsdal-0.5.8.dist-info → amsdal-0.5.9.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.8.dist-info → amsdal-0.5.9.dist-info}/top_level.txt +0 -0
amsdal/__about__.py
CHANGED
@@ -32,7 +32,7 @@ class Migration(migrations.Migration):
|
|
32
32
|
"size": {"type": "number", "title": "Size"},
|
33
33
|
"storage_address": {"type": "anything", "title": "Storage Reference"},
|
34
34
|
},
|
35
|
-
"custom_code": 'import base64\nimport io\nfrom contextlib import suppress\nfrom
|
35
|
+
"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)',
|
36
36
|
"storage_metadata": {
|
37
37
|
"table_name": "File",
|
38
38
|
"db_fields": {},
|
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
@@ -1,7 +1,6 @@
|
|
1
1
|
import base64
|
2
2
|
import io
|
3
3
|
from contextlib import suppress
|
4
|
-
from inspect import isawaitable
|
5
4
|
from pathlib import Path
|
6
5
|
from typing import IO
|
7
6
|
from typing import Any
|
@@ -239,11 +238,7 @@ class File(Model):
|
|
239
238
|
|
240
239
|
async def aread_bytes(self) -> bytes:
|
241
240
|
async with await self.aopen() as f:
|
242
|
-
|
243
|
-
|
244
|
-
if isawaitable(data):
|
245
|
-
return await data
|
246
|
-
return data
|
241
|
+
return await f.read()
|
247
242
|
|
248
243
|
def set_data(self, data: bytes | str) -> None:
|
249
244
|
if not isinstance(self.storage, DBStorage):
|
Binary file
|
Binary file
|
Binary file
|
amsdal/utils/tests/migrations.py
CHANGED
@@ -1,14 +1,9 @@
|
|
1
|
-
amsdal-0.5.8.dist-info/RECORD,,
|
2
|
-
amsdal-0.5.8.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
3
|
-
amsdal-0.5.8.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
4
|
-
amsdal-0.5.8.dist-info/METADATA,sha256=84ax7aRyOkNLGcTEmx219EbhyN2t77Y-9RH1agS9B1Q,57622
|
5
|
-
amsdal-0.5.8.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
6
1
|
amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
|
7
2
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
8
3
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
9
|
-
amsdal/manager.cpython-311-darwin.so,sha256=
|
4
|
+
amsdal/manager.cpython-311-darwin.so,sha256=9PXScFSix9u-ufUymIxiUTB57bJDOkKnrKxIHfb0lIE,518288
|
10
5
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
11
|
-
amsdal/__about__.py,sha256=
|
6
|
+
amsdal/__about__.py,sha256=6kYLhdHkt8K7kGaoPcOypmOiRuisFHUqVenu6fa0rn8,124
|
12
7
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
13
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
@@ -23,8 +18,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
18
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
24
19
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
25
20
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=
|
27
|
-
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=
|
21
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=gmWzdPPRKnH0tO0nhchW-luxqyEa_LLIDZ7SG2ZhVsM,120656
|
22
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=6VfOhc2UWj3oh1bkPXf3vtfIUuyOSTwb79tMm8To8xg,180576
|
28
23
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
24
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
30
25
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -32,7 +27,7 @@ amsdal/utils/contrib_paths.pyi,sha256=Ngb_2wCTCPJ9NSIqKiP254Ww9xrQzAV1-AiqUkVmiu
|
|
32
27
|
amsdal/utils/tests/enums.py,sha256=-zp_up9rlxAHR3znVKgWSDPmFKfxoHHOhb4ghtyltuU,302
|
33
28
|
amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
29
|
amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
|
35
|
-
amsdal/utils/tests/migrations.py,sha256=
|
30
|
+
amsdal/utils/tests/migrations.py,sha256=dsqHxeQU0xeO0COS9QgU0rwlMyznUxZ2EBdzcA7dsOM,6419
|
36
31
|
amsdal/utils/tests/helpers.py,sha256=0PbdKK76lyXozLK7UbLU1-G6yo5Bd-CLY1aXzfT25XI,12597
|
37
32
|
amsdal/utils/rollback/__init__.pyi,sha256=oA1_VJjK3k13nUp8H1wXjJs6LrlqEtAethPRQ7P8mLc,1106
|
38
33
|
amsdal/utils/rollback/__init__.py,sha256=NBIvidqj0nKRa30mWon5onpHBPQidb0DFJGcZbkKrY8,16832
|
@@ -45,12 +40,12 @@ amsdal/models/core/fixture.py,sha256=V4SS1rAYD6mtRjwZ5tEaGgZL3fgRuP2KJ4x7R3AkBWo
|
|
45
40
|
amsdal/models/core/option.py,sha256=W2w9tmNrdmOF6x5QohJghRrnUY-RFCQ0YFULhVGdDzw,326
|
46
41
|
amsdal/models/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
42
|
amsdal/models/core/storage_metadata.py,sha256=q-IOcsIpZHf_bt7v2NTtXAfV2i8fip3F_wtes16WY78,716
|
48
|
-
amsdal/models/core/file.py,sha256=
|
43
|
+
amsdal/models/core/file.py,sha256=j-i70o8NeOIlw35xysuFsuIkehf2Q67lOiO4SJN5MTc,7921
|
49
44
|
amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IPSBdld7I,1098
|
50
45
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
51
46
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
47
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
53
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
48
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=cwsRj1NAMFjUFSa77hPq2OkYKXP4tWPgZWEzsai6iuc,120656
|
54
49
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
55
50
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
51
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -107,7 +102,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
102
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
108
103
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
109
104
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
105
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=QL0aRSw1LgkpNcbUcOPmJYPW11E3I0bYYGxE48tHQi8,120656
|
111
106
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
112
107
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
113
108
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -148,7 +143,7 @@ amsdal/queryset/__init__.py,sha256=CzNaFx6yHvePtd3JY1ZGF3QLfE-e_ll5iSnaCVWdKHI,6
|
|
148
143
|
amsdal/__migrations__/0002_create_class_file.py,sha256=Aq72H968urji4D5aEMCsEol6gaXp1SGylmhua-hxBec,9360
|
149
144
|
amsdal/__migrations__/0000_initial.py,sha256=USn8u2uhHy9yFtONsTec-LMdCl3f7GQ_AgSL-yQZmO4,1874
|
150
145
|
amsdal/__migrations__/0001_create_class_file.py,sha256=ujBYnCvk-UhswWlSIsiQqMbgSrXBsdWDFNaFLlc0Trc,3762
|
151
|
-
amsdal/__migrations__/0003_update_class_file.py,sha256=
|
146
|
+
amsdal/__migrations__/0003_update_class_file.py,sha256=sKzNB9Lc5w6mGIYfyN0jI7wLgkHQVVybdCkJIqw0UYk,16118
|
152
147
|
amsdal/transactions/__init__.pyi,sha256=tK1CNKSx7gEFephi0mw04j-xxl1Z2af3iFbykFqov6I,340
|
153
148
|
amsdal/transactions/__init__.py,sha256=XQF1Ipr2Ao0TDhyNlZPAF8TNkpl75PalOZrzRVzQn1g,429
|
154
149
|
amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -157,89 +152,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
157
152
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
153
|
amsdal/configs/main.pyi,sha256=2pCKNMnSdnggHNGj37VSDhAxegrzXqVerz0HLtx7Ni4,6937
|
159
154
|
amsdal/configs/main.py,sha256=9iwtIPIy3Dbpenkhq2rSl2ar1nuJjGv4PRQeEv4z71A,9756
|
160
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
155
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=010VBGaAWbtnlpDthQ2ygrgRs2OazOlSf35VxthMInQ,216208
|
161
156
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
157
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
163
158
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
164
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
165
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
166
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
159
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=sUxpzftoGQFEzJh7dahfQ-YfI4yUGRcUriuHTE9WGUM,158064
|
160
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=0EqUrrfWr1wkifkjGEzaEYyGedNDtLvQpS7mqZpZcqA,158688
|
161
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=SRonp6ekTL5imZPyZ1UYmG31HzUajDwRj8RPEZTq2VU,120656
|
167
162
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
168
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
163
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=lWTUHUvVuIi97tlCKnqUQj3Ukd4_fW8MBpFlu4NV174,211632
|
169
164
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
170
165
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
166
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=7b0roRG-icju6dx5l7psv6ZexLTbiIB8aI-0CpxQqng,120688
|
172
167
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256
|
174
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
168
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=lLa87mMwyd-wHOhznSXVey6AabnjxH7uVY1zM8vqzR4,120688
|
169
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=vgO01BxpDqWb3lquUV2VlspD9oxxqhWK74c_7Qj1fRk,163104
|
175
170
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
176
171
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
177
172
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
178
173
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
179
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
180
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
174
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=z8o4SMlhZOmzOHvYJTOC70e4LV2lGd39JIyxw3fRlg4,251536
|
175
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=VQi_Rcw3N2i0U4o4eTPXAZ06CihLoU2Nse_uLSg11lM,214128
|
181
176
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
182
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
183
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
184
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
177
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=qRwb-wk-k8FTnDxg6E-70kukTkOkt5-nxkYDF2jO-no,216216
|
178
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=_LGcldVpdYWbp0APSX7BFxmt4mF9vUFC-WngwesE-s4,120704
|
179
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=FbWKIOFmk5sT-YtF6GI96NlTT1TIiWfs8GIwWGq4wD4,304408
|
185
180
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
186
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
187
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
181
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=wHebkwRhNs8rNggjb5AzReBlqiqsMUb14c-GsChVn6c,181112
|
182
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=xqBfOJIWNusaHALHo6HWMZkhmzEbab7qJ6tRWHQ6X9I,323552
|
188
183
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
189
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
184
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=krQJczfLExme3F5K1xvdavmw3w4aQkERkhpaX7zZ5eA,180744
|
190
185
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
191
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
192
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
186
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=9NHRhXoJEU8DUUit-N3TXKeTIPJK9EivpYQXIv1BcCQ,180776
|
187
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=dlZ8YvCHg_qPcNU_clDyUTAaubynoUoME-n5MKFuSHA,180584
|
193
188
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
194
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
195
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
189
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=_hp1jJTLrTxqaQrV-_7dtIaNxw27tKPepfOaSo3InWg,180760
|
190
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=GpjN6vT4J0Qf8kSUQD2zq-k4TLHx1hQr7ufw5Jf-ERI,181184
|
196
191
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
197
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
192
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=WA--Q0EdAq8CmMI891YKPM6cJLYoyw_0xchLxBQ9dlA,180632
|
198
193
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
199
194
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
200
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
195
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=9Pg6d9Z0sr366g3es2SnZ6SBtvZdPShOSO-McRtou5s,181304
|
201
196
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
197
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
203
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
204
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
205
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
206
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
207
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
208
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
198
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=OUhAIBarvvUpHGCGIFVIUOV8oPE31UEIpt4WTyIZ604,181080
|
199
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=nRRpmfwQJM1j4A574XHdNNw3NoJ7GjoCmEvwEtK4rS4,180752
|
200
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=G_gs4c8-hzPQW1S68kNmFXyyyQJ-afFSl8OtDxj6xnU,181304
|
201
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=XJWZ7pcNxmMeJoF--pFwCo_sU8e0tOqaRUXxmTJqKyI,180536
|
202
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=sxustycgYoYeqab7bbkNdLMEFHH0HUKcJdlw9YcxLbQ,180984
|
203
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=F4S-Q3ISCm3jV9vDguhQh2Wmzpp4CGWgpVURydpvNRM,269240
|
209
204
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
210
205
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
211
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
206
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=MaFf4pGIm-oKW8LxizlcJTvtKYYWRLXYokHdD6IHghs,371312
|
212
207
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
213
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
208
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=BuXdmJyqh0vGTPiaK9C-8udUpncbJKNuBN6ETmkjcS0,180712
|
214
209
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
215
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
210
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=5TJzTFZ_2SycDwA9nTLUORMX0bt7PZIepEMmZEYC-F8,180832
|
216
211
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
217
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
212
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=I8KhQtdKG7SE0-oLB4XvkYwe0bnMXkYMBdmatnPQomg,181112
|
218
213
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
219
214
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
220
215
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
221
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
222
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
216
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=sKjJ38Amgat-EVMOEd-DP0CdIfiihpB0zgzbgtoyKWE,180976
|
217
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=CdfxVQRCElkAXAeWTQuuOKkPq2-wqM6PeVT9emDxWa0,181064
|
223
218
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
224
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
219
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=YGuV6g29TdFKTgVMLxtaeCjaNcHpp2bdN14YsuVEZ_I,180824
|
225
220
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
226
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
227
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
221
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=XzMkW-2YBUDJY48YIN9GzScYGyctCeSgwDJZZZGqOPI,180824
|
222
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=LyPTBG_uzY9Qk1VwGUiHiEECpbyYUTnLkoccZ27_-xU,120720
|
228
223
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
229
224
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
230
225
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
231
226
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
232
227
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
233
228
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
234
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
229
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=txyfOvD-wFIKQXynhKw1zHkn9HOvfj0Wdo3A2_dGFCg,180680
|
235
230
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
236
231
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
237
232
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256
|
233
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=Qold1WyPoImzfOEfwTVFjkJO_FfRuV4QBOTBTTN5amU,622896
|
239
234
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
240
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
241
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
235
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=Z8IOo72ZNolrHTGJeT7LpKHPL4q2N5Rl_XSumf_qcKQ,306720
|
236
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=dO8oXtZkixvCHF0ZQV1zmFrJxQlJsuAIuNY_aa5SH8U,120672
|
242
237
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
243
238
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
245
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
239
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=TGMflDBFMKHtSyIKuwqrok_ZgxwOhEcpCtnyRzNkSwk,120672
|
240
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=ThGfIe7JRmqHnD549mDUc1jgHFRSkOkHfftEJacyRBI,452176
|
241
|
+
amsdal-0.5.9.dist-info/RECORD,,
|
242
|
+
amsdal-0.5.9.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
243
|
+
amsdal-0.5.9.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
244
|
+
amsdal-0.5.9.dist-info/METADATA,sha256=u_dS0-iVdiSiYE4SW6sHGaX7eSD9G_JDFgyfdVOQftQ,57622
|
245
|
+
amsdal-0.5.9.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|