amsdal 0.5.11__cp311-cp311-macosx_10_9_universal2.whl → 0.5.12__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 +7 -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.11.dist-info → amsdal-0.5.12.dist-info}/METADATA +1 -1
- {amsdal-0.5.11.dist-info → amsdal-0.5.12.dist-info}/RECORD +55 -55
- {amsdal-0.5.11.dist-info → amsdal-0.5.12.dist-info}/WHEEL +0 -0
- {amsdal-0.5.11.dist-info → amsdal-0.5.12.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.11.dist-info → amsdal-0.5.12.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
|
@@ -213,6 +213,13 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
213
213
|
try:
|
214
214
|
if issubclass(value, Model | TypeModel):
|
215
215
|
schema = model_to_object_schema(value)
|
216
|
+
|
217
|
+
_mro = value.mro()
|
218
|
+
# remove updated_at and created_at fields
|
219
|
+
if any(cls.__name__ == 'TimestampMixin' for cls in _mro) and schema and schema.properties:
|
220
|
+
schema.properties.pop('updated_at', None)
|
221
|
+
schema.properties.pop('created_at', None)
|
222
|
+
|
216
223
|
except FileNotFoundError:
|
217
224
|
schema = None
|
218
225
|
|
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=TCOBEKj1UPEGs-I1J-HEOCBGIF8I_LbcR5N-iHysX_M,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=4H-xGIQq4CInMbLGTJF8D_FkWBkJrmaEaCtomXP7YzU,125
|
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
|
@@ -18,8 +18,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
19
19
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
20
20
|
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=
|
21
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=ClPaKZqdKwC31Wkyigw2Ac7tdLGr0rP9iAH3cjPSCB8,120656
|
22
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=2eFZOK5SqcItAM513kSMQpZ3L9GWf89QMCvSdPT07r0,180576
|
23
23
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
25
25
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -45,7 +45,7 @@ amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IP
|
|
45
45
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
46
46
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
48
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
48
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=69G3hAdAgp18E-lLIORRTElLIImvSabAdGObQqMii-Y,120656
|
49
49
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
50
50
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -94,7 +94,7 @@ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=
|
|
94
94
|
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
95
95
|
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
96
96
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
97
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
97
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=AHFHuZVbUe1bPpow-wlc-QLRovfDQeLlic6wYRd4j8A,9780
|
98
98
|
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
99
99
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
100
100
|
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
@@ -103,7 +103,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
103
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
104
104
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
105
105
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
106
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=1QMayJtlR8uGn2ZrOZ06IdgD43T8J0Ji4BWtAWsZx1c,120656
|
107
107
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
108
108
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
109
109
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -154,94 +154,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
154
154
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
155
|
amsdal/configs/main.pyi,sha256=2pCKNMnSdnggHNGj37VSDhAxegrzXqVerz0HLtx7Ni4,6937
|
156
156
|
amsdal/configs/main.py,sha256=9iwtIPIy3Dbpenkhq2rSl2ar1nuJjGv4PRQeEv4z71A,9756
|
157
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
157
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=72SKGTxmhkZiQ2PJDOZt2GY1RSc2TofjbZgX6Hp3X0E,216208
|
158
158
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
159
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
160
160
|
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=
|
161
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=9scqXq7LVzgtAFm5rRJbKtsLigyO6MrY4cMGaiDtI9s,158064
|
162
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=1HWtfcKlwQBfOA9AeiS88xqXQtaMSYhtm7ATV1R9YnU,158688
|
163
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=ojedncN_ETOkb6zS2BAQ5eSibCPilABOHWz7Ndz6ngM,120656
|
164
164
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
165
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
165
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=eyHbRjsiA6p_5-2h2P--kkwY5Hl52fA6mo1IN9Ip27M,211632
|
166
166
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
167
167
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
168
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=W3L9eK4KW845xKjWdDtse3hkiY2F5lc0gcr8mAtGWEY,120688
|
169
169
|
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=
|
170
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=YdZAagP8NXCLn3s3G_QlNQkq3dhLRo3x0Ju5-SjdQZg,120688
|
171
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=Sun0vKZnQmo3TPs0I9XK560fA8oTjLwzi28xA9oyu9o,163104
|
172
172
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
173
173
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
174
174
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
175
|
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=
|
176
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=UtduDe1spWCIfFBqWJtJfcizjQt4uacveKdPS63bCl4,251536
|
177
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=WnEV7OY02mrqnxgsYybY8wDwrcExCdbfzGZdOvpEZlg,214128
|
178
178
|
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=
|
179
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=ek6JJP5SVKcMSlM-lu3r2AFRGPfcaA-Zletzdr1eLZM,216216
|
180
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=T8YtYZi6nzMppe4hZg9hpb1Y7-GDQ3JK5HQl8yxDafY,120704
|
181
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=e0r3cWxoC4Ac1CGWU0XPy3RbVDmQQJQdo7RV_gWK30E,304408
|
182
182
|
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=
|
183
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=RhxfQL71ayTLelLpfDsftrhViZFjYrGL7ckel2xEZkU,181112
|
184
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=Oovph9S8X9fzObpuuetSUkKhgIak0AuTRacBpYFTQCo,323552
|
185
185
|
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=
|
186
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=KWuTDM4onozkv5W6X_q11JjQkCCn4OAWgO630OJ-jzA,180744
|
187
187
|
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=
|
188
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=WDnyc2WyOuOnlryKbQNCkDSlXKJwJzlBUa_jpiqAULA,180776
|
189
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=7ciybF2fZWEYXMYvWbl0AyzeRRIXebj1T8G2nkY53lI,180584
|
190
190
|
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=
|
191
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=dz-B5zp6djbTMFzI9vcrYDok1_mIweahApWEx0BD4PA,180760
|
192
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=I3ucin-MaOzGTiORoy6ivDcRLNJ6omTm7Et9DOviUh0,181184
|
193
193
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
194
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
194
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=9QIQrcshydlojrEAbhMEQeJ-QPxCtfk0hPKBy4edFrw,180632
|
195
195
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
196
196
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
197
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=MXKVCPrDNU84XkwrUrtF9WLbLqttvNpjm397mucVh8s,181304
|
198
198
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
199
|
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=
|
200
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=mGw11-YjYQlyBPl1WQEIjMbHPhdYpx9mJQzWIy9Im6g,181080
|
201
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=x1PId-0SecJigYlEgy9XPOkqiP_QxcRzc5-FhLd3yG0,180752
|
202
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=zpMjAAm6AAfmYWmh-7rJYGBGe1GoE6HLGAsiSusrtRg,181304
|
203
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=micK9To2VcMbeJ3Po3jgnPRD4D_83sH3SY27lqFna-4,180536
|
204
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=pzTxrQA1mKe10SBZ4Nn586zVaw9oKQjJR5UG_rOTtxQ,180984
|
205
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=cdIuagMvfEihQaNKpgkKnG-6qaLOaD1rTSZLh44I15A,269240
|
206
206
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
207
207
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
208
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
208
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=ZDCGS3d9xB-bFmNuE2eaFzZCJ9ixb9d67CZuDqLUejs,371312
|
209
209
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
210
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
210
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=Ro10slqyU0Z5KrW-aQbgDwOrQD765UaLC_EtuLesJp4,180712
|
211
211
|
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=
|
212
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=sKVxdVyCy4yyNrsOcwR-pBZuknNzgXfqoU8OK4Pmy10,180832
|
213
213
|
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=
|
214
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=kt94ThHpkLmNN0jo0qV7haGoEBnRktDRD6Aobg0xUYM,181112
|
215
215
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
216
216
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
217
217
|
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=
|
218
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=HRUR2BDt5q0Holh223cKfzWBQgUNhx_RnlpWS9VgtzY,180976
|
219
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=7j1OiOsO48xpqtMp2jZuPymXfyaea0eH1TCxwa9U44k,181064
|
220
220
|
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=
|
221
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=3fEmAhlI-xZQw42NlaOO3E1G3TCSt1HXROfv5q-1AJ4,180824
|
222
222
|
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=
|
223
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=PnEOvnzZl0cfD8l-xQ5wJeE3hma5m9rOfEVuPivbYrU,180824
|
224
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=6Bc6SifaMOKtf4cWktBHnEwHLuzo4QW4bOlYD6rJb8Y,120720
|
225
225
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
226
226
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
227
227
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
228
228
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
229
229
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
230
230
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
231
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
231
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=n6OU5JPwV4wZcp1mhWcVOmEbu-yjYTtdgYW0k1k3YKg,180680
|
232
232
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
233
233
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
234
234
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
235
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=9yp12NuRPpRCiK84fdODhf_Wew6O3YBLUHEE_pXxlXI,622896
|
236
236
|
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=
|
237
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=UHpQsrhOqv2D2smw8HRbGbewChcz-ymD9itF-loE45M,306720
|
238
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=Pht9spA1ttBzUQxrrXWYX3-8Kj_7JekxgCc9rU02KuI,120672
|
239
239
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
240
240
|
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.
|
244
|
-
amsdal-0.5.
|
245
|
-
amsdal-0.5.
|
246
|
-
amsdal-0.5.
|
247
|
-
amsdal-0.5.
|
241
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=WTMxmn0DAdA2nI5V3jq5Afmmh2p5yIosUWQU8RbewH4,120672
|
242
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=FISJ8Dcv3K4DRBBaT6OPMMFl2j4ixdk3mJX_8OzMvok,452176
|
243
|
+
amsdal-0.5.12.dist-info/RECORD,,
|
244
|
+
amsdal-0.5.12.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
245
|
+
amsdal-0.5.12.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
246
|
+
amsdal-0.5.12.dist-info/METADATA,sha256=hB5QjQPoFnS8iBAy4I--R7mBAs92Je1sjKDmCefwvvY,57623
|
247
|
+
amsdal-0.5.12.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|