amsdal 0.5.16__cp311-cp311-macosx_10_9_universal2.whl → 0.5.18__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/contrib/frontend_configs/conversion/convert.py +13 -13
- 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 +9 -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.16.dist-info → amsdal-0.5.18.dist-info}/METADATA +1 -1
- {amsdal-0.5.16.dist-info → amsdal-0.5.18.dist-info}/RECORD +56 -56
- {amsdal-0.5.16.dist-info → amsdal-0.5.18.dist-info}/WHEEL +0 -0
- {amsdal-0.5.16.dist-info → amsdal-0.5.18.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.16.dist-info → amsdal-0.5.18.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
|
@@ -140,6 +140,19 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
140
140
|
return {
|
141
141
|
'type': 'text',
|
142
142
|
}
|
143
|
+
if value.__class__.__name__ == '_LiteralGenericAlias' and hasattr(value, '__origin__'):
|
144
|
+
options = get_args(value)
|
145
|
+
return {
|
146
|
+
'type': 'select',
|
147
|
+
'options': [{'label': str(option), 'value': option} for option in options],
|
148
|
+
}
|
149
|
+
|
150
|
+
if value.__class__.__name__ == '_AnnotatedAlias' and hasattr(value, '__origin__'):
|
151
|
+
# Handle Annotated types
|
152
|
+
options = get_args(value)
|
153
|
+
if options:
|
154
|
+
val = convert_to_frontend_config(options[0], is_transaction=is_transaction)
|
155
|
+
return val
|
143
156
|
|
144
157
|
if isinstance(value, FunctionType):
|
145
158
|
function_controls = []
|
@@ -294,17 +307,4 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
294
307
|
except TypeError:
|
295
308
|
pass
|
296
309
|
|
297
|
-
if value.__class__.__name__ == '_LiteralGenericAlias' and hasattr(value, '__origin__'):
|
298
|
-
options = get_args(value)
|
299
|
-
return {
|
300
|
-
'type': 'select',
|
301
|
-
'options': [{'label': str(option), 'value': option} for option in options],
|
302
|
-
}
|
303
|
-
|
304
|
-
if value.__class__.__name__ == '_AnnotatedAlias' and hasattr(value, '__origin__'):
|
305
|
-
# Handle Annotated types
|
306
|
-
options = get_args(value)
|
307
|
-
if options:
|
308
|
-
return convert_to_frontend_config(options[0], is_transaction=is_transaction)
|
309
|
-
|
310
310
|
return {}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
amsdal/models/mixins.py
CHANGED
@@ -15,8 +15,17 @@ class TimestampMixin:
|
|
15
15
|
|
16
16
|
def pre_update(self) -> None:
|
17
17
|
self.updated_at = datetime.datetime.now(tz=datetime.UTC)
|
18
|
+
|
19
|
+
if not self.created_at:
|
20
|
+
_metadata = self.get_metadata() # type: ignore[attr-defined]
|
21
|
+
self.created_at = datetime.datetime.fromtimestamp(_metadata.created_at / 1000, tz=datetime.UTC)
|
22
|
+
|
18
23
|
super().pre_update() # type: ignore[misc]
|
19
24
|
|
20
25
|
async def apre_update(self) -> None:
|
21
26
|
self.updated_at = datetime.datetime.now(tz=datetime.UTC)
|
27
|
+
if not self.created_at:
|
28
|
+
_metadata = await self.aget_metadata() # type: ignore[attr-defined]
|
29
|
+
self.created_at = datetime.datetime.fromtimestamp(_metadata.created_at / 1000, tz=datetime.UTC)
|
30
|
+
|
22
31
|
await super().apre_update() # type: ignore[misc]
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,9 +1,14 @@
|
|
1
|
+
amsdal-0.5.18.dist-info/RECORD,,
|
2
|
+
amsdal-0.5.18.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
3
|
+
amsdal-0.5.18.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
4
|
+
amsdal-0.5.18.dist-info/METADATA,sha256=YOGaZ2N6Z8L0rvpE-mtliH5aPXoIhr8KNKIfsIaKQZk,57623
|
5
|
+
amsdal-0.5.18.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
1
6
|
amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
|
2
7
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
3
8
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
4
|
-
amsdal/manager.cpython-311-darwin.so,sha256
|
9
|
+
amsdal/manager.cpython-311-darwin.so,sha256=-Xv3VK9wISykVSDbmrBfyDC57hf4DrshQwaxwbIb2Q4,518288
|
5
10
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
6
|
-
amsdal/__about__.py,sha256=
|
11
|
+
amsdal/__about__.py,sha256=1cjRFOsjlmQXxEswpC2rHpDl7wmAckDKczNnOnE7Nsg,125
|
7
12
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
8
13
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
14
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
@@ -18,8 +23,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
23
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
19
24
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
20
25
|
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=
|
26
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=rt2xcO0jz3EZmoSp4wuIWBZUcDWtejHDh9FwiCU1-mg,120656
|
27
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=lY7hS4AEpwLC5w7gBTFW2TJPs1cq5ZWXhQcKhxhwA4k,180576
|
23
28
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
29
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
25
30
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -31,7 +36,7 @@ amsdal/utils/tests/migrations.py,sha256=dsqHxeQU0xeO0COS9QgU0rwlMyznUxZ2EBdzcA7d
|
|
31
36
|
amsdal/utils/tests/helpers.py,sha256=0PbdKK76lyXozLK7UbLU1-G6yo5Bd-CLY1aXzfT25XI,12597
|
32
37
|
amsdal/utils/rollback/__init__.pyi,sha256=oA1_VJjK3k13nUp8H1wXjJs6LrlqEtAethPRQ7P8mLc,1106
|
33
38
|
amsdal/utils/rollback/__init__.py,sha256=NBIvidqj0nKRa30mWon5onpHBPQidb0DFJGcZbkKrY8,16832
|
34
|
-
amsdal/models/mixins.py,sha256=
|
39
|
+
amsdal/models/mixins.py,sha256=2HnsBiZ_UCAyJ8-BELF1ic-sTNFEw-b4HCetkD79Dqs,1206
|
35
40
|
amsdal/models/__init__.py,sha256=bwURV9lpt8a6S8WvLgMDk_haor9FUQa-o29StSdTMCs,757
|
36
41
|
amsdal/models/types/object.py,sha256=cFbuXw_YVDmWdBIp49snKcTV2BmBag8LjinkLfV0_fA,1229
|
37
42
|
amsdal/models/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -45,7 +50,7 @@ amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IP
|
|
45
50
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
46
51
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
52
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
48
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
53
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=JDeiV5Gz6Wlzico4MClfy_V3xvomhf6QLeONCUxkviI,120656
|
49
54
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
50
55
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
56
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -94,7 +99,7 @@ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=
|
|
94
99
|
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
95
100
|
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
96
101
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
97
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
102
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=xVJ_PgHfY8CEFrz2xiCPLGGhw7Spw9S-Oub4zWddttI,9860
|
98
103
|
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
99
104
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
100
105
|
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
@@ -103,7 +108,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
108
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
104
109
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
105
110
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
111
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=x-bh3Fs5pHIQ26rLc1sdTFrQLXgURqOaIzkag_6nfIs,120656
|
107
112
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
108
113
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
109
114
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -154,94 +159,89 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
154
159
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
160
|
amsdal/configs/main.pyi,sha256=LQLyErlnW8m6MWW8lk0sA9jJqRdPyBuxRRMAeWtk-Us,7000
|
156
161
|
amsdal/configs/main.py,sha256=sk01zezWynALKsVsB0zyCkNPZ9Cv1iSQ39nJ5lusfQ0,10143
|
157
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
162
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=I_4Z6VIxTMXYgYh3NLWF1ziixhI8oZhPN2KEK0cxhLg,216208
|
158
163
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
164
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
160
165
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
161
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
162
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
163
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
166
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=YUui2p1E_uMfPXdj5M2Ql7-7fRxvcXPUOpvOOhzBYfw,158064
|
167
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=aAcEIT00jPj9eBQmBo-O9Aep5tlrGmEitU2JJR4QOxk,158688
|
168
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=CB-lkcCCsHP4MUOEO8hLgUJbj76CfKh03XxpEHj0pLQ,120656
|
164
169
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
165
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
170
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=hUcu2qkiGM8OoACBBIIs8XsH8Px7D0rTKAu_TuVI5vA,211632
|
166
171
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
167
172
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
173
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=2R-HyFh0_See1AKS3GTq_lPXCFlX73hEUAABAzJU8Fo,120688
|
169
174
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
171
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
175
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=tuaR6hHeRi7CKResXl798qTgiaXnBHuJRId2tqWy1_0,120688
|
176
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=p7yQa2yH0n_01T6Dd5C8BigwLpzfv-vNot2tZHlFBaE,163104
|
172
177
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
173
178
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
174
179
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
180
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
176
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
177
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
181
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=uAA9a58gRuzmoA6Wwfy5S6M-cctCVgy7GXLLS5fkdXw,251536
|
182
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=oqYoxBYNrSu03nfPwQg1LqdL4dyb502dUxLUc7Bf7q0,214128
|
178
183
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
179
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
180
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
181
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
184
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=LZO8zKWsZBHXVBoq8ppcPO43_JFTZLRolwK_d5HOv2g,216216
|
185
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=RMXC6QdqlPdY1Rcy3SD3WKvdNrnGkhrKRYxP7RvJa2A,120704
|
186
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=UgxUsLMwsaHXiaZWRIOFXQWWW3HDT7E4y4lLkVLL0fM,304408
|
182
187
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
183
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
184
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
188
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=Yfp9soxHtlQl3CjOOfllE0sLpMksSBXpyVt6-5hfM6c,181112
|
189
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=z7va-LO-TSdWripLUxWFrn5hb0R9musBgo3qT8dd8n4,323552
|
185
190
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
186
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
191
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=FLJ1ACdM_41mji_hMzhSO5X3e4uf0leebOaxERUt2yE,180744
|
187
192
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
188
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
189
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
193
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=kIZqMzq-yVeeMuXfslH2UxbW4pyvxvUVF6jR7pzOnws,180776
|
194
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=MZ8X_xjnUe18GPV-rBjcZq-APlNYUBUZlX1_BiV_YSY,180584
|
190
195
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
191
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
192
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
196
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=uaLdjsewDFf0k_Gz2c9h-Fq6SLabPy_aJ3MSuEdolMg,180760
|
197
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=ENsliLKNWwx2o-DhtPLB-4xNfMQHnJVOCqNgYuOYgkc,181184
|
193
198
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
194
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
199
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=22d2A5ud6rpHw9X10V5hR07e3Qcdf9v-CZtaeqrUHK8,180632
|
195
200
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
196
201
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
197
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
202
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=osVa_em5lgzcLaGg7EXbt8uqmXMVX9Gqw7mxuLUjtPU,181304
|
198
203
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
204
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
200
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
201
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
202
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
203
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256
|
204
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
205
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
205
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=dxkAe5dH0egYHp5akncuD50mp-tLocc8HCrk9DHP-Ik,181080
|
206
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=rUIi6iNGNRCfMnlQvpirYypJxxM5s7c7T5dgIRfK6gA,180752
|
207
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=NHsAw7dHWVWwqul5XQjn7dDdZ0c0ILpNynMGi07COfs,181304
|
208
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=hNOf5CZqOBF02MhUzzCpllj_gJhuaaU9OOiIuvmT-wk,180536
|
209
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=ihBqz_W1ztRb6P1mBMltH-fT8DNw7iyOjk0N1N7E67c,180984
|
210
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=KVmdQLWFvttV4dyr26lfxt0RM_NaeDSf15d_ftbFJ9U,269240
|
206
211
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
207
212
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
208
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
213
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=jXSIGwFkB8hJ-CVEl4GF1dyDtP6ca2B9MH9vmNJ81O4,371312
|
209
214
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
210
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
215
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=RlevBtxv3rdP3l0RB9SAJ8HM90yydHS_zaCXT0HXrJM,180712
|
211
216
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
212
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
217
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=5tsFJboWKMH8PBOrOJdSNfFYMvKOaBQ5uVD5woksIO4,180832
|
213
218
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
214
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
219
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=e3u-PozqzpPVpdKftNG3ICtkpTafsrgrAzKlMNuV99I,181112
|
215
220
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
216
221
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
217
222
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
218
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
219
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
223
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=UVRoOh52hDWDh6yw0tO6Qs6E3G24ojTp-U5H6w7lVnc,180976
|
224
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=O4Klx_onQKMOeHv_yaec0QVW0jIQW-Ccyy_YU3wBBrE,181064
|
220
225
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
221
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
226
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=HiCWmaJyOxE9R2fGSyZ3A8B-CIoHWBWY2A2A51TP_8k,180824
|
222
227
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
223
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
224
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
228
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=pJCNbaTVzAbi6NNKh6lZ-6iY9rkXTkgKuGFRmwECxHE,180824
|
229
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=OrgsDspFlJ4br60KtyAy5TXh7HrchMvDY4q0iFXuMXs,120720
|
225
230
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
226
231
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
227
232
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
228
233
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
229
234
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
230
235
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
231
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
236
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=Uu7ICK4zO_i5khOAdvxfeMFplB-q5Ontkx-uD7zlhY8,180680
|
232
237
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
233
238
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
234
239
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
240
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=NcjmGg6nvKN5ebcQlzHYhi1zLaNPdBUzxnDM9bXlp4I,622720
|
236
241
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
237
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
238
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
242
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=HD45Oj3Z3WeHd6vZsN24PaaFa0eFHOUPJ4UX7SDfapk,306720
|
243
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=k1X3xTPt5S-0gf5ipPL4rLX3ttjvqvL6s_oYeR7WoA8,120672
|
239
244
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
240
245
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
241
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
242
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
243
|
-
amsdal-0.5.16.dist-info/RECORD,,
|
244
|
-
amsdal-0.5.16.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
245
|
-
amsdal-0.5.16.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
246
|
-
amsdal-0.5.16.dist-info/METADATA,sha256=X0AW0g_9M5RZROmzeD9tm91Mx01sZE98GEbX5mGSC6U,57623
|
247
|
-
amsdal-0.5.16.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
246
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=z4rAxJCJ8G_PP7RZGFPSlpzBZqBCGOSG41va5SXawiE,120672
|
247
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=2rpBORCJINkeb2Hwk7adFu9WmreHTMr2XDd7mDaHWyo,452176
|
File without changes
|
File without changes
|
File without changes
|