amsdal 0.1.26__cp310-cp310-macosx_10_9_universal2.whl → 0.2.0__cp310-cp310-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.
Potentially problematic release.
This version of amsdal might be problematic. Click here for more details.
- amsdal/__about__.py +1 -1
- amsdal/cloud/__init__.cpython-310-darwin.so +0 -0
- amsdal/cloud/client.cpython-310-darwin.so +0 -0
- amsdal/cloud/client.pyi +46 -2
- amsdal/cloud/constants.cpython-310-darwin.so +0 -0
- amsdal/cloud/enums.cpython-310-darwin.so +0 -0
- amsdal/cloud/enums.pyi +46 -0
- amsdal/cloud/models/__init__.cpython-310-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-310-darwin.so +0 -0
- amsdal/cloud/models/base.pyi +156 -0
- amsdal/cloud/services/__init__.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/__init__.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.pyi +16 -1
- amsdal/cloud/services/actions/add_basic_auth.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.pyi +17 -1
- amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.pyi +16 -1
- amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.pyi +17 -1
- amsdal/cloud/services/actions/base.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/base.pyi +71 -3
- amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.pyi +33 -3
- amsdal/cloud/services/actions/create_env.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.pyi +15 -1
- amsdal/cloud/services/actions/create_session.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.pyi +13 -1
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.pyi +16 -1
- amsdal/cloud/services/actions/delete_basic_auth.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.pyi +17 -1
- amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.pyi +18 -1
- amsdal/cloud/services/actions/delete_env.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.pyi +17 -1
- amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.pyi +18 -1
- amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.pyi +15 -1
- amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.pyi +18 -1
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.pyi +17 -1
- amsdal/cloud/services/actions/get_monitoring_info.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.pyi +17 -1
- amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.pyi +17 -1
- amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.pyi +15 -1
- amsdal/cloud/services/actions/list_envs.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.pyi +16 -1
- amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.pyi +18 -1
- amsdal/cloud/services/actions/manager.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.pyi +254 -20
- amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.pyi +16 -1
- amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.pyi +15 -1
- amsdal/cloud/services/auth/__init__.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/base.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.pyi +12 -1
- amsdal/cloud/services/auth/manager.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.pyi +15 -1
- amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.pyi +16 -1
- amsdal/cloud/services/auth/token.cpython-310-darwin.so +0 -0
- amsdal/cloud/services/auth/token.pyi +15 -1
- amsdal/configs/constants.py +10 -0
- amsdal/configs/constants.pyi +11 -1
- amsdal/configs/main.py +132 -19
- amsdal/configs/main.pyi +140 -10
- amsdal/context/manager.py +39 -0
- amsdal/context/manager.pyi +41 -3
- amsdal/contrib/__init__.cpython-310-darwin.so +0 -0
- amsdal/contrib/auth/app.py +12 -0
- amsdal/contrib/auth/app.pyi +12 -1
- amsdal/contrib/auth/lifecycle/consumer.py +53 -0
- amsdal/contrib/auth/lifecycle/consumer.pyi +53 -3
- amsdal/contrib/auth/models/login_session/hooks/pre_init.py +13 -0
- amsdal/contrib/auth/models/login_session/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/models/permission/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/models/user/hooks/post_init.py +13 -0
- amsdal/contrib/auth/models/user/hooks/pre_create.py +6 -0
- amsdal/contrib/auth/models/user/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/settings.py +15 -0
- amsdal/contrib/auth/settings.pyi +14 -0
- amsdal/contrib/frontend_configs/app.py +14 -0
- amsdal/contrib/frontend_configs/app.pyi +14 -1
- amsdal/contrib/frontend_configs/conversion/convert.py +14 -0
- amsdal/contrib/frontend_configs/conversion/convert.pyi +15 -1
- amsdal/contrib/frontend_configs/lifecycle/consumer.py +75 -3
- amsdal/contrib/frontend_configs/lifecycle/consumer.pyi +77 -6
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py +16 -0
- amsdal/contrib/frontend_configs/utils.py +12 -1
- amsdal/contrib/frontend_configs/utils.pyi +12 -1
- amsdal/fixtures/__init__.cpython-310-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-310-darwin.so +0 -0
- amsdal/fixtures/manager.pyi +90 -8
- amsdal/manager.cpython-310-darwin.so +0 -0
- amsdal/manager.pyi +113 -25
- amsdal/migration/__init__.cpython-310-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.cpython-310-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.pyi +84 -8
- amsdal/migration/data_classes.cpython-310-darwin.so +0 -0
- amsdal/migration/data_classes.pyi +104 -4
- amsdal/migration/executors/__init__.cpython-310-darwin.so +0 -0
- amsdal/migration/executors/base.cpython-310-darwin.so +0 -0
- amsdal/migration/executors/base.pyi +75 -5
- amsdal/migration/executors/default_executor.cpython-310-darwin.so +0 -0
- amsdal/migration/executors/default_executor.pyi +82 -10
- amsdal/migration/executors/state_executor.cpython-310-darwin.so +0 -0
- amsdal/migration/executors/state_executor.pyi +69 -5
- amsdal/migration/file_migration_executor.cpython-310-darwin.so +0 -0
- amsdal/migration/file_migration_executor.pyi +34 -2
- amsdal/migration/file_migration_generator.cpython-310-darwin.so +0 -0
- amsdal/migration/file_migration_generator.pyi +102 -10
- amsdal/migration/file_migration_store.cpython-310-darwin.so +0 -0
- amsdal/migration/file_migration_store.pyi +36 -8
- amsdal/migration/file_migration_writer.cpython-310-darwin.so +0 -0
- amsdal/migration/file_migration_writer.pyi +60 -5
- amsdal/migration/migrations.cpython-310-darwin.so +0 -0
- amsdal/migration/migrations.pyi +111 -6
- amsdal/migration/migrations_loader.cpython-310-darwin.so +0 -0
- amsdal/migration/migrations_loader.pyi +17 -2
- amsdal/migration/schemas_loaders.cpython-310-darwin.so +0 -0
- amsdal/migration/schemas_loaders.pyi +15 -2
- amsdal/migration/utils.cpython-310-darwin.so +0 -0
- amsdal/migration/utils.pyi +46 -6
- amsdal/mixins/__init__.cpython-310-darwin.so +0 -0
- amsdal/mixins/build_mixin.cpython-310-darwin.so +0 -0
- amsdal/mixins/build_mixin.pyi +60 -8
- amsdal/mixins/class_versions_mixin.cpython-310-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.pyi +3 -7
- amsdal/schemas/core/class_object/properties/display_name.py +6 -0
- amsdal/schemas/core/file/hooks/pre_create.py +9 -0
- amsdal/schemas/core/file/hooks/pre_update.py +9 -0
- amsdal/schemas/core/file/properties/from_file.py +12 -0
- amsdal/schemas/core/file/properties/mimetype.py +8 -0
- amsdal/schemas/core/file/properties/to_file.py +12 -0
- amsdal/schemas/core/file/properties/validate_data.py +13 -0
- amsdal/schemas/manager.cpython-310-darwin.so +0 -0
- amsdal/schemas/manager.py +53 -2
- amsdal/schemas/manager.pyi +55 -5
- amsdal/services/__init__.cpython-310-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-310-darwin.so +0 -0
- amsdal/services/transaction_execution.pyi +52 -3
- amsdal/utils/contrib_paths.py +10 -0
- amsdal/utils/contrib_paths.pyi +11 -1
- amsdal/utils/tests/helpers.py +5 -7
- {amsdal-0.1.26.dist-info → amsdal-0.2.0.dist-info}/METADATA +4 -6
- amsdal-0.2.0.dist-info/RECORD +253 -0
- amsdal/operations/__init__.cpython-310-darwin.so +0 -0
- amsdal/operations/__init__.pyi +0 -0
- amsdal/operations/manager.cpython-310-darwin.so +0 -0
- amsdal/operations/manager.pyi +0 -24
- amsdal-0.1.26.dist-info/RECORD +0 -257
- {amsdal-0.1.26.dist-info → amsdal-0.2.0.dist-info}/LICENSE.txt +0 -0
- {amsdal-0.1.26.dist-info → amsdal-0.2.0.dist-info}/WHEEL +0 -0
- {amsdal-0.1.26.dist-info → amsdal-0.2.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
amsdal-0.2.0.dist-info/RECORD,,
|
|
2
|
+
amsdal-0.2.0.dist-info/WHEEL,sha256=ClVOi9g10rI0HLG8M8rsO0ZIZ1smbNYM10V9YDSXCJY,114
|
|
3
|
+
amsdal-0.2.0.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
|
4
|
+
amsdal-0.2.0.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
5
|
+
amsdal-0.2.0.dist-info/METADATA,sha256=Iwl1K4f0gWd_FDumSP4xm10xagtQ3SLzHbJEBqOBSSw,57320
|
|
6
|
+
amsdal/manager.pyi,sha256=CzdgDqKHiSWzsie2BiCXcLIU0nXE_xM-2XUjSlwCrRo,7656
|
|
7
|
+
amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
amsdal/manager.cpython-310-darwin.so,sha256=Qbk_2Axu_v2YFcGYZuwwgJGZAI40wfvp5BIIly6HPRM,355296
|
|
9
|
+
amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
|
|
10
|
+
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=VcPLiGSghykwD290sS5A3hSNtPcz5hoBRgNaUTKdEnY,73573
|
|
11
|
+
amsdal/__about__.py,sha256=KFqkernjLe7hNDYncTsvtnOvle8rBt8BTHJjh4N0Pa8,124
|
|
12
|
+
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
|
13
|
+
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
|
15
|
+
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
16
|
+
amsdal/context/manager.pyi,sha256=9oqHjtub9qqPdIuD2y09IMmRbwSbRBk1T-dXGsWGmMI,1474
|
|
17
|
+
amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
|
20
|
+
amsdal/mixins/class_versions_mixin.pyi,sha256=y6efaYnsym2oSghAPEZ4oDiMLg5FnN7M9worsEODJOU,177
|
|
21
|
+
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=dSCdW4lAtQcymGPVamkNI7MX8GwwIAYL-UZ56Dq2fUg,337464
|
|
23
|
+
amsdal/mixins/build_mixin.pyi,sha256=gNub1Eu4CtnW6qbOLvkxP8mE-WhM2k8Ru4R4th5905s,2395
|
|
24
|
+
amsdal/mixins/__init__.cpython-310-darwin.so,sha256=MmFAOCvtxgdJq9ZQ-Kc5CjBsK7jOlC-mP-eeNKEbQNU,120672
|
|
25
|
+
amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=QpRiuTVHClu9WolDPxa0u0xP0T6XnKwR99c2pkNFVCU,162416
|
|
26
|
+
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
|
28
|
+
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
amsdal/utils/contrib_paths.pyi,sha256=Ngb_2wCTCPJ9NSIqKiP254Ww9xrQzAV1-AiqUkVmiuQ,493
|
|
30
|
+
amsdal/utils/tests/enums.py,sha256=DoVtMzvfePjfLiAVctPDehdTTHawDbWrQP3yg46Bx6k,390
|
|
31
|
+
amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
|
|
33
|
+
amsdal/utils/tests/helpers.py,sha256=AV6TCF328SdfJpQugrCW5p-dDqCaxDABp_bS9hEhMrU,10717
|
|
34
|
+
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
amsdal/contrib/__init__.cpython-310-darwin.so,sha256=HOzwINu7yq3ITOBZ9ybfOgdcAtfzHAiKik4F2zhmbec,120672
|
|
36
|
+
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
|
37
|
+
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
|
38
|
+
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
amsdal/contrib/auth/settings.pyi,sha256=mf0ysPZbmin-Dvk8ZdoohqIpRUZrgmPeryL3HXk9F1M,1011
|
|
41
|
+
amsdal/contrib/auth/app.pyi,sha256=CD5sdl5zu6it5RbF4YGHgLS5Q3aArOS16RY4HZq43_g,512
|
|
42
|
+
amsdal/contrib/auth/errors.pyi,sha256=LXEfxHkbEZuES7PNzBwmS7yP5yqaZGDftscI10SeCx0,131
|
|
43
|
+
amsdal/contrib/auth/settings.py,sha256=4HneHyXD01s5_kAmhnA-13ryi-PfxejbE45YvC_xHHI,1227
|
|
44
|
+
amsdal/contrib/auth/app.py,sha256=MY_MwhI6d1J8IRi232SbBPp-wrcleRc5BIHNW0--ji4,1181
|
|
45
|
+
amsdal/contrib/auth/errors.py,sha256=nXuMLbicP_ScrPuZaSdwkPr7fN66Ox_v6UzknVRy9Jk,134
|
|
46
|
+
amsdal/contrib/auth/migrations/0000_initial.py,sha256=KUlzsBZtBApi4aMC5BEt5Gj2veELdF0Aw9YMIhVjt0Q,4830
|
|
47
|
+
amsdal/contrib/auth/decorators/__init__.pyi,sha256=1DKnpx3dKyeuHyKcnXn0TzVqQxT8qrjQnYYASNSA7fM,305
|
|
48
|
+
amsdal/contrib/auth/decorators/__init__.py,sha256=wdyw0PRO6y1Fx4JnksgLmZbxw2lz1peVItq8fj9zODw,621
|
|
49
|
+
amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
+
amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=LijoSGUqj9qQeK-qTJHPRnRaVbhpS9VWXkTnnZC_pxY,3218
|
|
52
|
+
amsdal/contrib/auth/lifecycle/consumer.py,sha256=x9d0uZXg7NpGnpMKMVKujiFddmHMCBYLVOr13xtruzo,9170
|
|
53
|
+
amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
|
|
54
|
+
amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=tD0bj1JRBbGVGVWE7RVXV5v-FAKhuNPWrMgtkPz3OHg,504
|
|
55
|
+
amsdal/contrib/auth/models/user/hooks/post_init.py,sha256=4Bm-OG2L0kMXo4VffBtWQQ5Vk-Fnh17wHgqzdZUXRe8,1692
|
|
56
|
+
amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=MV67oB2tLvoizEF4w1Hit6I5Tm23QIO2Kb_mnXQoHUI,242
|
|
57
|
+
amsdal/contrib/auth/models/permission/model.json,sha256=goewK66MqrLJHdyNALyMYRBHI4SbAmYhz3uoI7AHziU,257
|
|
58
|
+
amsdal/contrib/auth/models/permission/modifiers/display_name.py,sha256=IEb_zuuk5NLG-LNux4gHiXopDZwaf7ZJK3FXqYJwyBs,366
|
|
59
|
+
amsdal/contrib/auth/models/permission/fixtures/basic_permissions.json,sha256=iQN1KUjNQr4k0EzIzEXONMKWK4i44fTJBUlFF1v0UwY,1329
|
|
60
|
+
amsdal/contrib/auth/models/login_session/model.json,sha256=da5KThOLpXICf0IaA0bOKqVBb46vaZh57bvTaTf65zY,374
|
|
61
|
+
amsdal/contrib/auth/models/login_session/modifiers/display_name.py,sha256=qvI_ppZ0Jl7KWhR8fWiMebXk-ak-jkFyBkinw6ESgZU,295
|
|
62
|
+
amsdal/contrib/auth/models/login_session/hooks/pre_init.py,sha256=neIrT7ENqZzh-PNVbhy9fPrJ8zZTy6mDIVSQOh1H3MA,2196
|
|
63
|
+
amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
|
|
65
|
+
amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
|
|
66
|
+
amsdal/contrib/frontend_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
+
amsdal/contrib/frontend_configs/utils.pyi,sha256=0LuzznNZ4NjuYYXsApfubjUpkG8EVwq-vcd-oHvJtvs,730
|
|
68
|
+
amsdal/contrib/frontend_configs/app.pyi,sha256=Bxdz0kmOF-Poaf2wmoJdgWYmHaStFyOFYTko3b3GpTY,723
|
|
69
|
+
amsdal/contrib/frontend_configs/utils.py,sha256=IruaUNl4xkOr2IIFzlvrmi06vEu3CWx49GzLBsrCFU0,1103
|
|
70
|
+
amsdal/contrib/frontend_configs/app.py,sha256=fY4GukBM6GKSZExT0EgddTamLfUJHwQZS8tOwVQyeSY,836
|
|
71
|
+
amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=sx1aIIwciX9qRmU8znjuUVMIx6dEwVjvlyo1TKS1KM8,13513
|
|
72
|
+
amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
+
amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=aSAazBgugl0ltSQSQ35CX71jwOCbTzLl5uWloVWwNOw,3698
|
|
75
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=GZMY9ipeaHCV4tft84Cf_rJtf5jmiG5NZ4xosnhUygI,9158
|
|
76
|
+
amsdal/contrib/frontend_configs/models/frontend_control_config/model.json,sha256=U_AB2OMdSbhsM7OksOexmettKlxoGcPfJedhMur2mMw,6791
|
|
77
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json,sha256=Mkk3rsx9UwG9EnUOnCxN-xMChEKjEJh4ql3HmBLH5FM,119
|
|
78
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py,sha256=009_69Jc2zKmJ4bQWbVG7HeT2QWvXc2g8D1jyZ6aoL0,426
|
|
79
|
+
amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json,sha256=o1F7R3RQecv7bT4NxGvgDSK93Z6eQCvtgDtr2gHdS6g,1061
|
|
80
|
+
amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json,sha256=5fnGtWrxK_nzedI60umO7b3TDQkRGnGV9HOgoqmrV9Q,233
|
|
81
|
+
amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json,sha256=NgC8M1O4ciDF7S3kUz5dwaNATKbKH0JwD1-qB9h5qWo,1387
|
|
82
|
+
amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py,sha256=SfDvyKtP7r2MOFe1pQMfmNpuo_fgyj5HFGT0RUynJ_I,1034
|
|
83
|
+
amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json,sha256=aNcoBkQCWFQao0Nbjw0tfKRl25nE2tt4AgM0myc07Sc,1366
|
|
84
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config/model.json,sha256=IF_jrqlsaTowlyb3MMkNoLh6t5fTaDX8LPYA9ptmPKI,339
|
|
85
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config/fixtures/permissions.json,sha256=enVlQVTn32_hSevxFkCtnaNzSuz__VvlZHBMVSQNucw,644
|
|
86
|
+
amsdal/contrib/frontend_configs/models/frontend_config_text_mask/model.json,sha256=lxCWq0FEkFG8BA9qjg7TXWsFUwlGeBzhlBaKe_M0swk,586
|
|
87
|
+
amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json,sha256=rVLe1pEQyCuuO0OOwQO5-cdEyEF1mE6nlnkq8_E-UwE,411
|
|
88
|
+
amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json,sha256=ycIDZ7CcEb5qvb2pBzsTBJx2gBKV9dTOVG6QWqb0c0U,240
|
|
89
|
+
amsdal/contrib/frontend_configs/models/frontend_config_option/model.json,sha256=x0Xhp1_AMCAiqeBDY8Peg29vfbhkrFkyrff6Py1bYxQ,315
|
|
90
|
+
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
|
91
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=4wkE8-oswApNbTzFTQ9azEwLGQqAToaHcHcDTTg2EFk,7604
|
|
92
|
+
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=zl-M_yK9n3LvbOjs6GDpOfWBO10rsPrqA06zusICNew,979
|
|
93
|
+
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
|
94
|
+
amsdal/schemas/manager.pyi,sha256=Trl6hVRoerdyTlKNYYk8QuhAsDWKj57gMgKRhMg4Ksk,2804
|
|
95
|
+
amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
amsdal/schemas/manager.cpython-310-darwin.so,sha256=4V5sAgVcerZWiEI8S56vrcjI5Y0E3ukdArUqJcEQll8,232896
|
|
97
|
+
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
+
amsdal/schemas/manager.py,sha256=PzJXc1xKs2_sS1SDfSJ0B_jftFfOqCDZrBywvRI7we4,4639
|
|
99
|
+
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
|
100
|
+
amsdal/schemas/types/datetime/model.json,sha256=DROVOPm0uQXy4qUj4mQUnhvfT_67psrQJj8psVRYjrA,120
|
|
101
|
+
amsdal/schemas/types/date/model.json,sha256=_siNphlfvq-bZ29Z3tloQlxh1_zRsEkXuO5HJsXmDSE,116
|
|
102
|
+
amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
|
|
103
|
+
amsdal/schemas/types/object/model.json,sha256=Pfas7ElCmAHJpOrVbmHm2goIoeErop816AIXdFsJGes,965
|
|
104
|
+
amsdal/schemas/types/anything/model.json,sha256=detUw-DW5nEl7Syy_J6eyPfi_yj5HQQ_X_GE5Fo1Zqs,120
|
|
105
|
+
amsdal/schemas/types/dictionary/model.json,sha256=Q1__6DIdJ81mrakmrN3c17PMoW05ri6Pz7cb_G0PeuM,133
|
|
106
|
+
amsdal/schemas/types/boolean/model.json,sha256=FBBjA6YdkkgkhpMIZd294862S3_mAjb8wxMqunKrGcE,240
|
|
107
|
+
amsdal/schemas/types/binary/model.json,sha256=pbmucBgX_BhD37k0KD_j7Nt5N_R-xorrezIg37n3Tz0,118
|
|
108
|
+
amsdal/schemas/types/string/model.json,sha256=aC4VIBC2Si6CJNhRh-_7R24CbNy_-rRbFKiTUayT3aI,127
|
|
109
|
+
amsdal/schemas/core/validator/model.json,sha256=JN62rw_UOPk6iiKWtKRNG1OmFQeiX7EEIVbRFnCkj7o,297
|
|
110
|
+
amsdal/schemas/core/file/model.json,sha256=s_sQpToj5zeSYgkR9AFPvdm5dz2YiFH9Lm9EwzGcM1E,340
|
|
111
|
+
amsdal/schemas/core/file/properties/str.py,sha256=r2RAz6uBxEFJjRJGBYk4yWXzmLyZ_zR6DmnsubPY4Fs,245
|
|
112
|
+
amsdal/schemas/core/file/properties/mimetype.py,sha256=Y2hTq82Da8KeuRsIV4RK3E1F7sbsu12dWqD99kD3Inw,433
|
|
113
|
+
amsdal/schemas/core/file/properties/to_file.py,sha256=qzlfo4YHBtsf11S2Hy30AjvA7Lyi8ezsGEXqxGBOPVg,720
|
|
114
|
+
amsdal/schemas/core/file/properties/validate_data.py,sha256=1LsIAdijogQa6uJp6O2wQ7shAJMgWPvYps02HRVzttA,919
|
|
115
|
+
amsdal/schemas/core/file/properties/from_file.py,sha256=fdIuz40QctfTtLTkkaGO7ut61AO3geYxSASirE14GRc,926
|
|
116
|
+
amsdal/schemas/core/file/hooks/pre_create.py,sha256=kF5BMWo_W_pEhPhO0RQqgyPeWt0LTCCkbpvyVOqS7g0,366
|
|
117
|
+
amsdal/schemas/core/file/hooks/pre_update.py,sha256=0dJakQjL3x94TyRgyGobAiPTfRrLUSHOL21mTL361pw,356
|
|
118
|
+
amsdal/schemas/core/fixture/model.json,sha256=m2v-zkH-MsUlH8cc459-gtNCGHAozHSkGAgSVj9kQb8,568
|
|
119
|
+
amsdal/schemas/core/option/model.json,sha256=bD1WHbnAnU6Ws_U10BZ8oeHaQbVgE1lBWYFcjANeHNI,277
|
|
120
|
+
amsdal/schemas/core/class_property_meta/model.json,sha256=X5i5FLlq-BhP8MDFPki7nu_FSdcpsAWXOe3u-mULKUA,390
|
|
121
|
+
amsdal/schemas/core/class_object_meta/model.json,sha256=Rye9cqv_HyZKaCl_UECqYx8eCd3CFta4YbpZJ8QvrdQ,950
|
|
122
|
+
amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
|
|
123
|
+
amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
|
|
124
|
+
amsdal/schemas/core/class_object/properties/display_name.py,sha256=F2Ox-MJa8EndMq7Ox10VaismKe44w2zxnYhsVhBHPOI,256
|
|
125
|
+
amsdal/__migrations__/0001_datetime_type.py,sha256=yHTgWi1XxeJ5hWQFtro2XzEinlKoIau1S7jYlj0UXtE,597
|
|
126
|
+
amsdal/__migrations__/0000_initial.py,sha256=kPSE-aFasdi6jLMO5vIbpMK7hLiaR2TAqMdX2lGTf_s,10318
|
|
127
|
+
amsdal/__migrations__/0002_fixture_order.py,sha256=NbRffgnyP2_JCnH-OGbXs0NjVbS3cotPnuvSgpcn0Tw,1598
|
|
128
|
+
amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
amsdal/configs/constants.pyi,sha256=ZoWj8V0YkrPaY0zBsXCenwuWMQIQ0K6hnzr4We9CRl0,683
|
|
130
|
+
amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,969
|
|
131
|
+
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
+
amsdal/configs/main.pyi,sha256=mVr27fnB05XsRoFk_o0LMB4Ug-dNaPJlDHKdrUZPrLw,6881
|
|
133
|
+
amsdal/configs/main.py,sha256=GWunT_7daFf6t5Jre16zvOyQIRyA7LWjuz8BzTgVztw,9169
|
|
134
|
+
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
+
amsdal/cloud/enums.cpython-310-darwin.so,sha256=cVkAaUL97ANuKwIvtu4tlSC0v5QIFQnJdULXU2dwhSU,158000
|
|
136
|
+
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
|
137
|
+
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
|
138
|
+
amsdal/cloud/client.cpython-310-darwin.so,sha256=TTJUNKrh-4sWu5L9t9MPe7dFyOGXbNWz0Irvrm17PFs,215952
|
|
139
|
+
amsdal/cloud/__init__.cpython-310-darwin.so,sha256=A7ciRFS0eSwWozHSHWWeltFrLdEHkrjl3X-ARGSkZhU,120656
|
|
140
|
+
amsdal/cloud/constants.cpython-310-darwin.so,sha256=WglFdlKHmiiHzm8fzXsyOHKrR_41CwYLJym6HSHZVsw,158624
|
|
141
|
+
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
|
142
|
+
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
|
143
|
+
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
amsdal/cloud/models/base.cpython-310-darwin.so,sha256=1DwVpZ1q1AE7BZxrlAa-jttGYSuqymht_bUx34ea9n4,211584
|
|
145
|
+
amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=otIkb_HdhyCriLHgyW4d-HQo8mBEi1n8otWP088GmEQ,120688
|
|
146
|
+
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
+
amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=_dWhVIKRLm9g20JhjWhqvUGCiNYJUbTYDmRJRuav4Qs,120704
|
|
148
|
+
amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=i9RLypt4dDL7u51IX_DjeoVv_JFlLmVLDnkT4bEXjyI,251008
|
|
149
|
+
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
|
150
|
+
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
|
151
|
+
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
+
amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=Bx0aQIW8MxYBia74SFYp7AJDaxnHdC3kW2kQ21IWtjQ,214080
|
|
153
|
+
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
|
154
|
+
amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=uqAL3FplvLOGKYfuA-hmwsoi9w-nEYDa9G3JICTA8FY,163040
|
|
155
|
+
amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=cDSQ3SlXuLht28lPOxO_Ec53BmjojbyWVhwk-L8fLD0,120720
|
|
156
|
+
amsdal/cloud/services/auth/token.pyi,sha256=-SCK3mrIYpQgQUBc4roijltOZfKzZl0EqI5yCIDNVCI,1108
|
|
157
|
+
amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=ux0G07v50dyOkAgykypGbPktpUAZnMuz_vNDu_yqR38,253128
|
|
158
|
+
amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=OdQ-FN8ioqAxLYlPgbeojCyYTrCTfQdKNWwUkEfd07Q,216152
|
|
159
|
+
amsdal/cloud/services/auth/credentials.pyi,sha256=94MbGuKwVw7T_JJjpsHBkXpjI0BedVY2KSrOjzSP97E,1483
|
|
160
|
+
amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=qTkN_yiJ3fWJJkGzHKFRQgVUjHdGzY84iAUumMHE2_o,180984
|
|
161
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=4I8no_4QxHsqMeCPxF6qePv5144o8w2TffmZV8soPE4,180472
|
|
162
|
+
amsdal/cloud/services/actions/list_envs.cpython-310-darwin.so,sha256=iQ-uNxNrgEjV1D4YaO-W_8TanO_LwKdypm4S_qWaBZM,180688
|
|
163
|
+
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
|
164
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=hkQlE2bennHy7lmVqFM249p844s3qN5LQiMzI42fvds,181240
|
|
165
|
+
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
|
166
|
+
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
|
167
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
|
168
|
+
amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=EkeJ7lHf1ueFUMwdBiiSGqubMYAgB8u0MT4J_8JP2AE,252600
|
|
169
|
+
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
|
170
|
+
amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=ASE34wmjpSj7RSgZRXQVmt8tRMU2OkS03ZBNUZpm5mo,180920
|
|
171
|
+
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
|
172
|
+
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
+
amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=Wp9mwN_ezFU_rl9llXfiY_U-ikkfidSH7cH_WsE0Gok,371248
|
|
174
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
|
175
|
+
amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=UQpLPdB9k4c7UD1RE8QjHjjJVTs8rc5k-uWiRmVJ6KY,323504
|
|
176
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-310-darwin.so,sha256=uCcFfEXD1iiiP_OL9sRcLoqZAVEu--QHu8AoanT_I9E,181016
|
|
177
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-310-darwin.so,sha256=86EtE78LDznhQh5XbHMLVo0C2U7j7gYLX_y9qPXomFk,180712
|
|
178
|
+
amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=qD4Y-UIamLuc_hnVnCLku2vzZfaeQbEM_JuHWkEoHso,180520
|
|
179
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-310-darwin.so,sha256=L2IDcJIii-iJBsuqz9t1pukhJy4IlyshB_4XCq4Bp74,180680
|
|
180
|
+
amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=HQBawulzvQnLmg1lWyARv_3CKtBtBEtETC32vCjTdb8,181120
|
|
181
|
+
amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=QmLJrlPhDHLdu89XP6PTVX-8wN4aJsmRsxC_dC2jkMI,180584
|
|
182
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=TTyns1i89y6aVCGLvm80lOym1fuYQ8-eCuRB92pYUdI,180696
|
|
183
|
+
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
|
184
|
+
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
|
185
|
+
amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=aeb9n7vn7m7-tZvTnwr87qebkKvTB4UNNlMvbWFPC4E,181240
|
|
186
|
+
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
|
187
|
+
amsdal/cloud/services/actions/delete_env.cpython-310-darwin.so,sha256=43xUL9TxbksO6MrNeQ2BISsktQlbWQatzAEaK-NhP5M,180760
|
|
188
|
+
amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=P6xGkcpeZEViNlU-IW8sMHF3mqDd4UBekPrZQuX-_zk,120736
|
|
189
|
+
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
|
190
|
+
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
|
191
|
+
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
|
192
|
+
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
|
193
|
+
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
|
194
|
+
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
|
195
|
+
amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=e9h361PZCPtagwbStWdBLatNyHz2aUa51rWHfQMObh8,180632
|
|
196
|
+
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
|
197
|
+
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
|
198
|
+
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
|
199
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-310-darwin.so,sha256=QQ2IvnDUzGVwOu-QMz1pM7SjmcIUA9HeibY0RDjDivw,180768
|
|
200
|
+
amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=OetZER49HqRBk8C_AiLtUJSoUeGVd8h_xgfnYYD8znQ,180648
|
|
201
|
+
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
|
202
|
+
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
|
203
|
+
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
|
204
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-310-darwin.so,sha256=vVswFjxH5vIDz6s__R6mEOSBqlv9p4GqE01R_Ebi0fY,181048
|
|
205
|
+
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
|
206
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-310-darwin.so,sha256=yiRC4oCEXy5fYatoSff8pPjRtLISu_5D4HUgiFatAm8,180912
|
|
207
|
+
amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so,sha256=ox5oMS17eqXPTe525Dc6gn-RRRAWaZXPMQeFtqA5MMA,180984
|
|
208
|
+
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
|
209
|
+
amsdal/cloud/services/actions/create_env.cpython-310-darwin.so,sha256=ldWwxPWO3R0h2-gJbWwligDdry8cpD8CR1Y9FdqpruI,180760
|
|
210
|
+
amsdal/fixtures/manager.pyi,sha256=kL4HYcYnjIii4Va3Sb8WqCxpoXzLe25wCFnp2Uz0k0k,4948
|
|
211
|
+
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
|
+
amsdal/fixtures/manager.cpython-310-darwin.so,sha256=uXG6DOAuYmJ_L-EoaeG3zfzAAp0JUYX9x8Qd_LyxeYU,409072
|
|
213
|
+
amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=eGeSZ2xpxidkH_-6U3T9CrMMXB39l4US9ytKJmEzJtY,120672
|
|
214
|
+
amsdal/migration/base_migration_schemas.cpython-310-darwin.so,sha256=7vY9Hkdqq-ZEIkx1I_qohw8qDavvtR6MDi-k1I-NaYM,462464
|
|
215
|
+
amsdal/migration/file_migration_store.pyi,sha256=ijFmdl5bjrPE8cqyS0WeUy5ZN_v08lLCuXA23woVXgg,2257
|
|
216
|
+
amsdal/migration/file_migration_executor.pyi,sha256=pxhk5mxoXTkz8NX5gMMv_WC2sUdxpuMSXNjv9sNJCBk,3982
|
|
217
|
+
amsdal/migration/migrations_loader.pyi,sha256=i1TsBHT52piM-gAGJGjYplbZHJJtZvJ83b_-gYSN2xU,1129
|
|
218
|
+
amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
+
amsdal/migration/file_migration_writer.pyi,sha256=yIWvdLciu6Dnr0ZwplvZdMKxN4rl8BazotFrOxfCLh0,2275
|
|
220
|
+
amsdal/migration/base_migration_schemas.pyi,sha256=l2bGckKVR7wkilFv9LueCr3nUq6g9IPOj-dDPUTrw34,5200
|
|
221
|
+
amsdal/migration/data_classes.pyi,sha256=fgeV5Fv0YyP5GcHaLLjPcPusqIckZLGI-E_QZ5NIeKI,5834
|
|
222
|
+
amsdal/migration/utils.pyi,sha256=AM1jSDzwuT_Tt1DdT3ZlDtud-prPc6ytlanw2vPkqvI,2435
|
|
223
|
+
amsdal/migration/__init__.cpython-310-darwin.so,sha256=79HCsR9qCZnOELT0CYE_9I0RmQbnLQrindCtZ-7aOK8,120688
|
|
224
|
+
amsdal/migration/migrations.cpython-310-darwin.so,sha256=HwX0cJZL3D4EGzJYwop7PqR6Twj0MCH2nz6F1biMQmE,267896
|
|
225
|
+
amsdal/migration/schemas_loaders.pyi,sha256=al7V-fO1z88go1eitWLWolxNSJNjTsZRLg0gYYvi2A8,1607
|
|
226
|
+
amsdal/migration/data_classes.cpython-310-darwin.so,sha256=wlIgyKB3rAxGPrFZinLpy4Swt2VNs0GtdXU32wnAd4Q,216936
|
|
227
|
+
amsdal/migration/file_migration_store.cpython-310-darwin.so,sha256=JwEeiCc9aYfBIhYnvCaB_jb-C_M2xB6IXJLxv_yu2Xo,407792
|
|
228
|
+
amsdal/migration/migrations_loader.cpython-310-darwin.so,sha256=2qGsZVhM881k-7FVaYYEmvAHYT4sNq8VvOz7OHSA1pI,217560
|
|
229
|
+
amsdal/migration/file_migration_executor.cpython-310-darwin.so,sha256=5m0f-TrOuuvPkEBk9kMNetwL96oJ-S_LoyFqRwg99zg,354752
|
|
230
|
+
amsdal/migration/schemas_loaders.cpython-310-darwin.so,sha256=goMaVWA5He05cdE1YPzmsp5RDhV7g2wi4EjEZV6OZ30,256760
|
|
231
|
+
amsdal/migration/file_migration_generator.cpython-310-darwin.so,sha256=oOz0-2W3ZymzNFlE8Y_USQfBajjTrJSw3iAz6mX5hXs,393984
|
|
232
|
+
amsdal/migration/file_migration_generator.pyi,sha256=KbQnN0ySKLNNOIqXrQ1ZGWwyPRtGYMiN-B0y8h0HEBs,5815
|
|
233
|
+
amsdal/migration/utils.cpython-310-darwin.so,sha256=a1W70_n7_mja6hDFxqIQI40tb5GtPTBKwQHAaop9uE8,303184
|
|
234
|
+
amsdal/migration/file_migration_writer.cpython-310-darwin.so,sha256=Fex_goLx1dJ0m_xewlkuYFQCMacRBZG0wyOh4JNVmkE,252336
|
|
235
|
+
amsdal/migration/migrations.pyi,sha256=lvQ29dMRu3EfaiyiSn9U1GhFlBE6l94Yh5AeJcWpcHw,6079
|
|
236
|
+
amsdal/migration/executors/base.pyi,sha256=Uth5pOgA8de0DjPWOiPPJWtuo1Ph4QVL2133JRD1euE,4883
|
|
237
|
+
amsdal/migration/executors/state_executor.pyi,sha256=AHMe16WSVZUMMKyLaPpZbdRq_uzV09QtmJcBXYIXJ_w,3397
|
|
238
|
+
amsdal/migration/executors/default_executor.cpython-310-darwin.so,sha256=LhVjuC1r4E3Mf9Kuqt94v82qGxPqx_4bNy4CNXuhVUk,543560
|
|
239
|
+
amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
+
amsdal/migration/executors/base.cpython-310-darwin.so,sha256=QX3m59I2MS3ugKMRUqBZisT7znWHvvTO3la0M4_tYZw,303936
|
|
241
|
+
amsdal/migration/executors/__init__.cpython-310-darwin.so,sha256=u0CezHgFOV88lhR1y_V_pwpo5JsZT8NbJkSIVBW8A2o,120736
|
|
242
|
+
amsdal/migration/executors/default_executor.pyi,sha256=HabItIKp3-t0YGXQOqLMGFxn2o-5KaOvgE8ClbAa-n0,4880
|
|
243
|
+
amsdal/migration/executors/state_executor.cpython-310-darwin.so,sha256=b3DoJxpEgkM-5H6IT9g10GTtW8jcRHV6jKEPl__t9-U,250520
|
|
244
|
+
amsdal/migration/templates/model_class_layout.tmpl,sha256=ttbq0xgimvHn-ffM4ZSj2_DMH5srCmUtkwGd38pyDXY,766
|
|
245
|
+
amsdal/migration/templates/options_validator.tmpl,sha256=gF_uiYONVad4OEILZeIdrepcHOFhwPq3nu0NJX8I1EA,205
|
|
246
|
+
amsdal/migration/templates/model_class.tmpl,sha256=t0y_OlxVmJe5RRg8pxO0XyUM3q1sAuv458q8wmDvh-8,225
|
|
247
|
+
amsdal/migration/templates/data_migration.tmpl,sha256=MzDSiNqH006F1cs-dskpboInBja5LZ8ErtoEmRzDsIQ,436
|
|
248
|
+
amsdal/migration/templates/migration.tmpl,sha256=WZe7A1lchoiqZZhGL2YUKVzafMPRiW9l7jYPmQoSOtU,193
|
|
249
|
+
amsdal/migration/templates/dict_validator.tmpl,sha256=5lRGN9hNBVRqVcbeNQuU4v5koRzS6tJAibzOqjCUXSI,173
|
|
250
|
+
amsdal/services/transaction_execution.pyi,sha256=xYxfnCO7oNy1tWRrHvBQp4k2uk33emwHHMt_uk4oi1A,3440
|
|
251
|
+
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
+
amsdal/services/__init__.cpython-310-darwin.so,sha256=80geM1X7GpRjOs9EqvpWIKrwMOEUwKpAzNOVrAJ1LhM,120672
|
|
253
|
+
amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=qGScxyQ8XxxW3ikiQrbVQnVC2bKIJBngIRmA_3XFrKw,379936
|
|
Binary file
|
amsdal/operations/__init__.pyi
DELETED
|
File without changes
|
|
Binary file
|
amsdal/operations/manager.pyi
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
from amsdal.errors import AmsdalAuthenticationError as AmsdalAuthenticationError
|
|
2
|
-
from amsdal_data.connections.base import ConnectionBase
|
|
3
|
-
from amsdal_data.connections.historical_base import HistoricalConnectionBase
|
|
4
|
-
from amsdal_data.connections.state_base import StateConnectionBase
|
|
5
|
-
from amsdal_data.operations.enums import OperationType
|
|
6
|
-
from amsdal_data.operations.manager import OperationsManagerBase
|
|
7
|
-
from amsdal_models.classes.model import Model
|
|
8
|
-
from amsdal_utils.models.data_models.address import Address
|
|
9
|
-
from amsdal_utils.models.data_models.metadata import Metadata as Metadata
|
|
10
|
-
from typing import Any
|
|
11
|
-
|
|
12
|
-
class OperationsManager(OperationsManagerBase):
|
|
13
|
-
def _get_connections(self, obj: Model, using: str | None) -> list[ConnectionBase]: ...
|
|
14
|
-
def _perform_state_operation(self, obj: Model, data_dump: dict[str, Any], operation: OperationType, connection: StateConnectionBase) -> None: ...
|
|
15
|
-
@classmethod
|
|
16
|
-
def clear_data(cls, _value: Any) -> Any: ...
|
|
17
|
-
def _is_reference(self, _value: Any) -> bool: ...
|
|
18
|
-
def _perform_historical_operation(self, obj: Model, data_dump: dict[str, Any], operation: OperationType, connection: HistoricalConnectionBase) -> None: ...
|
|
19
|
-
def _preprocess_object(self, obj: Model, operation: OperationType) -> None: ...
|
|
20
|
-
def perform_operation(self, obj: Model, operation: OperationType, using: str | None = None) -> None: ...
|
|
21
|
-
def _generate_references(self, address: Address, data: Any, reference_buffer: list[tuple[Address, dict[str, Any]]]) -> None: ...
|
|
22
|
-
def _perform_historical_bulk_operation(self, objects_data: list[tuple[Model, dict[str, Any]]], operation: OperationType, connection: HistoricalConnectionBase) -> None: ...
|
|
23
|
-
def _perform_state_bulk_operation(self, objects_data: list[tuple[Model, dict[str, Any]]], operation: OperationType, connection: StateConnectionBase) -> None: ...
|
|
24
|
-
def perform_bulk_operation(self, objs: list[Model], operation: OperationType, using: str | None = None) -> None: ...
|
amsdal-0.1.26.dist-info/RECORD
DELETED
|
@@ -1,257 +0,0 @@
|
|
|
1
|
-
amsdal/manager.pyi,sha256=v1zEL7LApkM_RsuV-cfAFJhQn9OfREF8mXq_NXwr1Hw,4652
|
|
2
|
-
amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
amsdal/manager.cpython-310-darwin.so,sha256=dlIU407YyWvJFpYzPXvXUFavMznpPYuJs9lTJBR1M9I,356608
|
|
4
|
-
amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
|
|
5
|
-
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=VcPLiGSghykwD290sS5A3hSNtPcz5hoBRgNaUTKdEnY,73573
|
|
6
|
-
amsdal/__about__.py,sha256=WulgUEBVJZ0nr5Dg_hLSsA5YPG3YMuTR5Yf7ixb-Uf4,125
|
|
7
|
-
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
|
8
|
-
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
|
10
|
-
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
11
|
-
amsdal/context/manager.pyi,sha256=Z-c3m28Wh2-WnEF7EGZkUKO6OIFlaMO3w6RkXRnNakY,357
|
|
12
|
-
amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
amsdal/context/manager.py,sha256=EzwuXiF3_Q3slDCNkVcFhVXkgMtOvQOEwBNA8YRBMnc,720
|
|
15
|
-
amsdal/mixins/class_versions_mixin.pyi,sha256=0rKwUtWCNwAqhwmb-GHHIDXyagDw2dmcbgK0l4-HbVg,445
|
|
16
|
-
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=FNr7XUgEMV7UmHD6YgK2F28tL-nynIaJXcYGx25VqAI,336872
|
|
18
|
-
amsdal/mixins/build_mixin.pyi,sha256=txN2JgdHhKR4SzmkvdAPGdEbtjhMdy8dp5YXMp-rxus,1031
|
|
19
|
-
amsdal/mixins/__init__.cpython-310-darwin.so,sha256=4ECKf_kz5HE_-CRs6R-Va3PQ2g9yTdq7azxPhzCqYZo,120672
|
|
20
|
-
amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=CYrcx8PqB7uF0QtEy1iT086bKZFn0n0RsWROMtX7Eu0,252896
|
|
21
|
-
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
amsdal/utils/contrib_paths.py,sha256=irgD76LmgjzsTUAkr6cPFOsypek7-Gbtwv2tyz3u9xo,422
|
|
23
|
-
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
amsdal/utils/contrib_paths.pyi,sha256=eRa6C3zITVe0UsvO15oGNOXcGz8L5n4gGZR60W96SBw,132
|
|
25
|
-
amsdal/utils/tests/enums.py,sha256=DoVtMzvfePjfLiAVctPDehdTTHawDbWrQP3yg46Bx6k,390
|
|
26
|
-
amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
|
|
28
|
-
amsdal/utils/tests/helpers.py,sha256=cEcJkpPsfOZx2wR7lfWn-f5xdGLJf-accMbMWoE4g7s,10827
|
|
29
|
-
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
amsdal/contrib/__init__.cpython-310-darwin.so,sha256=4Nfq1nS3CMEAYdS54hcHWNOqNPeBcxed1yuT9etR0C8,120672
|
|
31
|
-
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
|
32
|
-
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
|
33
|
-
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
amsdal/contrib/auth/settings.pyi,sha256=eSWeS3wW7kcHgDjyZNWqEtLV8GqnKMI5kLKwJ8D2fmM,332
|
|
36
|
-
amsdal/contrib/auth/app.pyi,sha256=1Un87k2RXbk2xDQmin61rOQCN39otkVD93ps2AbSGzA,130
|
|
37
|
-
amsdal/contrib/auth/errors.pyi,sha256=LXEfxHkbEZuES7PNzBwmS7yP5yqaZGDftscI10SeCx0,131
|
|
38
|
-
amsdal/contrib/auth/settings.py,sha256=lLTgAhxhjz-EoH8MVFsVld-U1sqGHq-TRwvneNBMWd4,547
|
|
39
|
-
amsdal/contrib/auth/app.py,sha256=TZlPo5Bgvqi3cat3op6V8a79m7oGPDSR6ExmFVnFLL8,794
|
|
40
|
-
amsdal/contrib/auth/errors.py,sha256=nXuMLbicP_ScrPuZaSdwkPr7fN66Ox_v6UzknVRy9Jk,134
|
|
41
|
-
amsdal/contrib/auth/migrations/0000_initial.py,sha256=KUlzsBZtBApi4aMC5BEt5Gj2veELdF0Aw9YMIhVjt0Q,4830
|
|
42
|
-
amsdal/contrib/auth/decorators/__init__.pyi,sha256=1DKnpx3dKyeuHyKcnXn0TzVqQxT8qrjQnYYASNSA7fM,305
|
|
43
|
-
amsdal/contrib/auth/decorators/__init__.py,sha256=wdyw0PRO6y1Fx4JnksgLmZbxw2lz1peVItq8fj9zODw,621
|
|
44
|
-
amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=GY7jv5xSQ-sAfy9A1YTlSTlb6ejAWjusJZ0wZIDMT_k,1014
|
|
47
|
-
amsdal/contrib/auth/lifecycle/consumer.py,sha256=jzDqtxVwVOsa-4YCAcvAGnpOAbCtI86z9SpT73EYGas,6951
|
|
48
|
-
amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
|
|
49
|
-
amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=MUC4b1aX8cxt9FkfaAWzMwBhaK3ktcotoIIJsV511qY,326
|
|
50
|
-
amsdal/contrib/auth/models/user/hooks/post_init.py,sha256=vSfh4herm0-PiY6wBOt4mvZcMY_dbXX2Ea8qI0DfgZ8,1180
|
|
51
|
-
amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=wqzyO-YZhmmC3GNUszIndr4b8wJ69Z_67ckgCro8pSI,71
|
|
52
|
-
amsdal/contrib/auth/models/permission/model.json,sha256=goewK66MqrLJHdyNALyMYRBHI4SbAmYhz3uoI7AHziU,257
|
|
53
|
-
amsdal/contrib/auth/models/permission/modifiers/display_name.py,sha256=BXyBT0CC5gihQyGgpqPYCcP4VDxgJYqXckIhJZHcNlo,136
|
|
54
|
-
amsdal/contrib/auth/models/permission/fixtures/basic_permissions.json,sha256=iQN1KUjNQr4k0EzIzEXONMKWK4i44fTJBUlFF1v0UwY,1329
|
|
55
|
-
amsdal/contrib/auth/models/login_session/model.json,sha256=da5KThOLpXICf0IaA0bOKqVBb46vaZh57bvTaTf65zY,374
|
|
56
|
-
amsdal/contrib/auth/models/login_session/modifiers/display_name.py,sha256=o486mpmXvHDGs2Azf9BLYeExq_kBKd3z2uwYYltVjTw,117
|
|
57
|
-
amsdal/contrib/auth/models/login_session/hooks/pre_init.py,sha256=LV4_u2in3aebpPN2v2s3enbY_MHV5M7Yx3HLTUIsUis,1667
|
|
58
|
-
amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
|
|
60
|
-
amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
|
|
61
|
-
amsdal/contrib/frontend_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
amsdal/contrib/frontend_configs/utils.pyi,sha256=e2uGkN1rlGvCae9xHwm_uKhNrKnRvhOp5Gyt9GMcwzU,226
|
|
63
|
-
amsdal/contrib/frontend_configs/app.pyi,sha256=OlFt0PNh4lIQc_K5EAK9ILTFivvkzdz6Ey24OB0258w,347
|
|
64
|
-
amsdal/contrib/frontend_configs/utils.py,sha256=-vhSCdyaunBcmJ6W9YxPS84BVYM9kpxWuT2rNshbjyg,599
|
|
65
|
-
amsdal/contrib/frontend_configs/app.py,sha256=W86wM0e4ELgF5_-q53dtT7gsC0zx_rE3IzYg04WH7ds,455
|
|
66
|
-
amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=sx1aIIwciX9qRmU8znjuUVMIx6dEwVjvlyo1TKS1KM8,13513
|
|
67
|
-
amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
-
amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=3JjnSuPr4tcWecEgtkyPvoY8C4INA5a1lfB30l1KFns,734
|
|
70
|
-
amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=P8IDIeb727JhA0b1ktHIYXH-IsmXlyJzXLdTmq0XW_c,6165
|
|
71
|
-
amsdal/contrib/frontend_configs/models/frontend_control_config/model.json,sha256=U_AB2OMdSbhsM7OksOexmettKlxoGcPfJedhMur2mMw,6791
|
|
72
|
-
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json,sha256=Mkk3rsx9UwG9EnUOnCxN-xMChEKjEJh4ql3HmBLH5FM,119
|
|
73
|
-
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py,sha256=009_69Jc2zKmJ4bQWbVG7HeT2QWvXc2g8D1jyZ6aoL0,426
|
|
74
|
-
amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json,sha256=o1F7R3RQecv7bT4NxGvgDSK93Z6eQCvtgDtr2gHdS6g,1061
|
|
75
|
-
amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json,sha256=5fnGtWrxK_nzedI60umO7b3TDQkRGnGV9HOgoqmrV9Q,233
|
|
76
|
-
amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json,sha256=NgC8M1O4ciDF7S3kUz5dwaNATKbKH0JwD1-qB9h5qWo,1387
|
|
77
|
-
amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py,sha256=chhb5_59TKhajCc1McRvZ7hI929DqAs7cSBFb1Ry9LE,541
|
|
78
|
-
amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json,sha256=aNcoBkQCWFQao0Nbjw0tfKRl25nE2tt4AgM0myc07Sc,1366
|
|
79
|
-
amsdal/contrib/frontend_configs/models/frontend_model_config/model.json,sha256=IF_jrqlsaTowlyb3MMkNoLh6t5fTaDX8LPYA9ptmPKI,339
|
|
80
|
-
amsdal/contrib/frontend_configs/models/frontend_model_config/fixtures/permissions.json,sha256=enVlQVTn32_hSevxFkCtnaNzSuz__VvlZHBMVSQNucw,644
|
|
81
|
-
amsdal/contrib/frontend_configs/models/frontend_config_text_mask/model.json,sha256=lxCWq0FEkFG8BA9qjg7TXWsFUwlGeBzhlBaKe_M0swk,586
|
|
82
|
-
amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json,sha256=rVLe1pEQyCuuO0OOwQO5-cdEyEF1mE6nlnkq8_E-UwE,411
|
|
83
|
-
amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json,sha256=ycIDZ7CcEb5qvb2pBzsTBJx2gBKV9dTOVG6QWqb0c0U,240
|
|
84
|
-
amsdal/contrib/frontend_configs/models/frontend_config_option/model.json,sha256=x0Xhp1_AMCAiqeBDY8Peg29vfbhkrFkyrff6Py1bYxQ,315
|
|
85
|
-
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
|
86
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=jUUa4iIuZiD8hRGxwokpWWWn3HLGSF5gf_eenfkNBeg,6995
|
|
87
|
-
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=PfB8BT9zvDFU1f_Ob0ygX5qKhUMYYJNlrGYxKyYzjiw,374
|
|
88
|
-
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
|
89
|
-
amsdal/operations/manager.pyi,sha256=Eo5EoqXWC-YHazh4bpYzsrhN7EIBHOxKjh0WHAP7cUw,1963
|
|
90
|
-
amsdal/operations/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
amsdal/operations/manager.cpython-310-darwin.so,sha256=2KznIatDx0047q7lZ4mStBh1BE56LxJ_H6uroeyzIM0,405232
|
|
92
|
-
amsdal/operations/__init__.cpython-310-darwin.so,sha256=lO_PK1Q7BnT6TiuKtm1omCePO35I95uTDRlSqAuOtF8,120688
|
|
93
|
-
amsdal/schemas/manager.pyi,sha256=RLCBviXDNFgaktueRwp9KTP49D9SLJ4WYRqGAbAeVP4,785
|
|
94
|
-
amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
amsdal/schemas/manager.cpython-310-darwin.so,sha256=ZTB0yN0dLhNSAKucE1XczcTMen5GtGF--2oPBn2SrzM,216000
|
|
96
|
-
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
-
amsdal/schemas/manager.py,sha256=-2r4-Zuok1bX6sFjAtb34h0C0En7k7PyVHHfLHGJ-S4,2601
|
|
98
|
-
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
|
99
|
-
amsdal/schemas/types/datetime/model.json,sha256=DROVOPm0uQXy4qUj4mQUnhvfT_67psrQJj8psVRYjrA,120
|
|
100
|
-
amsdal/schemas/types/date/model.json,sha256=_siNphlfvq-bZ29Z3tloQlxh1_zRsEkXuO5HJsXmDSE,116
|
|
101
|
-
amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
|
|
102
|
-
amsdal/schemas/types/object/model.json,sha256=Pfas7ElCmAHJpOrVbmHm2goIoeErop816AIXdFsJGes,965
|
|
103
|
-
amsdal/schemas/types/anything/model.json,sha256=detUw-DW5nEl7Syy_J6eyPfi_yj5HQQ_X_GE5Fo1Zqs,120
|
|
104
|
-
amsdal/schemas/types/dictionary/model.json,sha256=Q1__6DIdJ81mrakmrN3c17PMoW05ri6Pz7cb_G0PeuM,133
|
|
105
|
-
amsdal/schemas/types/boolean/model.json,sha256=FBBjA6YdkkgkhpMIZd294862S3_mAjb8wxMqunKrGcE,240
|
|
106
|
-
amsdal/schemas/types/binary/model.json,sha256=pbmucBgX_BhD37k0KD_j7Nt5N_R-xorrezIg37n3Tz0,118
|
|
107
|
-
amsdal/schemas/types/string/model.json,sha256=aC4VIBC2Si6CJNhRh-_7R24CbNy_-rRbFKiTUayT3aI,127
|
|
108
|
-
amsdal/schemas/core/validator/model.json,sha256=JN62rw_UOPk6iiKWtKRNG1OmFQeiX7EEIVbRFnCkj7o,297
|
|
109
|
-
amsdal/schemas/core/file/model.json,sha256=s_sQpToj5zeSYgkR9AFPvdm5dz2YiFH9Lm9EwzGcM1E,340
|
|
110
|
-
amsdal/schemas/core/file/properties/str.py,sha256=r2RAz6uBxEFJjRJGBYk4yWXzmLyZ_zR6DmnsubPY4Fs,245
|
|
111
|
-
amsdal/schemas/core/file/properties/mimetype.py,sha256=gEUSNCIL9avoMpRQMGoO_93pRnSh4CP61dVs-Mg2hVE,170
|
|
112
|
-
amsdal/schemas/core/file/properties/to_file.py,sha256=v3HD4WpqLKtFD7UGyXXXX_3fD9UrUE094HDFXWez2EQ,419
|
|
113
|
-
amsdal/schemas/core/file/properties/validate_data.py,sha256=bFzRN7kia1KwJc2boWAnUZn4ty6m-HXMbBV7p7SmHc0,413
|
|
114
|
-
amsdal/schemas/core/file/properties/from_file.py,sha256=VxK8qhFje1oE0U0fNyikgf6sEVlQ5fLysA_5EcirZHM,627
|
|
115
|
-
amsdal/schemas/core/file/hooks/pre_create.py,sha256=hsvtEHQTScxX11kCd-x9D7n1fS654M_Simq5sChHTWU,100
|
|
116
|
-
amsdal/schemas/core/file/hooks/pre_update.py,sha256=-zITgMiwBzPjmHmBOZYGYac_SlxltYpXYxXPKRd2Fck,92
|
|
117
|
-
amsdal/schemas/core/fixture/model.json,sha256=m2v-zkH-MsUlH8cc459-gtNCGHAozHSkGAgSVj9kQb8,568
|
|
118
|
-
amsdal/schemas/core/option/model.json,sha256=bD1WHbnAnU6Ws_U10BZ8oeHaQbVgE1lBWYFcjANeHNI,277
|
|
119
|
-
amsdal/schemas/core/class_property_meta/model.json,sha256=X5i5FLlq-BhP8MDFPki7nu_FSdcpsAWXOe3u-mULKUA,390
|
|
120
|
-
amsdal/schemas/core/class_object_meta/model.json,sha256=Rye9cqv_HyZKaCl_UECqYx8eCd3CFta4YbpZJ8QvrdQ,950
|
|
121
|
-
amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
|
|
122
|
-
amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
|
|
123
|
-
amsdal/schemas/core/class_object/properties/display_name.py,sha256=Lxab4H78EKy0hC9xCchRo2iVjlCuXUlUV4mbEKicFjg,117
|
|
124
|
-
amsdal/__migrations__/0001_datetime_type.py,sha256=yHTgWi1XxeJ5hWQFtro2XzEinlKoIau1S7jYlj0UXtE,597
|
|
125
|
-
amsdal/__migrations__/0000_initial.py,sha256=kPSE-aFasdi6jLMO5vIbpMK7hLiaR2TAqMdX2lGTf_s,10318
|
|
126
|
-
amsdal/__migrations__/0002_fixture_order.py,sha256=NbRffgnyP2_JCnH-OGbXs0NjVbS3cotPnuvSgpcn0Tw,1598
|
|
127
|
-
amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
-
amsdal/configs/constants.pyi,sha256=UQymqsaATUsTp-kRtNEMCb2-UuLXwoFIY-ieljgVbMU,280
|
|
129
|
-
amsdal/configs/constants.py,sha256=nzXhzdVjbLSGUsEE19Zhk63znpcEtRLh7fbRWg2vyqo,562
|
|
130
|
-
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
amsdal/configs/main.pyi,sha256=45CYn6Rs9xYmzFJ4i50M9Bq_HLZx6cZQuo7XTSVs2z0,1484
|
|
132
|
-
amsdal/configs/main.py,sha256=2pigoWWhCZ0EebHaoB1lm-nNV9TF_FCkRctxyXTRQy4,4918
|
|
133
|
-
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
-
amsdal/cloud/enums.cpython-310-darwin.so,sha256=izurSiV9-huDyF4Rh3_MiUJ-QpP0v_N_C8Nyki6IRRg,157632
|
|
135
|
-
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
|
136
|
-
amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
|
|
137
|
-
amsdal/cloud/client.cpython-310-darwin.so,sha256=l8uTQ_yIzb3vbv_Cbcj0IdO8RbfLdEZuFZod4NMDU-o,215632
|
|
138
|
-
amsdal/cloud/__init__.cpython-310-darwin.so,sha256=X46CRSy3AQ5zoo6vInqhEtfgA2tsMnUyxOScELfDGT8,120656
|
|
139
|
-
amsdal/cloud/constants.cpython-310-darwin.so,sha256=cb7NLtR9jrLDIzH2a9P-DOGvxESMKg51b-DT1R1bMdo,158624
|
|
140
|
-
amsdal/cloud/enums.pyi,sha256=zmUbXEgI6DLtSlZwhLizhwWHQSjQ4y8XzZG0lR-S9gI,477
|
|
141
|
-
amsdal/cloud/models/base.pyi,sha256=ZoOpqblwc3OyVmjw4_zMi37MgZNJojIj1wxVMGg-qIc,2343
|
|
142
|
-
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
-
amsdal/cloud/models/base.cpython-310-darwin.so,sha256=OFbTwlAg12o-Q1vA6BUvOzih5n0ygtiyetu_mOf3uWM,193520
|
|
144
|
-
amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=NHa1csdcmH6-SWGvMHRtEdH0Y3vugXvXhqpZWA81L5A,120688
|
|
145
|
-
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=zWpFzzrVl6UCQRG_cQSpX9WWXnLBoYs3dJk3SNwBWZY,120704
|
|
147
|
-
amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=O86OKjMLPr2lT8vlKAf8WxRlEKdCWZk8HJZHO-qf-gQ,250784
|
|
148
|
-
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
|
149
|
-
amsdal/cloud/services/auth/manager.pyi,sha256=9fSm8tUKWNdUKlpV6GmvSN6Ypr8IyanAtrV6-uzdUgw,749
|
|
150
|
-
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=xlhLHQbCkt_oipwGBnrQls3y1zh_h31zCUFNa-7bEOE,213856
|
|
152
|
-
amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
|
|
153
|
-
amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=UraYYN9At7e3qbyWLBM1pShTeA83fwNurH_fhHzlDfM,163040
|
|
154
|
-
amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=p6xBpZd_PxKJeC6U4kiVOOj3znGk_2diKPC7x6npRDs,120720
|
|
155
|
-
amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
|
|
156
|
-
amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=AjfBQf3fsB18mK96EayquuNjMmP7mlG-J4VMKwIdv68,252920
|
|
157
|
-
amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=g6VGcSLcnLwlbS5_NOM2KMA1doK97-GuoYgk10EiSYk,215960
|
|
158
|
-
amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
|
|
159
|
-
amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=c2GjjBm5dG4UJUvgClwJ-Xi7pl8qEbBNVeRbWtu29Fg,180808
|
|
160
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=4Oe0HnHnEenxA1ODLd5AeJUnZ8pGp0L0MhKp9uTXqac,180280
|
|
161
|
-
amsdal/cloud/services/actions/list_envs.cpython-310-darwin.so,sha256=ESiRJwj4eppLcOxHrkdch4-KcV5_s3rqfhnEsDofleI,180512
|
|
162
|
-
amsdal/cloud/services/actions/list_envs.pyi,sha256=F-3qv2xU9nJ4j5xrTEs135hwitY3Gy5vPjAy7uZ-3vo,319
|
|
163
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=cCarzizPXLyAoRTMTLbJRUoN6bX3LqCqVSpBTrjI3uo,181000
|
|
164
|
-
amsdal/cloud/services/actions/base.pyi,sha256=R4djWvU1Jo_U6LwgGzv24d86dWZ1B9Ra68ydV-RFsiM,2556
|
|
165
|
-
amsdal/cloud/services/actions/manager.pyi,sha256=J3iPI3we-ZqZ9yAcIQel1eBTlT4LuE0c6IgP0J3bBhU,5408
|
|
166
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=wDTB47CkuxD3RtTM_M-WmnkNT30nQEEY4MUNgdAew2k,285
|
|
167
|
-
amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=LBYHIAF0FuZd14EBx-xAKNBqYC3z2Czsog6KFY_YnQo,252152
|
|
168
|
-
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=yuZHj9GQlNuzE3VSjd55NAIMh4OHINSWJKYV2iOjWek,405
|
|
169
|
-
amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=6xgF3usbxu4JW5E_thHSrllKaLuBbNDDGwdqINnLo00,180728
|
|
170
|
-
amsdal/cloud/services/actions/list_secrets.pyi,sha256=_sttmdaI4k464g8FOjxAED4gWIv0yCuzDviWnI88H0c,370
|
|
171
|
-
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
-
amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=-yKwzvbLGeRPQmvGsqz0tqKVFXVWeLBWcj4TsuIyQX0,319360
|
|
173
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=-Yw92swiZSSjIvjD9FWOlj4xmtrqeqRzrMP-u2FSalA,358
|
|
174
|
-
amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=Fs34ExC2WM-zrKdnxpfkzamPPQOpjMw-jEN5M4NcblA,323008
|
|
175
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-310-darwin.so,sha256=mK6Iy_CuuCPE0XEIfIhu1uTDqvvT7oVwwOkYUD2vJ7o,180792
|
|
176
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-310-darwin.so,sha256=RPKiEHmF1xRtiqZ24fbwGvaT4Fs0UXUN9DhnvQ5GmnA,180520
|
|
177
|
-
amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=4BqH4nrPcPNVzTAgvWoEz8eWjok7qlJVdVCaEtZT_8Y,180328
|
|
178
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-310-darwin.so,sha256=PBMdXEl0UeiinuDusPSiT-jDTRc7T0WVjOruT8yyJU4,180488
|
|
179
|
-
amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=fFSB9GDNTsHf1rjv_BAViD3pRgucasYbfZFYCiqMWtU,180896
|
|
180
|
-
amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=Vr8Ed_s5olwlNkSwYUrvOThnW41Uapibz6i0GfGuRr8,180392
|
|
181
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=EsVmRFrV39cwq1KQwVUdZHjdnRyZw4uCT2aWeIxdWXk,180488
|
|
182
|
-
amsdal/cloud/services/actions/delete_secret.pyi,sha256=7goJ0o6lnGjj06HcL7QWN3xuDSq-fP4_mc3UVBqpDNg,267
|
|
183
|
-
amsdal/cloud/services/actions/delete_env.pyi,sha256=YcpKJgZ1qV5XEeRGlQICoveLCLcDa3bVFllsBbjMqv8,338
|
|
184
|
-
amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=p_nPbhvDkj0C2fFLYtbl-h5P1SzLaA8QnTF4KmuElxA,181048
|
|
185
|
-
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=n_xtv-jtRZOlFfR0Xt0A9AuQNbclUMTow3lZbQKv36g,274
|
|
186
|
-
amsdal/cloud/services/actions/delete_env.cpython-310-darwin.so,sha256=AhPPriIqGCgUBp7l3cSxAMFtN4TLqMiBieI648BmMGg,180568
|
|
187
|
-
amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=JV3lSykNG63CQYPRGeQE57zAfHtW63CwNWmvClVQi4s,120736
|
|
188
|
-
amsdal/cloud/services/actions/create_session.pyi,sha256=IxkArxMKJyRpqiWA1xDl06ZN4B44VDwn_jlCeGC6JWc,282
|
|
189
|
-
amsdal/cloud/services/actions/list_deploys.pyi,sha256=jLfXCoRiocgzfNjNR6hdlF3kgWM8dq4qK_NsR25nxV4,277
|
|
190
|
-
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=U9TPmVUZ12mUzoL1gOtRh3HyGe8fcXNX-a1xipTOXDc,282
|
|
191
|
-
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=WFJS6DROpYjuxcOQbdPPHPz1A0ZQajY7HUT0_ExW8Qc,367
|
|
192
|
-
amsdal/cloud/services/actions/add_dependency.pyi,sha256=BihmntuBbCGrhngxPXf0Lqw6Vep3Zs8j1ca_NfkSpQM,271
|
|
193
|
-
amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
|
|
194
|
-
amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=1Fj6Bv_gFTF-dNVCVDDVCFg6ARWBhqPFwLfa5TtKUGM,180424
|
|
195
|
-
amsdal/cloud/services/actions/add_secret.pyi,sha256=PKnTcbAEtnkkeRpAn6KE7_URTzmNgFefV3s8bcIehH8,283
|
|
196
|
-
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
|
|
197
|
-
amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
|
|
198
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-310-darwin.so,sha256=zd1nDlHiuq7a40Z6LIyWsvI246ixbxoZZCgEDiKlLZM,180560
|
|
199
|
-
amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=gg1V-n1Rzx8M_8JaJkmxiB8iipEjKyQL1NOUWGZ8GgU,180456
|
|
200
|
-
amsdal/cloud/services/actions/create_deploy.pyi,sha256=FDOx6aTPPj0X40Ci5IwZak7Aj2Q7OO3HxXIR2zbJ7l8,766
|
|
201
|
-
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=_CtWRDzW43au7asHt_xGXVdYtdi30QAIbP9MYE5nb5M,252
|
|
202
|
-
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=8fT37_YKeb25kdcVVkYOzwjknvCVqLJK-iQxixAlFXI,360
|
|
203
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-310-darwin.so,sha256=G3ykVdY_NABaSH6PcnLnKN9iGjFsY0stGO7oMP7EI-Q,180824
|
|
204
|
-
amsdal/cloud/services/actions/create_env.pyi,sha256=z6y4ki2sigDkGtDa--pI6uYYWb3XksJLcecm7Rh51rE,338
|
|
205
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-310-darwin.so,sha256=R6lGwZJCxFwUL3n9bBCKY72llS90fo_hG5tCJVo6AKU,180704
|
|
206
|
-
amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so,sha256=lbw-M3dneGwp7Lk_VyY4vjWdMUm4bWFcF813UIzHA2w,180776
|
|
207
|
-
amsdal/cloud/services/actions/expose_db.pyi,sha256=s2GMS48md8dWKt2kGjXjUlRn369oZOIncrVR-zG25_4,309
|
|
208
|
-
amsdal/cloud/services/actions/create_env.cpython-310-darwin.so,sha256=o_BgS-y3IzYPR-7UVgoNK6ov-38cynjC2s-g93SS1Po,180568
|
|
209
|
-
amsdal/fixtures/manager.pyi,sha256=ngktwLTuaiwEIrNVrOh9FEf3YxFbeUZ0G_DJf0Go5iM,1704
|
|
210
|
-
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
-
amsdal/fixtures/manager.cpython-310-darwin.so,sha256=_EQJtDMP2o36_mhMmZcdUvYiRwpZgE3zt7c7b1ZN_sM,408336
|
|
212
|
-
amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=9ROrk7Qo41WDpac6avAvtVP4kDMhgFK66WYxL-9R-GA,120672
|
|
213
|
-
amsdal/migration/base_migration_schemas.cpython-310-darwin.so,sha256=Z1X6q0S3CeFDO7jA4tSaomGsl06SgNzoY1eBj85ByBQ,428352
|
|
214
|
-
amsdal/migration/file_migration_store.pyi,sha256=lYZVV0P9NKyR09SydcEemJ2cbMuIlTI_mI4qJyrHhS8,1699
|
|
215
|
-
amsdal/migration/file_migration_executor.pyi,sha256=tciDVL_gg-tSVF-vJLmr6mPoBDwQP9JScGvoPp8FQwA,2635
|
|
216
|
-
amsdal/migration/migrations_loader.pyi,sha256=mU5p4_Djuynl6zdEmMVY1NXwyjSV3Wa344CXP6arfBM,691
|
|
217
|
-
amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
|
-
amsdal/migration/file_migration_writer.pyi,sha256=r4nTR9u0AXUv9oWQoarCvGF-jt2Af_Apr8Bg_Cm31_g,728
|
|
219
|
-
amsdal/migration/base_migration_schemas.pyi,sha256=P4AeDjRvq7ghNLMKCMw5L9ZQ_MDoLAa8KAZJaQ4gLZ0,2361
|
|
220
|
-
amsdal/migration/data_classes.pyi,sha256=1HNOIAP1Cv90CO1JjoIu4anSs1VMibki1P5pqmBBE-I,2203
|
|
221
|
-
amsdal/migration/utils.pyi,sha256=SzDL6yp0ZKtzpd0tkvR18A-N-swihdU8x8urc4342v4,1409
|
|
222
|
-
amsdal/migration/__init__.cpython-310-darwin.so,sha256=8rW9-Fw_hf-BoLbF2oyyqua6fA9pXS0WIzVjQnxF6d0,120688
|
|
223
|
-
amsdal/migration/migrations.cpython-310-darwin.so,sha256=E0m2SHAaJcvzBUXiaJgKMFRnn9iWfv_PdMyePobjPgg,250408
|
|
224
|
-
amsdal/migration/schemas_loaders.pyi,sha256=YvvUs4wX5QKP0PUIevXTmo8Rr85LvAIseNxuPgh3i1U,1197
|
|
225
|
-
amsdal/migration/data_classes.cpython-310-darwin.so,sha256=jXwgY1rBtRYMsbWFkZdaPiknnM1Lzper6c4AMAxx1AA,215912
|
|
226
|
-
amsdal/migration/file_migration_store.cpython-310-darwin.so,sha256=p8WYlXqpXnQgcTvnh09dmV9yS6YUbmHSMe3QexGh9wg,371488
|
|
227
|
-
amsdal/migration/migrations_loader.cpython-310-darwin.so,sha256=7WFBv7d7UIyYPhnmM9r6kmCUV_4nH8UHJPJsmQqR5XI,217240
|
|
228
|
-
amsdal/migration/file_migration_executor.cpython-310-darwin.so,sha256=svOn6aYbsYHgkaNs4KsyYtahTUskiD_2kvfKRH-6d5Q,354416
|
|
229
|
-
amsdal/migration/schemas_loaders.cpython-310-darwin.so,sha256=_EQLYMQTbJzO4GA5QCzPef7LKRGS_1q2C4cvKy2bUW8,256568
|
|
230
|
-
amsdal/migration/file_migration_generator.cpython-310-darwin.so,sha256=H0ZJej82qE19Ae5exsgeaPgzdbxp-y1mBDsCfWKJw_s,376016
|
|
231
|
-
amsdal/migration/file_migration_generator.pyi,sha256=oED_KXnywcERh-hd809zzuLvbPl98Bc2jS2eV9-o1t4,3006
|
|
232
|
-
amsdal/migration/utils.cpython-310-darwin.so,sha256=whhin1JksYbf03GJ49WRV802HFjt73JYxh6vPTr4LWo,302832
|
|
233
|
-
amsdal/migration/file_migration_writer.cpython-310-darwin.so,sha256=CeysKGMXOjBdqgwVTlvqzHsWHZBj7p2Pg542i1m70zY,251664
|
|
234
|
-
amsdal/migration/migrations.pyi,sha256=v8bIzMMVJn_SvvbNDSDu2qr2TbDXMx0DBSesXPUSY48,2632
|
|
235
|
-
amsdal/migration/executors/base.pyi,sha256=p3dri37TErahCBkidINp2KUmIycOj9a-92JvhNmre1Q,2119
|
|
236
|
-
amsdal/migration/executors/state_executor.pyi,sha256=5UvOE2K53yYPKcObFEM08Vv8f1KbEsy6xXZOoAoB4wI,1003
|
|
237
|
-
amsdal/migration/executors/default_executor.cpython-310-darwin.so,sha256=sf6C14LGhy598V6yq1FmrU2abdULeY_01Sn2PXO1on4,457880
|
|
238
|
-
amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
amsdal/migration/executors/base.cpython-310-darwin.so,sha256=GXKWoPksL0asU29E70hk5YmOM1odrSsc650OMak6NSc,303088
|
|
240
|
-
amsdal/migration/executors/__init__.cpython-310-darwin.so,sha256=0Jk4Thgi3MHI6sNRDnlaXh0lSpiN6eOAJwPNKqDNSEc,120736
|
|
241
|
-
amsdal/migration/executors/default_executor.pyi,sha256=AJ-OzXO2E7wd0_73fRy8RTONb1S0RwZXE7CpVGfeZjI,1902
|
|
242
|
-
amsdal/migration/executors/state_executor.cpython-310-darwin.so,sha256=-iAoEYnGzrgLs0wDReLjmZmqqDcFccR0dNm_eCoVkV0,249912
|
|
243
|
-
amsdal/migration/templates/model_class_layout.tmpl,sha256=ttbq0xgimvHn-ffM4ZSj2_DMH5srCmUtkwGd38pyDXY,766
|
|
244
|
-
amsdal/migration/templates/options_validator.tmpl,sha256=gF_uiYONVad4OEILZeIdrepcHOFhwPq3nu0NJX8I1EA,205
|
|
245
|
-
amsdal/migration/templates/model_class.tmpl,sha256=t0y_OlxVmJe5RRg8pxO0XyUM3q1sAuv458q8wmDvh-8,225
|
|
246
|
-
amsdal/migration/templates/data_migration.tmpl,sha256=MzDSiNqH006F1cs-dskpboInBja5LZ8ErtoEmRzDsIQ,436
|
|
247
|
-
amsdal/migration/templates/migration.tmpl,sha256=WZe7A1lchoiqZZhGL2YUKVzafMPRiW9l7jYPmQoSOtU,193
|
|
248
|
-
amsdal/migration/templates/dict_validator.tmpl,sha256=5lRGN9hNBVRqVcbeNQuU4v5koRzS6tJAibzOqjCUXSI,173
|
|
249
|
-
amsdal/services/transaction_execution.pyi,sha256=bbT2h7xTzuP4SJSBfbJhvA7ryzwX8PfgRD9VAdjJJ8Q,1377
|
|
250
|
-
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
-
amsdal/services/__init__.cpython-310-darwin.so,sha256=-bb0Q61h9O6Nz-clRSCmK0DYTIXwAfcS17o5e_drHtE,120672
|
|
252
|
-
amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=A9VsUiaMuAexloVpONqvxlERfs2lW6nqgl4Z3djk6xo,362960
|
|
253
|
-
amsdal-0.1.26.dist-info/RECORD,,
|
|
254
|
-
amsdal-0.1.26.dist-info/WHEEL,sha256=ClVOi9g10rI0HLG8M8rsO0ZIZ1smbNYM10V9YDSXCJY,114
|
|
255
|
-
amsdal-0.1.26.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
|
256
|
-
amsdal-0.1.26.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
257
|
-
amsdal-0.1.26.dist-info/METADATA,sha256=HfjIn2oHdYebk9BRSZy1RSwlfXa-V5qXmr-IzWfc8K4,57412
|
|
File without changes
|
|
File without changes
|
|
File without changes
|