Skip to content

Commit df30bc2

Browse files
committed
Add order random
1 parent dbecf1e commit df30bc2

File tree

188 files changed

+12008
-13778
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+12008
-13778
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this to your package's `pubspec.yaml` file:
2323

2424
```yml
2525
dependencies:
26-
dart_appwrite: ^18.0.0
26+
dart_appwrite: ^18.1.0
2727
```
2828
2929
You can install packages from the command line:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ AttributeLine result = await databases.createLineAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[1, 2], [3, 4], [5, 6]], // (optional)
1616
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ AttributePoint result = await databases.createPointAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [1, 2], // (optional)
1616
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ AttributePolygon result = await databases.createPolygonAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional)
1616
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ AttributeLine result = await databases.updateLineAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[1, 2], [3, 4], [5, 6]], // (optional)
1616
newKey: '', // (optional)
1717
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ AttributePoint result = await databases.updatePointAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [1, 2], // (optional)
1616
newKey: '', // (optional)
1717
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ AttributePolygon result = await databases.updatePolygonAttribute(
1212
collectionId: '<COLLECTION_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional)
1616
newKey: '', // (optional)
1717
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ColumnLine result = await tablesDB.createLineColumn(
1212
tableId: '<TABLE_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[1, 2], [3, 4], [5, 6]], // (optional)
1616
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ColumnPoint result = await tablesDB.createPointColumn(
1212
tableId: '<TABLE_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [1, 2], // (optional)
1616
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ColumnPolygon result = await tablesDB.createPolygonColumn(
1212
tableId: '<TABLE_ID>',
1313
key: '',
1414
xrequired: false,
15-
xdefault: [[1,2], [3, 4]], // (optional)
15+
xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional)
1616
);

0 commit comments

Comments
 (0)