Skip to content

Commit

Permalink
Regenerate routes
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Apr 14, 2022
1 parent 015a11d commit d5da81c
Show file tree
Hide file tree
Showing 9 changed files with 1,074 additions and 533 deletions.
4 changes: 2 additions & 2 deletions Source/SwiftyDropbox/Shared/Generated/FileProperties.swift
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,8 @@ open class FileProperties {
case notFile
/// We were expecting a folder, but the given path refers to something that isn't a folder.
case notFolder
/// The file cannot be transferred because the content is restricted. For example, sometimes there are legal
/// restrictions due to copyright claims.
/// The file cannot be transferred because the content is restricted. For example, we might restrict a file due
/// to legal requirements.
case restrictedContent
/// An unspecified error.
case other
Expand Down
623 changes: 422 additions & 201 deletions Source/SwiftyDropbox/Shared/Generated/Files.swift

Large diffs are not rendered by default.

204 changes: 101 additions & 103 deletions Source/SwiftyDropbox/Shared/Generated/FilesRoutes.swift

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion Source/SwiftyDropbox/Shared/Generated/Sharing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ open class Sharing {
case viewer
/// The collaborator can only view the shared folder and does not have any access to comments.
case viewerNoComment
/// The collaborator can only view the shared folder that they have access to.
case traverse
/// An unspecified error.
case other

Expand Down Expand Up @@ -97,6 +99,10 @@ open class Sharing {
var d = [String: JSON]()
d[".tag"] = .str("viewer_no_comment")
return .dictionary(d)
case .traverse:
var d = [String: JSON]()
d[".tag"] = .str("traverse")
return .dictionary(d)
case .other:
var d = [String: JSON]()
d[".tag"] = .str("other")
Expand All @@ -116,6 +122,8 @@ open class Sharing {
return AccessLevel.viewer
case "viewer_no_comment":
return AccessLevel.viewerNoComment
case "traverse":
return AccessLevel.traverse
case "other":
return AccessLevel.other
default:
Expand Down Expand Up @@ -188,7 +196,7 @@ open class Sharing {
public let members: Array<Sharing.MemberSelector>
/// Message to send to added members in their invitation.
public let customMessage: String?
/// Whether added members should be notified via device notifications of their invitation.
/// Whether added members should be notified via email and device notifications of their invitation.
public let quiet: Bool
/// AccessLevel union object, describing what access level we want to give new members.
public let accessLevel: Sharing.AccessLevel
Expand Down
3 changes: 2 additions & 1 deletion Source/SwiftyDropbox/Shared/Generated/SharingRoutes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ open class SharingRoutes {
/// - parameter members: Members to add. Note that even an email address is given, this may result in a user being
/// directly added to the membership if that email is the user's main account email.
/// - parameter customMessage: Message to send to added members in their invitation.
/// - parameter quiet: Whether added members should be notified via device notifications of their invitation.
/// - parameter quiet: Whether added members should be notified via email and device notifications of their
/// invitation.
/// - parameter accessLevel: AccessLevel union object, describing what access level we want to give new members.
/// - parameter addMessageAsComment: If the custom message should be added as a comment on the file.
///
Expand Down
327 changes: 320 additions & 7 deletions Source/SwiftyDropbox/Shared/Generated/TeamLog.swift

Large diffs are not rendered by default.

432 changes: 216 additions & 216 deletions Source/SwiftyDropbox/SwiftyDropbox.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion spec

0 comments on commit d5da81c

Please sign in to comment.