-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from appwrite/dev
feat: release 1.4.x
- Loading branch information
Showing
49 changed files
with
2,103 additions
and
1,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token | ||
|
||
var account = new Account(client); | ||
|
||
await account.DeleteIdentity( | ||
identityId: "[IDENTITY_ID]"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token | ||
|
||
var account = new Account(client); | ||
|
||
IdentityList result = await account.ListIdentities(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var functions = new Functions(client); | ||
|
||
byte[] result = await functions.DownloadDeployment( | ||
functionId: "[FUNCTION_ID]", | ||
deploymentId: "[DEPLOYMENT_ID]"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthStatus result = await health.GetPubSub(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthStatus result = await health.GetQueue(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var locale = new Locale(client); | ||
|
||
LocaleCodeList result = await locale.ListCodes(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var users = new Users(client); | ||
|
||
await users.DeleteIdentity( | ||
identityId: "[IDENTITY_ID]"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var users = new Users(client); | ||
|
||
IdentityList result = await users.ListIdentities(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var users = new Users(client); | ||
|
||
User result = await users.UpdateLabels( | ||
userId: "[USER_ID]", | ||
labels: new List<string> {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.