Skip to content

Commit d31db4d

Browse files
Merge pull request #563 from vimeo/MPS-3089-New-Account-Types
MPS-3089 New account types
2 parents 4e11597 + 55ca671 commit d31db4d

4 files changed

Lines changed: 25 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change Log
22
==========
3+
Version 3.5.0 *(2022-05-16)*
4+
----------------------------
5+
- Added new account types: Free, Starter, Standard, and Advanced.
36

47
Version 3.4.0 *(2022-05-03)*
58
----------------------------

api-core/src/main/java/com/vimeo/networking2/ApiConstants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object ApiConstants {
3333

3434
const val SSL_URL_PATTERN = "*.vimeo.com"
3535

36-
const val SDK_VERSION = "3.4.0"
36+
const val SDK_VERSION = "3.5.0"
3737

3838
const val NONE = -1
3939

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
org.gradle.parallel=true
2020
org.gradle.daemon=true
2121
org.gradle.jvmargs=-Xmx4096M
22-
version=3.4.0
22+
version=3.5.0
2323

2424
android.useAndroidX=true
2525
android.enableJetifier=true

models/src/main/java/com/vimeo/networking2/enums/AccountType.kt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,26 @@ enum class AccountType(override val value: String?) : StringValue {
5555
*/
5656
ENTERPRISE("enterprise"),
5757

58+
/**
59+
* The user has a free subscription.
60+
*/
61+
FREE("free"),
62+
63+
/**
64+
* The user has a starter subscription.
65+
*/
66+
STARTER("starter"),
67+
68+
/**
69+
* The user has a standard subscription.
70+
*/
71+
STANDARD("standard"),
72+
73+
/**
74+
* The user has an advanced subscription.
75+
*/
76+
ADVANCED("advanced"),
77+
5878
/**
5979
* Unknown account type.
6080
*/

0 commit comments

Comments
 (0)