Microsoft365R/NEWS.md

27 строки
1.3 KiB
Markdown
Исходник Обычный вид История

2021-01-28 23:32:18 +03:00
# Microsoft365R 1.0.0.9000
## Major user-facing changes
- Add support for Teams:
- Add `list_teams()` and `get_team()` client functions. You can get a team by team name or ID.
- List channels
- List messages and replies
- Send messages to channels, send replies to messages
- Upload and download files
- Rename the client functions to allow for listing teams and sites:
2021-02-11 10:57:12 +03:00
- `get_sharepoint_site()` is now `get_sharepoint_site()`
- `get_personal_onedrive()` is now `get_personal_onedrive()`
- `get_business_onedrive()` is now `get_business_onedrive()`
- The first argument to `get_sharepoint_site()` is `site_name` to get a site by name, for consistency with `get_team()`. To get a site by URL, specify the `site_url` argument explicitly: `get_sharepoint_site(site_url="https://my-site-url")`.
2021-02-11 10:57:44 +03:00
- Add `list_sharepoint_sites()` function to list all sites you follow.
## Other changes
2021-01-28 23:32:18 +03:00
- Add `bulk_import()` method for lists, for creating multiple items at once. Supply a data frame as the argument.
- Add `list_items()`/`list_files()` method for drive items, to list the files in a folder.
- The various client functions can now share the same underlying Graph login, which should reduce the incidence of token refreshing.
2021-01-28 23:32:18 +03:00
2021-01-27 14:36:34 +03:00
# Microsoft365R 1.0.0
- Initial CRAN release.