Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added API Coverage section to readme file #7

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,90 @@ You should publish config file with:
php artisan vendor:publish --provider="Offlineagency\LaravelWebex\Providers\LaravelWebexServiceProvider"
```


## API coverage

We're actively working to expand this package to cover all Webex API endpoints.

✅ = implemented

🔜 = coming soon

❌ = not implemented

### Admin
- #### ❌ Admin Audit Events
- #### ❌ Events
- #### ❌ Historical Analytics
- #### ❌ Hybrid Clusters
- #### ❌ Hybrid Connectors
- #### ❌ Licenses
- #### ❌ Locations
- #### ❌ Meeting Qualities
- #### ❌ Memberships
- #### ❌ Organizations
- #### ❌ People
- #### ❌ Recording Report
- #### ❌ Recordings
- #### ❌ Report Templates
- #### ❌ Reports
- #### ❌ Resource Group Memberships
- #### ❌ Resource Group
- #### ❌ Roles
- #### ❌ Space Classifications
- #### ❌ Webex Calling Organization Settings
- #### ❌ Webex Calling Person Settings
- #### ❌ Workspace Locations
- #### ❌ Workspace Metrics
- #### ❌ Workspaces

### Calling
- #### ❌ BroadWorks Enterprises
- #### ❌ BroadWorks Subscribers
- #### ❌ Call Controls
- #### ❌ Locations
- #### ❌ People
- #### ❌ Recording Report
- #### ❌ Webex Calling Organization Settings
- #### ❌ Webex Calling Person Settings
- #### ❌ Webex Calling Voice Messaging

### Devices
- #### ❌ Device Configurations
- #### ❌ Devices
- #### ❌ Places
- #### ❌ Workspace Locations
- #### ❌ Workspace Metrics
- #### ❌ Workspace Personalization
- #### ❌ Workspaces
- #### ❌ xAPI

### Meetings
- #### ✅ Meeting Invitees
- #### ✅ Meeting Participants
- #### ❌ Meeting Preferences
- #### ❌ Meeting Qualities
- #### ❌ Meeting Transcripts
- #### ✅ Meetings
- #### ❌ People
- #### ❌ Recording Report
- #### ❌ Recordings
- #### ❌ Webhooks

### Messaging
- #### ❌ Attachment Actions
- #### ❌ Events
- #### ❌ Memberships
- #### ❌ Messages
- #### ❌ Messages with Edit
- #### ❌ People
- #### ❌ Room Tabs
- #### ❌ Rooms
- #### ❌ Team Memberships
- #### ❌ Teams
- #### ❌ Webhooks


## Documentation
You can find the documentation [here](https://docs.offlineagency.com/laravel-webex/)

Expand Down
4 changes: 2 additions & 2 deletions tests/Fake/Meetings/MeetingsFakeResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function getDeleteMeetingFakeResponse()
public function getErrorOnMeetingsFakeList()
{
return json_encode(
$this->fakeError()
);
$this->fakeError()
);
}
}
Loading