It looks like the SDK does not expose two API classes at the package level.
The following imports are missing from zenduty/__init__.py:
from .api.schedules_api import SchedulesApi
from .api.escalationpolicies_api import EscalationPoliciesApi
Because of this, the classes cannot be imported directly via:
from zenduty import SchedulesApi, EscalationPoliciesApi
while other APIs (e.g. IncidentsApi, TeamsApi, etc.) are correctly exported.
The files schedules_api.py and escalationpolicies_api.py already exist and work correctly when imported directly from zenduty.api.
It looks like the SDK does not expose two API classes at the package level.
The following imports are missing from
zenduty/__init__.py:Because of this, the classes cannot be imported directly via:
while other APIs (e.g. IncidentsApi, TeamsApi, etc.) are correctly exported.
The files
schedules_api.pyandescalationpolicies_api.pyalready exist and work correctly when imported directly from zenduty.api.