amsdal 0.5.6__cp312-cp312-macosx_10_13_universal2.whl → 0.5.7__cp312-cp312-macosx_10_13_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/cloud/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/client.cpython-312-darwin.so +0 -0
- amsdal/cloud/constants.cpython-312-darwin.so +0 -0
- amsdal/cloud/enums.cpython-312-darwin.so +0 -0
- amsdal/cloud/models/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/token.cpython-312-darwin.so +0 -0
- amsdal/contrib/__init__.cpython-312-darwin.so +0 -0
- amsdal/fixtures/__init__.cpython-312-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-312-darwin.so +0 -0
- amsdal/fixtures/utils.cpython-312-darwin.so +0 -0
- amsdal/manager.cpython-312-darwin.so +0 -0
- amsdal/mixins/__init__.cpython-312-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.cpython-312-darwin.so +0 -0
- amsdal/models/mixins.py +22 -0
- amsdal/schemas/manager.cpython-312-darwin.so +0 -0
- amsdal/services/__init__.cpython-312-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-312-darwin.so +0 -0
- {amsdal-0.5.6.dist-info → amsdal-0.5.7.dist-info}/METADATA +1 -1
- {amsdal-0.5.6.dist-info → amsdal-0.5.7.dist-info}/RECORD +55 -54
- {amsdal-0.5.6.dist-info → amsdal-0.5.7.dist-info}/WHEEL +0 -0
- {amsdal-0.5.6.dist-info → amsdal-0.5.7.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.6.dist-info → amsdal-0.5.7.dist-info}/top_level.txt +0 -0
amsdal/__about__.py
CHANGED
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/mixins.py
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
import datetime
|
2
|
+
|
3
|
+
|
4
|
+
class TimestampMixin:
|
5
|
+
created_at: datetime.datetime | None = None
|
6
|
+
updated_at: datetime.datetime | None = None
|
7
|
+
|
8
|
+
def pre_create(self) -> None:
|
9
|
+
self.created_at = datetime.datetime.now(tz=datetime.UTC)
|
10
|
+
super().pre_create() # type: ignore[misc]
|
11
|
+
|
12
|
+
async def apre_create(self) -> None:
|
13
|
+
self.created_at = datetime.datetime.now(tz=datetime.UTC)
|
14
|
+
await super().apre_create() # type: ignore[misc]
|
15
|
+
|
16
|
+
def pre_update(self) -> None:
|
17
|
+
self.updated_at = datetime.datetime.now(tz=datetime.UTC)
|
18
|
+
super().pre_update() # type: ignore[misc]
|
19
|
+
|
20
|
+
async def apre_update(self) -> None:
|
21
|
+
self.updated_at = datetime.datetime.now(tz=datetime.UTC)
|
22
|
+
await super().apre_update() # type: ignore[misc]
|
Binary file
|
Binary file
|
Binary file
|
@@ -2,9 +2,9 @@ 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
4
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
5
|
-
amsdal/__about__.py,sha256=
|
5
|
+
amsdal/__about__.py,sha256=6iW8h6OIk_sNDiVyp7NxCzL_PEkI5J0OHZQ6VEA84jQ,124
|
6
6
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
7
|
-
amsdal/manager.cpython-312-darwin.so,sha256=
|
7
|
+
amsdal/manager.cpython-312-darwin.so,sha256=kccSdoSzglJAtNP72YWeNbg7ezVZnA0Eqvhajwk8rW4,501968
|
8
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
10
10
|
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
@@ -13,8 +13,8 @@ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
14
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
15
15
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
16
|
-
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=
|
17
|
-
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=
|
16
|
+
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=GezfuXrtqaTewK_r_79B71k1QF6UmS5Lhd4Yziu3WyE,120720
|
17
|
+
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=waZ7lW1dXePW8bib-9XKvGVk0GBRrF5jMVwWNT0eKZM,180480
|
18
18
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
@@ -27,6 +27,7 @@ amsdal/utils/tests/migrations.py,sha256=GgEMVFbm9_z44jIbBdFMi23QIK2_CcXW7rg766Ve
|
|
27
27
|
amsdal/utils/tests/helpers.py,sha256=0PbdKK76lyXozLK7UbLU1-G6yo5Bd-CLY1aXzfT25XI,12597
|
28
28
|
amsdal/utils/rollback/__init__.pyi,sha256=oA1_VJjK3k13nUp8H1wXjJs6LrlqEtAethPRQ7P8mLc,1106
|
29
29
|
amsdal/utils/rollback/__init__.py,sha256=NBIvidqj0nKRa30mWon5onpHBPQidb0DFJGcZbkKrY8,16832
|
30
|
+
amsdal/models/mixins.py,sha256=wefSorhwNS5hv6Aa-tp-CL6oyeXtOz_cGRnRI7KQK48,768
|
30
31
|
amsdal/models/__init__.py,sha256=bwURV9lpt8a6S8WvLgMDk_haor9FUQa-o29StSdTMCs,757
|
31
32
|
amsdal/models/types/object.py,sha256=cFbuXw_YVDmWdBIp49snKcTV2BmBag8LjinkLfV0_fA,1229
|
32
33
|
amsdal/models/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -38,7 +39,7 @@ amsdal/models/core/storage_metadata.py,sha256=q-IOcsIpZHf_bt7v2NTtXAfV2i8fip3F_w
|
|
38
39
|
amsdal/models/core/file.py,sha256=nst9eGXBymoeEer60vVIBcDx0Z4XVjVokHeX9qjq0No,5031
|
39
40
|
amsdal/models/core/class_property.py,sha256=fSaMUJtAGRdYTGw6ucsXjF92Y7uvuWhVG6MGMe9D554,1020
|
40
41
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
41
|
-
amsdal/contrib/__init__.cpython-312-darwin.so,sha256
|
42
|
+
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=b-jh311AK2VeFjrp6-84oqxpqVr7VwE2jkRF8w-N7hw,120736
|
42
43
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
44
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
44
45
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
@@ -99,7 +100,7 @@ amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk
|
|
99
100
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
101
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
101
102
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
102
|
-
amsdal/schemas/manager.cpython-312-darwin.so,sha256=
|
103
|
+
amsdal/schemas/manager.cpython-312-darwin.so,sha256=C-hk4YW_oN2PhsUVwZYnhMG51-5cDlP0l-5wghRinxU,120736
|
103
104
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
104
105
|
amsdal/schemas/manager.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
106
|
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
@@ -146,94 +147,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
146
147
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
148
|
amsdal/configs/main.pyi,sha256=XpcltkUCEECvRbiQ6P-j66zjU_g8lWLbCPfHoHhRMyw,6846
|
148
149
|
amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
|
149
|
-
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=
|
150
|
+
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=ksYvppv9cW0ZY9mTpdnegqZ38oKfklQqnKJtY5nZbIY,120720
|
150
151
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
152
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
152
153
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
153
|
-
amsdal/cloud/constants.cpython-312-darwin.so,sha256
|
154
|
-
amsdal/cloud/enums.cpython-312-darwin.so,sha256=
|
155
|
-
amsdal/cloud/client.cpython-312-darwin.so,sha256=
|
154
|
+
amsdal/cloud/constants.cpython-312-darwin.so,sha256=-LkRZh6k3oBl5E21MwxEQqqueTAz9HuX3cc9Imn13Wo,158688
|
155
|
+
amsdal/cloud/enums.cpython-312-darwin.so,sha256=RkiPDFQW9Ar5fIcFmh0k-91QKuoDddNgyaRqgALhFms,158128
|
156
|
+
amsdal/cloud/client.cpython-312-darwin.so,sha256=_OrrvGWn3RY90HFRslpeq0m3QJbxXH8zHfm5cyh9V1s,216144
|
156
157
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
157
|
-
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=
|
158
|
+
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=TnW2tf_leM6yEMoZN2AGxheXa0Uu3q14xFqh44_6A1s,120752
|
158
159
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
159
160
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
|
-
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=
|
161
|
-
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=
|
161
|
+
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=yQnV_6_TxAaMYXdlV5bjybeNuRHQtgqlgd0aWaCrYkg,195328
|
162
|
+
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=VIziIah6Q0EQ027vewCrk_uqrTyCSiG1hLuRdtxdivE,120768
|
162
163
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
163
|
-
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=
|
164
|
+
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=0HyTrPG7jpJpOmxBcqCRlsnVEig85vDpNBL1eQyQzG0,120784
|
164
165
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
165
166
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
166
167
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
|
-
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=
|
168
|
+
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=ntXKzu0BJopvYIRjtUcHmcXmE3-Eu5-JFofycJolvfo,288104
|
168
169
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
169
|
-
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=
|
170
|
+
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=q_25AK5tTHSM2UhVLBYXqUcdX9liCfZck8tuXI6xn64,216232
|
170
171
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
171
|
-
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=
|
172
|
-
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=
|
173
|
-
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=
|
172
|
+
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=6LKeQN3_sf_a93c_Xq13YwIBJ07-lat3F-tlzGA2rTA,251648
|
173
|
+
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=8OElWB3N0NXMJmrD2LRTn48nYPuMrZ6LjVz0_szkPWw,214144
|
174
|
+
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=peLlbq1LlwC5hv8jF7WMedZ-bXG_VjCyeZIxMrrpWaU,163120
|
174
175
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
175
|
-
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=
|
176
|
-
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=
|
176
|
+
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=Lzu4v75Uwmpuk82lIubZugBw2PDDDLxDrOKctVuY0QQ,180840
|
177
|
+
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=_uVH7ZEbauChtjRF-csHn7316Jojx0SdTHbP6bGLdP8,120800
|
177
178
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
178
179
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
179
180
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
180
181
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
181
182
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
182
183
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
183
|
-
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=
|
184
|
+
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=In0yQIEqZWMW5pGVcE4e0hIkKEfsc1iZX_-N0i_qnpY,164312
|
184
185
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
186
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
186
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=
|
187
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=j_1mkr8glDckDOnkPzKSPEUKMGzb3m8xQFBY41Imcrk,197512
|
187
188
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
188
189
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
189
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=
|
190
|
-
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=
|
191
|
-
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=
|
192
|
-
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=
|
193
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256
|
190
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=isFp2TIup3eTE56djbOc5pzTBw_Qif8CYt9ntdP-p5w,180848
|
191
|
+
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=E7vB_LdhhRxhrtngw-t_7wWG21tSXgdlGfLIZMR24JA,164328
|
192
|
+
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=ddkbQf4FJQ_4o1dinHMKa3OAxEDyhMSq3VE3uvh6E7Q,180840
|
193
|
+
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=2eWWM68qCumpoOqZ-_gNmqjrwNbOL1I9b0uYtM7G2bk,181080
|
194
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=-Q0w5LTgoUSH1d76SUMQVLf2mibjS2nIiPoCHX_aSHc,197376
|
194
195
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
195
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=
|
196
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=
|
197
|
-
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=
|
198
|
-
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=
|
196
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=zqY_lXmW0PaEnvLfOnQ-YG_GQXMqEbD0gEAewycMMcs,164168
|
197
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=WreCLURPNBZV3nVKACFd8bXgAfDHEm60ClQlENEKYJ8,197704
|
198
|
+
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=QYRJP-EBeUtUgQsRcsfcPEw3GdiUzJ2pn0w-VBeQAKA,164384
|
199
|
+
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=j7c6CNUdvsBM1X8xX7nN-1A_hf4a2Wx9dwiHNSS3eKs,181096
|
199
200
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
200
201
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
201
|
-
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=
|
202
|
-
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=
|
202
|
+
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=Q6oIBlJ0W978pP25oFQOSmd-Ex8IrzWPdJSEmr-dMi8,269176
|
203
|
+
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=q5k-BpwTG8z1JQhM-uzBqThuQb7SGdw0-GtYJOJHb-A,181000
|
203
204
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
204
205
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
205
206
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
206
|
-
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=
|
207
|
+
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=Q8QnzLvICndWi6CiScGj5RgpoFkHBsY4w0fXjXD0dv4,354848
|
207
208
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
208
209
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
209
|
-
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=
|
210
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=
|
210
|
+
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=QHovudkmEX-wtqdtyCtkymVv6VXNcTDx_G64MmkjzPk,307200
|
211
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=8ifsxJBws89w3Y2mwvM0pHqeCmva9SeHxSrHP2mTqBc,197512
|
211
212
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
212
213
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
213
|
-
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=
|
214
|
-
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=
|
215
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=
|
216
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=
|
217
|
-
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=
|
218
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=
|
219
|
-
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=
|
214
|
+
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=2PEoIweKQeIKGtz3ZAYYB7J7OO3PX6dF9QQc6ASaMW8,164264
|
215
|
+
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=2nJ42xaEn0ArnEqbhYumyv5XUHCSYfhKTnu6D-I9Uek,197568
|
216
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=j-B9qEjvkUPat-ZIiA9QFSbTognX6TrJyuNzDsnk2_Q,164376
|
217
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=XVFrwFnDunWSmXi9vnvAehhtizzhI1lza0bvhJaGrsc,180792
|
218
|
+
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=C2StLHygDEAOLkPoxg64A5P7VRjNVxXyHbBcg9dYJPA,164216
|
219
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=zE1kKqoHBUJoaIraWMq1Jsy6SaDHkFihxIsmr1hKJMo,164376
|
220
|
+
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=mO5uQQHWjcp_oXeuYE1_UE8AR7SqjHCuZd_2D29mU4w,197688
|
220
221
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
221
222
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
222
223
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
223
224
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
224
225
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
225
|
-
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=
|
226
|
+
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=BcMQR-vQYwnjmkDxuZh1M068kh963Xzq_VPdspx7XbA,120736
|
226
227
|
amsdal/fixtures/manager.pyi,sha256=cAY2nSxo6-Q7AMXbRmto3sWDqGf-Zt9La1gtciZBcZ0,7086
|
227
228
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
|
-
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=
|
229
|
+
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=7crZbvBfH4mAnPEdGYPuCwKfgtUsvw33aLoOmvk7ito,290128
|
229
230
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
230
|
-
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=
|
231
|
-
amsdal/services/__init__.cpython-312-darwin.so,sha256=
|
231
|
+
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=2jPdVfNUtwh3hyYHF4RsgWDio7zrfNfjAUaqW_DEkqM,655648
|
232
|
+
amsdal/services/__init__.cpython-312-darwin.so,sha256=vM-L64LQjuc1vFIW9Ux_qBBnyDK7RfrH0n0myww223w,120736
|
232
233
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
233
|
-
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=
|
234
|
+
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=Ols8UuQcPZxNRodzxUKwH68-q4YvdyOO7NBcY98ljuY,435344
|
234
235
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
amsdal-0.5.
|
236
|
-
amsdal-0.5.
|
237
|
-
amsdal-0.5.
|
238
|
-
amsdal-0.5.
|
239
|
-
amsdal-0.5.
|
236
|
+
amsdal-0.5.7.dist-info/RECORD,,
|
237
|
+
amsdal-0.5.7.dist-info/WHEEL,sha256=_N1vyLgwJ10g4JxFsp-IfU42zGJgf-DUqwfdbV1YvEM,115
|
238
|
+
amsdal-0.5.7.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
239
|
+
amsdal-0.5.7.dist-info/METADATA,sha256=UtBuWhTEI3K1LRly6MP74iqa3aq7Z1Hw5F1_WCtqiVo,57622
|
240
|
+
amsdal-0.5.7.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|