amsdal 0.0.40__cp311-cp311-macosx_10_9_universal2.whl → 0.1.0__cp311-cp311-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of amsdal might be problematic. Click here for more details.

Files changed (121) hide show
  1. amsdal/__about__.py +1 -1
  2. amsdal/cloud/__init__.cpython-311-darwin.so +0 -0
  3. amsdal/cloud/client.cpython-311-darwin.so +0 -0
  4. amsdal/cloud/constants.cpython-311-darwin.so +0 -0
  5. amsdal/cloud/enums.cpython-311-darwin.so +0 -0
  6. amsdal/cloud/models/__init__.cpython-311-darwin.so +0 -0
  7. amsdal/cloud/models/base.cpython-311-darwin.so +0 -0
  8. amsdal/cloud/services/__init__.cpython-311-darwin.so +0 -0
  9. amsdal/cloud/services/actions/__init__.cpython-311-darwin.so +0 -0
  10. amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so +0 -0
  11. amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so +0 -0
  12. amsdal/cloud/services/actions/base.cpython-311-darwin.so +0 -0
  13. amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so +0 -0
  14. amsdal/cloud/services/actions/create_session.cpython-311-darwin.so +0 -0
  15. amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so +0 -0
  16. amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so +0 -0
  17. amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so +0 -0
  18. amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so +0 -0
  19. amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so +0 -0
  20. amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so +0 -0
  21. amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so +0 -0
  22. amsdal/cloud/services/actions/manager.cpython-311-darwin.so +0 -0
  23. amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so +0 -0
  24. amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so +0 -0
  25. amsdal/cloud/services/auth/__init__.cpython-311-darwin.so +0 -0
  26. amsdal/cloud/services/auth/base.cpython-311-darwin.so +0 -0
  27. amsdal/cloud/services/auth/credentials.cpython-311-darwin.so +0 -0
  28. amsdal/cloud/services/auth/manager.cpython-311-darwin.so +0 -0
  29. amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so +0 -0
  30. amsdal/cloud/services/auth/token.cpython-311-darwin.so +0 -0
  31. amsdal/configs/constants.py +2 -0
  32. amsdal/configs/constants.pyi +1 -0
  33. amsdal/configs/main.py +6 -0
  34. amsdal/configs/main.pyi +3 -0
  35. amsdal/contrib/__init__.cpython-311-darwin.so +0 -0
  36. amsdal/contrib/frontend_configs/conversion/convert.py +19 -9
  37. amsdal/contrib/frontend_configs/conversion/convert.pyi +2 -2
  38. amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
  39. amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
  40. amsdal/manager.cpython-311-darwin.so +0 -0
  41. amsdal/manager.pyi +9 -3
  42. amsdal/migration/__init__.cpython-311-darwin.so +0 -0
  43. amsdal/migration/base_migration_schemas.cpython-311-darwin.so +0 -0
  44. amsdal/migration/base_migration_schemas.pyi +44 -0
  45. amsdal/migration/data_classes.cpython-311-darwin.so +0 -0
  46. amsdal/migration/data_classes.pyi +78 -0
  47. amsdal/migration/executors/__init__.cpython-311-darwin.so +0 -0
  48. amsdal/migration/executors/base.cpython-311-darwin.so +0 -0
  49. amsdal/migration/executors/base.pyi +21 -0
  50. amsdal/migration/executors/default_executor.cpython-311-darwin.so +0 -0
  51. amsdal/migration/executors/default_executor.pyi +20 -0
  52. amsdal/migration/executors/state_executor.cpython-311-darwin.so +0 -0
  53. amsdal/migration/executors/state_executor.pyi +14 -0
  54. amsdal/migration/file_migration_executor.cpython-311-darwin.so +0 -0
  55. amsdal/migration/file_migration_executor.pyi +35 -0
  56. amsdal/migration/file_migration_generator.cpython-311-darwin.so +0 -0
  57. amsdal/migration/file_migration_generator.pyi +49 -0
  58. amsdal/migration/file_migration_store.cpython-311-darwin.so +0 -0
  59. amsdal/migration/file_migration_store.pyi +33 -0
  60. amsdal/migration/file_migration_writer.cpython-311-darwin.so +0 -0
  61. amsdal/migration/file_migration_writer.pyi +18 -0
  62. amsdal/migration/migrations.cpython-311-darwin.so +0 -0
  63. amsdal/migration/migrations.pyi +57 -0
  64. amsdal/migration/migrations_loader.cpython-311-darwin.so +0 -0
  65. amsdal/migration/migrations_loader.pyi +17 -0
  66. amsdal/migration/schemas_loaders.cpython-311-darwin.so +0 -0
  67. amsdal/migration/schemas_loaders.pyi +24 -0
  68. amsdal/migration/utils.cpython-311-darwin.so +0 -0
  69. amsdal/migration/utils.pyi +5 -0
  70. amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
  71. amsdal/mixins/build_mixin.cpython-311-darwin.so +0 -0
  72. amsdal/mixins/build_mixin.pyi +2 -0
  73. amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
  74. amsdal/mixins/class_versions_mixin.pyi +1 -1
  75. amsdal/operations/__init__.cpython-311-darwin.so +0 -0
  76. amsdal/operations/manager.cpython-311-darwin.so +0 -0
  77. amsdal/operations/manager.pyi +3 -1
  78. amsdal/schemas/core/class_object/model.json +5 -58
  79. amsdal/schemas/core/class_object_meta/model.json +55 -0
  80. amsdal/schemas/core/class_property/model.json +0 -19
  81. amsdal/schemas/core/class_property_meta/model.json +23 -0
  82. amsdal/schemas/manager.cpython-311-darwin.so +0 -0
  83. amsdal/schemas/manager.py +15 -4
  84. amsdal/schemas/manager.pyi +2 -0
  85. amsdal/schemas/types/object/model.json +12 -2
  86. amsdal/services/__init__.cpython-311-darwin.so +0 -0
  87. amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
  88. {amsdal-0.0.40.dist-info → amsdal-0.1.0.dist-info}/METADATA +14 -14
  89. {amsdal-0.0.40.dist-info → amsdal-0.1.0.dist-info}/RECORD +93 -94
  90. amsdal/contrib/auth/models/__init__.py +0 -0
  91. amsdal/contrib/auth/models/login_session/hooks/pre_init.py +0 -51
  92. amsdal/contrib/auth/models/login_session/model.json +0 -23
  93. amsdal/contrib/auth/models/login_session/modifiers/display_name.py +0 -3
  94. amsdal/contrib/auth/models/permission/fixtures/basic_permissions.json +0 -62
  95. amsdal/contrib/auth/models/permission/model.json +0 -18
  96. amsdal/contrib/auth/models/permission/modifiers/display_name.py +0 -3
  97. amsdal/contrib/auth/models/user/hooks/pre_create.py +0 -2
  98. amsdal/contrib/auth/models/user/hooks/pre_init.py +0 -25
  99. amsdal/contrib/auth/models/user/model.json +0 -25
  100. amsdal/contrib/auth/models/user/modifiers/display_name.py +0 -3
  101. amsdal/contrib/frontend_configs/models/__init__.py +0 -0
  102. amsdal/contrib/frontend_configs/models/__init__.pyi +0 -0
  103. amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json +0 -11
  104. amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json +0 -11
  105. amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json +0 -52
  106. amsdal/contrib/frontend_configs/models/frontend_config_option/model.json +0 -15
  107. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json +0 -6
  108. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py +0 -13
  109. amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json +0 -19
  110. amsdal/contrib/frontend_configs/models/frontend_config_text_mask/model.json +0 -26
  111. amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json +0 -41
  112. amsdal/contrib/frontend_configs/models/frontend_control_config/model.json +0 -250
  113. amsdal/contrib/frontend_configs/models/frontend_model_config/model.json +0 -17
  114. amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json +0 -54
  115. amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py +0 -17
  116. amsdal/migration/manager.cpython-311-darwin.so +0 -0
  117. amsdal/migration/manager.pyi +0 -20
  118. /amsdal/{contrib/auth/models → migration/executors}/__init__.pyi +0 -0
  119. {amsdal-0.0.40.dist-info → amsdal-0.1.0.dist-info}/LICENSE.txt +0 -0
  120. {amsdal-0.0.40.dist-info → amsdal-0.1.0.dist-info}/WHEEL +0 -0
  121. {amsdal-0.0.40.dist-info → amsdal-0.1.0.dist-info}/top_level.txt +0 -0
@@ -1,14 +1,9 @@
1
- amsdal-0.0.40.dist-info/RECORD,,
2
- amsdal-0.0.40.dist-info/WHEEL,sha256=Jjzc6ISFgDOOsYxK3rGIIgg_gPHXRI2MDFtRxyygFgU,115
3
- amsdal-0.0.40.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
4
- amsdal-0.0.40.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
5
- amsdal-0.0.40.dist-info/METADATA,sha256=eZFnXcjkoMI6cVC-j3Hn39ZOMgabbYemcRbsXrf51MU,57291
6
- amsdal/manager.pyi,sha256=jt2czWaqQtXuRwY4_6BB2HVqQeiG0rf2LC9idTfkqKI,4387
1
+ amsdal/manager.pyi,sha256=v1zEL7LApkM_RsuV-cfAFJhQn9OfREF8mXq_NXwr1Hw,4652
7
2
  amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
3
  amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
9
- amsdal/manager.cpython-311-darwin.so,sha256=9UiiYfjEHhA_tNY0DfFhDKVl-1Cfv4ruT28hlLgkQRQ,339584
4
+ amsdal/manager.cpython-311-darwin.so,sha256=GdsMBrfgkuyfL4Dj7z-jdp1vydEMfcp5ZvF54eDXHkU,339984
10
5
  amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=TMs-vRDXacJ_rDtdN3rokBp8eofVTRIIUEyWABZ01H4,62596
11
- amsdal/__about__.py,sha256=3wgoPaisSkHl7xbn-FQbkSC98SFHoLe7eAFgK-qVO3s,125
6
+ amsdal/__about__.py,sha256=f3mPgZPU747sIj8oo2m0hix9ttD3pTjCcnLX4NAGpE4,124
12
7
  amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
13
8
  amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
9
  amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
@@ -17,19 +12,19 @@ amsdal/context/manager.pyi,sha256=Z-c3m28Wh2-WnEF7EGZkUKO6OIFlaMO3w6RkXRnNakY,35
17
12
  amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
13
  amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
14
  amsdal/context/manager.py,sha256=EzwuXiF3_Q3slDCNkVcFhVXkgMtOvQOEwBNA8YRBMnc,720
20
- amsdal/mixins/class_versions_mixin.pyi,sha256=t9cDBRfYLH_TZAsy4dFbv3-n3e38tImhE7V0KqdA9xE,412
21
- amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=6xVxsywiEyyCTyF0CFRQazIeFOFwS_U_Jnb5UK5MkGE,336584
15
+ amsdal/mixins/class_versions_mixin.pyi,sha256=0rKwUtWCNwAqhwmb-GHHIDXyagDw2dmcbgK0l4-HbVg,445
16
+ amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=nfBbs4afXpj4jJWdZ3f_0QQC9zw3QmcxC7WzQj0RT3w,336936
22
17
  amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- amsdal/mixins/build_mixin.pyi,sha256=bli7OdqgE4K-AUs6kkG01RXkNjx_6715BgnwOZoTpl8,955
24
- amsdal/mixins/__init__.cpython-311-darwin.so,sha256=QOUB1-1Cf8mFmz2UIDqg-mqsYdnYEZ7HVo7Ak8Nl69A,120656
25
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=jgobOk2ooFyWI_dhw8bKWVlDdAyKW4r8GrJgZiPAzmc,250272
18
+ amsdal/mixins/build_mixin.pyi,sha256=txN2JgdHhKR4SzmkvdAPGdEbtjhMdy8dp5YXMp-rxus,1031
19
+ amsdal/mixins/__init__.cpython-311-darwin.so,sha256=828dW-EN2suJ_YvWWuRxgdXUV8tb-lJM0jug5gr9A3g,120656
20
+ amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=JvZ8kiZZKkDOnTFHEnWL9dpAmG561_ZRhWZnPw4np1w,253040
26
21
  amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
22
  amsdal/utils/contrib_paths.py,sha256=irgD76LmgjzsTUAkr6cPFOsypek7-Gbtwv2tyz3u9xo,422
28
23
  amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
24
  amsdal/utils/contrib_paths.pyi,sha256=eRa6C3zITVe0UsvO15oGNOXcGz8L5n4gGZR60W96SBw,132
30
25
  amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
26
  amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
32
- amsdal/contrib/__init__.cpython-311-darwin.so,sha256=DcYKfJk0ns5F2Y231cslSfZFKw0-avO7n8pGgTUCEDg,120656
27
+ amsdal/contrib/__init__.cpython-311-darwin.so,sha256=fNZZzJD9YikwBGqhQGuXgXG9UfTiR6Mr-u6g-gIm3tk,120656
33
28
  amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
34
29
  amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
30
  amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -43,18 +38,6 @@ amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
43
38
  amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
39
  amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=K05xrH0R4DYdg7rStm0MDZSY4l8427N1DZJjSgwYUJY,666
45
40
  amsdal/contrib/auth/lifecycle/consumer.py,sha256=dQUuHHD5aE_P-7n0QEeHmTsPEdZYdeyIHg1ejc0heEw,5541
46
- amsdal/contrib/auth/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- amsdal/contrib/auth/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
49
- amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=o486mpmXvHDGs2Azf9BLYeExq_kBKd3z2uwYYltVjTw,117
50
- amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=vmobGCOvUQUb_YqasD5gh2XSygRYlWom0sWZTwF6vNI,87
51
- amsdal/contrib/auth/models/user/hooks/pre_init.py,sha256=VL67-z1y1htCRDY3cd8yjpV3wHap536qUF0UhEqgzr0,809
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=qKfZrgDKXKMJjy6SgX7vZIMe9ED12Vr8IU7aseXSdxs,1636
58
41
  amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
42
  amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
60
43
  amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
@@ -67,37 +50,22 @@ amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW
67
50
  amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
51
  amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=YZlIZ0j_VPEhRfos31lc3YjOoawkX17iovL1U7Cgh3I,711
69
52
  amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=XewiA5Hcq0dxGCJa-m94Uw1clcFYKvueC6Y8C8cYlhI,5768
70
- amsdal/contrib/frontend_configs/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- amsdal/contrib/frontend_configs/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- amsdal/contrib/frontend_configs/models/frontend_control_config/model.json,sha256=U_AB2OMdSbhsM7OksOexmettKlxoGcPfJedhMur2mMw,6791
73
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json,sha256=Mkk3rsx9UwG9EnUOnCxN-xMChEKjEJh4ql3HmBLH5FM,119
74
- amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py,sha256=009_69Jc2zKmJ4bQWbVG7HeT2QWvXc2g8D1jyZ6aoL0,426
75
- amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json,sha256=o1F7R3RQecv7bT4NxGvgDSK93Z6eQCvtgDtr2gHdS6g,1061
76
- amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json,sha256=5fnGtWrxK_nzedI60umO7b3TDQkRGnGV9HOgoqmrV9Q,233
77
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json,sha256=NgC8M1O4ciDF7S3kUz5dwaNATKbKH0JwD1-qB9h5qWo,1387
78
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py,sha256=chhb5_59TKhajCc1McRvZ7hI929DqAs7cSBFb1Ry9LE,541
79
- amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json,sha256=aNcoBkQCWFQao0Nbjw0tfKRl25nE2tt4AgM0myc07Sc,1366
80
- amsdal/contrib/frontend_configs/models/frontend_model_config/model.json,sha256=IF_jrqlsaTowlyb3MMkNoLh6t5fTaDX8LPYA9ptmPKI,339
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
53
  amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
86
- amsdal/contrib/frontend_configs/conversion/convert.py,sha256=A60zl_zBJoqvcsFC7yBwO72INCUKbYL0IZL94Jj3nyI,5622
87
- amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=ScSfa1aJW3yMS-5OMGHH26S3WCyaHU5IqmeI6anN3vY,308
54
+ amsdal/contrib/frontend_configs/conversion/convert.py,sha256=fhtNfhZiuuYQlPPDd9oBn0zU6SUdwEBcYluo9wjRIis,6159
55
+ amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=PfB8BT9zvDFU1f_Ob0ygX5qKhUMYYJNlrGYxKyYzjiw,374
88
56
  amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
89
- amsdal/operations/manager.pyi,sha256=6jHHzRFh43Ypm02d4grFWoIVBJ_yhp7iBPFT6Dbc3qQ,1391
57
+ amsdal/operations/manager.pyi,sha256=hfyLXnG7BVCug_ssaQfOxFKfKNH0hOAw-xEKCxQRQvQ,1480
90
58
  amsdal/operations/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- amsdal/operations/manager.cpython-311-darwin.so,sha256=ANqwYsv1T7_gx9CNAwbrOY9oitCOOlZEkByJGHlK5k4,320656
92
- amsdal/operations/__init__.cpython-311-darwin.so,sha256=dPs3jbYLM--oQPnu2UVlZ-h9l2-a_Nwaytwg_hEeoVc,120688
93
- amsdal/schemas/manager.pyi,sha256=N_Zc22jd_SEcvKPJTNrK-8m2mElWHnJSvnJHhD0dcNc,704
59
+ amsdal/operations/manager.cpython-311-darwin.so,sha256=2WduCfYqdAPDiRep5UDTtqxYwN4KjAOTqu1MRBQkLNg,337776
60
+ amsdal/operations/__init__.cpython-311-darwin.so,sha256=gFhKpq3BeWEBnemOXAnYmjshU-bUxuCu-Hr5bV-sXx0,120688
61
+ amsdal/schemas/manager.pyi,sha256=RLCBviXDNFgaktueRwp9KTP49D9SLJ4WYRqGAbAeVP4,785
94
62
  amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
63
  amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- amsdal/schemas/manager.cpython-311-darwin.so,sha256=DSgHKhIah_xd3RRHRztJJXuPrJNYRgKEMdIYVW6_fN8,216128
97
- amsdal/schemas/manager.py,sha256=XWMaoRtONIKPkclChRcLcdNUlnDriByjeGbHmoXznoc,2212
64
+ amsdal/schemas/manager.cpython-311-darwin.so,sha256=XMcZdIUKGAQQtLHPDbbwN-XmwHa5aGFBHxK3GpDXsNU,216064
65
+ amsdal/schemas/manager.py,sha256=-2r4-Zuok1bX6sFjAtb34h0C0En7k7PyVHHfLHGJ-S4,2601
98
66
  amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
99
67
  amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
100
- amsdal/schemas/types/object/model.json,sha256=woiJozuBOvoJbpYzMJ_6EAwXEP2MwA_IUQmle62I-gI,783
68
+ amsdal/schemas/types/object/model.json,sha256=Pfas7ElCmAHJpOrVbmHm2goIoeErop816AIXdFsJGes,965
101
69
  amsdal/schemas/types/anything/model.json,sha256=detUw-DW5nEl7Syy_J6eyPfi_yj5HQQ_X_GE5Fo1Zqs,120
102
70
  amsdal/schemas/types/dictionary/model.json,sha256=Q1__6DIdJ81mrakmrN3c17PMoW05ri6Pz7cb_G0PeuM,133
103
71
  amsdal/schemas/types/boolean/model.json,sha256=FBBjA6YdkkgkhpMIZd294862S3_mAjb8wxMqunKrGcE,240
@@ -113,84 +81,115 @@ amsdal/schemas/core/file/hooks/pre_create.py,sha256=hsvtEHQTScxX11kCd-x9D7n1fS65
113
81
  amsdal/schemas/core/file/hooks/pre_update.py,sha256=-zITgMiwBzPjmHmBOZYGYac_SlxltYpXYxXPKRd2Fck,92
114
82
  amsdal/schemas/core/fixture/model.json,sha256=74fG3u8VK-l2sWgWiqxomQthKRK57TgfRjJQvRFTqgQ,510
115
83
  amsdal/schemas/core/option/model.json,sha256=bD1WHbnAnU6Ws_U10BZ8oeHaQbVgE1lBWYFcjANeHNI,277
116
- amsdal/schemas/core/class_property/model.json,sha256=SoNwJF1wY7_Tan-8mQIuAm_54R_msB5zDCC4q2ojsik,708
117
- amsdal/schemas/core/class_object/model.json,sha256=szjP4bZnLVKP3dIFdZOijKqqDJk5CI2eKf2QAsRBaeI,1509
84
+ amsdal/schemas/core/class_property_meta/model.json,sha256=X5i5FLlq-BhP8MDFPki7nu_FSdcpsAWXOe3u-mULKUA,390
85
+ amsdal/schemas/core/class_object_meta/model.json,sha256=Rye9cqv_HyZKaCl_UECqYx8eCd3CFta4YbpZJ8QvrdQ,950
86
+ amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
87
+ amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
118
88
  amsdal/schemas/core/class_object/properties/display_name.py,sha256=Lxab4H78EKy0hC9xCchRo2iVjlCuXUlUV4mbEKicFjg,117
119
89
  amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- amsdal/configs/constants.pyi,sha256=nh3NU7c0nizbW7_5k5wjPxdFJd-YWO16cRDrNVu7HCQ,253
121
- amsdal/configs/constants.py,sha256=tglKWR34Fdx7tVr_CZA2Q3cNuykbr1S2s0LiQfsn0tQ,504
90
+ amsdal/configs/constants.pyi,sha256=UQymqsaATUsTp-kRtNEMCb2-UuLXwoFIY-ieljgVbMU,280
91
+ amsdal/configs/constants.py,sha256=nzXhzdVjbLSGUsEE19Zhk63znpcEtRLh7fbRWg2vyqo,562
122
92
  amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- amsdal/configs/main.pyi,sha256=eBSP0Khm8t0zWULLJJmJCE9JGgWc_cVPSGv8QbQt8UA,1387
124
- amsdal/configs/main.py,sha256=h_4Hc1SHsXuY7K15W_hpC6iQJPjDf60YNHYlr0-B3rU,4647
125
- amsdal/cloud/client.cpython-311-darwin.so,sha256=eqmj-sglTreQ6RcetytlS_gmyF3CsquRk_bMSIj4qdw,215872
93
+ amsdal/configs/main.pyi,sha256=45CYn6Rs9xYmzFJ4i50M9Bq_HLZx6cZQuo7XTSVs2z0,1484
94
+ amsdal/configs/main.py,sha256=2pigoWWhCZ0EebHaoB1lm-nNV9TF_FCkRctxyXTRQy4,4918
95
+ amsdal/cloud/client.cpython-311-darwin.so,sha256=rApq1EOeacF5xKQKSa1WFOy62wWV0SuQVenH1TG2BjE,215872
126
96
  amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
97
  amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
128
98
  amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
129
- amsdal/cloud/enums.cpython-311-darwin.so,sha256=bXazKEoAZM1H--RYHoeCb8Hp0x8E7E7A9AOKg0sF28E,157568
130
- amsdal/cloud/constants.cpython-311-darwin.so,sha256=XUc6OXsztlLx3rjLXPessNCGINJPnTTELDSQLxQ12wo,158688
131
- amsdal/cloud/__init__.cpython-311-darwin.so,sha256=wEKXzDt5DXPfq5F_-R_xq5NC2RH0Yia7r-gOZXeO4CY,120656
99
+ amsdal/cloud/enums.cpython-311-darwin.so,sha256=wORPHe4j52DC1UYKY-XqjriAywdvcSOiWyTL1XWFgE4,157568
100
+ amsdal/cloud/constants.cpython-311-darwin.so,sha256=sLv04Cb-SKWpQz-Z_O1MvoSZHFXNQdRlV_7pp5ki30w,158688
101
+ amsdal/cloud/__init__.cpython-311-darwin.so,sha256=LldAmYjcpbcFluWNdkypK6rEA7TuqWUFjqk1oi3vIEc,120656
132
102
  amsdal/cloud/enums.pyi,sha256=0g3I-6nLB26kj0H8v4CJRUuARSDLTn91FzTtb9DHGIU,407
133
- amsdal/cloud/models/base.cpython-311-darwin.so,sha256=mxxP5lf6qDK3XGbE_DMPNtCMNWRc7DwacV5Azf2-18I,159552
103
+ amsdal/cloud/models/base.cpython-311-darwin.so,sha256=RrwSVWO9CZod6FaIvWmztToqo8yxJpDYksvT_aQt1AI,159552
134
104
  amsdal/cloud/models/base.pyi,sha256=GKl9jFUcRv4gzdqf3G_irx0TUPuD2C-GS2PuhyyvgF4,1564
135
105
  amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=T4MC6A8ZCpiVjWfY1liyvCjcR5n6vFx3qNVil_OqiiQ,120688
106
+ amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=8Vhz7Z5RE9SBQCCvCWnBR1OTyj_FtX_luDbMfTj_Os4,120688
137
107
  amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=SB3dM_IPPA8FkfEw4fEXHl5FZ19jKlbogFVvENVQMEo,120688
139
- amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=i80PaMj3GIhur3Rwm3NJegR57phRoceBjQ9AESQbp50,163104
108
+ amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=hyuEgFYH9449a2ti_d6gEJXWwwhkQVN_KumgZ9i89MI,120688
109
+ amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=RzRpZtiTiFMEYyf3uNBY9kTJa7jI6sQWrsajYgVKZ_g,163104
140
110
  amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
141
111
  amsdal/cloud/services/auth/manager.pyi,sha256=9fSm8tUKWNdUKlpV6GmvSN6Ypr8IyanAtrV6-uzdUgw,749
142
112
  amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
113
  amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
144
- amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=mu0Qx6KGkaYLgHPqK5nDCVoH8dESnBscfPQIwraoh48,250960
145
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=pJVZ8UKnoT2BMMIcItqRGS5LZ_d3tYsu9xcTv2Sp9L8,213936
114
+ amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=AJt6L5ABDu3FmYpT6bGt-5T2GTCSxg04f5uqY8aJVyc,250960
115
+ amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=arxkHGCkTFi1tygSRzuYkMriYBGt7ZAH1qT06WiRxso,213936
146
116
  amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
147
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=nxzvaFeSBSu0J_m0v8hpKMj99FPDtm_ZFXzZL_IogWQ,216024
148
- amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=R2ipT2AT2NftgizWGv1xPfsk5PRpE-Bi4MbN-DpWRqc,120704
149
- amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=XLG2Ts5Kp2rMcOfmjmcxXMVIceJh34UmC4PdOJdOfb0,252888
117
+ amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=444pDzNN10FqDZCc_ZCOKOcC6GGXSs_kCZ04PCXxYYI,216024
118
+ amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=HdWpoIMJOqd5TGuzrNSGYzYpr68xeLOwo7JhOBvrmw4,120704
119
+ amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=rppf_pUn-LxDQrH-v2dB-qcYlM8PIaXVQfFKk1wAGog,252888
150
120
  amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
151
- amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=lToLUAYBFDAZseXuz1euVVfmNNshoMS1uAR01Pyrw48,304544
121
+ amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=p_FVjYBVURAgS3edLVHzakQqU5Ceuzu6eg2yNIWIezM,304544
152
122
  amsdal/cloud/services/actions/base.pyi,sha256=RuTQwOHkHCzEw4HBkHkbba9gW_5158BT71YdOxIzlGw,1648
153
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=1QpTGb5UWJ0YbudiVraCoFa4_MB2pJVhut2JdsdKRXQ,180392
123
+ amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=vy-EkzdWDkRQ4ne21seYNZnBTEwQyKGqV3flUbw4kJ8,180392
154
124
  amsdal/cloud/services/actions/manager.pyi,sha256=7oFfhd26A5raF8mOFYOLC2BZ_J9L67ddH-fYgPkjtQ4,2735
155
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=2-rxVzLP_y3iOXfq3nuAxDHvDvlUbSfU__VAbxwbnbQ,180552
156
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=IObAP-xRCfmELekj7R6rIrgnQTT7-F8PEBqjaEOTK_0,180912
157
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=aJLISZ3ygDMqxl2EaEC0Z_9k4j3Vi3iytvoo3avb6Tc,180456
125
+ amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=zoc547zGnXj3KiT6kyf7uXxP2XPaAI3sD78pRE7O7uI,180552
126
+ amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=MVbrcKEe0IEte9za3HlOn0VoTPe8O0-teBaamblPLEE,180912
127
+ amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=1LmCeo7_zBeZoyom-OHnLTb_PxV3OfNM--uuTRVuXps,180456
158
128
  amsdal/cloud/services/actions/list_secrets.pyi,sha256=B14mii5J0ktUaTLDHkqfkhwhy0bweuy6i6rc9n41EE4,355
159
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=TpaAbE9HqEvRF7-KrmGB2SZy8UAqiL5ISk7auOeAUDA,181064
129
+ amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=uiLN28IMSa1FKvEwtihGVHRwGQPMevCA-5XAK0IWD1s,181064
160
130
  amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=PQ2HzEqW37qdnNW8mBHkNaFMU5L3qhE5eeRyt9f0AZg,180856
162
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=YF2PfD7voKoWh54hPsNhb7a0NDqKGtTtIp_plxQN-dI,181048
163
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=CK6s5YpxkJW_k-8DXL_6QvGexbt-y7tjM-3PJMlE1Gk,180344
164
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=nswbqZAl8bC9fFji2XrioiCbQJ629LfQigCmA3yUY4g,180776
165
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=Q3PTEFyZWbIS3fzhmRI9ItiX9F97-oy6-MVNo9D93yA,252312
131
+ amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=ScVjxnjP6X5aGoE4ZY4qLUHTaM2Fm87pRvYrAfPNGUQ,180856
132
+ amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=Nnq-HS2xL12CE4Yl74Ip_ChZZ2ufNy5qab32Tnln_Zo,181048
133
+ amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=YRlmcS2C6k9nqcGL9OItGD-JbCd1Y8fv0xkvhu2IQE8,180344
134
+ amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=XNGLop105GCjDzEKUZrbBoh2ePf3F4xGfR8EOFt2w9M,180776
135
+ amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=_mgOiaouEt9RrVI5ykbpEjhjTZ5QeX-hHM2ftFrRMRo,252296
166
136
  amsdal/cloud/services/actions/delete_secret.pyi,sha256=QhIYoXQzShEUwLwoDQaNEf-mw1PQvl0l3EFIpg-dKcE,252
167
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=iUPEvyV_eUaKunERbweWANv5EaJw11sZTqQgNo3_X7A,249504
137
+ amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=3iijxZ-2edHhJOy6O2qBOuaBTXGMSdLofVHrK66VpMw,249504
168
138
  amsdal/cloud/services/actions/delete_dependency.pyi,sha256=2xT5Ks6KGgNMZEl--VkcpHZ3Mo7SvJpMtQCOdLkcwLE,259
169
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=JfwtWWFXorKf3E4ec_u9drWs4s_Z8ZBvnD5osNidO8g,180504
139
+ amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=8ix3ORkG1vIFvBNr4NcRsn1v0MIqSnaCa-UDmO0UUD8,180504
170
140
  amsdal/cloud/services/actions/create_session.pyi,sha256=IxkArxMKJyRpqiWA1xDl06ZN4B44VDwn_jlCeGC6JWc,282
171
141
  amsdal/cloud/services/actions/list_deploys.pyi,sha256=jLfXCoRiocgzfNjNR6hdlF3kgWM8dq4qK_NsR25nxV4,277
172
142
  amsdal/cloud/services/actions/add_dependency.pyi,sha256=k9mJDr_rvG4tY6gK2IHRKac5jPy30IeWhzc389Rc70M,256
173
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=EHXIsLgjmspd43oQu7rKw0CYBhaqEXb3y5V5Lgy2CkE,180840
143
+ amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=J4G3OYYZejChTBzKsApaWXnOmAyZwpWtGkoczdNetdI,180840
174
144
  amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
175
145
  amsdal/cloud/services/actions/add_secret.pyi,sha256=-aLENIqVyk-0IE7m4f-p8KOfLmsvZ0QjWyqSyiDXzi4,268
176
- amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=SSgDQ7MIR67Ys-50c4ag9U9485gqVsAOlOYiYTuOon4,120720
146
+ amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=jPZE1ssXFAEbK-W45Ci-2EToTSb5ZRWCd2eKrHoAQrU,120720
177
147
  amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
178
148
  amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
179
149
  amsdal/cloud/services/actions/create_deploy.pyi,sha256=FyIJd8mS0AdeLL_VnHHvItmNFfP7-l-tQavGBtL_b0w,695
180
150
  amsdal/cloud/services/actions/list_dependencies.pyi,sha256=Dw8SY_Eh7eo_EXbd1XzMdUCg6j1LPasreA7kPBbBcJU,345
181
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=1cvFTyPlATtPW02OWaaN0b6NenhT7Pp5Ynjp7qHdCE0,180488
151
+ amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=WBPAVAX9IhpmDh5tRPKv-mU8Vzhe7H628v1NgZDIknY,180488
182
152
  amsdal/cloud/services/actions/expose_db.pyi,sha256=vvhhSXSY8Myu9VKVmoSU-ywOzfi43u9ztmykBSE1vhM,294
183
153
  amsdal/fixtures/manager.pyi,sha256=Q0ImQbFpuGDiFnlR1dbmgxWHjf7B2sq1csPzbiNIdEg,1608
184
154
  amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- amsdal/fixtures/manager.cpython-311-darwin.so,sha256=fCvz8E-SIwpVv7b5_JT7hDD6ZEsWJgBCoMvT0p2SosU,390544
186
- amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=zFwQdfenzyte2rZ4RGrKp9Lbaz12HsOYpP1pA_tUJuk,120672
187
- amsdal/migration/manager.pyi,sha256=lLiErmrNHxaC4_gbGvoAW9A99e4Rw3i94UcwgAlM1AY,1343
155
+ amsdal/fixtures/manager.cpython-311-darwin.so,sha256=4KQCrKNBzoJ2AkNaRPRFHqxcoR8DryBSnTXBt347P5Y,390544
156
+ amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=X0rMsFjid8aMDI7zEr3197wGWQW3tX1hFbfGHPtgGTI,120672
157
+ amsdal/migration/file_migration_store.pyi,sha256=lYZVV0P9NKyR09SydcEemJ2cbMuIlTI_mI4qJyrHhS8,1699
158
+ amsdal/migration/file_migration_executor.pyi,sha256=5qS42efiRCgjU_c-a7gfeVzD6nI8XKH2t_NT8ryixa8,2557
159
+ amsdal/migration/migrations_loader.pyi,sha256=mU5p4_Djuynl6zdEmMVY1NXwyjSV3Wa344CXP6arfBM,691
188
160
  amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- amsdal/migration/manager.cpython-311-darwin.so,sha256=1wIQeOdgBrSpRvgnFWFZcHgj6-xyz2dHOliCKtawztI,370976
190
- amsdal/migration/utils.pyi,sha256=s4R1_Dn25l-2wLN86vP8PBWVYo1tdvcaShZ5mKGc7d0,1125
191
- amsdal/migration/utils.cpython-311-darwin.so,sha256=kvbFUP72YkL8YL43OEK7HymfrfozPdgOkc0Hpn3btSY,250992
192
- amsdal/migration/__init__.cpython-311-darwin.so,sha256=G9L83fjyUXJgiN4mh-m5yDNl60N-8kUXTkRTfqMPjo0,120672
161
+ amsdal/migration/file_migration_writer.pyi,sha256=r4nTR9u0AXUv9oWQoarCvGF-jt2Af_Apr8Bg_Cm31_g,728
162
+ amsdal/migration/base_migration_schemas.cpython-311-darwin.so,sha256=yVI36cvlgqRaDPizl7faASETHWia8eBYYn8IKIKTm3o,444928
163
+ amsdal/migration/base_migration_schemas.pyi,sha256=fIwBwkr_IVndPCMV8nrpm52ANzUplallBGCFh232nMY,2340
164
+ amsdal/migration/data_classes.pyi,sha256=n7ehxdKPAOxiuFArGNgxNkd120wwFLHSp2MQzi1rN-A,2095
165
+ amsdal/migration/utils.pyi,sha256=SzDL6yp0ZKtzpd0tkvR18A-N-swihdU8x8urc4342v4,1409
166
+ amsdal/migration/file_migration_generator.cpython-311-darwin.so,sha256=aBRpCE_jJls6w1e64GFM1RijA3T-6cPAC2AGe-YLsX4,376416
167
+ amsdal/migration/utils.cpython-311-darwin.so,sha256=Db9ZEJ00NOd2ILYq_jRFGVSVguvf3TVlkN-hNUKvo-w,302560
168
+ amsdal/migration/schemas_loaders.pyi,sha256=YvvUs4wX5QKP0PUIevXTmo8Rr85LvAIseNxuPgh3i1U,1197
169
+ amsdal/migration/file_migration_writer.cpython-311-darwin.so,sha256=Cao0lCAh_4GRjGMLjEXQV6a2tSVS-myJvSC0F-OEzkY,251712
170
+ amsdal/migration/file_migration_generator.pyi,sha256=GnaXG6p69w_plerH2rhKnnbku70p8bJyUawTK80pMeI,3146
171
+ amsdal/migration/__init__.cpython-311-darwin.so,sha256=qeiEypzV3uHL08RDjv2gxDmyBdb9oAHN9QZKHUb7S7w,120672
172
+ amsdal/migration/migrations.cpython-311-darwin.so,sha256=cySsLZHg3RDZ9UNx5GIPgV66q94GOaUBtCHSjkCpi-8,249816
173
+ amsdal/migration/file_migration_store.cpython-311-darwin.so,sha256=52kmspKPzDhulRyL4oIskvB8_tKLu_Y3QFClrmGv86Q,371520
174
+ amsdal/migration/data_classes.cpython-311-darwin.so,sha256=f9EfcY2ztkTZnIj1kpbfHi6fzDK7MfMjlgYKeGiY_bU,215976
175
+ amsdal/migration/migrations_loader.cpython-311-darwin.so,sha256=4HSN4ACcV68UNplUCkgnbsGS4DteiIBX1PaVYI9fdyk,217384
176
+ amsdal/migration/schemas_loaders.cpython-311-darwin.so,sha256=8-oq2QEbU_ERXMTuhUuU14Dorja6ru3yZ5k7huAMkfE,256808
177
+ amsdal/migration/migrations.pyi,sha256=sXpmEbXbWuD8xwS9eqGqNx9tLNTHImilYRXntAS5X5M,2387
178
+ amsdal/migration/file_migration_executor.cpython-311-darwin.so,sha256=ud-ck0mc-9zHFvymShlzVuAF_-R2P4P2iD-NoHKmCCc,337712
179
+ amsdal/migration/executors/base.cpython-311-darwin.so,sha256=HB0JLZgsvdOTyBbBx7BDJAjU_PIetkiryjCE_g40Dts,215504
180
+ amsdal/migration/executors/base.pyi,sha256=ONSNkDU-8-deix0GnvjM-M6MzRZEf_HyNWVY5Eazxp0,1179
181
+ amsdal/migration/executors/state_executor.pyi,sha256=5UvOE2K53yYPKcObFEM08Vv8f1KbEsy6xXZOoAoB4wI,1003
182
+ amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ amsdal/migration/executors/default_executor.cpython-311-darwin.so,sha256=vPvAY9x0kOoYaci8N1HdsM7243Fn_dzMKtWw5KQRQoo,370264
184
+ amsdal/migration/executors/state_executor.cpython-311-darwin.so,sha256=opqbObKa5o_VrUMbYTMPauV9rEu4eShYQvD6om6IcyI,249720
185
+ amsdal/migration/executors/default_executor.pyi,sha256=kM6IRRYStijbCFJjLutXPLsLPvQixXvqyKOEZbDH7fs,1560
186
+ amsdal/migration/executors/__init__.cpython-311-darwin.so,sha256=QpbkZl8gIhY_9EOy4jrZ0R9Dg65YH22Vh0tZJ0_csZU,120720
193
187
  amsdal/services/transaction_execution.pyi,sha256=bbT2h7xTzuP4SJSBfbJhvA7ryzwX8PfgRD9VAdjJJ8Q,1377
194
188
  amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- amsdal/services/__init__.cpython-311-darwin.so,sha256=y1Fo7yiISOi6auAn1wyQ4hNOoszc8EJaHY-hnYUmOm0,120672
196
- amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=CS_AsFviWrrvKEX2U1JARED4wKgD4uTYptBaBrV5ZAg,346160
189
+ amsdal/services/__init__.cpython-311-darwin.so,sha256=_EIXGnMkDOHIeSJOsvLBpMgnIYXU8ucgjQ78gFQPL1I,120672
190
+ amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=tqPKH1fjTbmpZrSShv-_3tI8FkJw2fUmLW4lU_ocCrk,346160
191
+ amsdal-0.1.0.dist-info/RECORD,,
192
+ amsdal-0.1.0.dist-info/WHEEL,sha256=Jjzc6ISFgDOOsYxK3rGIIgg_gPHXRI2MDFtRxyygFgU,115
193
+ amsdal-0.1.0.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
194
+ amsdal-0.1.0.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
195
+ amsdal-0.1.0.dist-info/METADATA,sha256=ELkyuDwy7Qzb7W8IFWhP5RDy6E9V91wATn881IKOloY,57278
File without changes
@@ -1,51 +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
- from amsdal_utils.models.enums import Versions
9
-
10
-
11
- def pre_init(self, *, is_new_object: bool, kwargs: dict[str, Any]) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
12
- if not is_new_object or '_metadata' in kwargs:
13
- return
14
-
15
- from amsdal.contrib.auth.errors import AuthenticationError
16
- from amsdal.contrib.auth.settings import auth_settings
17
-
18
- email = kwargs.get('email', None)
19
- password = kwargs.get('password', None)
20
-
21
- if not email:
22
- msg = "Email can't be empty"
23
- raise AuthenticationError(msg)
24
-
25
- if not password:
26
- msg = "Password can't be empty"
27
- raise AuthenticationError(msg)
28
-
29
- lowercased_email = email.lower()
30
-
31
- from models.contrib.user import User # type: ignore[import-not-found]
32
-
33
- user = User.objects.filter(email=lowercased_email, _address__object_version=Versions.LATEST).get_or_none().execute()
34
-
35
- if not user:
36
- msg = 'Invalid email / password'
37
- raise AuthenticationError(msg)
38
-
39
- if not bcrypt.checkpw(password.encode('utf-8') if isinstance(password, str) else password, user.password):
40
- msg = 'Invalid email / password'
41
- raise AuthenticationError(msg)
42
-
43
- kwargs['password'] = 'validated'
44
- expiration_time = datetime.now(tz=timezone.utc) + timedelta(seconds=1200)
45
- token = jwt.encode(
46
- {'email': lowercased_email, 'exp': expiration_time},
47
- key=auth_settings.AUTH_JWT_KEY, # type: ignore[arg-type]
48
- algorithm='HS256',
49
- )
50
-
51
- 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,3 +0,0 @@
1
- @property # type: ignore[misc]
2
- def display_name(self) -> str: # type: ignore[no-untyped-def]
3
- return self.email
@@ -1,62 +0,0 @@
1
- [
2
- {
3
- "external_id": "user_delete",
4
- "model": "User",
5
- "action": "delete"
6
- },
7
- {
8
- "external_id": "user_read",
9
- "model": "User",
10
- "action": "read"
11
- },
12
- {
13
- "external_id": "user_update",
14
- "model": "User",
15
- "action": "update"
16
- },
17
- {
18
- "external_id": "user_all_actions",
19
- "model": "User",
20
- "action": "*"
21
- },
22
- {
23
- "external_id": "all_models_all_actions",
24
- "model": "*",
25
- "action": "*"
26
- },
27
- {
28
- "external_id": "login_session_delete",
29
- "model": "LoginSession",
30
- "action": "delete"
31
- },
32
- {
33
- "external_id": "login_session_read",
34
- "model": "LoginSession",
35
- "action": "read"
36
- },
37
- {
38
- "external_id": "login_session_update",
39
- "model": "LoginSession",
40
- "action": "update"
41
- },
42
- {
43
- "external_id": "permission_delete",
44
- "model": "Permission",
45
- "action": "delete"
46
- },
47
- {
48
- "external_id": "permission_read",
49
- "model": "Permission",
50
- "action": "read"
51
- },
52
- {
53
- "external_id": "permission_update",
54
- "model": "Permission",
55
- "action": "update"
56
- },
57
- {
58
- "external_id": "permission_create",
59
- "model": "Permission",
60
- "action": "create"
61
- }
62
- ]
@@ -1,18 +0,0 @@
1
- {
2
- "title": "Permission",
3
- "type": "object",
4
- "properties": {
5
- "model": {
6
- "title": "Model",
7
- "type": "string"
8
- },
9
- "action": {
10
- "title": "Action",
11
- "type": "string"
12
- }
13
- },
14
- "required": [
15
- "model",
16
- "action"
17
- ]
18
- }
@@ -1,3 +0,0 @@
1
- @property # type: ignore[misc]
2
- def display_name(self) -> str: # type: ignore[no-untyped-def]
3
- return f'{self.model}:{self.action}'
@@ -1,2 +0,0 @@
1
- def pre_create(self) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
2
- pass
@@ -1,25 +0,0 @@
1
- from typing import Any
2
-
3
-
4
- def pre_init(self, *, is_new_object: bool, kwargs: dict[str, Any]) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
5
- import bcrypt
6
-
7
- from amsdal.contrib.auth.errors import UserCreationError
8
-
9
- email = kwargs.get('email', None)
10
- password = kwargs.get('password', None)
11
-
12
- if email is None or email == '':
13
- msg = "Email can't be empty"
14
- raise UserCreationError(msg)
15
-
16
- if password is None or password == '':
17
- msg = "Password can't be empty"
18
- raise UserCreationError(msg)
19
-
20
- kwargs['email'] = email.lower()
21
-
22
- if is_new_object and '_metadata' not in kwargs:
23
- hashed_password = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt())
24
- kwargs['password'] = hashed_password
25
- kwargs['_object_id'] = email.lower()
@@ -1,25 +0,0 @@
1
- {
2
- "title": "User",
3
- "type": "object",
4
- "properties": {
5
- "email": {
6
- "title": "Email",
7
- "type": "string"
8
- },
9
- "password": {
10
- "title": "Password (hash)",
11
- "type": "binary"
12
- },
13
- "permissions": {
14
- "title": "Permissions",
15
- "type": "array",
16
- "items": {
17
- "type": "Permission"
18
- }
19
- }
20
- },
21
- "required": [
22
- "email",
23
- "password"
24
- ]
25
- }
@@ -1,3 +0,0 @@
1
- @property # type: ignore[misc]
2
- def display_name(self) -> str: # type: ignore[no-untyped-def]
3
- return self.email
File without changes
File without changes
@@ -1,11 +0,0 @@
1
- {
2
- "title": "FrontendActivatorConfig",
3
- "type": "FrontendConfigGroupValidator",
4
- "properties": {
5
- "value": {
6
- "title": "Value",
7
- "type": "anything"
8
- }
9
- },
10
- "meta_class": "TypeMeta"
11
- }
@@ -1,11 +0,0 @@
1
- {
2
- "title": "FrontendConfigAsyncValidator",
3
- "type": "FrontendConfigSkipNoneBase",
4
- "properties": {
5
- "endpoint": {
6
- "title": "Endpoint",
7
- "type": "string"
8
- }
9
- },
10
- "meta_class": "TypeMeta"
11
- }
@@ -1,52 +0,0 @@
1
- {
2
- "title": "FrontendConfigGroupValidator",
3
- "type": "FrontendConfigSkipNoneBase",
4
- "properties": {
5
- "mainControl": {
6
- "title": "Main Control",
7
- "type": "string"
8
- },
9
- "dependentControls": {
10
- "title": "Dependent Controls",
11
- "type": "array",
12
- "items": {
13
- "type": "string"
14
- }
15
- },
16
- "condition": {
17
- "title": "Condition",
18
- "type": "string",
19
- "options": [
20
- {
21
- "key": "Less Than",
22
- "value": "lt"
23
- },
24
- {
25
- "key": "Less Than or Equal",
26
- "value": "lte"
27
- },
28
- {
29
- "key": "Greater Than",
30
- "value": "gt"
31
- },
32
- {
33
- "key": "Greater Than or Equal",
34
- "value": "gte"
35
- },
36
- {
37
- "key": "Equal",
38
- "value": "eq"
39
- },
40
- {
41
- "key": "Not Equal",
42
- "value": "neq"
43
- },
44
- {
45
- "key": "Exist",
46
- "value": "exist"
47
- }
48
- ]
49
- }
50
- },
51
- "meta_class": "TypeMeta"
52
- }
@@ -1,15 +0,0 @@
1
- {
2
- "title": "FrontendConfigOption",
3
- "type": "FrontendConfigSkipNoneBase",
4
- "properties": {
5
- "label": {
6
- "title": "Label",
7
- "type": "string"
8
- },
9
- "value": {
10
- "title": "Value",
11
- "type": "string"
12
- }
13
- },
14
- "meta_class": "TypeMeta"
15
- }
@@ -1,6 +0,0 @@
1
- {
2
- "title": "FrontendConfigSkipNoneBase",
3
- "type": "object",
4
- "properties": {},
5
- "meta_class": "TypeMeta"
6
- }