amsdal 0.3.5__cp312-cp312-macosx_10_13_universal2.whl → 0.4.0__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.
Potentially problematic release.
This version of amsdal might be problematic. Click here for more details.
- amsdal/__about__.py +1 -1
- amsdal/__migrations__/0000_initial.py +34 -25
- amsdal/__migrations__/0001_datetime_type.py +4 -4
- amsdal/__migrations__/0002_fixture_order.py +7 -3
- amsdal/__migrations__/0003_schema_type_in_class_meta.py +3 -15
- 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/credentials.pyi +0 -1
- 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/cloud/services/auth/token.pyi +0 -1
- amsdal/configs/main.py +23 -19
- amsdal/configs/main.pyi +12 -15
- amsdal/contrib/__init__.cpython-312-darwin.so +0 -0
- amsdal/contrib/auth/lifecycle/consumer.py +10 -10
- amsdal/contrib/auth/migrations/0000_initial.py +41 -7
- amsdal/contrib/auth/models/login_session.py +66 -0
- amsdal/contrib/auth/models/login_session.pyi +33 -0
- amsdal/contrib/auth/models/permission.py +23 -0
- amsdal/contrib/auth/models/permission.pyi +18 -0
- amsdal/contrib/auth/models/user.py +106 -0
- amsdal/contrib/auth/models/user.pyi +46 -0
- amsdal/contrib/frontend_configs/conversion/convert.py +47 -15
- amsdal/contrib/frontend_configs/conversion/convert.pyi +0 -1
- amsdal/contrib/frontend_configs/lifecycle/consumer.py +32 -13
- amsdal/contrib/frontend_configs/lifecycle/consumer.pyi +1 -1
- amsdal/contrib/frontend_configs/migrations/0000_initial.py +15 -14
- amsdal/contrib/frontend_configs/models/__init__.py +0 -0
- amsdal/contrib/frontend_configs/models/__init__.pyi +0 -0
- amsdal/contrib/frontend_configs/models/frontend_activator_config.py +22 -0
- amsdal/contrib/frontend_configs/models/frontend_activator_config.pyi +12 -0
- amsdal/contrib/frontend_configs/models/frontend_config_async_validator.py +11 -0
- amsdal/contrib/frontend_configs/models/frontend_config_async_validator.pyi +7 -0
- amsdal/contrib/frontend_configs/models/frontend_config_control_action.py +54 -0
- amsdal/contrib/frontend_configs/models/frontend_config_control_action.pyi +32 -0
- amsdal/contrib/frontend_configs/models/frontend_config_group_validator.py +21 -0
- amsdal/contrib/frontend_configs/models/frontend_config_group_validator.pyi +11 -0
- amsdal/contrib/frontend_configs/models/frontend_config_option.py +12 -0
- amsdal/contrib/frontend_configs/models/frontend_config_option.pyi +8 -0
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py +17 -0
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.pyi +8 -0
- amsdal/contrib/frontend_configs/models/frontend_config_slider_option.py +13 -0
- amsdal/contrib/frontend_configs/models/frontend_config_slider_option.pyi +9 -0
- amsdal/contrib/frontend_configs/models/frontend_config_text_mask.py +14 -0
- amsdal/contrib/frontend_configs/models/frontend_config_text_mask.pyi +10 -0
- amsdal/contrib/frontend_configs/models/frontend_config_validator.py +28 -0
- amsdal/contrib/frontend_configs/models/frontend_config_validator.pyi +15 -0
- amsdal/contrib/frontend_configs/models/frontend_control_config.py +87 -0
- amsdal/contrib/frontend_configs/models/frontend_control_config.pyi +35 -0
- amsdal/contrib/frontend_configs/models/frontend_model_config.py +14 -0
- amsdal/contrib/frontend_configs/models/frontend_model_config.pyi +9 -0
- amsdal/errors.py +0 -3
- amsdal/errors.pyi +0 -1
- amsdal/fixtures/__init__.cpython-312-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-312-darwin.so +0 -0
- amsdal/fixtures/manager.pyi +73 -123
- amsdal/fixtures/utils.cpython-312-darwin.so +0 -0
- amsdal/fixtures/utils.pyi +9 -0
- amsdal/manager.cpython-312-darwin.so +0 -0
- amsdal/manager.pyi +4 -96
- amsdal/mixins/__init__.cpython-312-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.cpython-312-darwin.so +0 -0
- amsdal/models/__init__.py +0 -0
- amsdal/models/__init__.pyi +0 -0
- amsdal/models/core/__init__.py +0 -0
- amsdal/models/core/__init__.pyi +0 -0
- amsdal/models/core/class_object.py +37 -0
- amsdal/models/core/class_object.pyi +24 -0
- amsdal/models/core/class_object_meta.py +26 -0
- amsdal/models/core/class_object_meta.pyi +15 -0
- amsdal/models/core/class_property.py +19 -0
- amsdal/models/core/class_property.pyi +10 -0
- amsdal/models/core/class_property_meta.py +15 -0
- amsdal/models/core/class_property_meta.pyi +10 -0
- amsdal/models/core/file.py +156 -0
- amsdal/models/core/file.pyi +104 -0
- amsdal/models/core/fixture.py +25 -0
- amsdal/models/core/fixture.pyi +14 -0
- amsdal/models/core/option.py +11 -0
- amsdal/models/core/option.pyi +8 -0
- amsdal/models/core/validator.py +12 -0
- amsdal/models/core/validator.pyi +8 -0
- amsdal/models/types/__init__.py +0 -0
- amsdal/models/types/__init__.pyi +0 -0
- amsdal/models/types/object.py +26 -0
- amsdal/models/types/object.pyi +16 -0
- amsdal/schemas/core/file/properties/from_file.py +1 -1
- amsdal/schemas/core/file/properties/validate_data.py +1 -1
- amsdal/schemas/interfaces.py +25 -0
- amsdal/schemas/interfaces.pyi +20 -0
- amsdal/schemas/manager.cpython-312-darwin.so +0 -0
- amsdal/schemas/manager.py +0 -116
- amsdal/schemas/manager.pyi +0 -65
- amsdal/schemas/mixins/__init__.py +0 -0
- amsdal/schemas/mixins/__init__.pyi +0 -0
- amsdal/schemas/mixins/check_dependencies_mixin.py +115 -0
- amsdal/schemas/mixins/check_dependencies_mixin.pyi +42 -0
- amsdal/schemas/mixins/verify_schemas_mixin.py +96 -0
- amsdal/schemas/mixins/verify_schemas_mixin.pyi +33 -0
- amsdal/schemas/repository.py +84 -0
- amsdal/schemas/repository.pyi +22 -0
- amsdal/schemas/utils.py +16 -0
- amsdal/schemas/utils.pyi +10 -0
- amsdal/services/__init__.cpython-312-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-312-darwin.so +0 -0
- amsdal/services/transaction_execution.pyi +1 -1
- amsdal/utils/rollback/__init__.py +99 -54
- amsdal/utils/tests/helpers.py +185 -36
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/METADATA +8 -8
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/RECORD +150 -142
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/WHEEL +1 -1
- amsdal/contrib/auth/models/login_session/hooks/pre_init.py +0 -68
- amsdal/contrib/auth/models/login_session/model.json +0 -23
- amsdal/contrib/auth/models/login_session/modifiers/display_name.py +0 -11
- amsdal/contrib/auth/models/permission/fixtures/basic_permissions.json +0 -62
- amsdal/contrib/auth/models/permission/model.json +0 -18
- amsdal/contrib/auth/models/permission/modifiers/display_name.py +0 -11
- amsdal/contrib/auth/models/user/hooks/post_init.py +0 -76
- amsdal/contrib/auth/models/user/hooks/pre_create.py +0 -8
- amsdal/contrib/auth/models/user/model.json +0 -25
- amsdal/contrib/auth/models/user/modifiers/display_name.py +0 -19
- amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json +0 -11
- amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json +0 -11
- amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json +0 -52
- amsdal/contrib/frontend_configs/models/frontend_config_option/model.json +0 -15
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json +0 -6
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py +0 -13
- amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json +0 -19
- amsdal/contrib/frontend_configs/models/frontend_config_text_mask/model.json +0 -26
- amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json +0 -41
- amsdal/contrib/frontend_configs/models/frontend_control_config/model.json +0 -250
- amsdal/contrib/frontend_configs/models/frontend_model_config/fixtures/permissions.json +0 -24
- amsdal/contrib/frontend_configs/models/frontend_model_config/model.json +0 -17
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json +0 -54
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py +0 -33
- amsdal/migration/__init__.cpython-312-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.cpython-312-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.pyi +0 -120
- amsdal/migration/data_classes.cpython-312-darwin.so +0 -0
- amsdal/migration/data_classes.pyi +0 -172
- amsdal/migration/executors/__init__.cpython-312-darwin.so +0 -0
- amsdal/migration/executors/base.cpython-312-darwin.so +0 -0
- amsdal/migration/executors/base.pyi +0 -118
- amsdal/migration/executors/default_executor.cpython-312-darwin.so +0 -0
- amsdal/migration/executors/default_executor.pyi +0 -184
- amsdal/migration/executors/state_executor.cpython-312-darwin.so +0 -0
- amsdal/migration/executors/state_executor.pyi +0 -151
- amsdal/migration/file_migration_executor.cpython-312-darwin.so +0 -0
- amsdal/migration/file_migration_executor.pyi +0 -122
- amsdal/migration/file_migration_generator.cpython-312-darwin.so +0 -0
- amsdal/migration/file_migration_generator.pyi +0 -229
- amsdal/migration/file_migration_store.cpython-312-darwin.so +0 -0
- amsdal/migration/file_migration_store.pyi +0 -114
- amsdal/migration/file_migration_writer.cpython-312-darwin.so +0 -0
- amsdal/migration/file_migration_writer.pyi +0 -73
- amsdal/migration/migrations.cpython-312-darwin.so +0 -0
- amsdal/migration/migrations.pyi +0 -166
- amsdal/migration/migrations_loader.cpython-312-darwin.so +0 -0
- amsdal/migration/migrations_loader.pyi +0 -32
- amsdal/migration/schemas_loaders.cpython-312-darwin.so +0 -0
- amsdal/migration/schemas_loaders.pyi +0 -37
- amsdal/migration/templates/data_migration.tmpl +0 -18
- amsdal/migration/templates/dict_validator.tmpl +0 -4
- amsdal/migration/templates/migration.tmpl +0 -6
- amsdal/migration/templates/model_class.tmpl +0 -8
- amsdal/migration/templates/model_class_layout.tmpl +0 -24
- amsdal/migration/templates/options_validator.tmpl +0 -4
- amsdal/migration/utils.cpython-312-darwin.so +0 -0
- amsdal/migration/utils.pyi +0 -58
- amsdal/mixins/build_mixin.cpython-312-darwin.so +0 -0
- amsdal/mixins/build_mixin.pyi +0 -78
- /amsdal/{migration/__init__.pyi → contrib/auth/models/__init__.py} +0 -0
- /amsdal/{migration/executors → contrib/auth/models}/__init__.pyi +0 -0
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/LICENSE.txt +0 -0
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.3.5.dist-info → amsdal-0.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amsdal
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: AMSDAL
|
|
5
5
|
License: AMSDAL End User License Agreement
|
|
6
6
|
|
|
@@ -115,11 +115,11 @@ Project-URL: Issues, https://pypi.org/project/amsdal/
|
|
|
115
115
|
Project-URL: Source, https://pypi.org/project/amsdal/
|
|
116
116
|
Classifier: Development Status :: 4 - Beta
|
|
117
117
|
Classifier: Programming Language :: Python
|
|
118
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
119
118
|
Classifier: Programming Language :: Python :: 3.11
|
|
119
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
120
120
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
121
121
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
122
|
-
Requires-Python: >=3.
|
|
122
|
+
Requires-Python: >=3.11
|
|
123
123
|
Description-Content-Type: text/markdown
|
|
124
124
|
License-File: LICENSE.txt
|
|
125
125
|
Requires-Dist: pydantic~=2.3
|
|
@@ -129,13 +129,13 @@ Requires-Dist: cryptography~=42.0
|
|
|
129
129
|
Requires-Dist: httpx~=0.25
|
|
130
130
|
Requires-Dist: bcrypt~=4.0
|
|
131
131
|
Requires-Dist: black>=24.3.0
|
|
132
|
-
Requires-Dist: amsdal_utils==0.
|
|
133
|
-
Requires-Dist: amsdal_data[postgres-binary]==0.
|
|
134
|
-
Requires-Dist: amsdal_models
|
|
132
|
+
Requires-Dist: amsdal_utils==0.4.*
|
|
133
|
+
Requires-Dist: amsdal_data[postgres-binary]==0.4.*
|
|
134
|
+
Requires-Dist: amsdal_models<0.5,>=0.4.1
|
|
135
135
|
Provides-Extra: cli
|
|
136
|
-
Requires-Dist: amsdal-cli==0.
|
|
136
|
+
Requires-Dist: amsdal-cli==0.4.*; extra == "cli"
|
|
137
137
|
Provides-Extra: server
|
|
138
|
-
Requires-Dist: amsdal-server==0.
|
|
138
|
+
Requires-Dist: amsdal-server==0.4.*; extra == "server"
|
|
139
139
|
Provides-Extra: factory
|
|
140
140
|
Requires-Dist: polyfactory==2.*; extra == "factory"
|
|
141
141
|
Provides-Extra: celery
|
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
amsdal/manager.pyi,sha256=
|
|
1
|
+
amsdal/manager.pyi,sha256=AtMObu3V45-TXD21yFqANVRVDvQ3uyTXz-e2CsaDEJg,9307
|
|
2
2
|
amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
|
|
4
4
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=VcPLiGSghykwD290sS5A3hSNtPcz5hoBRgNaUTKdEnY,73573
|
|
5
|
-
amsdal/__about__.py,sha256=
|
|
6
|
-
amsdal/errors.pyi,sha256=
|
|
7
|
-
amsdal/manager.cpython-312-darwin.so,sha256=
|
|
5
|
+
amsdal/__about__.py,sha256=BM7YfdyIm_usPc2JE6aWYPQJVsWQWByBzc9cNHeXb3A,124
|
|
6
|
+
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
|
7
|
+
amsdal/manager.cpython-312-darwin.so,sha256=wSmAymE-W9GK0K7Ztkn-9enQ_tQgaadTaQ57FvvfdiY,501968
|
|
8
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
amsdal/errors.py,sha256=
|
|
9
|
+
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
|
10
10
|
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
11
11
|
amsdal/context/manager.pyi,sha256=9oqHjtub9qqPdIuD2y09IMmRbwSbRBk1T-dXGsWGmMI,1474
|
|
12
12
|
amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
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
|
-
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=
|
|
17
|
-
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=
|
|
16
|
+
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=eV8ifOU4TXSK0LCELry8hvFvnEvbPoMkApj5ZLFDny0,120720
|
|
17
|
+
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=g4n9FX1PMJgSGgPlaqJhiDTiD854PrjweRpjmZjZpWI,180480
|
|
18
18
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
amsdal/mixins/build_mixin.pyi,sha256=gNub1Eu4CtnW6qbOLvkxP8mE-WhM2k8Ru4R4th5905s,2395
|
|
20
|
-
amsdal/mixins/build_mixin.cpython-312-darwin.so,sha256=jWb8myJPVBGkl8ijJJ3yC5Eic0SWH53Yki5SI7UFBvQ,337272
|
|
21
19
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
20
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
|
23
21
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -25,10 +23,34 @@ amsdal/utils/contrib_paths.pyi,sha256=Ngb_2wCTCPJ9NSIqKiP254Ww9xrQzAV1-AiqUkVmiu
|
|
|
25
23
|
amsdal/utils/tests/enums.py,sha256=DoVtMzvfePjfLiAVctPDehdTTHawDbWrQP3yg46Bx6k,390
|
|
26
24
|
amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
25
|
amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
|
|
28
|
-
amsdal/utils/tests/helpers.py,sha256=
|
|
26
|
+
amsdal/utils/tests/helpers.py,sha256=l5K3Xim1yuTD5WXxK94b1NHa8qKLRosyCHTjuiAJtbk,15583
|
|
29
27
|
amsdal/utils/rollback/__init__.pyi,sha256=ABDuUBt3_uTE600GP1Z_NAMxySPbLs9tIyTNNeu4lbU,962
|
|
30
|
-
amsdal/utils/rollback/__init__.py,sha256=
|
|
31
|
-
amsdal/
|
|
28
|
+
amsdal/utils/rollback/__init__.py,sha256=NBIvidqj0nKRa30mWon5onpHBPQidb0DFJGcZbkKrY8,16832
|
|
29
|
+
amsdal/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
amsdal/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
amsdal/models/types/object.pyi,sha256=E9YowVGMdbUOw1T_MLpCwprRlaSkCYfOpy2ua0EuPHs,560
|
|
32
|
+
amsdal/models/types/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
amsdal/models/types/object.py,sha256=HaalwgfNDkbRz86h-YEE73TPpXvoOWy6o6Mnx6TAUos,1270
|
|
34
|
+
amsdal/models/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
amsdal/models/core/validator.py,sha256=Eqn2XvJV8Kn6NT2HnIGIkAV2ubmSen3rx5Yaeiuapak,367
|
|
36
|
+
amsdal/models/core/fixture.py,sha256=V4SS1rAYD6mtRjwZ5tEaGgZL3fgRuP2KJ4x7R3AkBWo,1000
|
|
37
|
+
amsdal/models/core/fixture.pyi,sha256=eVGiwX79YkV6KlsxdE40D7JlA0Zan6mPY2wTMv9HWS8,537
|
|
38
|
+
amsdal/models/core/class_property.pyi,sha256=qYDnfHBwXExh_v3hPaDgkgh3sO728qKTRl3RCZPsO4k,337
|
|
39
|
+
amsdal/models/core/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
amsdal/models/core/option.py,sha256=W2w9tmNrdmOF6x5QohJghRrnUY-RFCQ0YFULhVGdDzw,326
|
|
41
|
+
amsdal/models/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
amsdal/models/core/file.py,sha256=nst9eGXBymoeEer60vVIBcDx0Z4XVjVokHeX9qjq0No,5031
|
|
43
|
+
amsdal/models/core/class_property_meta.py,sha256=omNSra6oPXDBda9FzLsYh9jQYhQQXTvCAF5KDka6LCY,524
|
|
44
|
+
amsdal/models/core/validator.pyi,sha256=7Q8muoefalIAqWa1sleORcsaQNzhkUH5MsqMy9w7l_4,231
|
|
45
|
+
amsdal/models/core/class_object_meta.pyi,sha256=GRFsp1D6QSYJAga9VnR7xTFznc4h_hN7LDzzeSgBv5o,551
|
|
46
|
+
amsdal/models/core/class_object_meta.py,sha256=Q_l4a1ZctV-aaBF22NF4LEkAJhEBgEjhsITuHX2PqsI,1080
|
|
47
|
+
amsdal/models/core/class_property.py,sha256=7FmXi0ueN9lRZIZcZ7r9eXUvCDLstUbjprHzVZQCE1Y,712
|
|
48
|
+
amsdal/models/core/option.pyi,sha256=kkZou2vvjYHRBlF0twFfAkHF3Y_vf95YWEYhcAC5_5s,223
|
|
49
|
+
amsdal/models/core/class_object.pyi,sha256=Bs5JhN03Y9-w6ynqlhpSLdDczal4pTn-iEBXj-cZtzw,832
|
|
50
|
+
amsdal/models/core/class_property_meta.pyi,sha256=wi2kFpQffYvUSldlkMDluwxhjic3MI2sHSr2y9BClFU,332
|
|
51
|
+
amsdal/models/core/class_object.py,sha256=226IzEzmJknv-XfjD5sq9PJ3Y4zc-b0fSD3nrXSrsi0,1544
|
|
52
|
+
amsdal/models/core/file.pyi,sha256=RZTKCfjQ4fXtwz3E1xtgDsViaB_IwGtX2icDQtw-_kk,3460
|
|
53
|
+
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=WdL0C6d0nxmmNLn1ijiw4Z60rTCNkN0s0_wG0e-SCpw,120736
|
|
32
54
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
55
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
|
34
56
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
|
@@ -40,23 +62,21 @@ amsdal/contrib/auth/errors.pyi,sha256=LXEfxHkbEZuES7PNzBwmS7yP5yqaZGDftscI10SeCx
|
|
|
40
62
|
amsdal/contrib/auth/settings.py,sha256=4HneHyXD01s5_kAmhnA-13ryi-PfxejbE45YvC_xHHI,1227
|
|
41
63
|
amsdal/contrib/auth/app.py,sha256=MY_MwhI6d1J8IRi232SbBPp-wrcleRc5BIHNW0--ji4,1181
|
|
42
64
|
amsdal/contrib/auth/errors.py,sha256=nXuMLbicP_ScrPuZaSdwkPr7fN66Ox_v6UzknVRy9Jk,134
|
|
43
|
-
amsdal/contrib/auth/migrations/0000_initial.py,sha256=
|
|
65
|
+
amsdal/contrib/auth/migrations/0000_initial.py,sha256=6ykCsfqPNe97nMlTXlmnQLYtWoabYulTasDCcH_n0Xk,6296
|
|
44
66
|
amsdal/contrib/auth/decorators/__init__.pyi,sha256=1DKnpx3dKyeuHyKcnXn0TzVqQxT8qrjQnYYASNSA7fM,305
|
|
45
67
|
amsdal/contrib/auth/decorators/__init__.py,sha256=oBKJQtgWnWiPOjol9-KejJPuQJmfsjj14UVB_4qB4kw,1088
|
|
46
68
|
amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
69
|
amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
70
|
amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=FZ6lzBZ-UdBkiI1kKj4g8QwIQz1Vg4gFrgU8shcbDck,5214
|
|
49
|
-
amsdal/contrib/auth/lifecycle/consumer.py,sha256=
|
|
50
|
-
amsdal/contrib/auth/models/user
|
|
51
|
-
amsdal/contrib/auth/models/
|
|
52
|
-
amsdal/contrib/auth/models/
|
|
53
|
-
amsdal/contrib/auth/models/
|
|
54
|
-
amsdal/contrib/auth/models/
|
|
55
|
-
amsdal/contrib/auth/models/
|
|
56
|
-
amsdal/contrib/auth/models/
|
|
57
|
-
amsdal/contrib/auth/models/
|
|
58
|
-
amsdal/contrib/auth/models/login_session/modifiers/display_name.py,sha256=qvI_ppZ0Jl7KWhR8fWiMebXk-ak-jkFyBkinw6ESgZU,295
|
|
59
|
-
amsdal/contrib/auth/models/login_session/hooks/pre_init.py,sha256=bKi5dKb5TD2rcBmwasyDt7yBizaNZQHkBY7aHTv_o3Y,2245
|
|
71
|
+
amsdal/contrib/auth/lifecycle/consumer.py,sha256=eOfYj0j8PLBF45E8iv3ur2KupQXINmiUziGsuAVuk4Y,16862
|
|
72
|
+
amsdal/contrib/auth/models/user.py,sha256=jc8XbgfYtbuktu1Qz0DHLCNGHzrK2pyKrtdH8m7VMzk,3771
|
|
73
|
+
amsdal/contrib/auth/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
amsdal/contrib/auth/models/permission.py,sha256=KOy91A6PEbftwqfXlp91JZZM6YfAxG6B5-M3FfC5Nb0,675
|
|
75
|
+
amsdal/contrib/auth/models/permission.pyi,sha256=eKZTZfjG4HQBAo_jp2kpJzgqpIyGOe7UyGgDM1S5MP8,543
|
|
76
|
+
amsdal/contrib/auth/models/login_session.py,sha256=Zmm1HwSUIuFa3Llt2rx-ApeFguquRfKng5GX6VWrmbs,2373
|
|
77
|
+
amsdal/contrib/auth/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
+
amsdal/contrib/auth/models/login_session.pyi,sha256=br4AY58kJ5fuyP-klJGw7VO8RgOqYQ5O0E1PAPl4QJk,1177
|
|
79
|
+
amsdal/contrib/auth/models/user.pyi,sha256=H-vTCbOTAWrDYjcOfR7IFFodmTmLSwlb385Cler5_iI,1626
|
|
60
80
|
amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
81
|
amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
|
|
62
82
|
amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
|
|
@@ -65,34 +85,50 @@ amsdal/contrib/frontend_configs/utils.pyi,sha256=0LuzznNZ4NjuYYXsApfubjUpkG8EVwq
|
|
|
65
85
|
amsdal/contrib/frontend_configs/app.pyi,sha256=Bxdz0kmOF-Poaf2wmoJdgWYmHaStFyOFYTko3b3GpTY,723
|
|
66
86
|
amsdal/contrib/frontend_configs/utils.py,sha256=IruaUNl4xkOr2IIFzlvrmi06vEu3CWx49GzLBsrCFU0,1103
|
|
67
87
|
amsdal/contrib/frontend_configs/app.py,sha256=fY4GukBM6GKSZExT0EgddTamLfUJHwQZS8tOwVQyeSY,836
|
|
68
|
-
amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=
|
|
88
|
+
amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=qsOddrbev6Cy7vwj8RCzIlpjMKL_m91j1weRzc4Ryj8,13629
|
|
69
89
|
amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
90
|
amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=
|
|
72
|
-
amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=
|
|
73
|
-
amsdal/contrib/frontend_configs/models/
|
|
74
|
-
amsdal/contrib/frontend_configs/models/
|
|
75
|
-
amsdal/contrib/frontend_configs/models/
|
|
76
|
-
amsdal/contrib/frontend_configs/models/
|
|
77
|
-
amsdal/contrib/frontend_configs/models/
|
|
78
|
-
amsdal/contrib/frontend_configs/models/
|
|
79
|
-
amsdal/contrib/frontend_configs/models/
|
|
80
|
-
amsdal/contrib/frontend_configs/models/
|
|
81
|
-
amsdal/contrib/frontend_configs/models/
|
|
82
|
-
amsdal/contrib/frontend_configs/models/
|
|
83
|
-
amsdal/contrib/frontend_configs/models/
|
|
84
|
-
amsdal/contrib/frontend_configs/models/
|
|
85
|
-
amsdal/contrib/frontend_configs/models/
|
|
86
|
-
amsdal/contrib/frontend_configs/models/
|
|
91
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=kRNenTrKfswS8Y3UY6XYQ03WlCuo9LFk8WIJxm--cAk,4168
|
|
92
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=Uq_I-t-HmQDXBoaK4wzj1PWTziYbrjXigwrh_qYnJUM,11487
|
|
93
|
+
amsdal/contrib/frontend_configs/models/frontend_activator_config.pyi,sha256=litdaAoXYPSCZDMNvjAbnjd2LLkHvFxS34rl36WTw5I,477
|
|
94
|
+
amsdal/contrib/frontend_configs/models/frontend_config_control_action.py,sha256=cV8xFhnd1RJknyWlDnPX9lTgQZ-yylIgAWuicZHqHS0,2105
|
|
95
|
+
amsdal/contrib/frontend_configs/models/frontend_config_option.py,sha256=n4ZcI7RDwNCpeT5gGLuNJeHzJlhqyf7U5BD4V4wbUv4,448
|
|
96
|
+
amsdal/contrib/frontend_configs/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
amsdal/contrib/frontend_configs/models/frontend_config_text_mask.pyi,sha256=FPVRCmL_vEDG44xriyTLDhQdVeyQawiBmez1qnQWrZA,365
|
|
98
|
+
amsdal/contrib/frontend_configs/models/frontend_config_group_validator.pyi,sha256=VK062ijoZgs0_3FjoCjcRga0-Mcfc4EFqjgaQHYkerA,457
|
|
99
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.pyi,sha256=UC6qSuICs1NNFo6BzWtpx5PQ_Uu96Ub5rED8NO_BwwM,340
|
|
100
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config.py,sha256=UTvp-RvPnci4F7RdRj60hZXgEjSqvNhkfwdbw7ju_sU,517
|
|
101
|
+
amsdal/contrib/frontend_configs/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
amsdal/contrib/frontend_configs/models/frontend_config_validator.pyi,sha256=sdJL4VK1D6H6H4dkGF_SPvtxsWHASwVXqh0KCtv3LQE,591
|
|
103
|
+
amsdal/contrib/frontend_configs/models/frontend_config_async_validator.pyi,sha256=LZjYgUjQM4eB6X18vlSHjuqBNaGwC7rrRGt22Lm9IHE,293
|
|
104
|
+
amsdal/contrib/frontend_configs/models/frontend_config_control_action.pyi,sha256=KMIWGggjoccCBFAvmc3L2jouU1zCDWTNm_Z7Y564hPg,1082
|
|
105
|
+
amsdal/contrib/frontend_configs/models/frontend_config_option.pyi,sha256=9FfnL8Pv3e6VUThWrF1nanj3jBNxWOUma0juf3gNQ8s,304
|
|
106
|
+
amsdal/contrib/frontend_configs/models/frontend_control_config.py,sha256=ePkGaRMssOqO5NjWs2xA1ZK95hl40WAKg7Fp2QZMda4,4014
|
|
107
|
+
amsdal/contrib/frontend_configs/models/frontend_config_group_validator.py,sha256=vJ36_Xmweygi5UXAL6wOXLi6sGe2rkUcsmT7WzgXuAU,974
|
|
108
|
+
amsdal/contrib/frontend_configs/models/frontend_config_slider_option.py,sha256=bixZRd4x4zcxykMXC3obYDp8DHORRR3BEBcqaZGcHHo,510
|
|
109
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config.pyi,sha256=CjV8oFweFPKfYBR5Myd_Tmm0hmszEOmZm1pOVAKumW8,357
|
|
110
|
+
amsdal/contrib/frontend_configs/models/frontend_config_text_mask.py,sha256=EEonXV4HyxiVq4AkvIxKtzXhiDYeplexMWzNSQeYpoc,583
|
|
111
|
+
amsdal/contrib/frontend_configs/models/frontend_control_config.pyi,sha256=jBkVdN8ePwjBdaS2-GhM9UU9G7N7OIhYbE-pgxvv-A8,1655
|
|
112
|
+
amsdal/contrib/frontend_configs/models/frontend_config_slider_option.pyi,sha256=Ei55pOHYbeTkyg4EQIX5-qEeJGIhp5_eDuZctfZZhVo,333
|
|
113
|
+
amsdal/contrib/frontend_configs/models/frontend_config_async_validator.py,sha256=okzRBflVwIyg4CoygNcptKuUIxwYMu_w8z5RGgbpP9g,411
|
|
114
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=KxP9viiRFJrXUeHgI7m0AyiMRAlRTU7lbyPodAe0uHY,544
|
|
115
|
+
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
|
116
|
+
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
|
87
117
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
|
88
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
|
89
|
-
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=
|
|
118
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=dYyDV_PYqMgU3HXOfGpQv4utlO2pcSjTA1Ppq_Rgrqg,8841
|
|
119
|
+
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
|
90
120
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
|
91
|
-
amsdal/schemas/
|
|
121
|
+
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
|
122
|
+
amsdal/schemas/manager.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
123
|
amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
+
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
|
125
|
+
amsdal/schemas/interfaces.pyi,sha256=CSYdZsjj6j7m8YvnQ-iFlBV4CYrGTs_Yvan1VMpm_Ag,719
|
|
93
126
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
-
amsdal/schemas/
|
|
95
|
-
amsdal/schemas/
|
|
127
|
+
amsdal/schemas/utils.pyi,sha256=ajyhB6MMxiiRDeCbVjp6wsbLr8s5a0d_rbXMVX4D50Y,425
|
|
128
|
+
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
|
129
|
+
amsdal/schemas/manager.cpython-312-darwin.so,sha256=NDuc_X8U54wsQKoDdN0zEMGO0csX5FcNEw3oX9fhg0o,120736
|
|
130
|
+
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
|
131
|
+
amsdal/schemas/manager.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
132
|
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
|
97
133
|
amsdal/schemas/types/datetime/model.json,sha256=DROVOPm0uQXy4qUj4mQUnhvfT_67psrQJj8psVRYjrA,120
|
|
98
134
|
amsdal/schemas/types/date/model.json,sha256=_siNphlfvq-bZ29Z3tloQlxh1_zRsEkXuO5HJsXmDSE,116
|
|
@@ -108,8 +144,8 @@ amsdal/schemas/core/file/model.json,sha256=s_sQpToj5zeSYgkR9AFPvdm5dz2YiFH9Lm9Ew
|
|
|
108
144
|
amsdal/schemas/core/file/properties/str.py,sha256=r2RAz6uBxEFJjRJGBYk4yWXzmLyZ_zR6DmnsubPY4Fs,245
|
|
109
145
|
amsdal/schemas/core/file/properties/mimetype.py,sha256=Y2hTq82Da8KeuRsIV4RK3E1F7sbsu12dWqD99kD3Inw,433
|
|
110
146
|
amsdal/schemas/core/file/properties/to_file.py,sha256=qzlfo4YHBtsf11S2Hy30AjvA7Lyi8ezsGEXqxGBOPVg,720
|
|
111
|
-
amsdal/schemas/core/file/properties/validate_data.py,sha256=
|
|
112
|
-
amsdal/schemas/core/file/properties/from_file.py,sha256=
|
|
147
|
+
amsdal/schemas/core/file/properties/validate_data.py,sha256=7KLXoLVh6O3y14SaioH_oiMzKGCLw_g4FwvRMWrByAI,903
|
|
148
|
+
amsdal/schemas/core/file/properties/from_file.py,sha256=5I_7ZuJ53BC12RDI3jK_LrF0OKDC-OlJZKvYf4zoWGA,958
|
|
113
149
|
amsdal/schemas/core/file/hooks/pre_create.py,sha256=9JUaU2U5h-_7jbF2NyTWwyCemkOR-1yHRXP92e9EIQ0,741
|
|
114
150
|
amsdal/schemas/core/file/hooks/pre_update.py,sha256=TD9MmK_ZRbWD_jfdHmH0BWt4gr-QZvmMGdR3Dq7Ycc4,721
|
|
115
151
|
amsdal/schemas/core/fixture/model.json,sha256=m2v-zkH-MsUlH8cc459-gtNCGHAozHSkGAgSVj9kQb8,568
|
|
@@ -119,139 +155,111 @@ amsdal/schemas/core/class_object_meta/model.json,sha256=ZSFm2YdlW87_efCW9g5vAXfm
|
|
|
119
155
|
amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
|
|
120
156
|
amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
|
|
121
157
|
amsdal/schemas/core/class_object/properties/display_name.py,sha256=F2Ox-MJa8EndMq7Ox10VaismKe44w2zxnYhsVhBHPOI,256
|
|
122
|
-
amsdal/
|
|
123
|
-
amsdal/
|
|
124
|
-
amsdal/
|
|
125
|
-
amsdal/
|
|
158
|
+
amsdal/schemas/mixins/verify_schemas_mixin.py,sha256=UAPmRKPLaZE0nqfp_yeJlFpxq0uUKZOB3kIypi8U4mE,4039
|
|
159
|
+
amsdal/schemas/mixins/verify_schemas_mixin.pyi,sha256=j51Nn8xTek3gQYIvUsezjVBBgVs54AkQb2gy1JFTW_A,1871
|
|
160
|
+
amsdal/schemas/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
+
amsdal/schemas/mixins/check_dependencies_mixin.pyi,sha256=1bYHjzR5Ef-8d_MpZxxx1IKyWDfdZlaH7iS5S2sVK5s,1887
|
|
162
|
+
amsdal/schemas/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
+
amsdal/schemas/mixins/check_dependencies_mixin.py,sha256=3hVkb5GuaE2GlMC14kAptgG6Z9GVjPcBvaSSeS0d87I,4677
|
|
164
|
+
amsdal/__migrations__/0001_datetime_type.py,sha256=4nBz3CkcOEB_TX7TdlFKVgvzH4UrD3yOXwoAGsUq9YY,601
|
|
165
|
+
amsdal/__migrations__/0003_schema_type_in_class_meta.py,sha256=fKc9JJwwX3gn7rr0BoDVKU0fuqGz1iIaJxr5SPaCwnw,1909
|
|
166
|
+
amsdal/__migrations__/0000_initial.py,sha256=rXcs8CsYRynCC6vFg_M_1AF6FMmUOj2qufuDQjO-5jg,10881
|
|
167
|
+
amsdal/__migrations__/0002_fixture_order.py,sha256=EQ26GtqFfvyAJJyfCb4QlYx3g_OJb92sf5THMsfDQ30,1823
|
|
126
168
|
amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
169
|
amsdal/configs/constants.pyi,sha256=ZoWj8V0YkrPaY0zBsXCenwuWMQIQ0K6hnzr4We9CRl0,683
|
|
128
170
|
amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,969
|
|
129
171
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
amsdal/configs/main.pyi,sha256=
|
|
131
|
-
amsdal/configs/main.py,sha256=
|
|
132
|
-
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=
|
|
172
|
+
amsdal/configs/main.pyi,sha256=JjjrXf4ZPMG--f9Lw9pKdQr7NoOF9qrF_oUGDDNt8QA,6836
|
|
173
|
+
amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
|
|
174
|
+
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=33qwCAMcS926Gnrbi0vsP_25i73Up2xoy94KQ6Zrdrc,120720
|
|
133
175
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
176
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
|
135
177
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
|
136
|
-
amsdal/cloud/constants.cpython-312-darwin.so,sha256=
|
|
137
|
-
amsdal/cloud/enums.cpython-312-darwin.so,sha256=
|
|
138
|
-
amsdal/cloud/client.cpython-312-darwin.so,sha256=
|
|
178
|
+
amsdal/cloud/constants.cpython-312-darwin.so,sha256=yYx1_YiP_kJW5wGtl4pcNrvta4LvUTnKr5kLK5N0qKY,158688
|
|
179
|
+
amsdal/cloud/enums.cpython-312-darwin.so,sha256=zht1HK5TS2OUpizMG1o7EIvbpjPcJjUuO8-CXUBuHiU,158128
|
|
180
|
+
amsdal/cloud/client.cpython-312-darwin.so,sha256=svzqSvtsSaWO9T3jtjZra0NqEG3kce7tCMCIi7APq_Y,216144
|
|
139
181
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
|
140
|
-
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=
|
|
182
|
+
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=K29nb61fzSeyCRQgs3KhQZgF8Bj7hDL3dStEjd17LPg,120752
|
|
141
183
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
|
142
184
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
-
amsdal/cloud/models/base.cpython-312-darwin.so,sha256
|
|
144
|
-
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=
|
|
185
|
+
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=-TpfrS2HtJoYK4F4M2fE9EnVhrgaCo9U-xijs9cepgA,195328
|
|
186
|
+
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=HBg7KgvKew0mRLLAGd8OU0-q3XQ4jUkyOIQMpXHgLTU,120768
|
|
145
187
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=
|
|
188
|
+
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=4dUJE2ZDUOHnGPG-uPl9CdY74X0EMPbmqdThsZxtfYk,120784
|
|
147
189
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
|
148
190
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
|
149
191
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=
|
|
192
|
+
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=yL6XRlqbjUzrEAcFarA16sjfx08di_pBT1wybe6qw-c,253224
|
|
151
193
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
|
152
|
-
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=
|
|
153
|
-
amsdal/cloud/services/auth/token.pyi,sha256
|
|
154
|
-
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=
|
|
155
|
-
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=
|
|
156
|
-
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=
|
|
157
|
-
amsdal/cloud/services/auth/credentials.pyi,sha256=
|
|
158
|
-
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=
|
|
159
|
-
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=
|
|
194
|
+
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=dwiy7y04gXp4iAKrEwlsO8aCpaBnXpoHRt4J_VAaHII,216232
|
|
195
|
+
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
|
196
|
+
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=eRLyfDr52LEaOCU5BMGnTWjsvm7pTbTx_zswpCRPGzc,251648
|
|
197
|
+
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=4Gnr5T4_uLDt9rvH37130ANy7eH9hJFg2hrmUtAg_-8,214144
|
|
198
|
+
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=zdgIP1KAoPSfZS8sNNxP3rISSlnkidfe6BNhm6g9aOw,163120
|
|
199
|
+
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
|
200
|
+
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=C1ql7B7-oBBm_gPu3sPhvjnFzThb8HiZWOFPIlIDbqE,180840
|
|
201
|
+
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=s9e2H_yPMp_FBZ5EmO4T4vxlqwHgHbLXYJdaFp-YjH8,120800
|
|
160
202
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
|
161
203
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
|
162
204
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
|
163
205
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
|
164
206
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
|
165
207
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
|
166
|
-
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=
|
|
208
|
+
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=4fXz3njQqdBJdRGCOTp8qIcVXrJysEzyFyCRvW_c4Zc,164312
|
|
167
209
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
210
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
|
169
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=
|
|
211
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=pSt40JLMDZRF412a6kNbLn3h_cqYq5ORGwc5YHroLdA,197512
|
|
170
212
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
|
171
213
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
|
172
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=
|
|
173
|
-
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=
|
|
174
|
-
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=
|
|
175
|
-
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=
|
|
176
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=
|
|
214
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=vDSdBo00UTbSzoCH2KGCGOIfDURmXxWB1RymNollaZk,180848
|
|
215
|
+
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=ZJtr8YyMwENzvADmI_p5vSGxMBHekEK_Q1aGM2gZjMU,164328
|
|
216
|
+
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=mK0ZuMs-5BlH9kZRATawhEFoA_K9jHundOJXqUeHv_M,180840
|
|
217
|
+
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=u-28MP5-cj3hYtTrOBIQ7owNuTKsmaVTDtnzjzCpo2Q,181080
|
|
218
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=2DTqwBSnuqh1Fx_a3vVPWAlnyiJXABl5_RHzJEjSV6U,197376
|
|
177
219
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
|
178
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=
|
|
179
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=
|
|
180
|
-
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=
|
|
181
|
-
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=
|
|
220
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=UerIAKuS1ytNGtczFHBNvfq0ror-dTrx07EUplUIjng,164168
|
|
221
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=N7-rGgIjqervHyhDNqFD-GW_cBHjVe9Sg_90EBSvHmU,197704
|
|
222
|
+
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=b9MkzHBzcGEABkQM-nIv2UGikPVo0cCcdcvmolu_zMA,164384
|
|
223
|
+
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=rWdd5xqkGpiY8eFP9hHQUIRLRTOc59D4PAxVTxFrCSI,181096
|
|
182
224
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
|
183
225
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
|
184
|
-
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=
|
|
185
|
-
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=
|
|
226
|
+
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=fPNWRbqJqUeU_7fFABSjLm589YFG2Up4CzuaYVPy-uE,269064
|
|
227
|
+
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=5Y0N1k84Pcn8vO3L41JXY11LjMHwgwwRKwoZi18ZLgA,181000
|
|
186
228
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
|
187
229
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
|
188
230
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
|
189
|
-
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=
|
|
231
|
+
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=b1MY-gnFbnZQPGDVRC0tCiJIrZho6GoxS9PU-_3BDdU,354848
|
|
190
232
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
|
191
233
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
|
192
|
-
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=
|
|
193
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=
|
|
234
|
+
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=WgUkQ4nHBC-VqfF0lgPDulrKr3ifFOklZ_L0XIS4lMA,307200
|
|
235
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=rEipmuJ0St0i9a_ZgrHmsZompv64rl2MSxGEGMmWvKE,197512
|
|
194
236
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
|
195
237
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
|
196
|
-
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=
|
|
197
|
-
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=
|
|
198
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=
|
|
199
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=
|
|
200
|
-
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=
|
|
201
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=
|
|
202
|
-
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=
|
|
238
|
+
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=O23gxb_U_pwMdEUkXW14oP9s_HVV6uDRrhUuHubegLk,164264
|
|
239
|
+
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=xsbNo_i7su3KI5ryXBLExiCeCyvkd_8ZTo3I7qB7v5o,197568
|
|
240
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=OwPsGaXkjbTUVaHprzFMG36FNBmupWh5xi9VL6vaZsk,164376
|
|
241
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=VC-Y1cYoC_qMC_8A3jioKZ8ySKmUAfygHu6DuqE-6BE,180792
|
|
242
|
+
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=Xfnkkn6hcY8zjhHwaJ_xYDeH060Y8ZKdpnQPd3QQ0Rs,164216
|
|
243
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=uo7QGeFVWgp0nbzHJ1wZTzHrkpL9GaorIyBWkJ9HeiU,164376
|
|
244
|
+
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=3QXq1uVv-1sLTcLcIOj3i3XwXmxDKVRjCeDfxrnun48,197688
|
|
203
245
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
|
204
246
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
|
205
247
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
|
206
248
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
|
207
249
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
|
208
|
-
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=
|
|
209
|
-
amsdal/fixtures/manager.pyi,sha256=
|
|
250
|
+
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=fJN6HOEMLRISW3_3CNSmrLzx5I-0jX5LAluW0a_jv6w,120736
|
|
251
|
+
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
|
210
252
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
-
amsdal/fixtures/
|
|
212
|
-
amsdal/
|
|
213
|
-
amsdal/
|
|
214
|
-
amsdal/
|
|
215
|
-
amsdal/
|
|
216
|
-
amsdal/
|
|
217
|
-
amsdal/migration/file_migration_store.cpython-312-darwin.so,sha256=wMF8Mzq0e41d50QjYIGD5t3H6irJKMqxPz5LawL1CCA,638608
|
|
218
|
-
amsdal/migration/file_migration_executor.pyi,sha256=jsWGSYx-Fmcf7q8NoFZ7Vte_JjutvKyO763igmhB04I,7158
|
|
219
|
-
amsdal/migration/file_migration_executor.cpython-312-darwin.so,sha256=K-KFKhTPbrcZx_vgMfM2J2TsVtImQmHQXYHtnExb44I,550672
|
|
220
|
-
amsdal/migration/schemas_loaders.cpython-312-darwin.so,sha256=BcYc0upiPGrXrA_Y_M2GB4IpEXwBkskLvuALGElQZ2Y,273256
|
|
221
|
-
amsdal/migration/migrations_loader.pyi,sha256=i1TsBHT52piM-gAGJGjYplbZHJJtZvJ83b_-gYSN2xU,1129
|
|
222
|
-
amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
amsdal/migration/file_migration_writer.pyi,sha256=yIWvdLciu6Dnr0ZwplvZdMKxN4rl8BazotFrOxfCLh0,2275
|
|
224
|
-
amsdal/migration/file_migration_generator.cpython-312-darwin.so,sha256=Al-sBBL5gqEOGQFttoQMRBIiswiCY61QfQZyThM7G9w,592320
|
|
225
|
-
amsdal/migration/utils.cpython-312-darwin.so,sha256=4bMEGb9alKvYBw9fiJt3ezMgD7NUrVNovtlYoBvCUtk,286896
|
|
226
|
-
amsdal/migration/file_migration_writer.cpython-312-darwin.so,sha256=nTmgIt8FiXk8oZX2K9vovzhWsJ34jTt7Dknccsygsx4,252416
|
|
227
|
-
amsdal/migration/base_migration_schemas.pyi,sha256=l2bGckKVR7wkilFv9LueCr3nUq6g9IPOj-dDPUTrw34,5200
|
|
228
|
-
amsdal/migration/data_classes.pyi,sha256=RhSQakTOSu8dBFyAoV7T5AJ1_7YIjUi3dt2RFLxX_Qs,5688
|
|
229
|
-
amsdal/migration/utils.pyi,sha256=AM1jSDzwuT_Tt1DdT3ZlDtud-prPc6ytlanw2vPkqvI,2435
|
|
230
|
-
amsdal/migration/base_migration_schemas.cpython-312-darwin.so,sha256=24XCDPWAAXd4Cn1kXFRxgEdlGhwTz_8QIv-xNLNOgjw,462576
|
|
231
|
-
amsdal/migration/schemas_loaders.pyi,sha256=al7V-fO1z88go1eitWLWolxNSJNjTsZRLg0gYYvi2A8,1607
|
|
232
|
-
amsdal/migration/file_migration_generator.pyi,sha256=oVUhpO-zqPETy_7JMiQl-bEqjBMIP174mEYy5hQ3Uh8,9545
|
|
233
|
-
amsdal/migration/migrations.pyi,sha256=lvQ29dMRu3EfaiyiSn9U1GhFlBE6l94Yh5AeJcWpcHw,6079
|
|
234
|
-
amsdal/migration/executors/__init__.cpython-312-darwin.so,sha256=c8V7sWUZNkAScY8lTMBA5FmdGczznNrRjE7uNAhVTJI,120784
|
|
235
|
-
amsdal/migration/executors/base.pyi,sha256=sC7oy0tGvOw-YljfmE5L1PhzdwXsCdGMUpnx3Wf4wdA,5241
|
|
236
|
-
amsdal/migration/executors/state_executor.pyi,sha256=1Hx4WjGYRO3ekkt9xzQdOe5xbTWqf4E7jyKq0ri9q8o,6517
|
|
237
|
-
amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
|
-
amsdal/migration/executors/state_executor.cpython-312-darwin.so,sha256=lBb05Azct06KS00ZVAGs01FaQeJImXAgz3ODeJXjh2M,342792
|
|
239
|
-
amsdal/migration/executors/default_executor.pyi,sha256=jkT5ZtmOR-Sq4HPdONM2WzV-MYsZuI6mO0XH5nqeiqo,9467
|
|
240
|
-
amsdal/migration/executors/default_executor.cpython-312-darwin.so,sha256=1Gf0b4LZ4NgD2mfO1i7WqFjdtPHV90NvFcZLuPBhbt0,859768
|
|
241
|
-
amsdal/migration/executors/base.cpython-312-darwin.so,sha256=FT7tASemAzzhZRctAX6fDb0yk00IZQBmODI_FXMWapE,377632
|
|
242
|
-
amsdal/migration/templates/model_class_layout.tmpl,sha256=ttbq0xgimvHn-ffM4ZSj2_DMH5srCmUtkwGd38pyDXY,766
|
|
243
|
-
amsdal/migration/templates/options_validator.tmpl,sha256=gF_uiYONVad4OEILZeIdrepcHOFhwPq3nu0NJX8I1EA,205
|
|
244
|
-
amsdal/migration/templates/model_class.tmpl,sha256=t0y_OlxVmJe5RRg8pxO0XyUM3q1sAuv458q8wmDvh-8,225
|
|
245
|
-
amsdal/migration/templates/data_migration.tmpl,sha256=MzDSiNqH006F1cs-dskpboInBja5LZ8ErtoEmRzDsIQ,436
|
|
246
|
-
amsdal/migration/templates/migration.tmpl,sha256=WZe7A1lchoiqZZhGL2YUKVzafMPRiW9l7jYPmQoSOtU,193
|
|
247
|
-
amsdal/migration/templates/dict_validator.tmpl,sha256=5lRGN9hNBVRqVcbeNQuU4v5koRzS6tJAibzOqjCUXSI,173
|
|
248
|
-
amsdal/services/__init__.cpython-312-darwin.so,sha256=YyfHDApYlrxn-MB0nI8O1lw-WCPYdHSenLWvCduXRuI,120736
|
|
249
|
-
amsdal/services/transaction_execution.pyi,sha256=Td4v3JGDA7GcVKhiYYeZoO2VNELS4iH_ihDXJbTkEk4,4301
|
|
250
|
-
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=HBosfyWypWGK6nLS2aDk3EUnqEZalFWydVMzloYr5HU,434320
|
|
253
|
+
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=nt1hQ2pfD6tXcqMfNO05v203MJdE1qcYDfKs-RIQBo8,290128
|
|
254
|
+
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
|
255
|
+
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=O_lqkS67cwRRuyeT2PgLjNaOAGdXSuwAfhU6_dli_Ks,655712
|
|
256
|
+
amsdal/services/__init__.cpython-312-darwin.so,sha256=BUnsVRlGOrxVETbJ5F9UeHp7ZYUkhdHYjubMyVtCU7I,120736
|
|
257
|
+
amsdal/services/transaction_execution.pyi,sha256=OanrSxNmRAH4domDWqnmH_Y4fyz9puBZxFHcpvB4sMY,4320
|
|
258
|
+
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=v_vlXoYT_EBuktOOXkoi2KQQehDvx1qHLHoc0NvHRFY,434144
|
|
251
259
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
amsdal-0.
|
|
253
|
-
amsdal-0.
|
|
254
|
-
amsdal-0.
|
|
255
|
-
amsdal-0.
|
|
256
|
-
amsdal-0.
|
|
257
|
-
amsdal-0.
|
|
260
|
+
amsdal-0.4.0.dist-info/RECORD,,
|
|
261
|
+
amsdal-0.4.0.dist-info/WHEEL,sha256=iDXcyuxg-66TzzqHGH-kgw_HJdaJE_1RHznrvPNCSNs,115
|
|
262
|
+
amsdal-0.4.0.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
|
263
|
+
amsdal-0.4.0.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
264
|
+
amsdal-0.4.0.dist-info/METADATA,sha256=peAHOzOsWcl-w4Nsp0_u0NFj3navtOu3_LCLcStp_2U,57388
|
|
265
|
+
amsdal-0.4.0.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
from datetime import datetime
|
|
2
|
-
from datetime import timedelta
|
|
3
|
-
from datetime import timezone
|
|
4
|
-
from typing import Any
|
|
5
|
-
|
|
6
|
-
# import bcrypt
|
|
7
|
-
import jwt
|
|
8
|
-
|
|
9
|
-
# from amsdal_utils.models.enums import Versions
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
def pre_init(self, *, is_new_object: bool, kwargs: dict[str, Any]) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
|
|
13
|
-
"""
|
|
14
|
-
Pre-initializes a user object by validating email and password, and generating a JWT token.
|
|
15
|
-
|
|
16
|
-
This method checks if the object is new and validates the provided email and password.
|
|
17
|
-
If the email and password are valid, it generates a JWT token and adds it to the kwargs.
|
|
18
|
-
|
|
19
|
-
Args:
|
|
20
|
-
is_new_object (bool): Indicates if the object is new.
|
|
21
|
-
kwargs (dict[str, Any]): The keyword arguments containing user details.
|
|
22
|
-
|
|
23
|
-
Raises:
|
|
24
|
-
AuthenticationError: If the email or password is invalid.
|
|
25
|
-
"""
|
|
26
|
-
if not is_new_object or '_metadata' in kwargs:
|
|
27
|
-
return
|
|
28
|
-
|
|
29
|
-
from amsdal.contrib.auth.errors import AuthenticationError
|
|
30
|
-
from amsdal.contrib.auth.settings import auth_settings
|
|
31
|
-
|
|
32
|
-
email = kwargs.get('email', None)
|
|
33
|
-
password = kwargs.get('password', None)
|
|
34
|
-
|
|
35
|
-
if not email:
|
|
36
|
-
msg = "Email can't be empty"
|
|
37
|
-
raise AuthenticationError(msg)
|
|
38
|
-
|
|
39
|
-
if not password:
|
|
40
|
-
msg = "Password can't be empty"
|
|
41
|
-
raise AuthenticationError(msg)
|
|
42
|
-
|
|
43
|
-
lowercased_email = email.lower()
|
|
44
|
-
|
|
45
|
-
# from models.contrib.user import User # type: ignore[import-not-found]
|
|
46
|
-
|
|
47
|
-
# user = User.objects.filter(
|
|
48
|
-
# email=lowercased_email,
|
|
49
|
-
# _address__object_version=Versions.LATEST
|
|
50
|
-
# ).get_or_none().execute()
|
|
51
|
-
|
|
52
|
-
# if not user:
|
|
53
|
-
# msg = 'Invalid email / password'
|
|
54
|
-
# raise AuthenticationError(msg)
|
|
55
|
-
|
|
56
|
-
# if not bcrypt.checkpw(password.encode('utf-8') if isinstance(password, str) else password, user.password):
|
|
57
|
-
# msg = 'Invalid email / password'
|
|
58
|
-
# raise AuthenticationError(msg)
|
|
59
|
-
|
|
60
|
-
kwargs['password'] = 'validated'
|
|
61
|
-
expiration_time = datetime.now(tz=timezone.utc) + timedelta(seconds=auth_settings.AUTH_TOKEN_EXPIRATION)
|
|
62
|
-
token = jwt.encode(
|
|
63
|
-
{'email': lowercased_email, 'exp': expiration_time},
|
|
64
|
-
key=auth_settings.AUTH_JWT_KEY, # type: ignore[arg-type]
|
|
65
|
-
algorithm='HS256',
|
|
66
|
-
)
|
|
67
|
-
|
|
68
|
-
kwargs['token'] = token
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "LoginSession",
|
|
3
|
-
"type": "object",
|
|
4
|
-
"properties": {
|
|
5
|
-
"email": {
|
|
6
|
-
"title": "Email",
|
|
7
|
-
"type": "string"
|
|
8
|
-
},
|
|
9
|
-
"password": {
|
|
10
|
-
"title": "Password (hash)",
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
"token": {
|
|
14
|
-
"title": "Token",
|
|
15
|
-
"type": "string",
|
|
16
|
-
"mark_as_read_only": true
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"required": [
|
|
20
|
-
"email",
|
|
21
|
-
"password"
|
|
22
|
-
]
|
|
23
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
@property # type: ignore[misc]
|
|
2
|
-
def display_name(self) -> str: # type: ignore[no-untyped-def]
|
|
3
|
-
"""
|
|
4
|
-
Returns the display name of the user.
|
|
5
|
-
|
|
6
|
-
This method returns the email of the user as their display name.
|
|
7
|
-
|
|
8
|
-
Returns:
|
|
9
|
-
str: The email of the user.
|
|
10
|
-
"""
|
|
11
|
-
return self.email
|