amsdal 0.4.13__cp312-cp312-macosx_10_13_universal2.whl → 0.4.14__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/contrib/frontend_configs/conversion/convert.py +7 -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/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.4.13.dist-info → amsdal-0.4.14.dist-info}/METADATA +1 -1
- {amsdal-0.4.13.dist-info → amsdal-0.4.14.dist-info}/RECORD +55 -55
- {amsdal-0.4.13.dist-info → amsdal-0.4.14.dist-info}/WHEEL +0 -0
- {amsdal-0.4.13.dist-info → amsdal-0.4.14.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.4.13.dist-info → amsdal-0.4.14.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
|
@@ -283,4 +283,11 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
283
283
|
except TypeError:
|
284
284
|
pass
|
285
285
|
|
286
|
+
if value.__class__.__name__ == '_LiteralGenericAlias' and hasattr(value, '__origin__'):
|
287
|
+
options = get_args(value)
|
288
|
+
return {
|
289
|
+
'type': 'select',
|
290
|
+
'options': [{'label': str(option), 'value': option} for option in options],
|
291
|
+
}
|
292
|
+
|
286
293
|
return {}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,15 +1,10 @@
|
|
1
|
-
amsdal-0.4.13.dist-info/RECORD,,
|
2
|
-
amsdal-0.4.13.dist-info/WHEEL,sha256=_N1vyLgwJ10g4JxFsp-IfU42zGJgf-DUqwfdbV1YvEM,115
|
3
|
-
amsdal-0.4.13.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
4
|
-
amsdal-0.4.13.dist-info/METADATA,sha256=60CM1bYYzHv73ePRc63UqRSLIwHNEjCN5fntj-QZni8,57438
|
5
|
-
amsdal-0.4.13.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
6
1
|
amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
|
7
2
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
8
3
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
9
4
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
10
|
-
amsdal/__about__.py,sha256=
|
5
|
+
amsdal/__about__.py,sha256=wXplutfyWxsByTpCqDxH2K23UsxxTLWbEWChA8Fk9CE,125
|
11
6
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
12
|
-
amsdal/manager.cpython-312-darwin.so,sha256=
|
7
|
+
amsdal/manager.cpython-312-darwin.so,sha256=LOhHzCO5QlFhAxNcDkZEXwD4YgCtktGO5l8h7UiZTAw,501968
|
13
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
15
10
|
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
@@ -18,8 +13,8 @@ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
13
|
amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
14
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
20
15
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
21
|
-
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=
|
22
|
-
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=
|
16
|
+
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=rlzgH43dGsus27LYz4cv7WcmsZlW52MyVKM3-2ds8LQ,120720
|
17
|
+
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=IbfZfJSY3L45Jp5cYqJ4zd6z3SniCEo8b3UiHTEjMio,180480
|
23
18
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
19
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
20
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
@@ -55,7 +50,7 @@ amsdal/models/core/class_object.pyi,sha256=mwMYnb7Gcmc0yKUrYsSrHY_o9eqdAoV-Hz0r0
|
|
55
50
|
amsdal/models/core/class_property_meta.pyi,sha256=wi2kFpQffYvUSldlkMDluwxhjic3MI2sHSr2y9BClFU,332
|
56
51
|
amsdal/models/core/class_object.py,sha256=H9os4vZaVAcIQiXyates9PC4BKpXQKtg13sDzGYTN8k,1533
|
57
52
|
amsdal/models/core/file.pyi,sha256=RZTKCfjQ4fXtwz3E1xtgDsViaB_IwGtX2icDQtw-_kk,3460
|
58
|
-
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=
|
53
|
+
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=1awjsyYkW2Sjx7pwverdpn9C-FQTHdJekAFm-wUQUgQ,120736
|
59
54
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
55
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
61
56
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
@@ -121,7 +116,7 @@ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=
|
|
121
116
|
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
122
117
|
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
123
118
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
124
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
119
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=K74HhOn7TFUMzn7Yl1nlqguVNQzv2khOw7wNjvXkjzo,9190
|
125
120
|
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
126
121
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
127
122
|
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
@@ -132,7 +127,7 @@ amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk
|
|
132
127
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
128
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
134
129
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
135
|
-
amsdal/schemas/manager.cpython-312-darwin.so,sha256=
|
130
|
+
amsdal/schemas/manager.cpython-312-darwin.so,sha256=YgddiXhbtamXzQEf5JLgFZsr6U3hp78E_iReH4NflSs,120736
|
136
131
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
137
132
|
amsdal/schemas/manager.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
133
|
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
@@ -181,89 +176,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
181
176
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
177
|
amsdal/configs/main.pyi,sha256=XpcltkUCEECvRbiQ6P-j66zjU_g8lWLbCPfHoHhRMyw,6846
|
183
178
|
amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
|
184
|
-
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=
|
179
|
+
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=gbkfxJIkVz4TTZwZDD4yGIAhg49M0bD5eWt4RTBTFAE,120720
|
185
180
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
181
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
187
182
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
188
|
-
amsdal/cloud/constants.cpython-312-darwin.so,sha256=
|
189
|
-
amsdal/cloud/enums.cpython-312-darwin.so,sha256=
|
190
|
-
amsdal/cloud/client.cpython-312-darwin.so,sha256=
|
183
|
+
amsdal/cloud/constants.cpython-312-darwin.so,sha256=7xrzhqqQbIqOwdpOn2iKdJD_UPeEy4oMDhXjwBLrWSM,158688
|
184
|
+
amsdal/cloud/enums.cpython-312-darwin.so,sha256=hWkwUjHxXWUC_Z3Xzp8Pcc1YcgVFA-Z4GCs-O6QCs-I,158128
|
185
|
+
amsdal/cloud/client.cpython-312-darwin.so,sha256=NoPc4lUYFDqaD9MyiDmh1wVRobs6GIetf1Ykp3uj7Pc,216144
|
191
186
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
192
|
-
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=
|
187
|
+
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=W48jBy5se6BhtE3glh_Ea6MbYqt-UdkVtkE30LhEQ7I,120752
|
193
188
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
194
189
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
|
-
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=
|
196
|
-
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=
|
190
|
+
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=VqAP880FP6_0x24BouWRS455cU0mxS_vOlMZrqPDXqg,195328
|
191
|
+
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=xECBFyzAnRQkCQhepkQXKC9fAt9CC3UF2D3wvjG9BJA,120768
|
197
192
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
|
-
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=
|
193
|
+
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=vc5ii-U331AXIlXgRjg2jte-fwW_Y146XAj_IDikdlA,120784
|
199
194
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
200
195
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
201
196
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
|
-
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=9UAShy8jOqlb8YKEnfFcPMO-yiKK--by4Ue97DpcdEo,253160
|
203
198
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
204
|
-
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=
|
199
|
+
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=jd7OVctMYJS9ASQEp5NpPgehaYv47lhDUYV8UzHizKo,216232
|
205
200
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
206
|
-
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=
|
207
|
-
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=
|
208
|
-
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=
|
201
|
+
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=PzkkZ4NNvmBRywVQs9j82dzzeYK_O5gmsOIhNiR7b_g,251648
|
202
|
+
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=XUyCx7yq60rXwd0IxnvtpFWUIldZWHe0yW1TQzRRHHk,214144
|
203
|
+
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=KClUCat5k055mr5exnXLPpA1QkhMFwGycaFtxKwKTo4,163120
|
209
204
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
210
|
-
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=
|
211
|
-
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=
|
205
|
+
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=7BrHwqurwhoVTurOK1se_gggogqphFEU3f08gbgFc4g,180840
|
206
|
+
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=Y2cRFPQ6yz_4rzlbzzhPOqQRIQBptPAPkQ8THDTC-5Y,120800
|
212
207
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
213
208
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
214
209
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
215
210
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
216
211
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
217
212
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
218
|
-
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=
|
213
|
+
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=bgo-unQZY6r6MW09cjd7fUq1owBXdIbApNPtogV3KoM,164312
|
219
214
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
220
215
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
221
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=
|
216
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=jzxd2u6iA3-U-bPMQnIAf-I483TEmdU7wd0_8EjTaqw,197512
|
222
217
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
223
218
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
224
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=
|
225
|
-
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256
|
226
|
-
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=
|
227
|
-
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=
|
228
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=
|
219
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=EYO5NnKxSAu30HEnGk31-4tKh_zh9ZkAocQeVt0QgIM,180848
|
220
|
+
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=-G-FDIZo7CylMaZpv1WNe3ro7brvItRUqAjFK5wpMM0,164328
|
221
|
+
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=URbBUPCQ6CxlPQwIZZLdccdi3qt28JSu93SaXWI8btY,180840
|
222
|
+
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=tkvb4HjWOY-2_IIq46tPO5dILVXhjNjyK_Zg852jyJk,181080
|
223
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=BDeodieF9865WpfUiQBc6C2JVGkpThqg_5lmhImg3uk,197376
|
229
224
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
230
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=
|
231
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=
|
232
|
-
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=
|
233
|
-
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=
|
225
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=VgL4Zfby524PO6jxnyYUKgGQsPuXj4vvaR4njTYkZO0,164168
|
226
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=O2lTup-WHkj8gqP8iNttI4VDPCJnSgg9PVk-zLtOdxM,197704
|
227
|
+
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=GxdYFiNdy2lvkXV8Uai-kmt7CF0GkJbZf9D6oz6Q5OA,164384
|
228
|
+
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=83XwioyvzCKxIT_CHah_9_HVq1_jH9Ie7OGfUYyHFFY,181096
|
234
229
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
235
230
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
236
|
-
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=
|
237
|
-
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=
|
231
|
+
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=A39dIwFTri3ccKj0m_XAU1s8SlcujIr6SRCSJh3lZOE,269176
|
232
|
+
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=k2InwfFptnzUyDafVZdTyG40v0x5ukIggSyOzEMKpI8,181000
|
238
233
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
239
234
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
240
235
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
241
|
-
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=
|
236
|
+
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=WLfmZH4jM8VAHbhCLJzw69kgm__rdCOinzUxhrEUTv8,354848
|
242
237
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
243
238
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
244
|
-
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=
|
245
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=
|
239
|
+
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=aBo6sh8clyALVLMkAWW7MImU4o7AQFWdz-fBV_OIUhw,307200
|
240
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=3wMDXnOo8yusu4deyxNQAprI2ETB0DbYJhQolb_v53o,197512
|
246
241
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
247
242
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
248
|
-
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=
|
249
|
-
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=
|
250
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=
|
251
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=
|
252
|
-
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=
|
253
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=
|
254
|
-
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=
|
243
|
+
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=LxriB0-1WwK39xuFktELCIrp_Dh0EyVbBS13UlisBgI,164264
|
244
|
+
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=4eEDCNr-7yZyNBjmJoeXLKlbvF0S5Eoma-0_sLDdjJ0,197568
|
245
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=b6MXNQi0mpTSb0qcsyaDGYsoxMg-Bg2DHYpG9vH0UFg,164376
|
246
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=pyUOUpwHqlQLb4pKEOY1E94cQMhVA_IiLMgMuLSwh58,180792
|
247
|
+
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=fF4JoQsEiGyVeFDnI8up36GSMq7ObqM1WVh_LUclN0M,164216
|
248
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=bypELDKIm1ZnN0NacDHStcHI3_J7vR-ViUdaeTG2Qsk,164376
|
249
|
+
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=Rj0lFlITH39QI2LwnPSN6wvR9-xWo1888JDCc34Kr4w,197688
|
255
250
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
256
251
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
257
252
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
258
253
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
259
254
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
260
|
-
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=
|
255
|
+
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=R7tee9rdxHad7lh_gl18_jgWP1VzhVTdL7yDKsXi7Xo,120736
|
261
256
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
262
257
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
-
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=
|
258
|
+
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=zmaoLGdAvRP117bqjzAhil4Ux_8ePxe8WMzeK-mZdbI,290128
|
264
259
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
265
|
-
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=
|
266
|
-
amsdal/services/__init__.cpython-312-darwin.so,sha256=
|
260
|
+
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=cl1ww6jHzbwG27McouvpZnGp85N-PbVQJniYBXOA_7Q,655712
|
261
|
+
amsdal/services/__init__.cpython-312-darwin.so,sha256=jBY7DwmbrFxPPrS-BPPpLow6eyXufGccyupSwlgN1c0,120736
|
267
262
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
268
|
-
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=
|
263
|
+
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=ewMzoPv27pgEVdZ4vKwZB-JzPEX19ytEXdqtSrMQx3k,435344
|
269
264
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
|
+
amsdal-0.4.14.dist-info/RECORD,,
|
266
|
+
amsdal-0.4.14.dist-info/WHEEL,sha256=_N1vyLgwJ10g4JxFsp-IfU42zGJgf-DUqwfdbV1YvEM,115
|
267
|
+
amsdal-0.4.14.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
268
|
+
amsdal-0.4.14.dist-info/METADATA,sha256=kt1bJka7ldtlFWtVwwdlOAm5hnCwYlXy5ji1rW_KoFA,57438
|
269
|
+
amsdal-0.4.14.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|