Skip to content

Commit

Permalink
Merge pull request #563 from vimeo/MPS-3089-New-Account-Types
Browse files Browse the repository at this point in the history
MPS-3089 New account types
  • Loading branch information
howardrigberg authored May 16, 2022
2 parents 4e11597 + 55ca671 commit d31db4d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Change Log
==========
Version 3.5.0 *(2022-05-16)*
----------------------------
- Added new account types: Free, Starter, Standard, and Advanced.

Version 3.4.0 *(2022-05-03)*
----------------------------
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.4.0"
const val SDK_VERSION = "3.5.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.4.0
version=3.5.0

android.useAndroidX=true
android.enableJetifier=true
20 changes: 20 additions & 0 deletions models/src/main/java/com/vimeo/networking2/enums/AccountType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,26 @@ enum class AccountType(override val value: String?) : StringValue {
*/
ENTERPRISE("enterprise"),

/**
* The user has a free subscription.
*/
FREE("free"),

/**
* The user has a starter subscription.
*/
STARTER("starter"),

/**
* The user has a standard subscription.
*/
STANDARD("standard"),

/**
* The user has an advanced subscription.
*/
ADVANCED("advanced"),

/**
* Unknown account type.
*/
Expand Down

0 comments on commit d31db4d

Please sign in to comment.