Skip to content

Commit

Permalink
Merge pull request #567 from vimeo/add-team-member-error-code
Browse files Browse the repository at this point in the history
Add team member error code
  • Loading branch information
anthonycr authored Jun 23, 2022
2 parents 21c63e8 + 660164c commit ed3c9ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Change Log
==========
Version 3.9.0 *(2022-06-23)*
----------------------------
- Added the `ErrorCodeType.ADD_TEAM_MEMBER_FORBIDDEN` error code.

Version 3.8.0 *(2022-06-14)*
----------------------------
- Added `ADD_TEAM_MEMBER_FORBIDDEN_QUOTA_EXCEEDED` to `ErrorCodeType`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object ApiConstants {

const val SSL_URL_PATTERN = "*.vimeo.com"

const val SDK_VERSION = "3.8.0"
const val SDK_VERSION = "3.9.0"

const val NONE = -1

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx4096M
version=3.8.0
version=3.9.0

android.useAndroidX=true
android.enableJetifier=true
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ enum class ErrorCodeType(override val value: String?) : StringValue {

ADD_VIDEO_TO_ALBUM_FORBIDDEN("3433"),

ADD_TEAM_MEMBER_FORBIDDEN_QUOTA_EXCEEDED("3448"),
ADD_TEAM_MEMBER_FORBIDDEN("3448"),

ADD_TEAM_MEMBER_FORBIDDEN_QUOTA_EXCEEDED("3425"),

UNEXPECTED_ALBUM_THUMBNAIL_EXCEPTION("4016"),

Expand Down

0 comments on commit ed3c9ab

Please sign in to comment.