amsdal 0.0.40__cp310-cp310-macosx_10_9_universal2.whl → 0.1.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.

Files changed (121) hide show
  1. amsdal/__about__.py +1 -1
  2. amsdal/cloud/__init__.cpython-310-darwin.so +0 -0
  3. amsdal/cloud/client.cpython-310-darwin.so +0 -0
  4. amsdal/cloud/constants.cpython-310-darwin.so +0 -0
  5. amsdal/cloud/enums.cpython-310-darwin.so +0 -0
  6. amsdal/cloud/models/__init__.cpython-310-darwin.so +0 -0
  7. amsdal/cloud/models/base.cpython-310-darwin.so +0 -0
  8. amsdal/cloud/services/__init__.cpython-310-darwin.so +0 -0
  9. amsdal/cloud/services/actions/__init__.cpython-310-darwin.so +0 -0
  10. amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so +0 -0
  11. amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so +0 -0
  12. amsdal/cloud/services/actions/base.cpython-310-darwin.so +0 -0
  13. amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so +0 -0
  14. amsdal/cloud/services/actions/create_session.cpython-310-darwin.so +0 -0
  15. amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so +0 -0
  16. amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so +0 -0
  17. amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so +0 -0
  18. amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so +0 -0
  19. amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so +0 -0
  20. amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so +0 -0
  21. amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so +0 -0
  22. amsdal/cloud/services/actions/manager.cpython-310-darwin.so +0 -0
  23. amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so +0 -0
  24. amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so +0 -0
  25. amsdal/cloud/services/auth/__init__.cpython-310-darwin.so +0 -0
  26. amsdal/cloud/services/auth/base.cpython-310-darwin.so +0 -0
  27. amsdal/cloud/services/auth/credentials.cpython-310-darwin.so +0 -0
  28. amsdal/cloud/services/auth/manager.cpython-310-darwin.so +0 -0
  29. amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so +0 -0
  30. amsdal/cloud/services/auth/token.cpython-310-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-310-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-310-darwin.so +0 -0
  39. amsdal/fixtures/manager.cpython-310-darwin.so +0 -0
  40. amsdal/manager.cpython-310-darwin.so +0 -0
  41. amsdal/manager.pyi +9 -3
  42. amsdal/migration/__init__.cpython-310-darwin.so +0 -0
  43. amsdal/migration/base_migration_schemas.cpython-310-darwin.so +0 -0
  44. amsdal/migration/base_migration_schemas.pyi +44 -0
  45. amsdal/migration/data_classes.cpython-310-darwin.so +0 -0
  46. amsdal/migration/data_classes.pyi +78 -0
  47. amsdal/migration/executors/__init__.cpython-310-darwin.so +0 -0
  48. amsdal/migration/executors/base.cpython-310-darwin.so +0 -0
  49. amsdal/migration/executors/base.pyi +21 -0
  50. amsdal/migration/executors/default_executor.cpython-310-darwin.so +0 -0
  51. amsdal/migration/executors/default_executor.pyi +20 -0
  52. amsdal/migration/executors/state_executor.cpython-310-darwin.so +0 -0
  53. amsdal/migration/executors/state_executor.pyi +14 -0
  54. amsdal/migration/file_migration_executor.cpython-310-darwin.so +0 -0
  55. amsdal/migration/file_migration_executor.pyi +35 -0
  56. amsdal/migration/file_migration_generator.cpython-310-darwin.so +0 -0
  57. amsdal/migration/file_migration_generator.pyi +49 -0
  58. amsdal/migration/file_migration_store.cpython-310-darwin.so +0 -0
  59. amsdal/migration/file_migration_store.pyi +33 -0
  60. amsdal/migration/file_migration_writer.cpython-310-darwin.so +0 -0
  61. amsdal/migration/file_migration_writer.pyi +18 -0
  62. amsdal/migration/migrations.cpython-310-darwin.so +0 -0
  63. amsdal/migration/migrations.pyi +57 -0
  64. amsdal/migration/migrations_loader.cpython-310-darwin.so +0 -0
  65. amsdal/migration/migrations_loader.pyi +17 -0
  66. amsdal/migration/schemas_loaders.cpython-310-darwin.so +0 -0
  67. amsdal/migration/schemas_loaders.pyi +24 -0
  68. amsdal/migration/utils.cpython-310-darwin.so +0 -0
  69. amsdal/migration/utils.pyi +5 -0
  70. amsdal/mixins/__init__.cpython-310-darwin.so +0 -0
  71. amsdal/mixins/build_mixin.cpython-310-darwin.so +0 -0
  72. amsdal/mixins/build_mixin.pyi +2 -0
  73. amsdal/mixins/class_versions_mixin.cpython-310-darwin.so +0 -0
  74. amsdal/mixins/class_versions_mixin.pyi +1 -1
  75. amsdal/operations/__init__.cpython-310-darwin.so +0 -0
  76. amsdal/operations/manager.cpython-310-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-310-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-310-darwin.so +0 -0
  87. amsdal/services/transaction_execution.cpython-310-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-310-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=quc6KPsQ_p8Uswd5yj8hDZg5y2ghFxeobjm5cM_ymZ0,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
- amsdal/manager.cpython-310-darwin.so,sha256=EWcvOvmDbcupjKQB3DdZd_OkdNNE-1aBLBXS3DKeu2M,339328
3
+ amsdal/manager.cpython-310-darwin.so,sha256=kgKaEc4wMG2xc1pQDWa_37550ADOHpGsTbSQT8Rpk5k,339728
9
4
  amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
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,18 +12,18 @@ 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
15
+ amsdal/mixins/class_versions_mixin.pyi,sha256=0rKwUtWCNwAqhwmb-GHHIDXyagDw2dmcbgK0l4-HbVg,445
21
16
  amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=w9-VqBTStfgtWBf8UziWIXSwd8lksvytv7SBMxksf_g,336520
23
- amsdal/mixins/build_mixin.pyi,sha256=bli7OdqgE4K-AUs6kkG01RXkNjx_6715BgnwOZoTpl8,955
24
- amsdal/mixins/__init__.cpython-310-darwin.so,sha256=2fvGxjiEPhuP4Yw3ZcyRX7xD_k8xhSw1EcLWGQ-PSNE,120672
25
- amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=TWQasmoDgjxxdD7YgJwjj5EnKg62iHn_uU1S2sDVB4s,250208
17
+ amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=c0orAPmRJ6t25czch3qoV2S2D4JAGkeh1dMbtZGsGbs,336872
18
+ amsdal/mixins/build_mixin.pyi,sha256=txN2JgdHhKR4SzmkvdAPGdEbtjhMdy8dp5YXMp-rxus,1031
19
+ amsdal/mixins/__init__.cpython-310-darwin.so,sha256=9cT6Iy_uje1RGjYcGWvQUob3I07HKN3e5LUjuriFMUA,120672
20
+ amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=r1IbtbN2mWkiauAUA952UKB5jSmvnGkwDP7SbmhH5Ow,252896
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
- amsdal/contrib/__init__.cpython-310-darwin.so,sha256=6IdKTILYCBymg-drRGbhDmksEkIrny4DA03u3Ye-2Q8,120672
26
+ amsdal/contrib/__init__.cpython-310-darwin.so,sha256=7p26jcCDsLS9hd9BG1dCn8XCQo2maj3URpoBOiaIzxo,120672
32
27
  amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
33
28
  amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
34
29
  amsdal/contrib/auth/__init__.pyi,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-310-darwin.so,sha256=tI1w0QJmyFkS7Ei0SLgq2fVVQ4WK8oS4Qxyh_vMT-r4,320592
92
- amsdal/operations/__init__.cpython-310-darwin.so,sha256=3yDvgsiC_VID3dPXfuPpR8FixjkEKJDMADHjd6IpE7Q,120688
93
- amsdal/schemas/manager.pyi,sha256=N_Zc22jd_SEcvKPJTNrK-8m2mElWHnJSvnJHhD0dcNc,704
59
+ amsdal/operations/manager.cpython-310-darwin.so,sha256=aICxSHTIJB1sLcZOQrThWXQvDJ_n49WaOn6h8N2zqH8,337712
60
+ amsdal/operations/__init__.cpython-310-darwin.so,sha256=XpAKoWuWvwXtwvWoZSuGFyUbA2dZ0CetjlR3DRsqyuc,120688
61
+ amsdal/schemas/manager.pyi,sha256=RLCBviXDNFgaktueRwp9KTP49D9SLJ4WYRqGAbAeVP4,785
94
62
  amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- amsdal/schemas/manager.cpython-310-darwin.so,sha256=JqwNuZSxd8QZc3K7jjBZopVdDY87a-dbAzpFzFa1_EU,216064
63
+ amsdal/schemas/manager.cpython-310-darwin.so,sha256=y31Vu4g552jDVkpaNKy56FB4Hdyhh28p6EKHugWRrEM,216000
96
64
  amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- amsdal/schemas/manager.py,sha256=XWMaoRtONIKPkclChRcLcdNUlnDriByjeGbHmoXznoc,2212
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
93
+ amsdal/configs/main.pyi,sha256=45CYn6Rs9xYmzFJ4i50M9Bq_HLZx6cZQuo7XTSVs2z0,1484
94
+ amsdal/configs/main.py,sha256=2pigoWWhCZ0EebHaoB1lm-nNV9TF_FCkRctxyXTRQy4,4918
125
95
  amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- amsdal/cloud/enums.cpython-310-darwin.so,sha256=A1GYJ41llKcA2ZH7jWo5mlrSQv8oDtZzhXzRy_GD54c,157504
96
+ amsdal/cloud/enums.cpython-310-darwin.so,sha256=JIpokGRj7i33InxuTDfgDf05q7vOmpWc1dRsu99Xrso,157504
127
97
  amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
128
98
  amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
129
- amsdal/cloud/client.cpython-310-darwin.so,sha256=LSiz0ab5bc_XoKuFmWjc-iySh9qGqr4uHjs_qjBmY9Y,215632
130
- amsdal/cloud/__init__.cpython-310-darwin.so,sha256=yA_nZFmkDKwJJc8cPRPZ8Dhb71bVFx0p6qgYWko07bg,120656
131
- amsdal/cloud/constants.cpython-310-darwin.so,sha256=Ugd8hW6fm5KX74zEpIYEyT9b77jw0Q8ngJFR_bIU-iQ,158624
99
+ amsdal/cloud/client.cpython-310-darwin.so,sha256=w2qv7vGz-8f9T8LNHe3XObeNtCKfMC3hY_cW7gPL4fQ,215632
100
+ amsdal/cloud/__init__.cpython-310-darwin.so,sha256=M-eVdHctyfyIR5K0879gcQupIyn_fKAsDohVnQo0tRE,120656
101
+ amsdal/cloud/constants.cpython-310-darwin.so,sha256=4v8hHfKep2ZujaGzht5OBVZ5Zfkq0zrXJGGlX4wNwlU,158624
132
102
  amsdal/cloud/enums.pyi,sha256=0g3I-6nLB26kj0H8v4CJRUuARSDLTn91FzTtb9DHGIU,407
133
103
  amsdal/cloud/models/base.pyi,sha256=GKl9jFUcRv4gzdqf3G_irx0TUPuD2C-GS2PuhyyvgF4,1564
134
104
  amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- amsdal/cloud/models/base.cpython-310-darwin.so,sha256=R-khDeqzMfBIKQrZR24Kv_9eiXZU_FzKEkG4nBjVTmQ,159488
136
- amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=6hrUopC4WaLAQWQss_VDXyCcQ1ul4e2N_OJZ9iVlBmo,120688
105
+ amsdal/cloud/models/base.cpython-310-darwin.so,sha256=Wzc7XgOBqlo4JPuxPak4zaDAh4PJxaucyMphAr-4LdM,159488
106
+ amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=WmsdXhTUtVTnLs4YOgPhboOpHqb3Qx6XWT7HT2os-vQ,120688
137
107
  amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=aVrtp5YN3uGq-QLs9ra4q5aEvclkj53GlZD7eguI1ig,120704
139
- amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=uDuzl0vNIK0zInZAS7KMvfiRf0yHX_jvFws046XaP9Y,250784
108
+ amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=Ns0O3IbvbENIiwjsuTB4E_2hdhWP1-PccPDjwlmPlMY,120704
109
+ amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=4nxMcqnxegF4UtLNgDow4C-nCoakN8-vI4qJy8Dwz60,250784
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
- amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=SG43XQVPggxkbMaTGmmm5zoU4UsV3sbeZsx7D_yAq5s,213856
113
+ amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=Bh-NEWIvV9BxG6tlYqP2y2vAoU8XvcgImGnH4uiC92E,213856
144
114
  amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
145
- amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=6TlRPn5nMp22sQH3QPAOwbZeyw-3tC_ydWtp4Yg5vE0,163040
146
- amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=IBC-ABINDOaVHi2_2AMAYoB6_PUXFB4KCbLcvd2YYqo,120720
115
+ amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=6Oi5z6Prxa5ArGvM8PlBIxmElpQpXAktXbCHHQLEsMI,163040
116
+ amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=BvQ-CzUlhCbKcAqCENvBPx9EhdZl_RuVqCl1DHdniw0,120720
147
117
  amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
148
- amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=-9JMaEdXmcjVyNloWjYmG7mhyj7-zQg38vVAoeehux4,252920
149
- amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=A3EMk5oZVRW6pEXGu4E6sJQpNw1XrAO_TskamP90jKg,215960
118
+ amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=K0eD19OqL9-e_3eG3z4s-MgsQ1GGKIeblpWdAs6ZVPo,252920
119
+ amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=HIELW-dCdZHP6sLh6aK_MuUdolNURQHAyFZQttgc7Us,215960
150
120
  amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
151
- amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=ae2Qs_u0NL8pHbaibJFhwMjxwctziMKc4x4SWDCXv-4,180808
152
- amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=W9KX4s9NlX1g-gpUSVIyuawOeR4EITs0QyPh3oJYWVQ,180280
153
- amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=c4vz01Htj6q5xlOkWIO7JZ8JJAaIpFTI1n9VEZ7ldEg,180968
121
+ amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=VOmxqLI4S2JrYBTmK9PvaiTykFvLzJnm8SzuSJHxRSg,180808
122
+ amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=RN7DqJhQbnqM1cZ_rlG6vLtmHBU18nSkJm0q6P7qE_I,180280
123
+ amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=MYRmpfJEJ7hHV2clblIA80gKdkDGqibtS4R0HSLEcoA,180968
154
124
  amsdal/cloud/services/actions/base.pyi,sha256=RuTQwOHkHCzEw4HBkHkbba9gW_5158BT71YdOxIzlGw,1648
155
125
  amsdal/cloud/services/actions/manager.pyi,sha256=7oFfhd26A5raF8mOFYOLC2BZ_J9L67ddH-fYgPkjtQ4,2735
156
- amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=MNtWAYEK0dWyih4NMgkgWT1_xcGWtxxE0HeqbHH7faA,252168
157
- amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=UAdVxFw10KKTfmrSUvmCpWBNgs21KjmS6cBkxZ07hmY,180728
126
+ amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=Mspo9uQHe20MvcgfhBgG9ZcUPMd7iUgPEbHYEiTnLKU,252152
127
+ amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=qUBWsYJ4E2HKpjnjHL8tNme25IVvd5aIwWoFxmDnD1Q,180728
158
128
  amsdal/cloud/services/actions/list_secrets.pyi,sha256=B14mii5J0ktUaTLDHkqfkhwhy0bweuy6i6rc9n41EE4,355
159
129
  amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=Auceo80smANgYjEd2wXd2mwxbsfdf_AjWEAxYiYgUMU,249440
161
- amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=fhujTD9PrZOCtCLnHX2Pq17RsY6aFAkC0WMw6mEHL-g,304480
162
- amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=z8lsiblZXh6E3C2yhvqrdQkoRVCLeT4czbFCS0hQXJU,180328
163
- amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=3sWOx2e9ZmHHPTM3XxrhoLRBX-p8cug78DjSivL5meE,180848
164
- amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=O7NS5X7uWTldC33Htm8c-6XlfALBqermsfZq_Qsu3zM,180392
165
- amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=30RjoAZvjFu73lADwneAMuJhfUAn79CkLDtpHzN2894,180488
130
+ amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=n0r9P-TMhM7TWV-OqY36NtCiLxS3TEvJ8C8cCHOYesE,249440
131
+ amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=UAhPFUrQRI7OgB1CjbET_YMY34z6VeDgKaAxRrJ1xgs,304480
132
+ amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=U7EQPPuOfGGumFulFnWH4qth4yqbE1EWs5XFzSr5DlQ,180328
133
+ amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=jPbdyO53r-Zah_DIqtrrmCAfZbUAHvYxihKgqnFmhRM,180848
134
+ amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=E-vCYh0HaAYEhc3V4H1E0nS7cHnp-ianZkrjr_B9SsU,180392
135
+ amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=PKmPNkhZ_cqGvMnfC74x_CCMk2dcZOlVvqP5k36bOG0,180488
166
136
  amsdal/cloud/services/actions/delete_secret.pyi,sha256=QhIYoXQzShEUwLwoDQaNEf-mw1PQvl0l3EFIpg-dKcE,252
167
- amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=zNRxBRXfO27pJLOwooNjq_phExfzrswunlmYKFqvkPc,180968
137
+ amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=c3D__WRwkR5fqHmCs-KRnBauQaIJgKw2KIZNJW5Ac24,180968
168
138
  amsdal/cloud/services/actions/delete_dependency.pyi,sha256=2xT5Ks6KGgNMZEl--VkcpHZ3Mo7SvJpMtQCOdLkcwLE,259
169
- amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=ke71MJQJGMFiFsu5CBFuPIeIRkWHYDTLf65AQMBJsSk,120736
139
+ amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=d-mLXlyNN6LNUSD-241Par--kARnHNUep_F5UfBBac8,120736
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
143
  amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
174
- amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=_kOR1_3TbA_1wwypeRTogqJwH5tDZZNiAgo0YKRKZJs,180424
144
+ amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=AUQPdrgogmkJqUBzANMPo3AK1VEcpX6P8vNTn-avHCc,180424
175
145
  amsdal/cloud/services/actions/add_secret.pyi,sha256=-aLENIqVyk-0IE7m4f-p8KOfLmsvZ0QjWyqSyiDXzi4,268
176
146
  amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
177
147
  amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
178
- amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=q2Ps3vBGMu5E0Zr2-BxT31xp_Uaf8MSCq5h10IWeEi8,180456
148
+ amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=ZFpn2fBghA0vsIVdmc9s1N0efd0JFQAnYBdY5ZHxLbA,180456
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/update_deploy.cpython-310-darwin.so,sha256=O28zW3g-ziTiDdAUz5UTOaWEZtNTpK-jm-Df6EQnCK8,180776
151
+ amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so,sha256=0O1oK4lJsbq-wS62GczfKPvixXdr0sAHR4jTIKkjOW4,180776
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-310-darwin.so,sha256=J5tlLMFh52vZjFUA1PzVCtXM2TWl851aiTG1NEWMzHo,390416
186
- amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=tkiSX7SJBEsp0OWOnD8GRkpFdkrsNuq-bcr5htl5DTE,120672
187
- amsdal/migration/manager.pyi,sha256=lLiErmrNHxaC4_gbGvoAW9A99e4Rw3i94UcwgAlM1AY,1343
155
+ amsdal/fixtures/manager.cpython-310-darwin.so,sha256=MSr-AKgbPn3wSJwuQejnfHp1OVS6UkRRopAzluQKsgE,390416
156
+ amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=6x3y-nilQbhuP6usKwJDUq_qVh6G8Xlj2-XP_J1DKvg,120672
157
+ amsdal/migration/base_migration_schemas.cpython-310-darwin.so,sha256=4umIkoONrwVG82UdlQrpfFdaWrr1PsyO4PI5r24K5Mw,428272
158
+ amsdal/migration/file_migration_store.pyi,sha256=lYZVV0P9NKyR09SydcEemJ2cbMuIlTI_mI4qJyrHhS8,1699
159
+ amsdal/migration/file_migration_executor.pyi,sha256=5qS42efiRCgjU_c-a7gfeVzD6nI8XKH2t_NT8ryixa8,2557
160
+ amsdal/migration/migrations_loader.pyi,sha256=mU5p4_Djuynl6zdEmMVY1NXwyjSV3Wa344CXP6arfBM,691
188
161
  amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- amsdal/migration/manager.cpython-310-darwin.so,sha256=CxEo-VMlQcYKlHpN9wFl3UnYNS6M1Oi8Sbrg7LIQQYo,370832
190
- amsdal/migration/utils.pyi,sha256=s4R1_Dn25l-2wLN86vP8PBWVYo1tdvcaShZ5mKGc7d0,1125
191
- amsdal/migration/__init__.cpython-310-darwin.so,sha256=0suV-ypFe3xMC_TeSHuLSmnCidYugzLfD0ZkMweEcFU,120688
192
- amsdal/migration/utils.cpython-310-darwin.so,sha256=WOVsKmDj1-6-vgYE24iT6ngXGQTVIV89COax0SFmisg,250912
162
+ amsdal/migration/file_migration_writer.pyi,sha256=r4nTR9u0AXUv9oWQoarCvGF-jt2Af_Apr8Bg_Cm31_g,728
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/__init__.cpython-310-darwin.so,sha256=TI5BKNwLeFhqqYFq00NqIGQsXV_4HjA2aPtHyPX5Lz8,120688
167
+ amsdal/migration/migrations.cpython-310-darwin.so,sha256=h3NR5mX84RjmckV-ytXlgONggx27m02MeE2xeHop4UY,249736
168
+ amsdal/migration/schemas_loaders.pyi,sha256=YvvUs4wX5QKP0PUIevXTmo8Rr85LvAIseNxuPgh3i1U,1197
169
+ amsdal/migration/data_classes.cpython-310-darwin.so,sha256=u37-caqDxDSoeQpcVED_1OUQe-r39LRwQcOdlTjMY2I,215912
170
+ amsdal/migration/file_migration_store.cpython-310-darwin.so,sha256=0Bal7eas5eP9PNRVFNUFB1eSt7doxNM0-CGsIOCtmCs,371440
171
+ amsdal/migration/migrations_loader.cpython-310-darwin.so,sha256=Oa0RAqYf7pOakUBpwp6qkmR8Kp4h1fDkwtFfNGYbk7E,217240
172
+ amsdal/migration/file_migration_executor.cpython-310-darwin.so,sha256=NxqmD2M1fT-KjuGIGfroKjn2ZerM6kdwYh6ObwWvm5A,337648
173
+ amsdal/migration/schemas_loaders.cpython-310-darwin.so,sha256=ImR1lrWr3i2sGQRSAozImki9qVttyUq3So4xFeoz3-k,256568
174
+ amsdal/migration/file_migration_generator.cpython-310-darwin.so,sha256=bBg127p2P6UMBjPzywvDpwE74LIEygie87D_YqeJxVE,376784
175
+ amsdal/migration/file_migration_generator.pyi,sha256=GnaXG6p69w_plerH2rhKnnbku70p8bJyUawTK80pMeI,3146
176
+ amsdal/migration/utils.cpython-310-darwin.so,sha256=3SdhazdZiSKsLhQDDBhoA69dOisU5LH11VT-KWCxEtE,302496
177
+ amsdal/migration/file_migration_writer.cpython-310-darwin.so,sha256=_ip_wrBXo4x1rRN0aq-a2BpeGgdkBXcB9kyp5QK1-1Y,251664
178
+ amsdal/migration/migrations.pyi,sha256=sXpmEbXbWuD8xwS9eqGqNx9tLNTHImilYRXntAS5X5M,2387
179
+ amsdal/migration/executors/base.pyi,sha256=ONSNkDU-8-deix0GnvjM-M6MzRZEf_HyNWVY5Eazxp0,1179
180
+ amsdal/migration/executors/state_executor.pyi,sha256=5UvOE2K53yYPKcObFEM08Vv8f1KbEsy6xXZOoAoB4wI,1003
181
+ amsdal/migration/executors/default_executor.cpython-310-darwin.so,sha256=8WSVoWGJ2qYPiDscHs-Gy8rw_z9NakclfnEC8Og9HpY,370200
182
+ amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ amsdal/migration/executors/base.cpython-310-darwin.so,sha256=Sf__uumObmUStmCbAvY2HG-f3RyqGa9lUKSO8_cw29I,215440
184
+ amsdal/migration/executors/__init__.cpython-310-darwin.so,sha256=CVlJ5TwBJtQZULKbWipcjMH3DVxcul28E8y7oc3XpPw,120736
185
+ amsdal/migration/executors/default_executor.pyi,sha256=kM6IRRYStijbCFJjLutXPLsLPvQixXvqyKOEZbDH7fs,1560
186
+ amsdal/migration/executors/state_executor.cpython-310-darwin.so,sha256=VITA75K42Mo2SKq2elvwBtlCCi9O85Id7GU1kkr0o2M,249672
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-310-darwin.so,sha256=dgYyumxlkljqt2n2Gn9bh5VJKgU02Yr9W_PBO_Kso5w,120672
196
- amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=NHElbjDpca2RnlrAlr7WKCoNX17fWro2IGnn3m4O0NY,345936
189
+ amsdal/services/__init__.cpython-310-darwin.so,sha256=-KZJyCdywRJWAoSi7SEE9jX97kkZaloNd_OyGcUcLMo,120672
190
+ amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=ACkggM7whAwqc3XB-j2xolKVa7x02WbbaCQXRzJNLPs,345936
191
+ amsdal-0.1.0.dist-info/RECORD,,
192
+ amsdal-0.1.0.dist-info/WHEEL,sha256=quc6KPsQ_p8Uswd5yj8hDZg5y2ghFxeobjm5cM_ymZ0,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
- }