Skip to content

Commit 31ee921

Browse files
committed
Add order random
1 parent 78c2f1a commit 31ee921

32 files changed

+43
-41
lines changed

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:11.0.0")
42+
implementation("io.appwrite:sdk-for-kotlin:11.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>11.0.0</version>
53+
<version>11.1.0</version>
5454
</dependency>
5555
</dependencies>
5656
```

docs/examples/java/databases/create-line-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.createLineAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([1, 2], [3, 4], [5, 6]), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

docs/examples/java/databases/create-point-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.createPointAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf(1, 2), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

docs/examples/java/databases/create-polygon-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.createPolygonAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([[1, 2], [3, 4], [5, 6], [1, 2]]), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

docs/examples/java/databases/update-line-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.updateLineAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([1, 2], [3, 4], [5, 6]), // default (optional)
1818
"", // newKey (optional)
1919
new CoroutineCallback<>((result, error) -> {
2020
if (error != null) {

docs/examples/java/databases/update-point-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.updatePointAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf(1, 2), // default (optional)
1818
"", // newKey (optional)
1919
new CoroutineCallback<>((result, error) -> {
2020
if (error != null) {

docs/examples/java/databases/update-polygon-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ databases.updatePolygonAttribute(
1414
"<COLLECTION_ID>", // collectionId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([[1, 2], [3, 4], [5, 6], [1, 2]]), // default (optional)
1818
"", // newKey (optional)
1919
new CoroutineCallback<>((result, error) -> {
2020
if (error != null) {

docs/examples/java/tablesdb/create-line-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tablesDB.createLineColumn(
1414
"<TABLE_ID>", // tableId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([1, 2], [3, 4], [5, 6]), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

docs/examples/java/tablesdb/create-point-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tablesDB.createPointColumn(
1414
"<TABLE_ID>", // tableId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf(1, 2), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

docs/examples/java/tablesdb/create-polygon-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tablesDB.createPolygonColumn(
1414
"<TABLE_ID>", // tableId
1515
"", // key
1616
false, // required
17-
listOf([1,2], [3, 4]), // default (optional)
17+
listOf([[1, 2], [3, 4], [5, 6], [1, 2]]), // default (optional)
1818
new CoroutineCallback<>((result, error) -> {
1919
if (error != null) {
2020
error.printStackTrace();

0 commit comments

Comments
 (0)