amsdal 0.4.13__cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.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.
Files changed (269) hide show
  1. amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md +1334 -0
  2. amsdal/__about__.py +4 -0
  3. amsdal/__about__.pyi +1 -0
  4. amsdal/__init__.py +23 -0
  5. amsdal/__init__.pyi +9 -0
  6. amsdal/__migrations__/0000_initial.py +217 -0
  7. amsdal/__migrations__/0001_datetime_type.py +18 -0
  8. amsdal/__migrations__/0002_fixture_order.py +44 -0
  9. amsdal/__migrations__/0003_schema_type_in_class_meta.py +44 -0
  10. amsdal/cloud/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  11. amsdal/cloud/__init__.pyi +0 -0
  12. amsdal/cloud/client.cpython-312-x86_64-linux-gnu.so +0 -0
  13. amsdal/cloud/client.pyi +57 -0
  14. amsdal/cloud/constants.cpython-312-x86_64-linux-gnu.so +0 -0
  15. amsdal/cloud/constants.pyi +13 -0
  16. amsdal/cloud/enums.cpython-312-x86_64-linux-gnu.so +0 -0
  17. amsdal/cloud/enums.pyi +68 -0
  18. amsdal/cloud/models/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  19. amsdal/cloud/models/__init__.pyi +0 -0
  20. amsdal/cloud/models/base.cpython-312-x86_64-linux-gnu.so +0 -0
  21. amsdal/cloud/models/base.pyi +247 -0
  22. amsdal/cloud/services/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  23. amsdal/cloud/services/__init__.pyi +0 -0
  24. amsdal/cloud/services/actions/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  25. amsdal/cloud/services/actions/__init__.pyi +0 -0
  26. amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-x86_64-linux-gnu.so +0 -0
  27. amsdal/cloud/services/actions/add_allowlist_ip.pyi +19 -0
  28. amsdal/cloud/services/actions/add_basic_auth.cpython-312-x86_64-linux-gnu.so +0 -0
  29. amsdal/cloud/services/actions/add_basic_auth.pyi +21 -0
  30. amsdal/cloud/services/actions/add_dependency.cpython-312-x86_64-linux-gnu.so +0 -0
  31. amsdal/cloud/services/actions/add_dependency.pyi +19 -0
  32. amsdal/cloud/services/actions/add_secret.cpython-312-x86_64-linux-gnu.so +0 -0
  33. amsdal/cloud/services/actions/add_secret.pyi +20 -0
  34. amsdal/cloud/services/actions/base.cpython-312-x86_64-linux-gnu.so +0 -0
  35. amsdal/cloud/services/actions/base.pyi +122 -0
  36. amsdal/cloud/services/actions/create_deploy.cpython-312-x86_64-linux-gnu.so +0 -0
  37. amsdal/cloud/services/actions/create_deploy.pyi +41 -0
  38. amsdal/cloud/services/actions/create_env.cpython-312-x86_64-linux-gnu.so +0 -0
  39. amsdal/cloud/services/actions/create_env.pyi +19 -0
  40. amsdal/cloud/services/actions/create_session.cpython-312-x86_64-linux-gnu.so +0 -0
  41. amsdal/cloud/services/actions/create_session.pyi +17 -0
  42. amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-x86_64-linux-gnu.so +0 -0
  43. amsdal/cloud/services/actions/delete_allowlist_ip.pyi +19 -0
  44. amsdal/cloud/services/actions/delete_basic_auth.cpython-312-x86_64-linux-gnu.so +0 -0
  45. amsdal/cloud/services/actions/delete_basic_auth.pyi +20 -0
  46. amsdal/cloud/services/actions/delete_dependency.cpython-312-x86_64-linux-gnu.so +0 -0
  47. amsdal/cloud/services/actions/delete_dependency.pyi +21 -0
  48. amsdal/cloud/services/actions/delete_env.cpython-312-x86_64-linux-gnu.so +0 -0
  49. amsdal/cloud/services/actions/delete_env.pyi +21 -0
  50. amsdal/cloud/services/actions/delete_secret.cpython-312-x86_64-linux-gnu.so +0 -0
  51. amsdal/cloud/services/actions/delete_secret.pyi +21 -0
  52. amsdal/cloud/services/actions/destroy_deploy.cpython-312-x86_64-linux-gnu.so +0 -0
  53. amsdal/cloud/services/actions/destroy_deploy.pyi +18 -0
  54. amsdal/cloud/services/actions/expose_db.cpython-312-x86_64-linux-gnu.so +0 -0
  55. amsdal/cloud/services/actions/expose_db.pyi +22 -0
  56. amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-x86_64-linux-gnu.so +0 -0
  57. amsdal/cloud/services/actions/get_basic_auth_credentials.pyi +21 -0
  58. amsdal/cloud/services/actions/get_monitoring_info.cpython-312-x86_64-linux-gnu.so +0 -0
  59. amsdal/cloud/services/actions/get_monitoring_info.pyi +21 -0
  60. amsdal/cloud/services/actions/list_dependencies.cpython-312-x86_64-linux-gnu.so +0 -0
  61. amsdal/cloud/services/actions/list_dependencies.pyi +21 -0
  62. amsdal/cloud/services/actions/list_deploys.cpython-312-x86_64-linux-gnu.so +0 -0
  63. amsdal/cloud/services/actions/list_deploys.pyi +19 -0
  64. amsdal/cloud/services/actions/list_envs.cpython-312-x86_64-linux-gnu.so +0 -0
  65. amsdal/cloud/services/actions/list_envs.pyi +20 -0
  66. amsdal/cloud/services/actions/list_secrets.cpython-312-x86_64-linux-gnu.so +0 -0
  67. amsdal/cloud/services/actions/list_secrets.pyi +22 -0
  68. amsdal/cloud/services/actions/manager.cpython-312-x86_64-linux-gnu.so +0 -0
  69. amsdal/cloud/services/actions/manager.pyi +278 -0
  70. amsdal/cloud/services/actions/signup_action.cpython-312-x86_64-linux-gnu.so +0 -0
  71. amsdal/cloud/services/actions/signup_action.pyi +20 -0
  72. amsdal/cloud/services/actions/update_deploy.cpython-312-x86_64-linux-gnu.so +0 -0
  73. amsdal/cloud/services/actions/update_deploy.pyi +19 -0
  74. amsdal/cloud/services/auth/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  75. amsdal/cloud/services/auth/__init__.pyi +0 -0
  76. amsdal/cloud/services/auth/base.cpython-312-x86_64-linux-gnu.so +0 -0
  77. amsdal/cloud/services/auth/base.pyi +6 -0
  78. amsdal/cloud/services/auth/credentials.cpython-312-x86_64-linux-gnu.so +0 -0
  79. amsdal/cloud/services/auth/credentials.pyi +30 -0
  80. amsdal/cloud/services/auth/manager.cpython-312-x86_64-linux-gnu.so +0 -0
  81. amsdal/cloud/services/auth/manager.pyi +26 -0
  82. amsdal/cloud/services/auth/signup_service.cpython-312-x86_64-linux-gnu.so +0 -0
  83. amsdal/cloud/services/auth/signup_service.pyi +32 -0
  84. amsdal/cloud/services/auth/token.cpython-312-x86_64-linux-gnu.so +0 -0
  85. amsdal/cloud/services/auth/token.pyi +27 -0
  86. amsdal/configs/__init__.py +0 -0
  87. amsdal/configs/__init__.pyi +0 -0
  88. amsdal/configs/constants.py +33 -0
  89. amsdal/configs/constants.pyi +22 -0
  90. amsdal/configs/main.py +258 -0
  91. amsdal/configs/main.pyi +173 -0
  92. amsdal/context/__init__.py +0 -0
  93. amsdal/context/__init__.pyi +0 -0
  94. amsdal/context/manager.py +69 -0
  95. amsdal/context/manager.pyi +50 -0
  96. amsdal/contrib/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  97. amsdal/contrib/__init__.pyi +0 -0
  98. amsdal/contrib/app_config.py +7 -0
  99. amsdal/contrib/app_config.pyi +6 -0
  100. amsdal/contrib/auth/__init__.py +0 -0
  101. amsdal/contrib/auth/__init__.pyi +0 -0
  102. amsdal/contrib/auth/app.py +27 -0
  103. amsdal/contrib/auth/app.pyi +15 -0
  104. amsdal/contrib/auth/decorators/__init__.py +35 -0
  105. amsdal/contrib/auth/decorators/__init__.pyi +6 -0
  106. amsdal/contrib/auth/errors.py +7 -0
  107. amsdal/contrib/auth/errors.pyi +4 -0
  108. amsdal/contrib/auth/fixtures/basic_permissions.json +64 -0
  109. amsdal/contrib/auth/lifecycle/__init__.py +0 -0
  110. amsdal/contrib/auth/lifecycle/__init__.pyi +0 -0
  111. amsdal/contrib/auth/lifecycle/consumer.py +394 -0
  112. amsdal/contrib/auth/lifecycle/consumer.pyi +108 -0
  113. amsdal/contrib/auth/migrations/0000_initial.py +84 -0
  114. amsdal/contrib/auth/models/__init__.py +0 -0
  115. amsdal/contrib/auth/models/__init__.pyi +0 -0
  116. amsdal/contrib/auth/models/login_session.py +118 -0
  117. amsdal/contrib/auth/models/login_session.pyi +37 -0
  118. amsdal/contrib/auth/models/permission.py +23 -0
  119. amsdal/contrib/auth/models/permission.pyi +18 -0
  120. amsdal/contrib/auth/models/user.py +106 -0
  121. amsdal/contrib/auth/models/user.pyi +46 -0
  122. amsdal/contrib/auth/settings.py +36 -0
  123. amsdal/contrib/auth/settings.pyi +26 -0
  124. amsdal/contrib/frontend_configs/__init__.py +0 -0
  125. amsdal/contrib/frontend_configs/__init__.pyi +0 -0
  126. amsdal/contrib/frontend_configs/app.py +24 -0
  127. amsdal/contrib/frontend_configs/app.pyi +19 -0
  128. amsdal/contrib/frontend_configs/constants.py +1 -0
  129. amsdal/contrib/frontend_configs/constants.pyi +1 -0
  130. amsdal/contrib/frontend_configs/conversion/__init__.py +5 -0
  131. amsdal/contrib/frontend_configs/conversion/__init__.pyi +3 -0
  132. amsdal/contrib/frontend_configs/conversion/convert.py +286 -0
  133. amsdal/contrib/frontend_configs/conversion/convert.pyi +22 -0
  134. amsdal/contrib/frontend_configs/lifecycle/__init__.py +0 -0
  135. amsdal/contrib/frontend_configs/lifecycle/__init__.pyi +0 -0
  136. amsdal/contrib/frontend_configs/lifecycle/consumer.py +306 -0
  137. amsdal/contrib/frontend_configs/lifecycle/consumer.pyi +98 -0
  138. amsdal/contrib/frontend_configs/migrations/0000_initial.py +256 -0
  139. amsdal/contrib/frontend_configs/models/__init__.py +0 -0
  140. amsdal/contrib/frontend_configs/models/__init__.pyi +0 -0
  141. amsdal/contrib/frontend_configs/models/frontend_activator_config.py +22 -0
  142. amsdal/contrib/frontend_configs/models/frontend_activator_config.pyi +12 -0
  143. amsdal/contrib/frontend_configs/models/frontend_config_async_validator.py +11 -0
  144. amsdal/contrib/frontend_configs/models/frontend_config_async_validator.pyi +7 -0
  145. amsdal/contrib/frontend_configs/models/frontend_config_control_action.py +54 -0
  146. amsdal/contrib/frontend_configs/models/frontend_config_control_action.pyi +32 -0
  147. amsdal/contrib/frontend_configs/models/frontend_config_group_validator.py +21 -0
  148. amsdal/contrib/frontend_configs/models/frontend_config_group_validator.pyi +11 -0
  149. amsdal/contrib/frontend_configs/models/frontend_config_option.py +12 -0
  150. amsdal/contrib/frontend_configs/models/frontend_config_option.pyi +8 -0
  151. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py +17 -0
  152. amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.pyi +8 -0
  153. amsdal/contrib/frontend_configs/models/frontend_config_slider_option.py +13 -0
  154. amsdal/contrib/frontend_configs/models/frontend_config_slider_option.pyi +9 -0
  155. amsdal/contrib/frontend_configs/models/frontend_config_text_mask.py +14 -0
  156. amsdal/contrib/frontend_configs/models/frontend_config_text_mask.pyi +10 -0
  157. amsdal/contrib/frontend_configs/models/frontend_config_validator.py +28 -0
  158. amsdal/contrib/frontend_configs/models/frontend_config_validator.pyi +15 -0
  159. amsdal/contrib/frontend_configs/models/frontend_control_config.py +87 -0
  160. amsdal/contrib/frontend_configs/models/frontend_control_config.pyi +35 -0
  161. amsdal/contrib/frontend_configs/models/frontend_model_config.py +14 -0
  162. amsdal/contrib/frontend_configs/models/frontend_model_config.pyi +9 -0
  163. amsdal/contrib/frontend_configs/utils.py +29 -0
  164. amsdal/contrib/frontend_configs/utils.pyi +17 -0
  165. amsdal/errors.py +31 -0
  166. amsdal/errors.pyi +12 -0
  167. amsdal/fixtures/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  168. amsdal/fixtures/__init__.pyi +0 -0
  169. amsdal/fixtures/manager.cpython-312-x86_64-linux-gnu.so +0 -0
  170. amsdal/fixtures/manager.pyi +170 -0
  171. amsdal/fixtures/utils.cpython-312-x86_64-linux-gnu.so +0 -0
  172. amsdal/fixtures/utils.pyi +9 -0
  173. amsdal/manager.cpython-312-x86_64-linux-gnu.so +0 -0
  174. amsdal/manager.pyi +265 -0
  175. amsdal/mixins/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  176. amsdal/mixins/__init__.pyi +0 -0
  177. amsdal/mixins/class_versions_mixin.cpython-312-x86_64-linux-gnu.so +0 -0
  178. amsdal/mixins/class_versions_mixin.pyi +12 -0
  179. amsdal/models/__init__.py +19 -0
  180. amsdal/models/__init__.pyi +9 -0
  181. amsdal/models/core/__init__.py +0 -0
  182. amsdal/models/core/__init__.pyi +0 -0
  183. amsdal/models/core/class_object.py +37 -0
  184. amsdal/models/core/class_object.pyi +24 -0
  185. amsdal/models/core/class_object_meta.py +26 -0
  186. amsdal/models/core/class_object_meta.pyi +15 -0
  187. amsdal/models/core/class_property.py +20 -0
  188. amsdal/models/core/class_property.pyi +11 -0
  189. amsdal/models/core/class_property_meta.py +15 -0
  190. amsdal/models/core/class_property_meta.pyi +10 -0
  191. amsdal/models/core/file.py +156 -0
  192. amsdal/models/core/file.pyi +104 -0
  193. amsdal/models/core/fixture.py +25 -0
  194. amsdal/models/core/fixture.pyi +14 -0
  195. amsdal/models/core/option.py +11 -0
  196. amsdal/models/core/option.pyi +8 -0
  197. amsdal/models/core/validator.py +12 -0
  198. amsdal/models/core/validator.pyi +8 -0
  199. amsdal/models/types/__init__.py +0 -0
  200. amsdal/models/types/__init__.pyi +0 -0
  201. amsdal/models/types/object.py +26 -0
  202. amsdal/models/types/object.pyi +16 -0
  203. amsdal/py.typed +0 -0
  204. amsdal/queryset/__init__.py +21 -0
  205. amsdal/queryset/__init__.pyi +6 -0
  206. amsdal/schemas/__init__.py +0 -0
  207. amsdal/schemas/__init__.pyi +0 -0
  208. amsdal/schemas/core/class_object/model.json +31 -0
  209. amsdal/schemas/core/class_object/properties/display_name.py +9 -0
  210. amsdal/schemas/core/class_object_meta/model.json +59 -0
  211. amsdal/schemas/core/class_property/model.json +22 -0
  212. amsdal/schemas/core/class_property_meta/model.json +23 -0
  213. amsdal/schemas/core/file/hooks/pre_create.py +24 -0
  214. amsdal/schemas/core/file/hooks/pre_update.py +24 -0
  215. amsdal/schemas/core/file/model.json +23 -0
  216. amsdal/schemas/core/file/properties/from_file.py +34 -0
  217. amsdal/schemas/core/file/properties/mimetype.py +13 -0
  218. amsdal/schemas/core/file/properties/str.py +6 -0
  219. amsdal/schemas/core/file/properties/to_file.py +24 -0
  220. amsdal/schemas/core/file/properties/validate_data.py +32 -0
  221. amsdal/schemas/core/fixture/model.json +35 -0
  222. amsdal/schemas/core/option/model.json +19 -0
  223. amsdal/schemas/core/validator/model.json +19 -0
  224. amsdal/schemas/interfaces.py +25 -0
  225. amsdal/schemas/interfaces.pyi +20 -0
  226. amsdal/schemas/manager.cpython-312-x86_64-linux-gnu.so +0 -0
  227. amsdal/schemas/manager.py +0 -0
  228. amsdal/schemas/manager.pyi +0 -0
  229. amsdal/schemas/mixins/__init__.py +0 -0
  230. amsdal/schemas/mixins/__init__.pyi +0 -0
  231. amsdal/schemas/mixins/check_dependencies_mixin.py +125 -0
  232. amsdal/schemas/mixins/check_dependencies_mixin.pyi +45 -0
  233. amsdal/schemas/mixins/verify_schemas_mixin.py +96 -0
  234. amsdal/schemas/mixins/verify_schemas_mixin.pyi +33 -0
  235. amsdal/schemas/repository.py +84 -0
  236. amsdal/schemas/repository.pyi +22 -0
  237. amsdal/schemas/types/anything/model.json +7 -0
  238. amsdal/schemas/types/array/model.json +7 -0
  239. amsdal/schemas/types/binary/model.json +7 -0
  240. amsdal/schemas/types/boolean/model.json +17 -0
  241. amsdal/schemas/types/date/model.json +7 -0
  242. amsdal/schemas/types/datetime/model.json +7 -0
  243. amsdal/schemas/types/dictionary/model.json +8 -0
  244. amsdal/schemas/types/number/model.json +8 -0
  245. amsdal/schemas/types/object/model.json +53 -0
  246. amsdal/schemas/types/string/model.json +8 -0
  247. amsdal/schemas/utils.py +16 -0
  248. amsdal/schemas/utils.pyi +10 -0
  249. amsdal/services/__init__.cpython-312-x86_64-linux-gnu.so +0 -0
  250. amsdal/services/__init__.pyi +0 -0
  251. amsdal/services/transaction_execution.cpython-312-x86_64-linux-gnu.so +0 -0
  252. amsdal/services/transaction_execution.pyi +93 -0
  253. amsdal/transactions/__init__.py +13 -0
  254. amsdal/transactions/__init__.pyi +4 -0
  255. amsdal/utils/__init__.py +0 -0
  256. amsdal/utils/__init__.pyi +0 -0
  257. amsdal/utils/contrib_paths.py +23 -0
  258. amsdal/utils/contrib_paths.pyi +14 -0
  259. amsdal/utils/rollback/__init__.py +440 -0
  260. amsdal/utils/rollback/__init__.pyi +38 -0
  261. amsdal/utils/tests/__init__.py +0 -0
  262. amsdal/utils/tests/enums.py +18 -0
  263. amsdal/utils/tests/factories.py +49 -0
  264. amsdal/utils/tests/helpers.py +499 -0
  265. amsdal-0.4.13.dist-info/METADATA +369 -0
  266. amsdal-0.4.13.dist-info/RECORD +269 -0
  267. amsdal-0.4.13.dist-info/WHEEL +6 -0
  268. amsdal-0.4.13.dist-info/licenses/LICENSE.txt +107 -0
  269. amsdal-0.4.13.dist-info/top_level.txt +1 -0
@@ -0,0 +1,269 @@
1
+ amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
2
+ amsdal/__about__.py,sha256=Nd7E0uojvIHSHFiXHRMBf8pPjn5cd_XTrdECDmaCIYs,125
3
+ amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
4
+ amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
5
+ amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
6
+ amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
7
+ amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
8
+ amsdal/manager.cpython-312-x86_64-linux-gnu.so,sha256=TNMPyYfcbPljlXcVPZOXkBx2L8i51v_qKCHvrbl7OOY,1930968
9
+ amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
10
+ amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ amsdal/__migrations__/0000_initial.py,sha256=FzVtPq7lnJw8yPa-x9PZ95cZAXDUMakWIzsD7AJRylg,10969
12
+ amsdal/__migrations__/0001_datetime_type.py,sha256=4nBz3CkcOEB_TX7TdlFKVgvzH4UrD3yOXwoAGsUq9YY,601
13
+ amsdal/__migrations__/0002_fixture_order.py,sha256=3ESW8juUpRdSziGYYyiUyJeQVEB6kSB4wIIncvOBHok,1785
14
+ amsdal/__migrations__/0003_schema_type_in_class_meta.py,sha256=fKc9JJwwX3gn7rr0BoDVKU0fuqGz1iIaJxr5SPaCwnw,1909
15
+ amsdal/cloud/__init__.cpython-312-x86_64-linux-gnu.so,sha256=x4i3W9pFyMZs_4ybga1lcw-tc8-3jhS026aLcv6XZ1A,77040
16
+ amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ amsdal/cloud/client.cpython-312-x86_64-linux-gnu.so,sha256=lTlLZF0RNd9IUAmcuqX4nbQwl0rmFpWbJGUTxjHHQlQ,567056
18
+ amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
19
+ amsdal/cloud/constants.cpython-312-x86_64-linux-gnu.so,sha256=XQPG3iLBIPjeVi-uSb3ZAmWgPL8Wkx6IiPPrtW_ZnuE,144680
20
+ amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
21
+ amsdal/cloud/enums.cpython-312-x86_64-linux-gnu.so,sha256=Xm_k5S0NGLyxEpryWDYigTLF72eqnRufRAxPSwBYNkk,154360
22
+ amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
23
+ amsdal/cloud/models/__init__.cpython-312-x86_64-linux-gnu.so,sha256=Vio6QRGVXWqoJHSkwdwh8aQBf8nfXCKs5T-M5lcLFgE,77096
24
+ amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ amsdal/cloud/models/base.cpython-312-x86_64-linux-gnu.so,sha256=LwphbGTpMAaD_DEug6U5XF6Uw17JP_dPXrQJjARQKug,248152
26
+ amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
27
+ amsdal/cloud/services/__init__.cpython-312-x86_64-linux-gnu.so,sha256=nmtSCaHT3NxM9gBltZ7w99B5o2c-Vxk2UlQVHCoUPgw,77120
28
+ amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ amsdal/cloud/services/actions/__init__.cpython-312-x86_64-linux-gnu.so,sha256=826NS4KIzyZEVBcARfqdjzuEnG4j8GzPbbB_Yep7ULA,77160
30
+ amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-x86_64-linux-gnu.so,sha256=wFSyhVIE2KTK7L5nevtiNVhzlr4ISGhuKbToWVHDYX4,405800
32
+ amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
33
+ amsdal/cloud/services/actions/add_basic_auth.cpython-312-x86_64-linux-gnu.so,sha256=zwonEP-6gNdS_9b4UH69ZYW1daZN_Vy9yeEHNDN119Y,427608
34
+ amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
35
+ amsdal/cloud/services/actions/add_dependency.cpython-312-x86_64-linux-gnu.so,sha256=NWxgHNXGnI1ky2adCd9Rk_aEcrBUsPJnx8W-nxyQLKg,404328
36
+ amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
37
+ amsdal/cloud/services/actions/add_secret.cpython-312-x86_64-linux-gnu.so,sha256=omRllzwVgxa6WTrG-SJeBhjcRYjqvvIqwX_8tDSg-i4,418864
38
+ amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
39
+ amsdal/cloud/services/actions/base.cpython-312-x86_64-linux-gnu.so,sha256=SmEVYs7TYaQfw8hh41Ib8JciuoahRUk2dORju71pPH0,904160
40
+ amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
41
+ amsdal/cloud/services/actions/create_deploy.cpython-312-x86_64-linux-gnu.so,sha256=vLeuNkQlvTP9Q6WFA-vQz_I32Yb6qRGfRrkLGGSeL6A,923072
42
+ amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
43
+ amsdal/cloud/services/actions/create_env.cpython-312-x86_64-linux-gnu.so,sha256=gS79IxFk2ek3sd7W7RY2pgxeDWaR4U6x2BY6O4yB0uA,394744
44
+ amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
45
+ amsdal/cloud/services/actions/create_session.cpython-312-x86_64-linux-gnu.so,sha256=czj5CRDvu63TLc1kWNi1QvGSBPI8WJJMUCN0Yv9M3J8,369152
46
+ amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
47
+ amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-x86_64-linux-gnu.so,sha256=h3Nag45AHJXcO-lHOF89G2pLG4BrFHNe1jS-yW-JSmg,405896
48
+ amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
49
+ amsdal/cloud/services/actions/delete_basic_auth.cpython-312-x86_64-linux-gnu.so,sha256=EdAXXWprBPbT9QFQhYUnybLw1_hXLtl2k9EHhoejYtE,390304
50
+ amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
51
+ amsdal/cloud/services/actions/delete_dependency.cpython-312-x86_64-linux-gnu.so,sha256=tJeaeyC8F-Br9OaPqcDTXrMGDB6DFrhaFVYtC5_AQa4,404448
52
+ amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
53
+ amsdal/cloud/services/actions/delete_env.cpython-312-x86_64-linux-gnu.so,sha256=TFsp9Zck78SPOXt0yKE_yjoSpv6k2ztBLo5jkAkBvHw,394752
54
+ amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
55
+ amsdal/cloud/services/actions/delete_secret.cpython-312-x86_64-linux-gnu.so,sha256=c92vxnxgcYiMQHjvSr8CArdfNxyTAZ9Tr0v0ZTRhHzM,404240
56
+ amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
57
+ amsdal/cloud/services/actions/destroy_deploy.cpython-312-x86_64-linux-gnu.so,sha256=4IbJMiqBEhPSRN1Nqg-23-0qFUgYDUgsbkpG8xs1_gM,366000
58
+ amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
59
+ amsdal/cloud/services/actions/expose_db.cpython-312-x86_64-linux-gnu.so,sha256=6p07GZYsknq9Zx9cYlvhTlps0LppkfXTH_eXW1qADpM,415504
60
+ amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
61
+ amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-x86_64-linux-gnu.so,sha256=4zeYPTcgIhEP0hwjXOgWVdJW0jxhy_xRS-v2uPjIJNg,407752
62
+ amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
63
+ amsdal/cloud/services/actions/get_monitoring_info.cpython-312-x86_64-linux-gnu.so,sha256=oDjI1ZB8vtcFxJ4SQ55YqZVTD-6jzK7OKA0BU-h0AR8,407552
64
+ amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
65
+ amsdal/cloud/services/actions/list_dependencies.cpython-312-x86_64-linux-gnu.so,sha256=tiJkCCTsWcvIfmSTVLRK8-JKYlDTEyltLsnVGMD2gRs,415448
66
+ amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
67
+ amsdal/cloud/services/actions/list_deploys.cpython-312-x86_64-linux-gnu.so,sha256=kNFkJZlSNncsqg-vRcUd0l-ggZFRuWDWQHyOF4KiceM,379504
68
+ amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
69
+ amsdal/cloud/services/actions/list_envs.cpython-312-x86_64-linux-gnu.so,sha256=uy2jSc7dCas6tHvn_1dO4-9E3aLcenoxYcTN0k3Qw0c,376080
70
+ amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
71
+ amsdal/cloud/services/actions/list_secrets.cpython-312-x86_64-linux-gnu.so,sha256=-RHgWPxE8Bsb5dbeRdAxkSZTrKi7t_odkXGtKkd7Jms,421472
72
+ amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
73
+ amsdal/cloud/services/actions/manager.cpython-312-x86_64-linux-gnu.so,sha256=H55lsxhw-S5O7UQWTVUejGMPHBmX5L5A-zkHc1ui3cs,1038120
74
+ amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
75
+ amsdal/cloud/services/actions/signup_action.cpython-312-x86_64-linux-gnu.so,sha256=LaWE5FwNt6VKzZ1KcEuGEBjnN0BVRS6HzcAZwNSq-3c,339808
76
+ amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
77
+ amsdal/cloud/services/actions/update_deploy.cpython-312-x86_64-linux-gnu.so,sha256=YrTVBCtqiHor1WOKKby9kUeuDapetHHBE0XqkTIFJhY,384208
78
+ amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
79
+ amsdal/cloud/services/auth/__init__.cpython-312-x86_64-linux-gnu.so,sha256=u5uGBYxSCfgfs9hvfeCvPg4IA6sk0ncRr-hY8mnn3pw,77144
80
+ amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ amsdal/cloud/services/auth/base.cpython-312-x86_64-linux-gnu.so,sha256=Dp_d1Pp-8H2J09Lr_vg4uTICdGMDCA6jbPgeZKMZiSg,276408
82
+ amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
83
+ amsdal/cloud/services/auth/credentials.cpython-312-x86_64-linux-gnu.so,sha256=LdkCBnuWmxbvthVfANdoaOWSU5QxpVIMKgbjV5XtYwA,938896
84
+ amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
85
+ amsdal/cloud/services/auth/manager.cpython-312-x86_64-linux-gnu.so,sha256=iai2vNKWpt0SbZ69p6JKYvEo2zgX8q0CiaCfOCJqEmE,452152
86
+ amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
87
+ amsdal/cloud/services/auth/signup_service.cpython-312-x86_64-linux-gnu.so,sha256=Icr01fYJn2bOOglLE1Z-_SY3vHgkwPmrZto2VxYVonc,589352
88
+ amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
89
+ amsdal/cloud/services/auth/token.cpython-312-x86_64-linux-gnu.so,sha256=yGXKwn7VVdYmRXqFH0q4t7fs7Nkbz5jO6B5mN-R42dg,739488
90
+ amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
91
+ amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
+ amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,969
94
+ amsdal/configs/constants.pyi,sha256=ZoWj8V0YkrPaY0zBsXCenwuWMQIQ0K6hnzr4We9CRl0,683
95
+ amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
96
+ amsdal/configs/main.pyi,sha256=XpcltkUCEECvRbiQ6P-j66zjU_g8lWLbCPfHoHhRMyw,6846
97
+ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
100
+ amsdal/context/manager.pyi,sha256=9oqHjtub9qqPdIuD2y09IMmRbwSbRBk1T-dXGsWGmMI,1474
101
+ amsdal/contrib/__init__.cpython-312-x86_64-linux-gnu.so,sha256=5XQTGWGw7lKkNdb5NHrmelaEvHsncbB5AvBXjUX9fTw,77064
102
+ amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
+ amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
104
+ amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
105
+ amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ amsdal/contrib/auth/app.py,sha256=MY_MwhI6d1J8IRi232SbBPp-wrcleRc5BIHNW0--ji4,1181
108
+ amsdal/contrib/auth/app.pyi,sha256=CD5sdl5zu6it5RbF4YGHgLS5Q3aArOS16RY4HZq43_g,512
109
+ amsdal/contrib/auth/errors.py,sha256=nXuMLbicP_ScrPuZaSdwkPr7fN66Ox_v6UzknVRy9Jk,134
110
+ amsdal/contrib/auth/errors.pyi,sha256=LXEfxHkbEZuES7PNzBwmS7yP5yqaZGDftscI10SeCx0,131
111
+ amsdal/contrib/auth/settings.py,sha256=4HneHyXD01s5_kAmhnA-13ryi-PfxejbE45YvC_xHHI,1227
112
+ amsdal/contrib/auth/settings.pyi,sha256=mf0ysPZbmin-Dvk8ZdoohqIpRUZrgmPeryL3HXk9F1M,1011
113
+ amsdal/contrib/auth/decorators/__init__.py,sha256=oBKJQtgWnWiPOjol9-KejJPuQJmfsjj14UVB_4qB4kw,1088
114
+ amsdal/contrib/auth/decorators/__init__.pyi,sha256=1DKnpx3dKyeuHyKcnXn0TzVqQxT8qrjQnYYASNSA7fM,305
115
+ amsdal/contrib/auth/fixtures/basic_permissions.json,sha256=FsmMt4hzTYH_iI6tJQdT2bv-fPtrFPMe9ZjmLmgrcoo,1606
116
+ amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
+ amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
+ amsdal/contrib/auth/lifecycle/consumer.py,sha256=N2JJuS13FC4rOHsHuHgMKU0Kef9-S31RUiP3QHXjqIQ,16884
119
+ amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=xvcZIfpCE-HmUm_KwyVvkueiipl90teZqdlszmappD4,5333
120
+ amsdal/contrib/auth/migrations/0000_initial.py,sha256=uSpGAEh8lSdhUxrGa4SVtmyNHVn4RHX8eKF1s_FnH20,6299
121
+ amsdal/contrib/auth/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ amsdal/contrib/auth/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ amsdal/contrib/auth/models/login_session.py,sha256=qZw9i7ZmtTOpNMo2k7IXMOq324Uh9DauQlItujsFdaQ,3936
124
+ amsdal/contrib/auth/models/login_session.pyi,sha256=5CfAWUiyoyhckOCfzc_BgqgPvdw1F3B-IDNTMqmfUlM,1343
125
+ amsdal/contrib/auth/models/permission.py,sha256=KOy91A6PEbftwqfXlp91JZZM6YfAxG6B5-M3FfC5Nb0,675
126
+ amsdal/contrib/auth/models/permission.pyi,sha256=eKZTZfjG4HQBAo_jp2kpJzgqpIyGOe7UyGgDM1S5MP8,543
127
+ amsdal/contrib/auth/models/user.py,sha256=jc8XbgfYtbuktu1Qz0DHLCNGHzrK2pyKrtdH8m7VMzk,3771
128
+ amsdal/contrib/auth/models/user.pyi,sha256=H-vTCbOTAWrDYjcOfR7IFFodmTmLSwlb385Cler5_iI,1626
129
+ amsdal/contrib/frontend_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
+ amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ amsdal/contrib/frontend_configs/app.py,sha256=fY4GukBM6GKSZExT0EgddTamLfUJHwQZS8tOwVQyeSY,836
132
+ amsdal/contrib/frontend_configs/app.pyi,sha256=Bxdz0kmOF-Poaf2wmoJdgWYmHaStFyOFYTko3b3GpTY,723
133
+ amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
134
+ amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
135
+ amsdal/contrib/frontend_configs/utils.py,sha256=IruaUNl4xkOr2IIFzlvrmi06vEu3CWx49GzLBsrCFU0,1103
136
+ amsdal/contrib/frontend_configs/utils.pyi,sha256=0LuzznNZ4NjuYYXsApfubjUpkG8EVwq-vcd-oHvJtvs,730
137
+ amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
138
+ amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
139
+ amsdal/contrib/frontend_configs/conversion/convert.py,sha256=7H7giYFwvEGWUzeAwGazaadhwDRLEBv9TOvVySCCSpU,8918
140
+ amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
141
+ amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
+ amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
+ amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=Uq_I-t-HmQDXBoaK4wzj1PWTziYbrjXigwrh_qYnJUM,11487
144
+ amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=kRNenTrKfswS8Y3UY6XYQ03WlCuo9LFk8WIJxm--cAk,4168
145
+ amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=eZjgh4WJ7lYlUGh2BJUAfgF1v4by937l4jQkCQOLqZ8,13610
146
+ amsdal/contrib/frontend_configs/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ amsdal/contrib/frontend_configs/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
149
+ amsdal/contrib/frontend_configs/models/frontend_activator_config.pyi,sha256=litdaAoXYPSCZDMNvjAbnjd2LLkHvFxS34rl36WTw5I,477
150
+ amsdal/contrib/frontend_configs/models/frontend_config_async_validator.py,sha256=okzRBflVwIyg4CoygNcptKuUIxwYMu_w8z5RGgbpP9g,411
151
+ amsdal/contrib/frontend_configs/models/frontend_config_async_validator.pyi,sha256=LZjYgUjQM4eB6X18vlSHjuqBNaGwC7rrRGt22Lm9IHE,293
152
+ amsdal/contrib/frontend_configs/models/frontend_config_control_action.py,sha256=cV8xFhnd1RJknyWlDnPX9lTgQZ-yylIgAWuicZHqHS0,2105
153
+ amsdal/contrib/frontend_configs/models/frontend_config_control_action.pyi,sha256=KMIWGggjoccCBFAvmc3L2jouU1zCDWTNm_Z7Y564hPg,1082
154
+ amsdal/contrib/frontend_configs/models/frontend_config_group_validator.py,sha256=vJ36_Xmweygi5UXAL6wOXLi6sGe2rkUcsmT7WzgXuAU,974
155
+ amsdal/contrib/frontend_configs/models/frontend_config_group_validator.pyi,sha256=VK062ijoZgs0_3FjoCjcRga0-Mcfc4EFqjgaQHYkerA,457
156
+ amsdal/contrib/frontend_configs/models/frontend_config_option.py,sha256=n4ZcI7RDwNCpeT5gGLuNJeHzJlhqyf7U5BD4V4wbUv4,448
157
+ amsdal/contrib/frontend_configs/models/frontend_config_option.pyi,sha256=9FfnL8Pv3e6VUThWrF1nanj3jBNxWOUma0juf3gNQ8s,304
158
+ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=KxP9viiRFJrXUeHgI7m0AyiMRAlRTU7lbyPodAe0uHY,544
159
+ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.pyi,sha256=UC6qSuICs1NNFo6BzWtpx5PQ_Uu96Ub5rED8NO_BwwM,340
160
+ amsdal/contrib/frontend_configs/models/frontend_config_slider_option.py,sha256=bixZRd4x4zcxykMXC3obYDp8DHORRR3BEBcqaZGcHHo,510
161
+ amsdal/contrib/frontend_configs/models/frontend_config_slider_option.pyi,sha256=Ei55pOHYbeTkyg4EQIX5-qEeJGIhp5_eDuZctfZZhVo,333
162
+ amsdal/contrib/frontend_configs/models/frontend_config_text_mask.py,sha256=EEonXV4HyxiVq4AkvIxKtzXhiDYeplexMWzNSQeYpoc,583
163
+ amsdal/contrib/frontend_configs/models/frontend_config_text_mask.pyi,sha256=FPVRCmL_vEDG44xriyTLDhQdVeyQawiBmez1qnQWrZA,365
164
+ amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
165
+ amsdal/contrib/frontend_configs/models/frontend_config_validator.pyi,sha256=sdJL4VK1D6H6H4dkGF_SPvtxsWHASwVXqh0KCtv3LQE,591
166
+ amsdal/contrib/frontend_configs/models/frontend_control_config.py,sha256=ePkGaRMssOqO5NjWs2xA1ZK95hl40WAKg7Fp2QZMda4,4014
167
+ amsdal/contrib/frontend_configs/models/frontend_control_config.pyi,sha256=jBkVdN8ePwjBdaS2-GhM9UU9G7N7OIhYbE-pgxvv-A8,1655
168
+ amsdal/contrib/frontend_configs/models/frontend_model_config.py,sha256=UTvp-RvPnci4F7RdRj60hZXgEjSqvNhkfwdbw7ju_sU,517
169
+ amsdal/contrib/frontend_configs/models/frontend_model_config.pyi,sha256=CjV8oFweFPKfYBR5Myd_Tmm0hmszEOmZm1pOVAKumW8,357
170
+ amsdal/fixtures/__init__.cpython-312-x86_64-linux-gnu.so,sha256=Cty2EkieAYu_LU-9lKFv4J6oQLygOvZmW2gJ4n5623w,77072
171
+ amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ amsdal/fixtures/manager.cpython-312-x86_64-linux-gnu.so,sha256=oyy9OZzZqqJ91jSZvSMKDs2cONdj11o62znfyuiLCk8,2621568
173
+ amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
174
+ amsdal/fixtures/utils.cpython-312-x86_64-linux-gnu.so,sha256=PrO_irABBjUvKpfiFoBOHea3pDvIK_nKj-zO5ZfzMZA,1016824
175
+ amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
176
+ amsdal/mixins/__init__.cpython-312-x86_64-linux-gnu.so,sha256=-WXivFJHQ7EzCEtNN-6O2-RtPtHlCrBdxGzRWSvwKKo,77048
177
+ amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ amsdal/mixins/class_versions_mixin.cpython-312-x86_64-linux-gnu.so,sha256=vxknV18Zh_4Vzr8lB5svyjoe7A6UyCQhFLZG8-qv8II,368656
179
+ amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
180
+ amsdal/models/__init__.py,sha256=bwURV9lpt8a6S8WvLgMDk_haor9FUQa-o29StSdTMCs,757
181
+ amsdal/models/__init__.pyi,sha256=14Jaejs35pftAZ8z3rNWKV6csTrBZPPKMNKrrIx_rTs,825
182
+ amsdal/models/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ amsdal/models/core/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ amsdal/models/core/class_object.py,sha256=H9os4vZaVAcIQiXyates9PC4BKpXQKtg13sDzGYTN8k,1533
185
+ amsdal/models/core/class_object.pyi,sha256=mwMYnb7Gcmc0yKUrYsSrHY_o9eqdAoV-Hz0r0ePaTYo,821
186
+ amsdal/models/core/class_object_meta.py,sha256=Q_l4a1ZctV-aaBF22NF4LEkAJhEBgEjhsITuHX2PqsI,1080
187
+ amsdal/models/core/class_object_meta.pyi,sha256=GRFsp1D6QSYJAga9VnR7xTFznc4h_hN7LDzzeSgBv5o,551
188
+ amsdal/models/core/class_property.py,sha256=1MSUUwJOJvK0KNIja1kCUfc8pr3l_j_C34-98ksKvyo,776
189
+ amsdal/models/core/class_property.pyi,sha256=dI3OSZ2yfpIDUtiyRXJfdQL74HuF_C0uB1ccZ6RVpF4,368
190
+ amsdal/models/core/class_property_meta.py,sha256=omNSra6oPXDBda9FzLsYh9jQYhQQXTvCAF5KDka6LCY,524
191
+ amsdal/models/core/class_property_meta.pyi,sha256=wi2kFpQffYvUSldlkMDluwxhjic3MI2sHSr2y9BClFU,332
192
+ amsdal/models/core/file.py,sha256=nst9eGXBymoeEer60vVIBcDx0Z4XVjVokHeX9qjq0No,5031
193
+ amsdal/models/core/file.pyi,sha256=RZTKCfjQ4fXtwz3E1xtgDsViaB_IwGtX2icDQtw-_kk,3460
194
+ amsdal/models/core/fixture.py,sha256=V4SS1rAYD6mtRjwZ5tEaGgZL3fgRuP2KJ4x7R3AkBWo,1000
195
+ amsdal/models/core/fixture.pyi,sha256=eVGiwX79YkV6KlsxdE40D7JlA0Zan6mPY2wTMv9HWS8,537
196
+ amsdal/models/core/option.py,sha256=W2w9tmNrdmOF6x5QohJghRrnUY-RFCQ0YFULhVGdDzw,326
197
+ amsdal/models/core/option.pyi,sha256=kkZou2vvjYHRBlF0twFfAkHF3Y_vf95YWEYhcAC5_5s,223
198
+ amsdal/models/core/validator.py,sha256=Eqn2XvJV8Kn6NT2HnIGIkAV2ubmSen3rx5Yaeiuapak,367
199
+ amsdal/models/core/validator.pyi,sha256=7Q8muoefalIAqWa1sleORcsaQNzhkUH5MsqMy9w7l_4,231
200
+ amsdal/models/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
+ amsdal/models/types/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ amsdal/models/types/object.py,sha256=HaalwgfNDkbRz86h-YEE73TPpXvoOWy6o6Mnx6TAUos,1270
203
+ amsdal/models/types/object.pyi,sha256=E9YowVGMdbUOw1T_MLpCwprRlaSkCYfOpy2ua0EuPHs,560
204
+ amsdal/queryset/__init__.py,sha256=CzNaFx6yHvePtd3JY1ZGF3QLfE-e_ll5iSnaCVWdKHI,676
205
+ amsdal/queryset/__init__.pyi,sha256=U8YdXkB_drnE4aX54kg7B8my9fyPg-pwsVct6QfM5Bc,545
206
+ amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
+ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
+ amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
209
+ amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
210
+ amsdal/schemas/manager.cpython-312-x86_64-linux-gnu.so,sha256=8MoqrYseuosAGk9jUyuAPfPfgGIkGZSIVddCEHRReXg,76784
211
+ amsdal/schemas/manager.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ amsdal/schemas/manager.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
+ amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
214
+ amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
215
+ amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
216
+ amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
217
+ amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
218
+ amsdal/schemas/core/class_object/properties/display_name.py,sha256=F2Ox-MJa8EndMq7Ox10VaismKe44w2zxnYhsVhBHPOI,256
219
+ amsdal/schemas/core/class_object_meta/model.json,sha256=ZSFm2YdlW87_efCW9g5vAXfmY3YGCskUF11xHbOrOjI,1037
220
+ amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
221
+ amsdal/schemas/core/class_property_meta/model.json,sha256=X5i5FLlq-BhP8MDFPki7nu_FSdcpsAWXOe3u-mULKUA,390
222
+ amsdal/schemas/core/file/model.json,sha256=s_sQpToj5zeSYgkR9AFPvdm5dz2YiFH9Lm9EwzGcM1E,340
223
+ amsdal/schemas/core/file/hooks/pre_create.py,sha256=9JUaU2U5h-_7jbF2NyTWwyCemkOR-1yHRXP92e9EIQ0,741
224
+ amsdal/schemas/core/file/hooks/pre_update.py,sha256=TD9MmK_ZRbWD_jfdHmH0BWt4gr-QZvmMGdR3Dq7Ycc4,721
225
+ amsdal/schemas/core/file/properties/from_file.py,sha256=5I_7ZuJ53BC12RDI3jK_LrF0OKDC-OlJZKvYf4zoWGA,958
226
+ amsdal/schemas/core/file/properties/mimetype.py,sha256=Y2hTq82Da8KeuRsIV4RK3E1F7sbsu12dWqD99kD3Inw,433
227
+ amsdal/schemas/core/file/properties/str.py,sha256=r2RAz6uBxEFJjRJGBYk4yWXzmLyZ_zR6DmnsubPY4Fs,245
228
+ amsdal/schemas/core/file/properties/to_file.py,sha256=qzlfo4YHBtsf11S2Hy30AjvA7Lyi8ezsGEXqxGBOPVg,720
229
+ amsdal/schemas/core/file/properties/validate_data.py,sha256=7KLXoLVh6O3y14SaioH_oiMzKGCLw_g4FwvRMWrByAI,903
230
+ amsdal/schemas/core/fixture/model.json,sha256=m2v-zkH-MsUlH8cc459-gtNCGHAozHSkGAgSVj9kQb8,568
231
+ amsdal/schemas/core/option/model.json,sha256=bD1WHbnAnU6Ws_U10BZ8oeHaQbVgE1lBWYFcjANeHNI,277
232
+ amsdal/schemas/core/validator/model.json,sha256=JN62rw_UOPk6iiKWtKRNG1OmFQeiX7EEIVbRFnCkj7o,297
233
+ amsdal/schemas/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
+ amsdal/schemas/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
+ amsdal/schemas/mixins/check_dependencies_mixin.py,sha256=M3Wi1g4F9pbEEpOUlXUhCnvh5CyObhRlij0AecTTbJc,5082
236
+ amsdal/schemas/mixins/check_dependencies_mixin.pyi,sha256=xbuov90jhPqYe1iRQEkWC4GIoMhlFdPp0Tis5X69mzY,2018
237
+ amsdal/schemas/mixins/verify_schemas_mixin.py,sha256=K-LMXgtNqNi7G79_qZ-GrmVnhqofvBrqda9UxsVBX34,4055
238
+ amsdal/schemas/mixins/verify_schemas_mixin.pyi,sha256=j51Nn8xTek3gQYIvUsezjVBBgVs54AkQb2gy1JFTW_A,1871
239
+ amsdal/schemas/types/anything/model.json,sha256=detUw-DW5nEl7Syy_J6eyPfi_yj5HQQ_X_GE5Fo1Zqs,120
240
+ amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
241
+ amsdal/schemas/types/binary/model.json,sha256=pbmucBgX_BhD37k0KD_j7Nt5N_R-xorrezIg37n3Tz0,118
242
+ amsdal/schemas/types/boolean/model.json,sha256=FBBjA6YdkkgkhpMIZd294862S3_mAjb8wxMqunKrGcE,240
243
+ amsdal/schemas/types/date/model.json,sha256=_siNphlfvq-bZ29Z3tloQlxh1_zRsEkXuO5HJsXmDSE,116
244
+ amsdal/schemas/types/datetime/model.json,sha256=DROVOPm0uQXy4qUj4mQUnhvfT_67psrQJj8psVRYjrA,120
245
+ amsdal/schemas/types/dictionary/model.json,sha256=Q1__6DIdJ81mrakmrN3c17PMoW05ri6Pz7cb_G0PeuM,133
246
+ amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
247
+ amsdal/schemas/types/object/model.json,sha256=Pfas7ElCmAHJpOrVbmHm2goIoeErop816AIXdFsJGes,965
248
+ amsdal/schemas/types/string/model.json,sha256=aC4VIBC2Si6CJNhRh-_7R24CbNy_-rRbFKiTUayT3aI,127
249
+ amsdal/services/__init__.cpython-312-x86_64-linux-gnu.so,sha256=k69jouUJTt3bXjff8rwiOI1CilYIUdEUZIYNgVgSRnA,77072
250
+ amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
+ amsdal/services/transaction_execution.cpython-312-x86_64-linux-gnu.so,sha256=_1w7wQhC-txXDPLg55m1KOTmVOLmrEcZM-roTH1RxA4,1515056
252
+ amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
253
+ amsdal/transactions/__init__.py,sha256=XQF1Ipr2Ao0TDhyNlZPAF8TNkpl75PalOZrzRVzQn1g,429
254
+ amsdal/transactions/__init__.pyi,sha256=tK1CNKSx7gEFephi0mw04j-xxl1Z2af3iFbykFqov6I,340
255
+ amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
+ amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
+ amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
258
+ amsdal/utils/contrib_paths.pyi,sha256=Ngb_2wCTCPJ9NSIqKiP254Ww9xrQzAV1-AiqUkVmiuQ,493
259
+ amsdal/utils/rollback/__init__.py,sha256=NBIvidqj0nKRa30mWon5onpHBPQidb0DFJGcZbkKrY8,16832
260
+ amsdal/utils/rollback/__init__.pyi,sha256=oA1_VJjK3k13nUp8H1wXjJs6LrlqEtAethPRQ7P8mLc,1106
261
+ amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
+ amsdal/utils/tests/enums.py,sha256=DoVtMzvfePjfLiAVctPDehdTTHawDbWrQP3yg46Bx6k,390
263
+ amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
264
+ amsdal/utils/tests/helpers.py,sha256=VmcvdFbMbfS87XzDB0j16AWR2i1esQJVEyIPDfIiS74,17335
265
+ amsdal-0.4.13.dist-info/METADATA,sha256=60CM1bYYzHv73ePRc63UqRSLIwHNEjCN5fntj-QZni8,57438
266
+ amsdal-0.4.13.dist-info/WHEEL,sha256=aSgG0F4rGPZtV0iTEIfy6dtHq6g67Lze3uLfk0vWn88,151
267
+ amsdal-0.4.13.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
268
+ amsdal-0.4.13.dist-info/RECORD,,
269
+ amsdal-0.4.13.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_17_x86_64
5
+ Tag: cp312-cp312-manylinux2014_x86_64
6
+
@@ -0,0 +1,107 @@
1
+ AMSDAL End User License Agreement
2
+
3
+
4
+ Version: 1.0
5
+ Last Updated: October 31, 2023
6
+
7
+ PREAMBLE
8
+
9
+ This Agreement is a legally binding agreement between you and AMSDAL regarding the Library. Read this Agreement carefully before accepting it, or downloading or using the Library.
10
+ By downloading, installing, running, executing, or otherwise using the Library, by paying the License Fees, or by explicitly accepting this Agreement, whichever is earlier, you agree to be bound by this Agreement without modifications or reservations.
11
+ If you do not agree to be bound by this Agreement, you shall not download, install, run, execute, accept, use or permit others to download, install, run, execute, accept, or otherwise use the Library.
12
+ If you are acting for or on behalf of an entity, then you accept this Agreement on behalf of such entity and you hereby represent that you are authorized to accept this Agreement and enter into a binding agreement with us on such entity’s behalf.
13
+
14
+ 1. INTERPRETATION
15
+ 1.1. The following definitions shall apply, unless otherwise expressly stated in this Agreement:
16
+ “Additional Agreement” means a written agreement executed between you and us that supplements and/or modifies this Agreement by specifically referring hereto.
17
+ “Agreement” means this AMSDAL End User License Agreement as may be updated or supplemented from time to time.
18
+ “AMSDAL”, “we”, “us” means AMSDAL INC., a Delaware corporation having its principal place of business in the State of New York.
19
+ “Communications” means all and any notices, requests, demands and other communications required or may be given under the terms of this Agreement or in connection herewith.
20
+ “Consumer” means, unless otherwise defined under the applicable legislation, a person who purchases or uses goods or services for personal, family, or household purposes.
21
+ “Documentation” means the technical, user, or other documentation, as may be updated from time to time, such as manuals, guidelines, which is related to the Library and provided or distributed by us or on our behalf, if any.
22
+ “Free License Plan” means the License Plan that is provided free of charge, with no License Fee due.
23
+ “Library” means the AMSDAL Framework and its components, as may be updated from time to time, including the packages: amsdal_Framework and its dependencies amsdal_models, amsdal_data, amsdal_cli, amsdal_server and amsdal_utils.
24
+ “License Fee” means the consideration to be paid by you to us for the License as outlined herein.
25
+ “License Plan” means a predetermined set of functionality, restrictions, or services applicable to the Library.
26
+ “License” has the meaning outlined in Clause 2.1.
27
+ “Parties” means AMSDAL and you.
28
+ “Party” means either AMSDAL or you.
29
+ “Product Page” means our website page related to the Library, if any.
30
+ “Third-Party Materials” means the code, software or other content that is distributed by third parties under free or open-source software licenses (such as MIT, Apache 2.0, BSD) that allow for editing, modifying, or reusing such content.
31
+ “Update” means an update, patch, fix, support release, modification, or limited functional enhancement to the Library, including but not limited to error corrections to the Library, which does not, in our opinion, constitute an upgrade or a new/separate product.
32
+ “U.S. Export Laws” means the United States Export Administration Act and any other export law, restriction, or regulation.
33
+ “Works” means separate works, such as software, that are developed using the Library. The Works should not merely be a fork, alternative, copy, or derivative work of the Library or its part.
34
+ “You” means either you as a single individual or a single entity you represent.
35
+ 1.2. Unless the context otherwise requires, a reference to one gender shall include a reference to the other genders; words in the singular shall include the plural and in the plural shall include the singular; any words following the terms including, include, in particular, for example, or any similar expression shall be construed as illustrative and shall not limit the sense of the words, description, definition, phrase or term preceding those terms; except where a contrary intention appears, a reference to a Section or Clause is a reference to a Section or Clause of this Agreement; Section and Clause headings do not affect the interpretation of this Agreement.
36
+ 1.3. Each provision of this Agreement shall be construed as though both Parties participated equally in the drafting of same, and any rule of construction that a document shall be construed against the drafting Party, including without limitation, the doctrine is commonly known as “contra proferentem”, shall not apply to the interpretation of this Agreement.
37
+ 2. LICENSE, RESTRICTIONS
38
+ 2.1. License Grant. Subject to the terms and conditions contained in this Agreement, AMSDAL hereby grants to you a non-exclusive, non-transferable, revocable, limited, worldwide, and non-sublicensable license (the “License”) to install, run, and use the Library, as well as to modify and customize the Library to implement it in the Works.
39
+ 2.2. Restrictions. As per the License, you shall not, except as expressly permitted herein, (i) sell, resell, transfer, assign, pledge, rent, rent out, lease, assign, distribute, copy, or encumber the Library or the rights in the Library, (ii) use the Library other than as expressly authorized in this Agreement, (iii) remove any copyright notice, trademark notice, and/or other proprietary legend or indication of confidentiality set forth on or contained in the Library, if any, (iv) use the Library in any manner that violates the laws of the United States of America or any other applicable law, (v) circumvent any feature, key, or other licensing control mechanism related to the Library that ensures compliance with this Agreement, (vi) reverse engineer, decompile, disassemble, decrypt or otherwise seek to obtain the source code to the Library, (vii) with respect to the Free License Plan, use the Library to provide a service to a third party, and (viii) permit others to do anything from the above.
40
+ 2.3. Confidentiality. The Library, including any of its elements and components, shall at all times be treated by you as confidential and proprietary. You shall not disclose, transfer, or otherwise share the Library to any third party without our prior written consent. You shall also take all reasonable precautions to prevent any unauthorized disclosure and, in any event, shall use your best efforts to protect the confidentiality of the Library. This Clause does not apply to the information and part of the Library that (i) is generally known to the public at the time of disclosure, (ii) is legally received by you from a third party which rightfully possesses such information, (iii) becomes generally known to the public subsequent to the time of such disclosure, but not as a result of unauthorized disclosure hereunder, (iv) is already in your possession prior to obtaining the Library, or (v) is independently developed by you or on your behalf without use of or reference to the Library.
41
+ 2.4. Third-Party Materials. By entering into this Agreement, you acknowledge and confirm that the Library includes the Third-Party Materials. The information regarding the Third-Party Materials will be provided to you along with the Library. If and where necessary, you shall comply with the terms and conditions applicable to the Third-Party Materials.
42
+ 2.5. Title. The Library is protected by law, including without limitation the copyright laws of the United States of America and other countries, and by international treaties. AMSDAL or its licensors reserve all rights not expressly granted to you in this Agreement. You agree that AMSDAL and/or its licensors own all right, title, interest, and intellectual property rights associated with the Library, including related applications, plugins or extensions, and you will not contest such ownership.
43
+ 2.6. No Sale. The Library provided hereunder is licensed, not sold. Therefore, the Library is exempt from the “first sale” doctrine, as defined in the United States copyright laws or any other applicable law. For purposes of clarification only, you accept, acknowledge and agree that this is a license agreement and not an agreement for sale, and you shall have no ownership rights in any intellectual or tangible property of AMSDAL or its licensors.
44
+ 2.7. Works. We do not obtain any rights, title or interest in and to the Works. Once and if the Library components lawfully become a part of the Works, you are free to choose the terms governing the Works. If the License is terminated you shall not use the Library within the Works.
45
+ 2.8. Statistics. You hereby acknowledge and agree that we reserve the right to track and analyze the Library usage statistics and metrics.
46
+ 3. LICENSE PLANS
47
+ 3.1. Plans. The Library, as well as its functionality and associated services, may be subject to certain restrictions and limitations depending on the License Plan. The License Plan’s description, including any terms, such as term, License Fees, features, etc., are or will be provided by us including via the Product Page.
48
+ 3.2. Plan Change. The Free License Plan is your default License Plan. You may change your License Plan by following our instructions that may be provided on the Product Page or otherwise. Downgrades are available only after the end of the respective prepaid License Plan.
49
+ 3.3. Validity. You may have only one valid License Plan at a time. The License Plan is valid when it is fully prepaid by you (except for the Free License Plan which is valid only if and as long as we grant the License to you) and this Agreement is not terminated in accordance with the terms hereof.
50
+ 3.4. Terms Updates. The License Plan’s terms may be updated by us at our sole discretion with or without prior notice to you. The License Plan updates that worsen terms and conditions of your valid License Plan will only be effective for the immediately following License Plan period, if any.
51
+ 3.5. Free License Plan. We may from time to time at our discretion with or without notice and without liability to you introduce, update, suspend, or terminate the Free License Plan. The Free License Plan allows you to determine if the Library suits your particular needs. The Library provided under the Free License Plan is not designed to and shall not be used in trade, commercial activities, or your normal course of business.
52
+ 4. PAYMENTS
53
+ 4.1. License Fees. In consideration for the License provided hereunder, you shall, except for the Free License Plan, pay the License Fee in accordance with the terms of the chosen License Plan or Additional Agreement, if any.
54
+ 4.2. Updates. We reserve the right at our sole discretion to change any License Fees, as well as to introduce or change any new payments at any time. The changes will not affect the prepaid License Plans; however they will apply starting from the immediately following License Plan period.
55
+ 4.3. Payment Terms. Unless otherwise agreed in the Additional Agreement, the License Fees are paid fully in advance.
56
+ 4.4. Precondition. Except for the Free License Plan, payment of the License Fee shall be the precondition for the License. Therefore, if you fail to pay the License Fee in full in accordance with the terms hereof, this Agreement, as well as the License, shall immediately terminate.
57
+ 4.5. Currency and Fees. Unless expressly provided, prices are quoted in U.S. dollars. All currency conversion fees shall be paid by you. Each Party shall cover its own commissions and fees applicable to the transactions contemplated hereunder.
58
+ 4.6. Refunds. There shall be no partial or total refunds of the License Fees that were already paid to us, including without limitation if you failed to download or use the Library.
59
+ 4.7. Taxes. Unless expressly provided, all amounts are exclusive of taxes, including value added tax, sales tax, goods and services tax or other similar tax, each of which, where chargeable by us, shall be payable by you at the rate and in the manner prescribed by law. All other taxes, duties, customs, or similar charges shall be your responsibility.
60
+ 5. UPDATES, AVAILABILITY, SUPPORT
61
+ 5.1. Updates. Except for the Free License Plan, you are eligible to receive all relevant Updates during the valid License Plan at no additional charge. The Library may be updated at our sole discretion with or without notice to you. However, we shall not be obligated to make any Updates.
62
+ 5.2. Availability. We do not guarantee that any particular feature or functionality of the Library will be available at any time.
63
+ 5.3. Support. Unless otherwise decided by us at our sole discretion, we do not provide any support services. There is no representation or warranty that any functionality or Library as such will be supported by us.
64
+ 5.4. Termination. We reserve the right at our sole discretion to discontinue the Library distribution and support at any time by providing prior notice to you. However, we will continue to maintain the Library until the end of then-current License Plan.
65
+ 6. TERM, TERMINATION
66
+ 6.1. Term. Unless terminated earlier on the terms outlined herein, this Agreement shall be in force as long as you have a valid License Plan. Once your License Plan expires, this Agreement shall automatically expire.
67
+ 6.2. Termination Without Cause. You may terminate this Agreement for convenience at any time.
68
+ 6.3. Termination For Breach. If you are in breach of this Agreement and you fail to promptly, however not later than within ten (10) days, following our notice to cure such breach, we may immediately terminate this Agreement.
69
+ 6.4. Termination For Material Breach. If you are in material breach of this Agreement, we may immediately terminate this Agreement upon written notice to you.
70
+ 6.5. Termination of Free License Plan. If you are using the Library under the Free License Plan, this Agreement may be terminated by us at any time with or without notice and without any liability to you.
71
+ 6.6. Effect of Termination. Once this Agreement is terminated or expired, (i) the License shall terminate or expire, (ii) you shall immediately cease using the Library, (iii) you shall permanently erase the Library and its copies that are in your possession or control, (iv) if technically possible, we will discontinue the Library operation, (v) all our obligations under this Agreement shall cease, and (vi) the License Fees or any other amounts that were paid to us hereunder, if any, shall not be reimbursed.
72
+ 6.7. Survival. Clauses and Sections 2.2-2.5, 4.6, 4.7, 6.6, 6.7, 7.7, 8, 9.2, 10-12 shall survive any termination or expiration of this Agreement regardless of the reason.
73
+ 7. REPRESENTATIONS, WARRANTIES
74
+ 7.1. Mutual Representation. Each Party represents that it has the legal power and authority to enter into this Agreement. If you act on behalf of an entity, you hereby represent that you are authorized to accept this Agreement and enter into a binding agreement with us on such entity’s behalf.
75
+ 7.2. Not a Consumer. You represent that you are not entering into this Agreement as a Consumer and that you do not intend to use the Library as a Consumer. The Library is not intended to be used by Consumers, therefore you shall not enter into this Agreement, and download and use the Library if you act as a Consumer.
76
+ 7.3. Sanctions and Restrictions. You represent that you are not (i) a citizen or resident of, or person subject to jurisdiction of, Iran, Syria, Venezuela, Cuba, North Korea, or Russia, or (ii) a person subject to any sanctions administered or enforced by the United States Office of Foreign Assets Control or United Nations Security Council.
77
+ 7.4. IP Warranty. Except for the Free License Plan, we warrant that, to our knowledge, the Library does not violate or infringe any third-party intellectual property rights, including copyright, rights in patents, trade secrets, and/or trademarks, and that to our knowledge no legal action has been taken in relation to the Library for any infringement or violation of any third party intellectual property rights.
78
+ 7.5. No Harmful Code Warranty. Except for the Free License Plan, we warrant that we will use commercially reasonable efforts to protect the Library from, and the Library shall not knowingly include, malware, viruses, trap doors, back doors, or other means or functions which will detrimentally interfere with or otherwise adversely affect your use of the Library or which will damage or destroy your data or other property. You represent that you will use commercially reasonable efforts and industry standard tools to prevent the introduction of, and you will not knowingly introduce, viruses, malicious code, malware, trap doors, back doors or other means or functions by accessing the Library, the introduction of which may detrimentally interfere with or otherwise adversely affect the Library or which will damage or destroy data or other property.
79
+ 7.6. Documentation Compliance Warranty. Except for the Free License Plan, we warrant to you that as long as you maintain a valid License Plan the Library shall perform substantially in accordance with the Documentation. Your exclusive remedy, and our sole liability, with respect to any breach of this warranty, will be for us to use commercially reasonable efforts to promptly correct the non-compliance (provided that you promptly notify us in writing and allow us a reasonable cure period).
80
+ 7.7. Disclaimer of Warranties. Except for the warranties expressly stated above in this Section, the Library is provided “as is”, with all faults and deficiencies. We disclaim all warranties, express or implied, including, but not limited to, warranties of merchantability, fitness for a particular purpose, title, availability, error-free or uninterrupted operation, and any warranties arising from course of dealing, course of performance, or usage of trade to the extent that we may not as a matter of applicable law disclaim any implied warranty, the scope, and duration of such warranty will be the minimum permitted under applicable law.
81
+ 8. LIABILITY
82
+ 8.1. Limitation of Liability. To the maximum extent permitted by applicable law, in no event shall AMSDAL be liable under any theory of liability for any indirect, incidental, special, or consequential damages of any kind (including, without limitation, any such damages arising from breach of contract or warranty or from negligence or strict liability), including, without limitation, loss of profits, revenue, data, or use, or for interrupted communications or damaged data, even if AMSDAL has been advised or should have known of the possibility of such damages.
83
+ 8.2. Liability Cap. In any event, our aggregate liability under this Agreement, negligence, strict liability, or other theory, at law or in equity, will be limited to the total License Fees paid by you under this Agreement for the License Plan valid at the time when the relevant event happened.
84
+ 8.3. Force Majeure. Neither Party shall be held liable for non-performance or undue performance of this Agreement caused by force majeure. Force majeure means an event or set of events, which is unforeseeable, unavoidable, and beyond control of the respective Party, for instance fire, flood, hostilities, declared or undeclared war, military actions, revolutions, act of God, explosion, strike, embargo, introduction of sanctions, act of government, act of terrorism.
85
+ 8.4. Exceptions. Nothing contained herein limits our liability to you in the event of death, personal injury, gross negligence, willful misconduct, or fraud.
86
+ 8.5. Remedies. In addition to, and not in lieu of the termination provisions set forth in Section 6 above, you agree that, in the event of a threatened or actual breach of a provision of this Agreement by you, (i) monetary damages alone will be an inadequate remedy, (ii) such breach will cause AMSDAL great, immediate, and irreparable injury and damage, and (iii) AMSDAL shall be entitled to seek and obtain, from any court of competent jurisdiction (without the requirement of the posting of a bond, if applicable), immediate injunctive and other equitable relief in addition to, and not in lieu of, any other rights or remedies that AMSDAL may have under applicable laws.
87
+ 9. INDEMNITY
88
+ 9.1. Our Indemnity. Except for the Free License Plan users, we will defend, indemnify, and hold you harmless from any claim, suit, or action to you based on our alleged violation of the IP Warranty provided in Clause 7.4 above, provided you (i) notify us in writing promptly upon notice of such claim and (ii) cooperate fully in the defense of such claim, suit, or action. We shall, at our own expense, defend such a claim, suit, or action, and you shall have the right to participate in the defense at your own expense. For the Free License Plan users, you shall use at your own risk and expense, and we have no indemnification obligations.
89
+ 9.2. Your Indemnity. You will defend, indemnify, and hold us harmless from any claim, suit, or action to us based on your alleged violation of this Agreement, provided we notify you in writing promptly upon notice of such claim, suit, or action. You shall, at your own expense, defend such a claim, suit, or action.
90
+ 10. GOVERNING LAW, DISPUTE RESOLUTION
91
+ 10.1. Law. This Agreement shall be governed by the laws of the State of New York, USA, without reference to conflicts of laws principles. Provisions of the United Nations Convention on the International Sale of Goods shall not apply to this Agreement.
92
+ 10.2. Negotiations. The Parties shall seek to solve amicably any disputes, controversies, claims, or demands arising out of or relating to this Agreement, as well as those related to execution, breach, termination, or invalidity hereof. If the Parties do not reach an amicable resolution within thirty (30) days, any dispute, controversy, claim or demand shall be finally settled by the competent court as outlined below.
93
+ 10.3. Jurisdiction. The Parties agree that the exclusive jurisdiction and venue for any dispute arising out of or related to this Agreement shall be the courts of the State of New York and the courts of the United States of America sitting in the County of New York.
94
+ 10.4. Class Actions Waiver. The Parties agree that any dispute arising out of or related to this Agreement shall be pursued individually. Neither Party shall act as a plaintiff or class member in any supposed purported class or representative proceeding, including, but not limited to, a federal or state class action lawsuit, against the other Party in relation herewith.
95
+ 10.5. Costs. In the event of any legal proceeding between the Parties arising out of or related to this Agreement, the prevailing Party shall be entitled to recover, in addition to any other relief awarded or granted, its reasonable costs and expenses (including attorneys’ and expert witness’ fees) incurred in such proceeding.
96
+ 11. COMMUNICATION
97
+ 11.1. Communication Terms. Any Communications shall be in writing. When sent by ordinary mail, Communication shall be sent by personal delivery, by certified or registered mail, and shall be deemed delivered upon receipt by the recipient. When sent by electronic mail (email), Communication shall be deemed delivered on the day following the day of transmission. Any Communication given by email in accordance with the terms hereof shall be of full legal force and effect.
98
+ 11.2. Contact Details. Your contact details must be provided by you to us. AMSDAL contact details are as follows: PO Box 940, Bedford, NY 10506; ams@amsdal.com. Either Party shall keep its contact details correct and up to date. Either Party may update its contact details by providing a prior written notice to the other Party in accordance with the terms hereof.
99
+ 12. MISCELLANEOUS
100
+ 12.1. Export Restrictions. The Library originates from the United States of America and may be subject to the United States export administration regulations. You agree that you will not (i) transfer or export the Library into any country or (ii) use the Library in any manner prohibited by the U.S. Export Laws. You shall comply with the U.S. Export Laws, as well as all applicable international and national laws related to the export or import regulations that apply in relation to your use of the Library.
101
+ 12.2. Entire Agreement. This Agreement shall constitute the entire agreement between the Parties, supersede and extinguish all previous agreements, promises, assurances, warranties, representations and understandings between them, whether written or oral, relating to its subject matter.
102
+ 12.3. Additional Agreements. AMSDAL and you are free to enter into any Additional Agreements. In the event of conflict, unless otherwise explicitly stated, the Additional Agreement shall control.
103
+ 12.4. Modifications. We may modify, supplement or update this Agreement from time to time at our sole and absolute discretion. If we make changes to this Agreement, we will (i) update the “Version” and “Last Updated” date at the top of this Agreement and (ii) notify you in advance before the changes become effective. Your continued use of the Library is deemed acceptance of the amended Agreement. If you do not agree to any part of the amended Agreement, you shall immediately discontinue any use of the Library, which shall be your sole remedy.
104
+ 12.5. Assignment. You shall not assign or transfer any rights or obligations under this Agreement without our prior written consent. We may upon prior written notice unilaterally transfer or assign this Agreement, including any rights and obligations hereunder at any time and no such transfer or assignment shall require your additional consent or approval.
105
+ 12.6. Severance. If any provision or part-provision of this Agreement is or becomes invalid, illegal or unenforceable, it shall be deemed modified to the minimum extent necessary to make it valid, legal, and enforceable. If such modification is not possible, the relevant provision or part-provision shall be deemed deleted. If any provision or part-provision of this Agreement is deemed deleted under the previous sentence, AMSDAL will in good faith replace such provision with a new one that, to the greatest extent possible, achieves the intended commercial result of the original provision. Any modification to or deletion of a provision or part-provision under this Clause shall not affect the validity and enforceability of the rest of this Agreement.
106
+ 12.7. Waiver. No failure or delay by a Party to exercise any right or remedy provided under this Agreement or by law shall constitute a waiver of that or any other right or remedy, nor shall it preclude or restrict the further exercise of that or any other right or remedy.
107
+ 12.8. No Partnership or Agency. Nothing in this Agreement is intended to, or shall be deemed to, establish any partnership, joint venture or employment relations between the Parties, constitute a Party the agent of another Party, or authorize a Party to make or enter into any commitments for or on behalf of any other Party.
@@ -0,0 +1 @@
1
+ amsdal