amsdal 0.5.6__cp311-cp311-macosx_10_9_universal2.whl → 0.5.7__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/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/mixins.py +22 -0
- 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.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
|
@@ -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=a_3OInyZdX4EFWVbLUrghIUR52JHg7T5YFa1ZP6GUnM,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=6iW8h6OIk_sNDiVyp7NxCzL_PEkI5J0OHZQ6VEA84jQ,124
|
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
|
@@ -14,8 +14,8 @@ 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
16
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=
|
18
|
-
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=
|
17
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=avh6Hvn-Axyfj2_UmKSrhWeei8OoC3cFCLc5JA4QhRk,120656
|
18
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=_SsE2m35A31GVuM3g4pGMAPzrYg7MT8kSC5F8QF-MWc,180576
|
19
19
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
21
21
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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
|
@@ -40,7 +41,7 @@ amsdal/models/core/class_property.py,sha256=fSaMUJtAGRdYTGw6ucsXjF92Y7uvuWhVG6MG
|
|
40
41
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
41
42
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
43
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
43
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
44
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=CtTBYcwESCA6SopEGztc9JaGj2dOUIuvT3yxbeUMVW8,120656
|
44
45
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
45
46
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
47
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -97,7 +98,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
98
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
98
99
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
99
100
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
101
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=Yz5VFGdV-sVoreP0dHEEDFrAtqqoX4A2dzJDK_1LZcw,120656
|
101
102
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
102
103
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
103
104
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -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/client.cpython-311-darwin.so,sha256=
|
150
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=3xjie-_g_WRRBETOVAGN2QwKe9x1C3Lzra32DMF1aUQ,216208
|
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/enums.cpython-311-darwin.so,sha256=
|
154
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
155
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
154
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=BlIJdC2P3Digg6ZigfvbZgNmFtPJBoJKN-CLeaL1SX8,158064
|
155
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=FxN16HZOQhZMsNMSbskQs3NfRW1ziDyTvHDFZzIR3PE,158688
|
156
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=2AP2EZMJ9y20mIVm0fDxAu5tAJWiq9jpAEkUS9JSxes,120656
|
156
157
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
157
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
158
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=3Ez9W2AGmZSTC6SGb6AlHyVrPRQOmPcOguWmiX_YH58,211632
|
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/__init__.cpython-311-darwin.so,sha256=
|
161
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=n-vlB9J6SMLXTt_6BGFU15nKjE27cyIObFOiW3mjSZo,120688
|
161
162
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
163
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
163
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=CQGxXza9zKFl95blLgmPQBNBwckOZhALOgEWRL4JyVc,120688
|
164
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=XCTbpX7U0K2HaueraRU7KpEwwd5KFwTJO5hp_TBb9v8,163104
|
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
168
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
168
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
169
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
169
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=4tSQJvJlsj5STWnl-jsRM5bcalnxKcemQyAEIqHvu1U,251536
|
170
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=7n6Zku6saLDU8K0gv92SP6_29jA53mAH-xzl9XAzR6g,214128
|
170
171
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
171
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
172
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
173
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
172
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=qANa_AJM-5suD8MeDKueZ7hKlgJcY0ofjsfdDH76uUw,216216
|
173
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=nOhV9aHUCGxE9IsjAZXEEgtV8puwDq2UxxyfoPbyPtk,120704
|
174
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=gm6DYRQgj3HQI-pNTFxatMYM72nuBo5JeilcjfgGyEY,287736
|
174
175
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
175
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
176
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
176
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=sV2Sv_Xm0GsQseTYwnM6CJF00mPi4_ZbbNVUwQSLf-M,181112
|
177
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=ZN1fUNlBv1jozTmle4lRUZqpRgTteehHUfx0j0LjO3A,323552
|
177
178
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
178
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
179
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=GTnvpTvDjUD1kGxhPa0ZiH5Nt3NL1XuADZwJ5IY1PJ8,180744
|
179
180
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
180
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
181
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
181
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=XCxN54lKldmJRZIkh8nlJjjCIyj7EDaetlfzbcT0IRs,180776
|
182
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=PEGoTCREOJC_YXNAZqovmeAofXoF1HXrsxkjsm7i0eg,180584
|
182
183
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
183
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
184
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
184
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=6E_DzMnwo8zku-wk61R5SRGsYR2q82fzRYiclH8sdEY,180760
|
185
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=J6D2qxIiySqBQtXT_ujci5xMPYw27tUT5awrqXRHJKA,181184
|
185
186
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
186
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
187
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=WSIe6aIFZVbDM1IQylAh0WcQIjPMnDgtHEc5_nCv4es,180632
|
187
188
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
188
189
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
189
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
190
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=crSK3uRx01vdXHgsnSoUr03Q8W1siTDDTCKfgtS_V3I,181304
|
190
191
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
192
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
192
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
193
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
194
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
195
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
196
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
197
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
193
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=Xf-GT8AhEZZ1StFWmwdlD8OZpNEJlw9uzd2NBsRZ_bE,181080
|
194
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=d3glSgjJ_xPkvM_JxdWWtZLC67Vt663hSGznlS_7KYU,180752
|
195
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=8k1TBRr56AHHYaEgtNjs1GQ-nzY7LYobWR8bsJmYSLc,181304
|
196
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=hxRihgSjOWS1wFbZJeuJYj0ll8XSfcekxvAUU4kSz0c,180536
|
197
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=gCiDTlmp_yFDPUrmi54hjj3zcCFss5tEUY0x42daY7I,180984
|
198
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=AMQ-myGmYI1pQQ7gnonMTM-ISDFvbhdC6RbQVgzeOBU,269240
|
198
199
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
199
200
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
200
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
201
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=_IC5cSNhww6O-nIq2uDPaLjMUPW27g4zdtCLjxWyaeA,371312
|
201
202
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
202
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
203
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=TWGSf_kgsz3qIWF56iPZjS6l3x5aASFXXAbU8tAiumE,180712
|
203
204
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
204
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
205
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=5LCgkLY_eHJrFaLhfpDdkvF8wV8TJWwfpz0Goo9NxPc,180832
|
205
206
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
206
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
207
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=rRIMtF-aQTXzZs7YhrASjdvxhBJXs09p-EN_s1o5pQg,181112
|
207
208
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
208
209
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
209
210
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
210
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
211
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
211
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=ubDiVaXy1ovJoFFIvUCIrQIQyLOqmzybxQduYLu0WwM,180976
|
212
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=Y_adGeQJ7ENNvRQnZN43-8Gn8lxrkS9gRbLo_HWVLeY,181064
|
212
213
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
213
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
214
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=gdNPkJHdXtIoUrQax1tUl7zrh-HKGUjVOM7idVJymxs,180824
|
214
215
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
215
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
216
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
216
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=50_55ZJlA7v5CnZ04jlxNFq57UaLCoRc3z1ZiQyjZRw,180824
|
217
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=JgoDiif6LNxge4H1pVpKbeMNgw8W7BEAI70DHdCXdWk,120720
|
217
218
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
218
219
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
219
220
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
220
221
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
221
222
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
222
223
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
223
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
224
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=mvzshTpGUumtC1T6XCzatfn4TwRMbS7q37v5m2rtieY,180680
|
224
225
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
225
226
|
amsdal/fixtures/manager.pyi,sha256=cAY2nSxo6-Q7AMXbRmto3sWDqGf-Zt9La1gtciZBcZ0,7086
|
226
227
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
228
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=nFp4bMZAV9vXMz0Q-DhpqkCEuQ1wUgwZD_TofUbQXZM,622896
|
228
229
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
229
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
230
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
230
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=wN_uJ5B3xBmcGv4o3HG97aEfeUl_jSW7_ujGDQ3-MKQ,306720
|
231
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=9f5BMWoA0HMiKj59ljuJt1eKwD4vmROiOM8hTOpXD6Q,120672
|
231
232
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
232
233
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
234
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
235
|
-
amsdal-0.5.
|
236
|
-
amsdal-0.5.
|
237
|
-
amsdal-0.5.
|
238
|
-
amsdal-0.5.
|
239
|
-
amsdal-0.5.
|
234
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=5I47NWDTeBiGHdiDlxh5LG03oVX-daCxZ3KpTPabGNA,120672
|
235
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=HWIcuFF4kDV64QPsvBJYHmgi63uNsavuyow7O82Ii8g,435472
|
236
|
+
amsdal-0.5.7.dist-info/RECORD,,
|
237
|
+
amsdal-0.5.7.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
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
|