amsdal 0.5.1__cp311-cp311-macosx_10_9_universal2.whl → 0.5.2__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 +6 -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/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.1.dist-info → amsdal-0.5.2.dist-info}/METADATA +1 -1
- {amsdal-0.5.1.dist-info → amsdal-0.5.2.dist-info}/RECORD +55 -55
- {amsdal-0.5.1.dist-info → amsdal-0.5.2.dist-info}/WHEEL +0 -0
- {amsdal-0.5.1.dist-info → amsdal-0.5.2.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.1.dist-info → amsdal-0.5.2.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
|
@@ -290,4 +290,10 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
290
290
|
'options': [{'label': str(option), 'value': option} for option in options],
|
291
291
|
}
|
292
292
|
|
293
|
+
if value.__class__.__name__ == '_AnnotatedAlias' and hasattr(value, '__origin__'):
|
294
|
+
# Handle Annotated types
|
295
|
+
options = get_args(value)
|
296
|
+
if options:
|
297
|
+
return convert_to_frontend_config(options[0], is_transaction=is_transaction)
|
298
|
+
|
293
299
|
return {}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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=BbQJ3IjBppsg1T3wHhsBBUXNFZdhsozwAHtRbHun51M,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=glsk81MrslMVQFReYet26elGhdxBZYmME4LF8nyLdxA,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=Mnb1htLQnovER0AGjaAyMIESBcV83qNqPv9KWxufns0,120656
|
18
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=xuK-8faT4n4RPhKRr8SQ1ghxIGQrU6lnD6j9veJcqQQ,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
|
@@ -50,7 +50,7 @@ amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZ
|
|
50
50
|
amsdal/models/core/file.pyi,sha256=RZTKCfjQ4fXtwz3E1xtgDsViaB_IwGtX2icDQtw-_kk,3460
|
51
51
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
52
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
53
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
53
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=NkVwpCK07FTSdj1g0M2uUkD9UoWBeNn_NUW1nmQ64tg,120656
|
54
54
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
55
55
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -114,7 +114,7 @@ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=
|
|
114
114
|
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
115
115
|
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
116
116
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
117
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
117
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=So5O3kNoneI30w1EiBnYPBwajxq6md9-7NFzdnd3SzU,9454
|
118
118
|
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
119
119
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
120
120
|
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
@@ -123,7 +123,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
123
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
124
124
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
125
125
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
126
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
126
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=TLnEHASOYVzXgQR_aIg8QewOJXV7vY-_L1RcifenI1M,120656
|
127
127
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
128
128
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
129
129
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -172,94 +172,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
172
172
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
173
|
amsdal/configs/main.pyi,sha256=XpcltkUCEECvRbiQ6P-j66zjU_g8lWLbCPfHoHhRMyw,6846
|
174
174
|
amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
|
175
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
175
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=gYdnwbQxRpLh-lI9uCabM3JMLunVs6osYvMC1aKxV1A,216208
|
176
176
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
177
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
178
178
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
179
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
180
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
181
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
179
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=baglpC58WCdOYmmGRtB9dg_sz9oXfxsnM-v3k73_nJU,158064
|
180
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=AAM4AnPTS6DCaCWcVRg5nfqJvFnVLEwz4gcZ32V9o2M,158688
|
181
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=LprELAdMV_f1DtUqQhoNuFkyFE7hsMhIoJ_R4i8dybc,120656
|
182
182
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
183
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
183
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=z1GtH9k1LrCimzWLhRg4F-2TiKNDIeaH0Pu1TkamSRU,211632
|
184
184
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
185
185
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
186
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=Xu-lQ6PeAw4sWN5d6CYLsBDA4BD9A_Zj4i9tppHqcMU,120688
|
187
187
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
189
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
188
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=V1Ufn1lTNJAifP0Zb1qLbhKcdsFZ-ypR9LTvXpTFFCk,120688
|
189
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=29rIPazJ8vKz3zGmEa4eJ61h75lTDVqSHl3YAM3ukV8,163104
|
190
190
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
191
191
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
192
192
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
193
193
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
194
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
195
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
194
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=9iCY-7TMPPdIOQNdio4G6pwJWzTQg1gclEH31tq8Q7Y,251536
|
195
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=ZVkutpb5REysd1kFojIfbYbxIkEiKrCcdK0SHBqF4YM,214128
|
196
196
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
197
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
198
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
199
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=YU0ZFKnwb0l7sjPiFqz3pYFx5YL8Jdgv5JrjqMe2jbg,216216
|
198
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=oRV17ShH-u-lNIRRBklfiASLW6ouGzUytARpRN2aW6A,120704
|
199
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=w6oMM4svmJ_5q4wZPNulMlyFGtCt8kTxqLfGJ_r5r1k,253224
|
200
200
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
201
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
202
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
201
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=YEwTLhq5KAMOs4naDwLg39PyIn1YwJvIGlBtRKoCx-Y,181112
|
202
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=qRMD9-xoKhvS9W-H1HO6tkEKHwOway7ukfEnq95rpGg,323552
|
203
203
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
204
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
204
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=6gpw594pD1IO3otHqOKsP9Fq7qmZxTR86XGIEoGfEKo,180744
|
205
205
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
206
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
207
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
206
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=FJZjKCn5jmiMRx8sr1v_HZiZePuo_DpeDGaxK6t0oPI,180776
|
207
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=u595N1iI6uthsxfQ1cOPFSZd6Z5EQotRuvz-CW4PD0k,180584
|
208
208
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
209
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
210
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
209
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=1gCruyb5ZpWrZZuKTv1TYFqD3J5wWN8cbpnu2cy62Vg,180760
|
210
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=K9T_PrioYm0IM0MDtDWROg7n8WUJHsxBqDHgKP26BBc,181184
|
211
211
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
212
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
212
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=EwbEL48w3Uo8zQmPgw85hiR6x86ILfn78BJCiYLnQK8,180632
|
213
213
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
214
214
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
215
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
215
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=xBEm68z-sIQcKORkrsFkWb_Yh3Z-1qnfR89glqFxDGk,181304
|
216
216
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
217
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
218
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
219
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
220
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
221
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
222
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
223
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
218
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=MXKZR-mV-dP-xwM8bui4ocHZQNkxj8Dqn7j9Qjyiu4c,181080
|
219
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=f6FPaqzrRUB2dYwG7-DwckOJRq2bKNYckMw3L1VxKD0,180752
|
220
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=V7b5V1HOqvcqo8dBGOny24vVkI_Z9heHVFoH3O5GcxI,181304
|
221
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=pMWmj5y0a9ulD9nLiCN5vOR6Hig7TnOUhDOeNP4pUg0,180536
|
222
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=4VbvRuhnkVZSYfuu-KbnNgInGrN8pBNsR-LbX0jAJSM,180984
|
223
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=8s8eCemdXtYVfEguxToMpO4Bw2mdVdiZ7UTM4Gz8jaQ,269240
|
224
224
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
225
225
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
226
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
226
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=VymwBPojqwPfqJuECfkcSaj5t5FsJAtZbV5hbVpW6Us,371312
|
227
227
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
228
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
228
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=RHc3WCFwjh-DKyrTgdb_WKbG80yQnCfZ0evWyRCvVuM,180712
|
229
229
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
230
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
230
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=H0SZJ33z0KUFIbDIC1VumNdL-3-zRV86Xm4y7Ghj0Oc,180832
|
231
231
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
232
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
232
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=VokL6x924HxiPltzblwZAlALFFn1nzpDiUw7Z7EucPc,181112
|
233
233
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
234
234
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
235
235
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
236
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
237
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
236
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=3env1kWSC1LeSW8Kz8eja2WV4SZDxHe2mUDq8kJ8sKU,180976
|
237
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=c8t82vX15TQQG2boJg0T6CwfjtcO7TYCyIXCWaj5_wM,181064
|
238
238
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
239
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
239
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=fuFga_WA-4YEJoi4zMrYVG8T8f10ESduU4ri2IGRVIM,180824
|
240
240
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
241
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
242
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
241
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=sUFZ7NWlQUlZbpnDSJcgvh2hkSxvq7EsB5n5wFHau_g,180824
|
242
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=PoSoEFo4eAtlXonGkzepusD3x9Id4cUjQB_U7ZMuP2E,120720
|
243
243
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
244
244
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
245
245
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
246
246
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
247
247
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
248
248
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
249
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
249
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=ZD9U-DyYNqjP0vknQ09PSFhCI4sf-e5og-4fNYZ7ARo,180680
|
250
250
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
251
251
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
252
252
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
253
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
253
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=HB-N83pnCmCLhJSjsACzs0gT804P5ekya0n4JHMclc0,622896
|
254
254
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
255
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
256
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
255
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=8J-3opsUNhhJG5eFN81Tgr0Es_RqmLfLBY4bkAtr-0E,306720
|
256
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=e3ms6DZIOAlCeJOUd1it6CRhEIBQLSubfFlpC3_zJhw,120672
|
257
257
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
258
258
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
259
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
260
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
261
|
-
amsdal-0.5.
|
262
|
-
amsdal-0.5.
|
263
|
-
amsdal-0.5.
|
264
|
-
amsdal-0.5.
|
265
|
-
amsdal-0.5.
|
259
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=C-dNAcZQ0IbZ6R4EXVNUoPFAbWA0TuXlpfEW-orXSn0,120672
|
260
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=3MnkxzWJLmXZ1bkvj8f8CzliCUXB87Ya29_V8KhTDeQ,435472
|
261
|
+
amsdal-0.5.2.dist-info/RECORD,,
|
262
|
+
amsdal-0.5.2.dist-info/WHEEL,sha256=K35cO9veJgM7rcbvmUlNI0Barc1JY1wlKyFrMAjmMKc,114
|
263
|
+
amsdal-0.5.2.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
264
|
+
amsdal-0.5.2.dist-info/METADATA,sha256=J-ibi1Ye_D33YGGjoi3B0HK-5yGUAgLqUiamUDVQFKY,57432
|
265
|
+
amsdal-0.5.2.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|