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.
Files changed (65) hide show
  1. healthcloud_sdk-0.5.0/.gitignore +73 -0
  2. healthcloud_sdk-0.5.0/PKG-INFO +1107 -0
  3. healthcloud_sdk-0.5.0/README.md +1092 -0
  4. healthcloud_sdk-0.5.0/healthcloud/__init__.py +6 -0
  5. healthcloud_sdk-0.5.0/healthcloud/clients/__init__.py +22 -0
  6. healthcloud_sdk-0.5.0/healthcloud/clients/assistant.py +29 -0
  7. healthcloud_sdk-0.5.0/healthcloud/clients/auth.py +34 -0
  8. healthcloud_sdk-0.5.0/healthcloud/clients/base.py +27 -0
  9. healthcloud_sdk-0.5.0/healthcloud/clients/communications.py +46 -0
  10. healthcloud_sdk-0.5.0/healthcloud/clients/diagnostics.py +16 -0
  11. healthcloud_sdk-0.5.0/healthcloud/clients/fieldagent.py +55 -0
  12. healthcloud_sdk-0.5.0/healthcloud/clients/mcp.py +24 -0
  13. healthcloud_sdk-0.5.0/healthcloud/clients/patient.py +106 -0
  14. healthcloud_sdk-0.5.0/healthcloud/clients/stub.py +37 -0
  15. healthcloud_sdk-0.5.0/healthcloud/clients/vitals.py +16 -0
  16. healthcloud_sdk-0.5.0/healthcloud/clients.py +121 -0
  17. healthcloud_sdk-0.5.0/healthcloud/config.py +37 -0
  18. healthcloud_sdk-0.5.0/healthcloud/enums/__init__.py +23 -0
  19. healthcloud_sdk-0.5.0/healthcloud/enums/conversation_kind.py +3 -0
  20. healthcloud_sdk-0.5.0/healthcloud/enums/environment.py +3 -0
  21. healthcloud_sdk-0.5.0/healthcloud/enums/group_kind.py +3 -0
  22. healthcloud_sdk-0.5.0/healthcloud/enums/invite_channel.py +3 -0
  23. healthcloud_sdk-0.5.0/healthcloud/enums/medication_frequency.py +19 -0
  24. healthcloud_sdk-0.5.0/healthcloud/enums/message_kind.py +3 -0
  25. healthcloud_sdk-0.5.0/healthcloud/enums/presence_status.py +3 -0
  26. healthcloud_sdk-0.5.0/healthcloud/enums/rapid_test_result.py +3 -0
  27. healthcloud_sdk-0.5.0/healthcloud/enums/rapid_test_type.py +15 -0
  28. healthcloud_sdk-0.5.0/healthcloud/enums/service_name.py +15 -0
  29. healthcloud_sdk-0.5.0/healthcloud/errors.py +10 -0
  30. healthcloud_sdk-0.5.0/healthcloud/http.py +50 -0
  31. healthcloud_sdk-0.5.0/healthcloud/models/__init__.py +3 -0
  32. healthcloud_sdk-0.5.0/healthcloud/models/base.py +54 -0
  33. healthcloud_sdk-0.5.0/healthcloud/models/generated/__init__.py +8 -0
  34. healthcloud_sdk-0.5.0/healthcloud/models/generated/auth.py +75 -0
  35. healthcloud_sdk-0.5.0/healthcloud/models/generated/common.py +22 -0
  36. healthcloud_sdk-0.5.0/healthcloud/models/generated/communications.py +149 -0
  37. healthcloud_sdk-0.5.0/healthcloud/models/generated/diagnostics.py +38 -0
  38. healthcloud_sdk-0.5.0/healthcloud/models/generated/fieldagent.py +124 -0
  39. healthcloud_sdk-0.5.0/healthcloud/models/generated/mcp.py +31 -0
  40. healthcloud_sdk-0.5.0/healthcloud/models/generated/patient.py +324 -0
  41. healthcloud_sdk-0.5.0/healthcloud/models/generated/vitals.py +70 -0
  42. healthcloud_sdk-0.5.0/healthcloud/sdk.py +37 -0
  43. healthcloud_sdk-0.5.0/pyproject.toml +28 -0
  44. healthcloud_sdk-0.5.0/tests/live/__init__.py +1 -0
  45. healthcloud_sdk-0.5.0/tests/live/shared/__init__.py +1 -0
  46. healthcloud_sdk-0.5.0/tests/live/shared/config.py +168 -0
  47. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/README.md +3 -0
  48. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/compare-selfie-test.b64.txt +1 -0
  49. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/compare-selfie-test.png +0 -0
  50. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.b64.txt +1 -0
  51. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.jpg +0 -0
  52. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/driver-license-test.png +0 -0
  53. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/insurance-test.png +0 -0
  54. healthcloud_sdk-0.5.0/tests/live/shared/test_assets/profile-image-test.jpg +0 -0
  55. healthcloud_sdk-0.5.0/tests/live/test_assistant_integration.py +15 -0
  56. healthcloud_sdk-0.5.0/tests/live/test_auth_integration.py +37 -0
  57. healthcloud_sdk-0.5.0/tests/live/test_communications_integration.py +17 -0
  58. healthcloud_sdk-0.5.0/tests/live/test_connect_integration.py +14 -0
  59. healthcloud_sdk-0.5.0/tests/live/test_diagnostics_integration.py +15 -0
  60. healthcloud_sdk-0.5.0/tests/live/test_fieldagent_integration.py +20 -0
  61. healthcloud_sdk-0.5.0/tests/live/test_full_chain_integration.py +398 -0
  62. healthcloud_sdk-0.5.0/tests/live/test_mcp_integration.py +13 -0
  63. healthcloud_sdk-0.5.0/tests/live/test_patient_integration.py +26 -0
  64. healthcloud_sdk-0.5.0/tests/live/test_vitals_integration.py +15 -0
  65. 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/