healthcloud-sdk 0.5.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.
- healthcloud_sdk-0.5.0/.gitignore +73 -0
- healthcloud_sdk-0.5.0/PKG-INFO +1107 -0
- healthcloud_sdk-0.5.0/README.md +1092 -0
- healthcloud_sdk-0.5.0/healthcloud/__init__.py +6 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/__init__.py +22 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/assistant.py +29 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/auth.py +34 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/base.py +27 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/communications.py +46 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/diagnostics.py +16 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/fieldagent.py +55 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/mcp.py +24 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/patient.py +106 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/stub.py +37 -0
- healthcloud_sdk-0.5.0/healthcloud/clients/vitals.py +16 -0
- healthcloud_sdk-0.5.0/healthcloud/clients.py +121 -0
- healthcloud_sdk-0.5.0/healthcloud/config.py +37 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/__init__.py +23 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/conversation_kind.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/environment.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/group_kind.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/invite_channel.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/medication_frequency.py +19 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/message_kind.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/presence_status.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/rapid_test_result.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/rapid_test_type.py +15 -0
- healthcloud_sdk-0.5.0/healthcloud/enums/service_name.py +15 -0
- healthcloud_sdk-0.5.0/healthcloud/errors.py +10 -0
- healthcloud_sdk-0.5.0/healthcloud/http.py +50 -0
- healthcloud_sdk-0.5.0/healthcloud/models/__init__.py +3 -0
- healthcloud_sdk-0.5.0/healthcloud/models/base.py +54 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/__init__.py +8 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/auth.py +75 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/common.py +22 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/communications.py +149 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/diagnostics.py +38 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/fieldagent.py +124 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/mcp.py +31 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/patient.py +324 -0
- healthcloud_sdk-0.5.0/healthcloud/models/generated/vitals.py +70 -0
- healthcloud_sdk-0.5.0/healthcloud/sdk.py +37 -0
- healthcloud_sdk-0.5.0/pyproject.toml +28 -0
- healthcloud_sdk-0.5.0/tests/live/__init__.py +1 -0
- healthcloud_sdk-0.5.0/tests/live/shared/__init__.py +1 -0
- healthcloud_sdk-0.5.0/tests/live/shared/config.py +168 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/README.md +3 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/compare-selfie-test.b64.txt +1 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/compare-selfie-test.png +0 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.b64.txt +1 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.jpg +0 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.png +0 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/insurance-test.png +0 -0
- healthcloud_sdk-0.5.0/tests/live/shared/test_assets/profile-image-test.jpg +0 -0
- healthcloud_sdk-0.5.0/tests/live/test_assistant_integration.py +15 -0
- healthcloud_sdk-0.5.0/tests/live/test_auth_integration.py +37 -0
- healthcloud_sdk-0.5.0/tests/live/test_communications_integration.py +17 -0
- healthcloud_sdk-0.5.0/tests/live/test_connect_integration.py +14 -0
- healthcloud_sdk-0.5.0/tests/live/test_diagnostics_integration.py +15 -0
- healthcloud_sdk-0.5.0/tests/live/test_fieldagent_integration.py +20 -0
- healthcloud_sdk-0.5.0/tests/live/test_full_chain_integration.py +398 -0
- healthcloud_sdk-0.5.0/tests/live/test_mcp_integration.py +13 -0
- healthcloud_sdk-0.5.0/tests/live/test_patient_integration.py +26 -0
- healthcloud_sdk-0.5.0/tests/live/test_vitals_integration.py +15 -0
- healthcloud_sdk-0.5.0/tests/test_config.py +16 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
logs/
|
|
3
|
+
*.log
|
|
4
|
+
npm-debug.log*
|
|
5
|
+
yarn-debug.log*
|
|
6
|
+
yarn-error.log*
|
|
7
|
+
pnpm-debug.log*
|
|
8
|
+
|
|
9
|
+
# Environment files
|
|
10
|
+
.env
|
|
11
|
+
.env.*
|
|
12
|
+
!.env.example
|
|
13
|
+
**/live-state.json
|
|
14
|
+
|
|
15
|
+
# Node / npm
|
|
16
|
+
node_modules/
|
|
17
|
+
.npm/
|
|
18
|
+
.pnpm-store/
|
|
19
|
+
dist/
|
|
20
|
+
!packages/npm/dist/
|
|
21
|
+
!packages/npm/dist/**
|
|
22
|
+
build/
|
|
23
|
+
coverage/
|
|
24
|
+
*.tsbuildinfo
|
|
25
|
+
|
|
26
|
+
# Python / pip
|
|
27
|
+
__pycache__/
|
|
28
|
+
*.py[cod]
|
|
29
|
+
*.pyo
|
|
30
|
+
.Python
|
|
31
|
+
.venv/
|
|
32
|
+
venv/
|
|
33
|
+
env/
|
|
34
|
+
pip-wheel-metadata/
|
|
35
|
+
*.egg-info/
|
|
36
|
+
.pytest_cache/
|
|
37
|
+
.mypy_cache/
|
|
38
|
+
.ruff_cache/
|
|
39
|
+
htmlcov/
|
|
40
|
+
|
|
41
|
+
# Java / Maven
|
|
42
|
+
target/
|
|
43
|
+
.mvn/timing.properties
|
|
44
|
+
.mvn/wrapper/maven-wrapper.jar
|
|
45
|
+
*.class
|
|
46
|
+
*.jar
|
|
47
|
+
*.war
|
|
48
|
+
*.ear
|
|
49
|
+
|
|
50
|
+
# .NET / NuGet
|
|
51
|
+
bin/
|
|
52
|
+
obj/
|
|
53
|
+
TestResults/
|
|
54
|
+
*.nupkg
|
|
55
|
+
*.snupkg
|
|
56
|
+
*.user
|
|
57
|
+
*.suo
|
|
58
|
+
|
|
59
|
+
# IDEs and editors
|
|
60
|
+
.idea/
|
|
61
|
+
.vscode/
|
|
62
|
+
*.swp
|
|
63
|
+
*.swo
|
|
64
|
+
.DS_Store
|
|
65
|
+
Thumbs.db
|
|
66
|
+
|
|
67
|
+
# Build outputs and caches
|
|
68
|
+
out/
|
|
69
|
+
tmp/
|
|
70
|
+
temp/
|
|
71
|
+
.cache/
|
|
72
|
+
.parcel-cache/
|
|
73
|
+
.turbo/
|