Releases: internxt/sdk
Releases · internxt/sdk
Release list
v1.20.2
v1.20.1
v.1.20.0
What's new:
- Advanced filters for global search:
getGlobalSearchItemsnow accepts an options object as its third argument, besides the plainoffset.- Results can be narrowed by extension, size and modification date.
- Global search moved from
GETtoPOST(fuzzy/{search}andworkspaces/{workspaceId}/fuzzy/{search}) so the filters travel in the request body. Requires drive-server with the POST endpoints deployed. - New types:
GlobalSearchOptions: the payload accepted bygetGlobalSearchItems, withoffset,type(file extensions plus the reserved valuefolder, combined with OR),minSize/maxSize(bytes, files only) andmodifiedAfter/modifiedBefore. All optional, combined with AND.
getGlobalSearchItems(search, workspaceId, offset)keeps compiling: anumberthird argument is still treated as the offset.
v1.19.0
- Remove deprecated fields (duplicated ECC keys outside of the keys field)
- Remove revocationKey from everywhere
v1.18.0
Remove old keys (privateKey, publicKey, and revocationKey outside of the keys structure) from UserSettings
v1.17.23
What's new:
- Favorites support for files and folders:
markItemAsFavorite/unmarkItemAsFavorite: mark or unmark a file or folder as favorite.getFavorites: list favorite files or folders (paginated, cancellable).
- New types:
FavoriteItemType,FavoriteStatusResponse,GetFavoritesPayload,FavoriteFileDto,FavoriteFolderDto.
isFavoritefield exposed on file and folder types (schema regenerated against the latest backend).