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.
- yemot_api-0.1.0/.github/workflows/example.yml +32 -0
- yemot_api-0.1.0/.gitignore +11 -0
- yemot_api-0.1.0/.python-version +1 -0
- yemot_api-0.1.0/LICENSE +674 -0
- yemot_api-0.1.0/PKG-INFO +41 -0
- yemot_api-0.1.0/README.md +28 -0
- yemot_api-0.1.0/pyproject.toml +24 -0
- yemot_api-0.1.0/src/yemot_api/__init__.py +0 -0
- yemot_api-0.1.0/src/yemot_api/api_model.py +87 -0
- yemot_api-0.1.0/src/yemot_api/api_response.py +302 -0
- yemot_api-0.1.0/src/yemot_api/const.py +199 -0
- yemot_api-0.1.0/src/yemot_api/exceptions.py +34 -0
- yemot_api-0.1.0/src/yemot_api/input_types.py +168 -0
- yemot_api-0.1.0/src/yemot_api/repomix-python.xml +3455 -0
- yemot_api-0.1.0/src/yemot_api/types.py +863 -0
- yemot_api-0.1.0/src/yemot_api/utils.py +10 -0
- yemot_api-0.1.0/src/yemot_api/yemot_api.py +1716 -0
- yemot_api-0.1.0/to_fix.md +1 -0
- yemot_api-0.1.0/uv.lock +164 -0
- yemot_api-0.1.0/yemot-router/.eslintrc.json +43 -0
- yemot_api-0.1.0/yemot-router/.gitignore +3 -0
- yemot_api-0.1.0/yemot-router/README.md +369 -0
- yemot_api-0.1.0/yemot-router/board.excalidraw +1960 -0
- yemot_api-0.1.0/yemot-router/exemple.js +53 -0
- yemot_api-0.1.0/yemot-router/index.d.ts +122 -0
- yemot_api-0.1.0/yemot-router/index.js +1 -0
- yemot_api-0.1.0/yemot-router/jsconfig.json +24 -0
- yemot_api-0.1.0/yemot-router/lib/call.js +191 -0
- yemot_api-0.1.0/yemot-router/lib/check_request.js +13 -0
- yemot_api-0.1.0/yemot-router/lib/errors.js +34 -0
- yemot_api-0.1.0/yemot-router/lib/response_functions.js +150 -0
- yemot_api-0.1.0/yemot-router/lib/yemot_router.js +124 -0
- yemot_api-0.1.0/yemot-router/package-lock.json +1330 -0
- yemot_api-0.1.0/yemot-router/package.json +25 -0
- yemot_api-0.1.0/yemot-router/test/test.js +30 -0
- yemot_api-0.1.0/yemot-router2/.eslintrc.json +33 -0
- yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/bug_report.yaml +52 -0
- yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/config.yml +1 -0
- yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- yemot_api-0.1.0/yemot-router2/.github/ISSUE_TEMPLATE/question.md +10 -0
- yemot_api-0.1.0/yemot-router2/.github/workflows/test.yml +26 -0
- yemot_api-0.1.0/yemot-router2/.gitignore +2 -0
- yemot_api-0.1.0/yemot-router2/.husky/commit-msg +1 -0
- yemot_api-0.1.0/yemot-router2/.husky/pre-commit +1 -0
- yemot_api-0.1.0/yemot-router2/.npmignore +1 -0
- yemot_api-0.1.0/yemot-router2/.vscode/settings.json +5 -0
- yemot_api-0.1.0/yemot-router2/CHANGELOG.md +204 -0
- yemot_api-0.1.0/yemot-router2/LICENSE +21 -0
- yemot_api-0.1.0/yemot-router2/README.md +632 -0
- yemot_api-0.1.0/yemot-router2/commitlint.config.js +1 -0
- yemot_api-0.1.0/yemot-router2/example-app/index.js +74 -0
- yemot_api-0.1.0/yemot-router2/example-app/package-lock.json +8326 -0
- yemot_api-0.1.0/yemot-router2/example-app/package.json +18 -0
- yemot_api-0.1.0/yemot-router2/index.d.ts +587 -0
- yemot_api-0.1.0/yemot-router2/index.js +3 -0
- yemot_api-0.1.0/yemot-router2/jsconfig.json +20 -0
- yemot_api-0.1.0/yemot-router2/lib/call.js +322 -0
- yemot_api-0.1.0/yemot-router2/lib/defaults.js +45 -0
- yemot_api-0.1.0/yemot-router2/lib/errors.js +36 -0
- yemot_api-0.1.0/yemot-router2/lib/response-functions.js +211 -0
- yemot_api-0.1.0/yemot-router2/lib/system-messages.js +6638 -0
- yemot_api-0.1.0/yemot-router2/lib/yemot_router.js +198 -0
- yemot_api-0.1.0/yemot-router2/package-lock.json +8732 -0
- yemot_api-0.1.0/yemot-router2/package.json +46 -0
- yemot_api-0.1.0/yemot-router2/renovate.json +28 -0
- yemot_api-0.1.0/yemot-router2/repomix-node.xml +16272 -0
- yemot_api-0.1.0/yemot-router2/rollup.config.js +15 -0
- yemot_api-0.1.0/yemot-router2/system-messages.d.ts +6640 -0
- yemot_api-0.1.0/yemot-router2/test/example.test.js +63 -0
- yemot_api-0.1.0/yemot-router2/test/read.test.js +122 -0
- yemot_api-0.1.0/yemot-router2/test/utils.js +28 -0
- 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 @@
|
|
|
1
|
+
3.13
|