Skip to content

Commit

Permalink
Automated Spec Update (#250)
Browse files Browse the repository at this point in the history
4c2256e55c765e545d478018f3eb8f823de52925

 Change Notes:

files Namespace
- Update list_folder route to include auth
- Update list_folder/continue route to include auth
- Update list_folder/get_latest_cursor route to include auth

sharing_files Namespace
- Update Comments
- Add UpdateFileMemberArgs struct
- Remove change_file_member_access route
- Remove ChangeFileMemberAccessArgs and UpdateFileMemberArgs structs

 973bd9fef7e3eea8de85bd20494333bbffe17999

Co-authored-by: DropboxBot <[email protected]>
  • Loading branch information
DropboxBot and DropboxBot authored Jul 1, 2021
1 parent 7d8c19c commit 64c2785
Show file tree
Hide file tree
Showing 18 changed files with 646 additions and 301 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class DeletedMetadata : Metadata
/// behavior will match the path provided in the Core API v1, and at least the last
/// path component will have the correct casing. Changes to only the casing of paths
/// won't be returned by <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderContinueAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderContinueAsync" />. This
/// field will be null if the file or folder is not mounted.</param>
/// <param name="parentSharedFolderId">Please use <see
Expand Down
17 changes: 12 additions & 5 deletions dropbox-sdk-dotnet/Dropbox.Api/Generated/Files/FileMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,17 @@ public class FileMetadata : Metadata
/// behavior will match the path provided in the Core API v1, and at least the last
/// path component will have the correct casing. Changes to only the casing of paths
/// won't be returned by <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderContinueAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderContinueAsync" />. This
/// field will be null if the file or folder is not mounted.</param>
/// <param name="parentSharedFolderId">Please use <see
/// cref="Dropbox.Api.Files.FileSharingInfo.ParentSharedFolderId" /> or <see
/// cref="Dropbox.Api.Files.FolderSharingInfo.ParentSharedFolderId" /> instead.</param>
/// <param name="mediaInfo">Additional information if the file is a photo or video.
/// This field will not be set on entries returned by <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderAsync" />, <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderContinueAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderContinueAsync" />, or <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.GetThumbnailBatchAsync" />, starting
/// December 2, 2019.</param>
Expand All @@ -78,6 +81,7 @@ public class FileMetadata : Metadata
/// properties with the property template specified.</param>
/// <param name="hasExplicitSharedMembers">This flag will only be present if
/// include_has_explicit_shared_members is true in <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderAsync" /> or <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.GetMetadataAsync" />. If this flag
/// is present, it will be true if this file has any explicit shared members. This is
Expand Down Expand Up @@ -206,7 +210,9 @@ public FileMetadata()
/// <summary>
/// <para>Additional information if the file is a photo or video. This field will not
/// be set on entries returned by <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderAsync" />, <see
/// cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderContinueAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderContinueAsync" />, or <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.GetThumbnailBatchAsync" />, starting
/// December 2, 2019.</para>
Expand Down Expand Up @@ -243,11 +249,12 @@ public FileMetadata()

/// <summary>
/// <para>This flag will only be present if include_has_explicit_shared_members is
/// true in <see cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderAsync" /> or
/// <see cref="Dropbox.Api.Files.Routes.FilesUserRoutes.GetMetadataAsync" />. If this
/// flag is present, it will be true if this file has any explicit shared members.
/// This is different from sharing_info in that this could be true in the case where a
/// file has explicit members but is not contained within a shared folder.</para>
/// true in <see cref="Dropbox.Api.Files.Routes.FilesAppRoutes.ListFolderAsync" /> <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.ListFolderAsync" /> or <see
/// cref="Dropbox.Api.Files.Routes.FilesUserRoutes.GetMetadataAsync" />. If this flag
/// is present, it will be true if this file has any explicit shared members. This is
/// different from sharing_info in that this could be true in the case where a file
/// has explicit members but is not contained within a shared folder.</para>
/// </summary>
public bool? HasExplicitSharedMembers { get; protected set; }

Expand Down
Loading

0 comments on commit 64c2785

Please sign in to comment.