Skip to content

Commit 188f596

Browse files
authored
Merge pull request #63 from appwrite/dev
feat: Kotlin SDK update for version 13.0.0
2 parents 5e20467 + 2c21d8d commit 188f596

34 files changed

+67
-19
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 13.1.0
4+
5+
* Added ability to create columns and indexes synchronously while creating a table
6+
37
## 13.0.0
48

59
* Rename `VCSDeploymentType` enum to `VCSReferenceType`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repositories {
3939
Next, add the dependency to your project's `build.gradle(.kts)` file:
4040

4141
```groovy
42-
implementation("io.appwrite:sdk-for-kotlin:13.0.0")
42+
implementation("io.appwrite:sdk-for-kotlin:13.1.0")
4343
```
4444

4545
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
5050
<dependency>
5151
<groupId>io.appwrite</groupId>
5252
<artifactId>sdk-for-kotlin</artifactId>
53-
<version>13.0.0</version>
53+
<version>13.1.0</version>
5454
</dependency>
5555
</dependencies>
5656
```

docs/examples/java/account/create-anonymous-session.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

docs/examples/java/account/create-email-password-session.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

docs/examples/java/account/create-email-token.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

docs/examples/java/account/create-jwt.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

docs/examples/java/account/create-magic-url-token.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

docs/examples/java/account/create-mfa-challenge.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import io.appwrite.enums.AuthenticationFactor;
55

66
Client client = new Client()
77
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
8-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
8+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
9+
.setSession(""); // The user session to authenticate with
910

1011
Account account = new Account(client);
1112

docs/examples/java/account/create-o-auth-2-token.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import io.appwrite.enums.OAuthProvider;
55

66
Client client = new Client()
77
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
8-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
8+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
9+
.setSession(""); // The user session to authenticate with
910

1011
Account account = new Account(client);
1112

docs/examples/java/account/create-phone-token.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import io.appwrite.services.Account;
44

55
Client client = new Client()
66
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
7-
.setProject("<YOUR_PROJECT_ID>"); // Your project ID
7+
.setProject("<YOUR_PROJECT_ID>") // Your project ID
8+
.setSession(""); // The user session to authenticate with
89

910
Account account = new Account(client);
1011

0 commit comments

Comments
 (0)