modulex-python 0.1.0__py3-none-any.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 (47) hide show
  1. modulex/__init__.py +39 -0
  2. modulex/_base.py +281 -0
  3. modulex/_client.py +237 -0
  4. modulex/_compat.py +39 -0
  5. modulex/_config.py +26 -0
  6. modulex/_exceptions.py +131 -0
  7. modulex/_streaming.py +118 -0
  8. modulex/py.typed +0 -0
  9. modulex/resources/__init__.py +1 -0
  10. modulex/resources/api_keys.py +39 -0
  11. modulex/resources/auth.py +38 -0
  12. modulex/resources/chats.py +62 -0
  13. modulex/resources/composer.py +134 -0
  14. modulex/resources/credentials.py +197 -0
  15. modulex/resources/dashboard.py +110 -0
  16. modulex/resources/deployments.py +92 -0
  17. modulex/resources/executions.py +97 -0
  18. modulex/resources/integrations.py +110 -0
  19. modulex/resources/knowledge.py +343 -0
  20. modulex/resources/notifications.py +39 -0
  21. modulex/resources/organizations.py +72 -0
  22. modulex/resources/schedules.py +172 -0
  23. modulex/resources/subscriptions.py +38 -0
  24. modulex/resources/system.py +28 -0
  25. modulex/resources/templates.py +115 -0
  26. modulex/resources/workflows.py +156 -0
  27. modulex/types/__init__.py +294 -0
  28. modulex/types/api_keys.py +19 -0
  29. modulex/types/auth.py +62 -0
  30. modulex/types/chats.py +55 -0
  31. modulex/types/composer.py +27 -0
  32. modulex/types/credentials.py +79 -0
  33. modulex/types/dashboard.py +54 -0
  34. modulex/types/executions.py +104 -0
  35. modulex/types/integrations.py +29 -0
  36. modulex/types/knowledge.py +75 -0
  37. modulex/types/notifications.py +16 -0
  38. modulex/types/organizations.py +43 -0
  39. modulex/types/schedules.py +48 -0
  40. modulex/types/shared.py +39 -0
  41. modulex/types/subscriptions.py +59 -0
  42. modulex/types/templates.py +50 -0
  43. modulex/types/workflows.py +253 -0
  44. modulex_python-0.1.0.dist-info/METADATA +435 -0
  45. modulex_python-0.1.0.dist-info/RECORD +47 -0
  46. modulex_python-0.1.0.dist-info/WHEEL +4 -0
  47. modulex_python-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,47 @@
1
+ modulex/__init__.py,sha256=H-3-QJUl0epz7wCdOQAqs4SJwN9f0ap8caUXu-UTMpc,851
2
+ modulex/_base.py,sha256=AAREk7TEipaZEgxhsQnEaBuYo-iizm89ZLxZcisbhaM,9428
3
+ modulex/_client.py,sha256=gEO3orFt4wMCB57aWVjs67PeUumZoRCrQ0E3m0disPo,8091
4
+ modulex/_compat.py,sha256=klYjJaF7QsSeawNAn6RJEbQfpfrssYeXbrqAogrCKoE,1053
5
+ modulex/_config.py,sha256=GQphNDN8lVqmBMf1fUuIweHPjXvljICeIvDUC7Dgx14,709
6
+ modulex/_exceptions.py,sha256=CooY0cCOLehQ1sjxKp4JntrhXuutLZsyzx6p2MSq4As,3310
7
+ modulex/_streaming.py,sha256=QhnjM9LOE3ylcl65n33zHFBS93vkxlN0T7H0-crJB5Q,3581
8
+ modulex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ modulex/resources/__init__.py,sha256=XKIiqn1okP2VgyZNjO8lYml5HFfZ6pQ7W8eL_2EjqIw,48
10
+ modulex/resources/api_keys.py,sha256=UptQ-e61rB6ZuYe710M_OuOAXrqoJRXfhD1-VwAwVkg,1347
11
+ modulex/resources/auth.py,sha256=hi7r1IoromMUW6oRoeNUwd0l4C4xHeF3lwSfxIjtJs0,1566
12
+ modulex/resources/chats.py,sha256=_kKsAzJQKkIKshogsth2hwGDNNXzCWMHkhOs62ilcFM,2305
13
+ modulex/resources/composer.py,sha256=DLWrjRy-xSt5vMwIxmUBK0AjN6Ov5X88YwGlB0pWLKc,4094
14
+ modulex/resources/credentials.py,sha256=b5kv0vVJudXcdiwXRix6dOU0-7xvGba5Jagz4jfxmIo,7261
15
+ modulex/resources/dashboard.py,sha256=jQtTfxtF_MQOfcO7JAWpt5918JOghuFXCd8ymID2VAM,3455
16
+ modulex/resources/deployments.py,sha256=xGN0Ze3jnNqbfOuarhT2UTFABqfiQGKzODQBtbWjarY,2875
17
+ modulex/resources/executions.py,sha256=AZikXNvJb1J3jRDsBvDVsBg2HkeuItEzluTEjlJ4ilM,3480
18
+ modulex/resources/integrations.py,sha256=SsWN78G-B8d1gp6imH-GSm75pOsFvoVUzz5Cy966aB0,3976
19
+ modulex/resources/knowledge.py,sha256=cl7Vozdj_nizSiqp7ej56_MIYo-Dq6ehAT_qeP8r13Q,11146
20
+ modulex/resources/notifications.py,sha256=fhAkwAWGIty7fYhCpvf18NXlPYrFLXTb8hTlJ-BGiOc,1321
21
+ modulex/resources/organizations.py,sha256=BxrhJSS_vsrbGsUvbW-OUL_q3KngdGTGWTli2XQPimQ,2754
22
+ modulex/resources/schedules.py,sha256=skB3HY7Na6XroPpXg4qCj6i4FB36Cfnfp_XWYnYs4bA,5461
23
+ modulex/resources/subscriptions.py,sha256=zcGOJ1Mh-FFsAKN0_nUfgqc9gXyeJK2FUkjUxegETqM,1567
24
+ modulex/resources/system.py,sha256=3w9GJ1qu3-FlBtAJsdQv2dlB1lmQm5mKOsqdfdc8rMA,971
25
+ modulex/resources/templates.py,sha256=-U3wUXSUVbOpa_WdxghED0ANkAqgV8bO-XxdDNHmIuo,3730
26
+ modulex/resources/workflows.py,sha256=f2FT98cY23WlZ_xOc3VSE3JPYeYjvXhV05_FXJoM9wI,5717
27
+ modulex/types/__init__.py,sha256=k3DXez4gALmjRuRuYWLZHymPxrcEj6vso2CM5o_a-oQ,7794
28
+ modulex/types/api_keys.py,sha256=U3m9UzbRyEiaNkBwOwGf_OIgomUTyqGzMM6CXGKpZ9g,405
29
+ modulex/types/auth.py,sha256=d4x2Qk3dqavA87WkEmHrRmI2rrr2yn-KlQRFGR-QFT4,1287
30
+ modulex/types/chats.py,sha256=nm_UH7zpT0UV6sHA1s-QYK489h0Kl7Tl0O5Mo9pYLkg,1141
31
+ modulex/types/composer.py,sha256=gDlzzB63gWcSRpspYTBOIs0MC8CLcFpwuLJKFJWCUHg,659
32
+ modulex/types/credentials.py,sha256=CjuhbbfrphMid1F7QTilOYmh0lbDlktCwCezgW30-HY,1745
33
+ modulex/types/dashboard.py,sha256=lv6eXaIaxsiIWwtmnQq4LtRkD2dDXmpe298dz1K3R_g,1130
34
+ modulex/types/executions.py,sha256=Gcl-cjIdCWO-Jlq-cdAVQq4tCjSxvn_3RFQPmzNdA9M,2087
35
+ modulex/types/integrations.py,sha256=N4b4QNNAay2kuSceO_Q5veKDfRnYkgv_cWvta5KpkZU,615
36
+ modulex/types/knowledge.py,sha256=NB9l7BqWTpDHfqUXSG7q0BLBR6JmzM9C5aG-iPJ06jo,1704
37
+ modulex/types/notifications.py,sha256=_LlFsbeM0hrMQJAvHh5pwaaw27_2xlZvuFJLRXRrto0,351
38
+ modulex/types/organizations.py,sha256=CWuY1qe0OgtRIaKi0bbE71vO7qrDvKx6wEr8IZR7bt8,919
39
+ modulex/types/schedules.py,sha256=3HjN4VVlziyiLXgoCiL5QAHm8FUvflJc_RvJbvo6dKM,1082
40
+ modulex/types/shared.py,sha256=Z7oRMNPC-krzO-tZN96bM8K8KVNz-7DHCv7pPD3mEpE,707
41
+ modulex/types/subscriptions.py,sha256=2Q50dpZ2mEuOhj9K7awcjo2TyOXiAKy9H0i4HFJb2_w,1266
42
+ modulex/types/templates.py,sha256=Y1LzSC6AhHSLyZaWnB85Ha7jE9OHbtIQx0tWtQVjYCQ,1057
43
+ modulex/types/workflows.py,sha256=tBzvzZOWaZ5ToVdGfsVG0rMosSKMBSS2IpOq6MkqQ3Y,5343
44
+ modulex_python-0.1.0.dist-info/METADATA,sha256=JLhthA-Fr_mUAm8ENPcH94Fw49ueRUd2dlNFT9W1imc,11852
45
+ modulex_python-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
46
+ modulex_python-0.1.0.dist-info/licenses/LICENSE,sha256=wzpFlfrVnbtRHei6xVLtq8jjw2SyA5_q7L1XXwJqGjY,1066
47
+ modulex_python-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ModuleXAI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.