yemot-api 0.1.0__tar.gz

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 (72) hide show
  1. yemot_api-0.1.0/.github/workflows/example.yml +32 -0
  2. yemot_api-0.1.0/.gitignore +11 -0
  3. yemot_api-0.1.0/.python-version +1 -0
  4. yemot_api-0.1.0/LICENSE +674 -0
  5. yemot_api-0.1.0/PKG-INFO +41 -0
  6. yemot_api-0.1.0/README.md +28 -0
  7. yemot_api-0.1.0/pyproject.toml +24 -0
  8. yemot_api-0.1.0/src/yemot_api/__init__.py +0 -0
  9. yemot_api-0.1.0/src/yemot_api/api_model.py +87 -0
  10. yemot_api-0.1.0/src/yemot_api/api_response.py +302 -0
  11. yemot_api-0.1.0/src/yemot_api/const.py +199 -0
  12. yemot_api-0.1.0/src/yemot_api/exceptions.py +34 -0
  13. yemot_api-0.1.0/src/yemot_api/input_types.py +168 -0
  14. yemot_api-0.1.0/src/yemot_api/repomix-python.xml +3455 -0
  15. yemot_api-0.1.0/src/yemot_api/types.py +863 -0
  16. yemot_api-0.1.0/src/yemot_api/utils.py +10 -0
  17. yemot_api-0.1.0/src/yemot_api/yemot_api.py +1716 -0
  18. yemot_api-0.1.0/to_fix.md +1 -0
  19. yemot_api-0.1.0/uv.lock +164 -0
  20. yemot_api-0.1.0/yemot-router/.eslintrc.json +43 -0
  21. yemot_api-0.1.0/yemot-router/.gitignore +3 -0
  22. yemot_api-0.1.0/yemot-router/README.md +369 -0
  23. yemot_api-0.1.0/yemot-router/board.excalidraw +1960 -0
  24. yemot_api-0.1.0/yemot-router/exemple.js +53 -0
  25. yemot_api-0.1.0/yemot-router/index.d.ts +122 -0
  26. yemot_api-0.1.0/yemot-router/index.js +1 -0
  27. yemot_api-0.1.0/yemot-router/jsconfig.json +24 -0
  28. yemot_api-0.1.0/yemot-router/lib/call.js +191 -0
  29. yemot_api-0.1.0/yemot-router/lib/check_request.js +13 -0
  30. yemot_api-0.1.0/yemot-router/lib/errors.js +34 -0
  31. yemot_api-0.1.0/yemot-router/lib/response_functions.js +150 -0
  32. yemot_api-0.1.0/yemot-router/lib/yemot_router.js +124 -0
  33. yemot_api-0.1.0/yemot-router/package-lock.json +1330 -0
  34. yemot_api-0.1.0/yemot-router/package.json +25 -0
  35. yemot_api-0.1.0/yemot-router/test/test.js +30 -0
  36. yemot_api-0.1.0/yemot-router2/.eslintrc.json +33 -0
  37. yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/bug_report.yaml +52 -0
  38. yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/config.yml +1 -0
  39. yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  40. yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/question.md +10 -0
  41. yemot_api-0.1.0/yemot-router2/.github/workflows/test.yml +26 -0
  42. yemot_api-0.1.0/yemot-router2/.gitignore +2 -0
  43. yemot_api-0.1.0/yemot-router2/.husky/commit-msg +1 -0
  44. yemot_api-0.1.0/yemot-router2/.husky/pre-commit +1 -0
  45. yemot_api-0.1.0/yemot-router2/.npmignore +1 -0
  46. yemot_api-0.1.0/yemot-router2/.vscode/settings.json +5 -0
  47. yemot_api-0.1.0/yemot-router2/CHANGELOG.md +204 -0
  48. yemot_api-0.1.0/yemot-router2/LICENSE +21 -0
  49. yemot_api-0.1.0/yemot-router2/README.md +632 -0
  50. yemot_api-0.1.0/yemot-router2/commitlint.config.js +1 -0
  51. yemot_api-0.1.0/yemot-router2/example-app/index.js +74 -0
  52. yemot_api-0.1.0/yemot-router2/example-app/package-lock.json +8326 -0
  53. yemot_api-0.1.0/yemot-router2/example-app/package.json +18 -0
  54. yemot_api-0.1.0/yemot-router2/index.d.ts +587 -0
  55. yemot_api-0.1.0/yemot-router2/index.js +3 -0
  56. yemot_api-0.1.0/yemot-router2/jsconfig.json +20 -0
  57. yemot_api-0.1.0/yemot-router2/lib/call.js +322 -0
  58. yemot_api-0.1.0/yemot-router2/lib/defaults.js +45 -0
  59. yemot_api-0.1.0/yemot-router2/lib/errors.js +36 -0
  60. yemot_api-0.1.0/yemot-router2/lib/response-functions.js +211 -0
  61. yemot_api-0.1.0/yemot-router2/lib/system-messages.js +6638 -0
  62. yemot_api-0.1.0/yemot-router2/lib/yemot_router.js +198 -0
  63. yemot_api-0.1.0/yemot-router2/package-lock.json +8732 -0
  64. yemot_api-0.1.0/yemot-router2/package.json +46 -0
  65. yemot_api-0.1.0/yemot-router2/renovate.json +28 -0
  66. yemot_api-0.1.0/yemot-router2/repomix-node.xml +16272 -0
  67. yemot_api-0.1.0/yemot-router2/rollup.config.js +15 -0
  68. yemot_api-0.1.0/yemot-router2/system-messages.d.ts +6640 -0
  69. yemot_api-0.1.0/yemot-router2/test/example.test.js +63 -0
  70. yemot_api-0.1.0/yemot-router2/test/read.test.js +122 -0
  71. yemot_api-0.1.0/yemot-router2/test/utils.js +28 -0
  72. yemot_api-0.1.0//327/227/327/225/327/221/327/250/327/2521.xlsx +0 -0
@@ -0,0 +1,32 @@
1
+ name: "Publish"
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ # Publish on any tag starting with a `v`, e.g., v0.1.0
7
+ - v*
8
+
9
+ jobs:
10
+ run:
11
+ runs-on: ubuntu-latest
12
+ environment:
13
+ name: pypi
14
+ permissions:
15
+ id-token: write
16
+ contents: read
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v5
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v6
22
+ - name: Install Python 3.13
23
+ run: uv python install 3.13
24
+ - name: Build
25
+ run: uv build
26
+ # Check that basic features work and we didn't miss to include crucial files
27
+ - name: Smoke test (wheel)
28
+ run: uv run --isolated --no-project --with dist/*.whl tests/smoke_test.py
29
+ - name: Smoke test (source distribution)
30
+ run: uv run --isolated --no-project --with dist/*.tar.gz tests/smoke_test.py
31
+ - name: Publish
32
+ run: uv publish
@@ -0,0 +1,11 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+ test.py
9
+
10
+ # Virtual environments
11
+ .venv
@@ -0,0 +1 @@
1
+ 3.13