Skip to content

Commit 0369ad7

Browse files
Merge pull request #26 from appwrite/dev
Dev
2 parents 6727be3 + 1bf425b commit 0369ad7

Some content is hidden

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

43 files changed

+429
-843
lines changed

.github/workflows/autoclose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Auto-close External Pull Requests
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened]
6+
7+
jobs:
8+
auto_close:
9+
uses: appwrite/.github/.github/workflows/autoclose.yml@main
10+
secrets:
11+
GH_AUTO_CLOSE_PR_TOKEN: ${{ secrets.GH_AUTO_CLOSE_PR_TOKEN }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024 Appwrite (https://appwrite.io) and individual contributors.
1+
Copyright (c) 2025 Appwrite (https://appwrite.io) and individual contributors.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Appwrite Deno SDK
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-deno.svg?style=flat-square)
4-
![Version](https://img.shields.io/badge/api%20version-1.6.0-blue.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/api%20version-1.6.2-blue.svg?style=flat-square)
55
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ const response = await databases.updateBooleanAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
false // default
15+
false, // default
16+
'' // newKey (optional)
1617
);

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ const response = await databases.updateDatetimeAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
'' // default
15+
'', // default
16+
'' // newKey (optional)
1617
);

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ const response = await databases.updateEmailAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
'email@example.com' // default
15+
'email@example.com', // default
16+
'' // newKey (optional)
1617
);

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ const response = await databases.updateEnumAttribute(
1313
'', // key
1414
[], // elements
1515
false, // required
16-
'<DEFAULT>' // default
16+
'<DEFAULT>', // default
17+
'' // newKey (optional)
1718
);

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const response = await databases.updateFloatAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
null, // min
16-
null, // max
17-
null // default
15+
null, // default
16+
null, // min (optional)
17+
null, // max (optional)
18+
'' // newKey (optional)
1819
);

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const response = await databases.updateIntegerAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
null, // min
16-
null, // max
17-
null // default
15+
null, // default
16+
null, // min (optional)
17+
null, // max (optional)
18+
'' // newKey (optional)
1819
);

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ const response = await databases.updateIpAttribute(
1212
'<COLLECTION_ID>', // collectionId
1313
'', // key
1414
false, // required
15-
'' // default
15+
'', // default
16+
'' // newKey (optional)
1617
);

0 commit comments

Comments
 (0)