diff --git a/composer.lock b/composer.lock index 10e68b7f63..ce1c6c7934 100644 --- a/composer.lock +++ b/composer.lock @@ -283,16 +283,16 @@ }, { "name": "brick/math", - "version": "0.14.3", + "version": "0.14.4", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "6af96b11de3f7d99730c118c200418c48274edb4" + "reference": "a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/6af96b11de3f7d99730c118c200418c48274edb4", - "reference": "6af96b11de3f7d99730c118c200418c48274edb4", + "url": "https://api.github.com/repos/brick/math/zipball/a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4", + "reference": "a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4", "shasum": "" }, "require": { @@ -331,7 +331,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.14.3" + "source": "https://github.com/brick/math/tree/0.14.4" }, "funding": [ { @@ -339,7 +339,7 @@ "type": "github" } ], - "time": "2026-02-01T15:18:05+00:00" + "time": "2026-02-02T16:57:31+00:00" }, { "name": "chillerlan/php-qrcode", @@ -5546,16 +5546,16 @@ "packages-dev": [ { "name": "appwrite/sdk-generator", - "version": "1.8.22", + "version": "1.8.23", "source": { "type": "git", "url": "https://github.com/appwrite/sdk-generator.git", - "reference": "2888fa2abd820dca24f3d967ba54d498999e3caf" + "reference": "b80b8210b4940cfcfad970c8c07ccf1eee74c267" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/2888fa2abd820dca24f3d967ba54d498999e3caf", - "reference": "2888fa2abd820dca24f3d967ba54d498999e3caf", + "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/b80b8210b4940cfcfad970c8c07ccf1eee74c267", + "reference": "b80b8210b4940cfcfad970c8c07ccf1eee74c267", "shasum": "" }, "require": { @@ -5591,9 +5591,9 @@ "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "support": { "issues": "https://github.com/appwrite/sdk-generator/issues", - "source": "https://github.com/appwrite/sdk-generator/tree/1.8.22" + "source": "https://github.com/appwrite/sdk-generator/tree/1.8.23" }, - "time": "2026-02-02T13:02:47+00:00" + "time": "2026-02-03T09:20:19+00:00" }, { "name": "doctrine/annotations", @@ -9052,7 +9052,7 @@ ], "aliases": [], "minimum-stability": "stable", - "stability-flags": [], + "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, "platform": { diff --git a/docs/examples/1.8.x/client-android/java/account/create-anonymous-session.md b/docs/examples/1.8.x/client-android/java/account/create-anonymous-session.md index 9d805882b8..a48b8ea0c7 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-android/java/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.createAnonymousSession(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-email-password-session.md b/docs/examples/1.8.x/client-android/java/account/create-email-password-session.md index 428b6fddb6..be91e8ef35 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-android/java/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createEmailPasswordSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-email-token.md b/docs/examples/1.8.x/client-android/java/account/create-email-token.md index 869f4a8991..d1acde2306 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-email-token.md +++ b/docs/examples/1.8.x/client-android/java/account/create-email-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createEmailToken( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-email-verification.md b/docs/examples/1.8.x/client-android/java/account/create-email-verification.md index dfbf059d45..c7f559a874 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/create-email-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.createEmailVerification( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-jwt.md b/docs/examples/1.8.x/client-android/java/account/create-jwt.md index 56c31eeee2..f05bbcaf67 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-jwt.md +++ b/docs/examples/1.8.x/client-android/java/account/create-jwt.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.createJWT( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-magic-url-token.md b/docs/examples/1.8.x/client-android/java/account/create-magic-url-token.md index 6253e00d58..6a18e65ccf 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-android/java/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -23,3 +24,4 @@ account.createMagicURLToken( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-android/java/account/create-mfa-authenticator.md index d236f46c6c..404e042096 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/java/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-android/java/account/create-mfa-challenge.md index 222c0bdad2..2cb46fdc0f 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-android/java/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createMFAChallenge( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/java/account/create-mfa-recovery-codes.md index 792e0860f7..e97714c6ff 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/java/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.createMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-session.md index 5ada9368ea..b34bcf76cd 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -24,3 +25,4 @@ account.createOAuth2Session( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-token.md index f1122dc8f3..a696665495 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-android/java/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -24,3 +25,4 @@ account.createOAuth2Token( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-phone-token.md b/docs/examples/1.8.x/client-android/java/account/create-phone-token.md index 19d90b3475..0808373d22 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-android/java/account/create-phone-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createPhoneToken( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-phone-verification.md b/docs/examples/1.8.x/client-android/java/account/create-phone-verification.md index 8c16b6c268..fa6bf74c35 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.createPhoneVerification(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-push-target.md b/docs/examples/1.8.x/client-android/java/account/create-push-target.md index d434a5c6f6..6842e5ba75 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-push-target.md +++ b/docs/examples/1.8.x/client-android/java/account/create-push-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createPushTarget( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-recovery.md b/docs/examples/1.8.x/client-android/java/account/create-recovery.md index 5592c6eb66..5647bac48f 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-recovery.md +++ b/docs/examples/1.8.x/client-android/java/account/create-recovery.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createRecovery( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-session.md b/docs/examples/1.8.x/client-android/java/account/create-session.md index 0c59a802b1..e8bb63e28e 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-session.md +++ b/docs/examples/1.8.x/client-android/java/account/create-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create-verification.md b/docs/examples/1.8.x/client-android/java/account/create-verification.md index e91acc85f9..ab3d393968 100644 --- a/docs/examples/1.8.x/client-android/java/account/create-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/create-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.createVerification( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/create.md b/docs/examples/1.8.x/client-android/java/account/create.md index ad04805ce3..333b1f36f7 100644 --- a/docs/examples/1.8.x/client-android/java/account/create.md +++ b/docs/examples/1.8.x/client-android/java/account/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -23,3 +24,4 @@ account.create( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/delete-identity.md b/docs/examples/1.8.x/client-android/java/account/delete-identity.md index d556722769..807f11a3bb 100644 --- a/docs/examples/1.8.x/client-android/java/account/delete-identity.md +++ b/docs/examples/1.8.x/client-android/java/account/delete-identity.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.deleteIdentity( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-android/java/account/delete-mfa-authenticator.md index b5ff26cbec..d040933997 100644 --- a/docs/examples/1.8.x/client-android/java/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/java/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.deleteMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/delete-push-target.md b/docs/examples/1.8.x/client-android/java/account/delete-push-target.md index 00ab902792..75afef2038 100644 --- a/docs/examples/1.8.x/client-android/java/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-android/java/account/delete-push-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.deletePushTarget( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/delete-session.md b/docs/examples/1.8.x/client-android/java/account/delete-session.md index 99d2f8e888..6536a7d7a0 100644 --- a/docs/examples/1.8.x/client-android/java/account/delete-session.md +++ b/docs/examples/1.8.x/client-android/java/account/delete-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.deleteSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/delete-sessions.md b/docs/examples/1.8.x/client-android/java/account/delete-sessions.md index e93f3e33ac..391d701b07 100644 --- a/docs/examples/1.8.x/client-android/java/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-android/java/account/delete-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.deleteSessions(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/java/account/get-mfa-recovery-codes.md index 22bc1c1637..5aa0df2031 100644 --- a/docs/examples/1.8.x/client-android/java/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/java/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.getMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/get-prefs.md b/docs/examples/1.8.x/client-android/java/account/get-prefs.md index 5bb11a4a95..8c08a84700 100644 --- a/docs/examples/1.8.x/client-android/java/account/get-prefs.md +++ b/docs/examples/1.8.x/client-android/java/account/get-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.getPrefs(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/get-session.md b/docs/examples/1.8.x/client-android/java/account/get-session.md index 288cd3b3ba..a499beaecd 100644 --- a/docs/examples/1.8.x/client-android/java/account/get-session.md +++ b/docs/examples/1.8.x/client-android/java/account/get-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.getSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/get.md b/docs/examples/1.8.x/client-android/java/account/get.md index 6b5eb3b7fa..6d649b991f 100644 --- a/docs/examples/1.8.x/client-android/java/account/get.md +++ b/docs/examples/1.8.x/client-android/java/account/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.get(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/list-identities.md b/docs/examples/1.8.x/client-android/java/account/list-identities.md index e5dd44d9b7..78848d43f5 100644 --- a/docs/examples/1.8.x/client-android/java/account/list-identities.md +++ b/docs/examples/1.8.x/client-android/java/account/list-identities.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.listIdentities( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/list-logs.md b/docs/examples/1.8.x/client-android/java/account/list-logs.md index 8b6ec85067..e4114920bf 100644 --- a/docs/examples/1.8.x/client-android/java/account/list-logs.md +++ b/docs/examples/1.8.x/client-android/java/account/list-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.listLogs( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/list-mfa-factors.md b/docs/examples/1.8.x/client-android/java/account/list-mfa-factors.md index 06f20e1a5a..869701ddb5 100644 --- a/docs/examples/1.8.x/client-android/java/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-android/java/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.listMFAFactors(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/list-sessions.md b/docs/examples/1.8.x/client-android/java/account/list-sessions.md index 8946d96e7c..44b453f5d8 100644 --- a/docs/examples/1.8.x/client-android/java/account/list-sessions.md +++ b/docs/examples/1.8.x/client-android/java/account/list-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.listSessions(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-email-verification.md b/docs/examples/1.8.x/client-android/java/account/update-email-verification.md index 9d157c8e92..f3563cfc27 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/update-email-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateEmailVerification( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-email.md b/docs/examples/1.8.x/client-android/java/account/update-email.md index ac80e451d0..d9a4214884 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-email.md +++ b/docs/examples/1.8.x/client-android/java/account/update-email.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateEmail( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-magic-url-session.md b/docs/examples/1.8.x/client-android/java/account/update-magic-url-session.md index 5893aa6e6b..666d0b0156 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-android/java/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateMagicURLSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-android/java/account/update-mfa-authenticator.md index 00ddd46b26..492a12bd96 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/java/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-android/java/account/update-mfa-challenge.md index 10b5db49f8..857009ad40 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-android/java/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateMFAChallenge( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/java/account/update-mfa-recovery-codes.md index c0d6c69fa0..bf2818d503 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/java/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.updateMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-mfa.md b/docs/examples/1.8.x/client-android/java/account/update-mfa.md index b765cda94a..c1937c0cc8 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-mfa.md +++ b/docs/examples/1.8.x/client-android/java/account/update-mfa.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.updateMFA( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-name.md b/docs/examples/1.8.x/client-android/java/account/update-name.md index 47582c2b30..a64dd6ed2d 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-name.md +++ b/docs/examples/1.8.x/client-android/java/account/update-name.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.updateName( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-password.md b/docs/examples/1.8.x/client-android/java/account/update-password.md index 09f572eb31..075a869b18 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-password.md +++ b/docs/examples/1.8.x/client-android/java/account/update-password.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updatePassword( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-phone-session.md b/docs/examples/1.8.x/client-android/java/account/update-phone-session.md index 2e1b880017..d15a5c49ef 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-android/java/account/update-phone-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updatePhoneSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-phone-verification.md b/docs/examples/1.8.x/client-android/java/account/update-phone-verification.md index f93ae6906f..8f1b415336 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updatePhoneVerification( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-phone.md b/docs/examples/1.8.x/client-android/java/account/update-phone.md index fae9bfaaec..da17d4b82e 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-phone.md +++ b/docs/examples/1.8.x/client-android/java/account/update-phone.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updatePhone( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-prefs.md b/docs/examples/1.8.x/client-android/java/account/update-prefs.md index 2682fe3aeb..1996e60553 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-prefs.md +++ b/docs/examples/1.8.x/client-android/java/account/update-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -24,3 +25,4 @@ account.updatePrefs( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-push-target.md b/docs/examples/1.8.x/client-android/java/account/update-push-target.md index 197a9095a7..67acc1bc51 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-push-target.md +++ b/docs/examples/1.8.x/client-android/java/account/update-push-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updatePushTarget( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-recovery.md b/docs/examples/1.8.x/client-android/java/account/update-recovery.md index 953bde4f26..2ea21c97bf 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-recovery.md +++ b/docs/examples/1.8.x/client-android/java/account/update-recovery.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateRecovery( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-session.md b/docs/examples/1.8.x/client-android/java/account/update-session.md index ed82840836..978d7a440b 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-session.md +++ b/docs/examples/1.8.x/client-android/java/account/update-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -20,3 +21,4 @@ account.updateSession( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-status.md b/docs/examples/1.8.x/client-android/java/account/update-status.md index 9a283c092c..308df1167c 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-status.md +++ b/docs/examples/1.8.x/client-android/java/account/update-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -16,3 +17,4 @@ account.updateStatus(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/account/update-verification.md b/docs/examples/1.8.x/client-android/java/account/update-verification.md index caa3869e25..e1819262d7 100644 --- a/docs/examples/1.8.x/client-android/java/account/update-verification.md +++ b/docs/examples/1.8.x/client-android/java/account/update-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateVerification( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-browser.md b/docs/examples/1.8.x/client-android/java/avatars/get-browser.md index 1b6632f30a..f107aee617 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-browser.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -24,3 +25,4 @@ avatars.getBrowser( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-credit-card.md b/docs/examples/1.8.x/client-android/java/avatars/get-credit-card.md index e2ac2c26cd..40fb5660e4 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -24,3 +25,4 @@ avatars.getCreditCard( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-favicon.md b/docs/examples/1.8.x/client-android/java/avatars/get-favicon.md index 70373a607b..3427b59d36 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -20,3 +21,4 @@ avatars.getFavicon( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-flag.md b/docs/examples/1.8.x/client-android/java/avatars/get-flag.md index 689e27fe35..812282ff71 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-flag.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -24,3 +25,4 @@ avatars.getFlag( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-image.md b/docs/examples/1.8.x/client-android/java/avatars/get-image.md index 71a90dd1c2..1289ec1f65 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-image.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-image.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -22,3 +23,4 @@ avatars.getImage( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-initials.md b/docs/examples/1.8.x/client-android/java/avatars/get-initials.md index ca16ee7e36..419ca5e5d8 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-initials.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -23,3 +24,4 @@ avatars.getInitials( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-qr.md b/docs/examples/1.8.x/client-android/java/avatars/get-qr.md index 781acf6741..be4d11c375 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-qr.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -23,3 +24,4 @@ avatars.getQR( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/avatars/get-screenshot.md b/docs/examples/1.8.x/client-android/java/avatars/get-screenshot.md index 24c4998e14..2f261c5fd2 100644 --- a/docs/examples/1.8.x/client-android/java/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-android/java/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -46,3 +47,4 @@ avatars.getScreenshot( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/create-document.md b/docs/examples/1.8.x/client-android/java/databases/create-document.md index d95db8a9b0..44ff1d27b0 100644 --- a/docs/examples/1.8.x/client-android/java/databases/create-document.md +++ b/docs/examples/1.8.x/client-android/java/databases/create-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ databases.createDocument( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/create-operations.md b/docs/examples/1.8.x/client-android/java/databases/create-operations.md index a8635d81e9..e7e0a7f561 100644 --- a/docs/examples/1.8.x/client-android/java/databases/create-operations.md +++ b/docs/examples/1.8.x/client-android/java/databases/create-operations.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -29,3 +30,4 @@ databases.createOperations( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/create-transaction.md b/docs/examples/1.8.x/client-android/java/databases/create-transaction.md index 871d1907f6..253e9650bd 100644 --- a/docs/examples/1.8.x/client-android/java/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-android/java/databases/create-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -20,3 +21,4 @@ databases.createTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-android/java/databases/decrement-document-attribute.md index 8669494532..2c881a6a89 100644 --- a/docs/examples/1.8.x/client-android/java/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-android/java/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.decrementDocumentAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/delete-document.md b/docs/examples/1.8.x/client-android/java/databases/delete-document.md index 2795670807..a1a0e11b51 100644 --- a/docs/examples/1.8.x/client-android/java/databases/delete-document.md +++ b/docs/examples/1.8.x/client-android/java/databases/delete-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.deleteDocument( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/delete-transaction.md b/docs/examples/1.8.x/client-android/java/databases/delete-transaction.md index ac1121e9b9..e6f8ee203f 100644 --- a/docs/examples/1.8.x/client-android/java/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-android/java/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -20,3 +21,4 @@ databases.deleteTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/get-document.md b/docs/examples/1.8.x/client-android/java/databases/get-document.md index 85f9bb9b13..cb3d6bb9f7 100644 --- a/docs/examples/1.8.x/client-android/java/databases/get-document.md +++ b/docs/examples/1.8.x/client-android/java/databases/get-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.getDocument( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/get-transaction.md b/docs/examples/1.8.x/client-android/java/databases/get-transaction.md index 5dee850305..812dcc21fd 100644 --- a/docs/examples/1.8.x/client-android/java/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-android/java/databases/get-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -20,3 +21,4 @@ databases.getTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-android/java/databases/increment-document-attribute.md index 5928b455c6..38ab4fa3ea 100644 --- a/docs/examples/1.8.x/client-android/java/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-android/java/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.incrementDocumentAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/list-documents.md b/docs/examples/1.8.x/client-android/java/databases/list-documents.md index 5440f786cc..26e7a52da2 100644 --- a/docs/examples/1.8.x/client-android/java/databases/list-documents.md +++ b/docs/examples/1.8.x/client-android/java/databases/list-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.listDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/list-transactions.md b/docs/examples/1.8.x/client-android/java/databases/list-transactions.md index 899a3ea181..73bdb05069 100644 --- a/docs/examples/1.8.x/client-android/java/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-android/java/databases/list-transactions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -20,3 +21,4 @@ databases.listTransactions( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/update-document.md b/docs/examples/1.8.x/client-android/java/databases/update-document.md index 74e4244cc6..fc9dae2930 100644 --- a/docs/examples/1.8.x/client-android/java/databases/update-document.md +++ b/docs/examples/1.8.x/client-android/java/databases/update-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ databases.updateDocument( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/update-transaction.md b/docs/examples/1.8.x/client-android/java/databases/update-transaction.md index c5f586fce3..6260ebc2ae 100644 --- a/docs/examples/1.8.x/client-android/java/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-android/java/databases/update-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -22,3 +23,4 @@ databases.updateTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/databases/upsert-document.md b/docs/examples/1.8.x/client-android/java/databases/upsert-document.md index 9e04ef544a..f69223cf3c 100644 --- a/docs/examples/1.8.x/client-android/java/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-android/java/databases/upsert-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ databases.upsertDocument( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/functions/create-execution.md b/docs/examples/1.8.x/client-android/java/functions/create-execution.md index 4aea0929f1..14e1a5c4a3 100644 --- a/docs/examples/1.8.x/client-android/java/functions/create-execution.md +++ b/docs/examples/1.8.x/client-android/java/functions/create-execution.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -27,3 +28,4 @@ functions.createExecution( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/functions/get-execution.md b/docs/examples/1.8.x/client-android/java/functions/get-execution.md index f3195fa126..276f048cc1 100644 --- a/docs/examples/1.8.x/client-android/java/functions/get-execution.md +++ b/docs/examples/1.8.x/client-android/java/functions/get-execution.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -21,3 +22,4 @@ functions.getExecution( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/functions/list-executions.md b/docs/examples/1.8.x/client-android/java/functions/list-executions.md index 893d098998..d1244a5153 100644 --- a/docs/examples/1.8.x/client-android/java/functions/list-executions.md +++ b/docs/examples/1.8.x/client-android/java/functions/list-executions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.listExecutions( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/graphql/mutation.md b/docs/examples/1.8.x/client-android/java/graphql/mutation.md index 445195275a..0e932f14c5 100644 --- a/docs/examples/1.8.x/client-android/java/graphql/mutation.md +++ b/docs/examples/1.8.x/client-android/java/graphql/mutation.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; @@ -20,3 +21,4 @@ graphql.mutation( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/graphql/query.md b/docs/examples/1.8.x/client-android/java/graphql/query.md index b39f128165..17d19ee1e2 100644 --- a/docs/examples/1.8.x/client-android/java/graphql/query.md +++ b/docs/examples/1.8.x/client-android/java/graphql/query.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; @@ -20,3 +21,4 @@ graphql.query( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/get.md b/docs/examples/1.8.x/client-android/java/locale/get.md index 89e1e88b26..2416447b7f 100644 --- a/docs/examples/1.8.x/client-android/java/locale/get.md +++ b/docs/examples/1.8.x/client-android/java/locale/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.get(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-codes.md b/docs/examples/1.8.x/client-android/java/locale/list-codes.md index 85a96fce77..c27f9ef2b8 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-codes.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listCodes(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-continents.md b/docs/examples/1.8.x/client-android/java/locale/list-continents.md index 6f4572d572..64debed3b5 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-continents.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-continents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listContinents(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-countries-eu.md b/docs/examples/1.8.x/client-android/java/locale/list-countries-eu.md index 51458a929d..768cc906ab 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listCountriesEU(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-countries-phones.md b/docs/examples/1.8.x/client-android/java/locale/list-countries-phones.md index 93438d2130..90622f1a08 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listCountriesPhones(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-countries.md b/docs/examples/1.8.x/client-android/java/locale/list-countries.md index 5cd5525e93..0ba9212776 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-countries.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-countries.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listCountries(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-currencies.md b/docs/examples/1.8.x/client-android/java/locale/list-currencies.md index d3ef02c865..10b53124e9 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-currencies.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listCurrencies(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/locale/list-languages.md b/docs/examples/1.8.x/client-android/java/locale/list-languages.md index 0d724943a9..35687ab6cf 100644 --- a/docs/examples/1.8.x/client-android/java/locale/list-languages.md +++ b/docs/examples/1.8.x/client-android/java/locale/list-languages.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -16,3 +17,4 @@ locale.listLanguages(new CoroutineCallback<>((result, error) -> { Log.d("Appwrite", result.toString()); })); +``` diff --git a/docs/examples/1.8.x/client-android/java/messaging/create-subscriber.md b/docs/examples/1.8.x/client-android/java/messaging/create-subscriber.md index 5616435ab5..be1bfc5795 100644 --- a/docs/examples/1.8.x/client-android/java/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-android/java/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -22,3 +23,4 @@ messaging.createSubscriber( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-android/java/messaging/delete-subscriber.md index 9adae5e7df..c8c089f4af 100644 --- a/docs/examples/1.8.x/client-android/java/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-android/java/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.deleteSubscriber( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/create-file.md b/docs/examples/1.8.x/client-android/java/storage/create-file.md index 518bbc9d29..3b73523bf2 100644 --- a/docs/examples/1.8.x/client-android/java/storage/create-file.md +++ b/docs/examples/1.8.x/client-android/java/storage/create-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.models.InputFile; @@ -26,3 +27,4 @@ storage.createFile( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/delete-file.md b/docs/examples/1.8.x/client-android/java/storage/delete-file.md index 5c63ae7cd5..fdd9e8ba54 100644 --- a/docs/examples/1.8.x/client-android/java/storage/delete-file.md +++ b/docs/examples/1.8.x/client-android/java/storage/delete-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -21,3 +22,4 @@ storage.deleteFile( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/get-file-download.md b/docs/examples/1.8.x/client-android/java/storage/get-file-download.md index 73a8617fdd..91d91b7d09 100644 --- a/docs/examples/1.8.x/client-android/java/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-android/java/storage/get-file-download.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -22,3 +23,4 @@ storage.getFileDownload( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/get-file-preview.md b/docs/examples/1.8.x/client-android/java/storage/get-file-preview.md index 392ef11649..9355dc68ac 100644 --- a/docs/examples/1.8.x/client-android/java/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-android/java/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -35,3 +36,4 @@ storage.getFilePreview( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/get-file-view.md b/docs/examples/1.8.x/client-android/java/storage/get-file-view.md index b042b1f451..66762c2b6f 100644 --- a/docs/examples/1.8.x/client-android/java/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-android/java/storage/get-file-view.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -22,3 +23,4 @@ storage.getFileView( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/get-file.md b/docs/examples/1.8.x/client-android/java/storage/get-file.md index c9cc00d8f7..1736265773 100644 --- a/docs/examples/1.8.x/client-android/java/storage/get-file.md +++ b/docs/examples/1.8.x/client-android/java/storage/get-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -21,3 +22,4 @@ storage.getFile( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/list-files.md b/docs/examples/1.8.x/client-android/java/storage/list-files.md index 05292a6465..3b4288ffd6 100644 --- a/docs/examples/1.8.x/client-android/java/storage/list-files.md +++ b/docs/examples/1.8.x/client-android/java/storage/list-files.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -23,3 +24,4 @@ storage.listFiles( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/storage/update-file.md b/docs/examples/1.8.x/client-android/java/storage/update-file.md index 40cc61b1bf..a8ff797d73 100644 --- a/docs/examples/1.8.x/client-android/java/storage/update-file.md +++ b/docs/examples/1.8.x/client-android/java/storage/update-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -25,3 +26,4 @@ storage.updateFile( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/create-operations.md b/docs/examples/1.8.x/client-android/java/tablesdb/create-operations.md index 0e8cb4b067..8ab0f41f7c 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -29,3 +30,4 @@ tablesDB.createOperations( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md index b3e4f310db..772a4e0797 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ tablesDB.createRow( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-android/java/tablesdb/create-transaction.md index c232c56991..abf0aba1e1 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -20,3 +21,4 @@ tablesDB.createTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md index 2252564e73..50225726cd 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.decrementRowColumn( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md index 6680100499..146f97f956 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.deleteRow( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-android/java/tablesdb/delete-transaction.md index 18cb2357d3..aa6498623f 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -20,3 +21,4 @@ tablesDB.deleteTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md index 2bf847284a..df07780e36 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.getRow( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-android/java/tablesdb/get-transaction.md index fb51916264..086c9f1712 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -20,3 +21,4 @@ tablesDB.getTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md index a1194a67a5..1cad78570d 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.incrementRowColumn( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md b/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md index 0833929eb1..48caad98a8 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.listRows( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-android/java/tablesdb/list-transactions.md index ce0147b036..81c41237d3 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -20,3 +21,4 @@ tablesDB.listTransactions( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md index c41cc09f0c..96cb1b9e88 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ tablesDB.updateRow( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-android/java/tablesdb/update-transaction.md index 804b5d5023..ef6783e0d3 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -22,3 +23,4 @@ tablesDB.updateTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md index 0b40f6b976..e4d7228e98 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -33,3 +34,4 @@ tablesDB.upsertRow( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/create-membership.md b/docs/examples/1.8.x/client-android/java/teams/create-membership.md index 161e65eb11..8021f370f5 100644 --- a/docs/examples/1.8.x/client-android/java/teams/create-membership.md +++ b/docs/examples/1.8.x/client-android/java/teams/create-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -27,3 +28,4 @@ teams.createMembership( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/create.md b/docs/examples/1.8.x/client-android/java/teams/create.md index 232d3b38ee..b31554ceea 100644 --- a/docs/examples/1.8.x/client-android/java/teams/create.md +++ b/docs/examples/1.8.x/client-android/java/teams/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.create( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/delete-membership.md b/docs/examples/1.8.x/client-android/java/teams/delete-membership.md index c8bb088cc6..8680f1271e 100644 --- a/docs/examples/1.8.x/client-android/java/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-android/java/teams/delete-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.deleteMembership( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/delete.md b/docs/examples/1.8.x/client-android/java/teams/delete.md index 74f6a4f997..2055157f7a 100644 --- a/docs/examples/1.8.x/client-android/java/teams/delete.md +++ b/docs/examples/1.8.x/client-android/java/teams/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -20,3 +21,4 @@ teams.delete( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/get-membership.md b/docs/examples/1.8.x/client-android/java/teams/get-membership.md index e9dc5786d6..04f90637f0 100644 --- a/docs/examples/1.8.x/client-android/java/teams/get-membership.md +++ b/docs/examples/1.8.x/client-android/java/teams/get-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.getMembership( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/get-prefs.md b/docs/examples/1.8.x/client-android/java/teams/get-prefs.md index 8ba14355a1..ff7dc4264a 100644 --- a/docs/examples/1.8.x/client-android/java/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-android/java/teams/get-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -20,3 +21,4 @@ teams.getPrefs( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/get.md b/docs/examples/1.8.x/client-android/java/teams/get.md index f00057a822..cfa9242e10 100644 --- a/docs/examples/1.8.x/client-android/java/teams/get.md +++ b/docs/examples/1.8.x/client-android/java/teams/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -20,3 +21,4 @@ teams.get( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/list-memberships.md b/docs/examples/1.8.x/client-android/java/teams/list-memberships.md index c8d3b610dc..ed9b27448f 100644 --- a/docs/examples/1.8.x/client-android/java/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-android/java/teams/list-memberships.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -23,3 +24,4 @@ teams.listMemberships( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/list.md b/docs/examples/1.8.x/client-android/java/teams/list.md index 1db3e67a2e..07acaf8d2a 100644 --- a/docs/examples/1.8.x/client-android/java/teams/list.md +++ b/docs/examples/1.8.x/client-android/java/teams/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.list( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/update-membership-status.md b/docs/examples/1.8.x/client-android/java/teams/update-membership-status.md index 4b31ed55ec..bcb46d8191 100644 --- a/docs/examples/1.8.x/client-android/java/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-android/java/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -23,3 +24,4 @@ teams.updateMembershipStatus( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/update-membership.md b/docs/examples/1.8.x/client-android/java/teams/update-membership.md index 83675d7a34..4977610a08 100644 --- a/docs/examples/1.8.x/client-android/java/teams/update-membership.md +++ b/docs/examples/1.8.x/client-android/java/teams/update-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -23,3 +24,4 @@ teams.updateMembership( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/update-name.md b/docs/examples/1.8.x/client-android/java/teams/update-name.md index 207bcc81e3..6a49b27c20 100644 --- a/docs/examples/1.8.x/client-android/java/teams/update-name.md +++ b/docs/examples/1.8.x/client-android/java/teams/update-name.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.updateName( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/java/teams/update-prefs.md b/docs/examples/1.8.x/client-android/java/teams/update-prefs.md index 9ea1487bd4..bedb83b3d9 100644 --- a/docs/examples/1.8.x/client-android/java/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-android/java/teams/update-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.updatePrefs( }) ); +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-anonymous-session.md b/docs/examples/1.8.x/client-android/kotlin/account/create-anonymous-session.md index d2966a18cd..0cc36e1f67 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.createAnonymousSession() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-email-password-session.md b/docs/examples/1.8.x/client-android/kotlin/account/create-email-password-session.md index a327cf280e..b3f63d8a6c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createEmailPasswordSession( email = "email@example.com", password = "password", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-email-token.md b/docs/examples/1.8.x/client-android/kotlin/account/create-email-token.md index 37c9e1b380..f78bb74e4f 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-email-token.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-email-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,4 +13,4 @@ val result = account.createEmailToken( userId = "", email = "email@example.com", phrase = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-email-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/create-email-verification.md index dc87901eaf..3912e3b637 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-email-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.createEmailVerification( url = "https://example.com", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-jwt.md b/docs/examples/1.8.x/client-android/kotlin/account/create-jwt.md index 1c72fa8e1d..d90c10e557 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-jwt.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-jwt.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.createJWT( duration = 0, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-magic-url-token.md b/docs/examples/1.8.x/client-android/kotlin/account/create-magic-url-token.md index 76f4c91884..0965f2140e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,4 +14,4 @@ val result = account.createMagicURLToken( email = "email@example.com", url = "https://example.com", // (optional) phrase = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-authenticator.md index 934de1cc1c..c8f8d9a4e6 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createMFAAuthenticator( type = AuthenticatorType.TOTP, -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-challenge.md index f79c49891a..c40512ddbf 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createMFAChallenge( factor = AuthenticationFactor.EMAIL, -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-recovery-codes.md index cc5696646c..d91a3eb39a 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.createMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-session.md index 61ea634ad7..18cb236136 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,4 +15,4 @@ account.createOAuth2Session( success = "https://example.com", // (optional) failure = "https://example.com", // (optional) scopes = listOf(), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-token.md index cdd2ef3445..52c0eea08a 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,4 +15,4 @@ account.createOAuth2Token( success = "https://example.com", // (optional) failure = "https://example.com", // (optional) scopes = listOf(), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-phone-token.md b/docs/examples/1.8.x/client-android/kotlin/account/create-phone-token.md index 4eb1a9ac4e..8ee75ceb77 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-phone-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createPhoneToken( userId = "", phone = "+12065550100", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-phone-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/create-phone-verification.md index f7594668fa..77705b8fd2 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.createPhoneVerification() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-push-target.md b/docs/examples/1.8.x/client-android/kotlin/account/create-push-target.md index 59b252be15..b464101756 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-push-target.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-push-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,4 +13,4 @@ val result = account.createPushTarget( targetId = "", identifier = "", providerId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-recovery.md b/docs/examples/1.8.x/client-android/kotlin/account/create-recovery.md index 7e13138111..e8448a61d0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-recovery.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-recovery.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createRecovery( email = "email@example.com", url = "https://example.com", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-session.md b/docs/examples/1.8.x/client-android/kotlin/account/create-session.md index ab9e20e7e2..e5273ce935 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.createSession( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/create-verification.md index 669b00ba18..4f39b39adb 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.createVerification( url = "https://example.com", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/create.md b/docs/examples/1.8.x/client-android/kotlin/account/create.md index 16f3a60ded..fccaf308b9 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/create.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,4 +14,4 @@ val result = account.create( email = "email@example.com", password = "", name = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/delete-identity.md b/docs/examples/1.8.x/client-android/kotlin/account/delete-identity.md index c8d7463685..fc3aba69f1 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/delete-identity.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/delete-identity.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.deleteIdentity( identityId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-android/kotlin/account/delete-mfa-authenticator.md index b140a11f55..0f4531832e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.deleteMFAAuthenticator( type = AuthenticatorType.TOTP, -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/delete-push-target.md b/docs/examples/1.8.x/client-android/kotlin/account/delete-push-target.md index 8e0b418c90..49e33bb3a3 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/delete-push-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.deletePushTarget( targetId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/delete-session.md b/docs/examples/1.8.x/client-android/kotlin/account/delete-session.md index 6af414be27..91013ce9fd 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/delete-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/delete-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.deleteSession( sessionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/delete-sessions.md b/docs/examples/1.8.x/client-android/kotlin/account/delete-sessions.md index f7e6c71c10..ff404dbc1e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/delete-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.deleteSessions() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/kotlin/account/get-mfa-recovery-codes.md index f9d36122bb..5d9e1e4a69 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.getMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/get-prefs.md b/docs/examples/1.8.x/client-android/kotlin/account/get-prefs.md index 85dbb18b43..8e963ca828 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/get-prefs.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/get-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.getPrefs() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/get-session.md b/docs/examples/1.8.x/client-android/kotlin/account/get-session.md index 4de64a1487..fbf7f104bb 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/get-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/get-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.getSession( sessionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/get.md b/docs/examples/1.8.x/client-android/kotlin/account/get.md index 3e85e79ad0..e2dfe542a7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/get.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.get() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/list-identities.md b/docs/examples/1.8.x/client-android/kotlin/account/list-identities.md index 5ca94c6dd7..0ca7466d31 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/list-identities.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/list-identities.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.listIdentities( queries = listOf(), // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/list-logs.md b/docs/examples/1.8.x/client-android/kotlin/account/list-logs.md index 3d2cc4b23d..ce425646f4 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/list-logs.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/list-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.listLogs( queries = listOf(), // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/list-mfa-factors.md b/docs/examples/1.8.x/client-android/kotlin/account/list-mfa-factors.md index 56d1c4dbc4..b12f25c864 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.listMFAFactors() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/list-sessions.md b/docs/examples/1.8.x/client-android/kotlin/account/list-sessions.md index 573dd865e2..8c261a2d30 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/list-sessions.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/list-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.listSessions() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-email-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/update-email-verification.md index 9fb21d2d7c..a255564262 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-email-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updateEmailVerification( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-email.md b/docs/examples/1.8.x/client-android/kotlin/account/update-email.md index 0862f112c0..ff80d07a5e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-email.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-email.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updateEmail( email = "email@example.com", password = "password", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-magic-url-session.md b/docs/examples/1.8.x/client-android/kotlin/account/update-magic-url-session.md index 2c1a0b0a38..c00fbd128c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updateMagicURLSession( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-authenticator.md index 4f6ecd7d39..26958a49ff 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,4 +13,4 @@ val account = Account(client) val result = account.updateMFAAuthenticator( type = AuthenticatorType.TOTP, otp = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-challenge.md index d5cbc1fdab..d48e0c2293 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updateMFAChallenge( challengeId = "", otp = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-recovery-codes.md index 0277ca7587..dfdbd95d83 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.updateMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa.md b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa.md index f214e78f44..246bfe184c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-mfa.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-mfa.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.updateMFA( mfa = false, -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-name.md b/docs/examples/1.8.x/client-android/kotlin/account/update-name.md index 2cb5327ebe..1ada95aa65 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-name.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-name.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.updateName( name = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-password.md b/docs/examples/1.8.x/client-android/kotlin/account/update-password.md index 140ca8b219..473cd1bf13 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-password.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-password.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updatePassword( password = "", oldPassword = "password", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-phone-session.md b/docs/examples/1.8.x/client-android/kotlin/account/update-phone-session.md index b3911dd5e0..0788763acb 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-phone-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updatePhoneSession( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-phone-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/update-phone-verification.md index ad0d5d73eb..36abe38426 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updatePhoneVerification( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-phone.md b/docs/examples/1.8.x/client-android/kotlin/account/update-phone.md index 84ff508184..078851d3e6 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-phone.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-phone.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updatePhone( phone = "+12065550100", password = "password", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-prefs.md b/docs/examples/1.8.x/client-android/kotlin/account/update-prefs.md index ded80e9462..5c3b691187 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-prefs.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,4 +15,4 @@ val result = account.updatePrefs( "timezone" to "UTC", "darkTheme" to true ), -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-push-target.md b/docs/examples/1.8.x/client-android/kotlin/account/update-push-target.md index 5c3816860f..3e4abbdb07 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-push-target.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-push-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updatePushTarget( targetId = "", identifier = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-recovery.md b/docs/examples/1.8.x/client-android/kotlin/account/update-recovery.md index d505d1afb1..5dcb265fcc 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-recovery.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-recovery.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,4 +13,4 @@ val result = account.updateRecovery( userId = "", secret = "", password = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-session.md b/docs/examples/1.8.x/client-android/kotlin/account/update-session.md index 6fc9a9f9d2..343c673a0d 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-session.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,4 +11,4 @@ val account = Account(client) val result = account.updateSession( sessionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-status.md b/docs/examples/1.8.x/client-android/kotlin/account/update-status.md index b86a25ad4d..d22c9ce414 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-status.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -9,3 +10,4 @@ val client = Client(context) val account = Account(client) val result = account.updateStatus() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/account/update-verification.md b/docs/examples/1.8.x/client-android/kotlin/account/update-verification.md index 028eb7c4ce..34a118c69e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/account/update-verification.md +++ b/docs/examples/1.8.x/client-android/kotlin/account/update-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -11,4 +12,4 @@ val account = Account(client) val result = account.updateVerification( userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-browser.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-browser.md index d04adfbbdc..3ac128ebf9 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-browser.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -14,4 +15,4 @@ val result = avatars.getBrowser( width = 0, // (optional) height = 0, // (optional) quality = -1, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-credit-card.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-credit-card.md index 91c88da5dd..b61670bfa0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -14,4 +15,4 @@ val result = avatars.getCreditCard( width = 0, // (optional) height = 0, // (optional) quality = -1, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-favicon.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-favicon.md index 01df8cb54b..71a798c7ab 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -10,4 +11,4 @@ val avatars = Avatars(client) val result = avatars.getFavicon( url = "https://example.com", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-flag.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-flag.md index 1dbc1cdf4b..097143c4da 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-flag.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -14,4 +15,4 @@ val result = avatars.getFlag( width = 0, // (optional) height = 0, // (optional) quality = -1, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-image.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-image.md index 64166c0a6d..f2d01c19ee 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-image.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-image.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -12,4 +13,4 @@ val result = avatars.getImage( url = "https://example.com", width = 0, // (optional) height = 0, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-initials.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-initials.md index 883da02744..d689eaceff 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-initials.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -13,4 +14,4 @@ val result = avatars.getInitials( width = 0, // (optional) height = 0, // (optional) background = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-qr.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-qr.md index fa8a38cabb..4dca2bba39 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-qr.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -13,4 +14,4 @@ val result = avatars.getQR( size = 1, // (optional) margin = 0, // (optional) download = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/avatars/get-screenshot.md b/docs/examples/1.8.x/client-android/kotlin/avatars/get-screenshot.md index 4ac6717ae7..1cc4ef2546 100644 --- a/docs/examples/1.8.x/client-android/kotlin/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-android/kotlin/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -36,4 +37,4 @@ val result = avatars.getScreenshot( height = 600, // (optional) quality = 85, // (optional) output = ImageFormat.JPG, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/create-document.md b/docs/examples/1.8.x/client-android/kotlin/databases/create-document.md index 3e27c44ab2..5f4aa35281 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/create-document.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/create-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -23,4 +24,4 @@ val result = databases.createDocument( ), permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/create-operations.md b/docs/examples/1.8.x/client-android/kotlin/databases/create-operations.md index f3a419448b..a988c08cee 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/create-operations.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/create-operations.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,4 +20,4 @@ val result = databases.createOperations( "name" to "Walter O'Brien" ) )), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/create-transaction.md b/docs/examples/1.8.x/client-android/kotlin/databases/create-transaction.md index 3b953c3bda..dd61947fb5 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/create-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -10,4 +11,4 @@ val databases = Databases(client) val result = databases.createTransaction( ttl = 60, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-android/kotlin/databases/decrement-document-attribute.md index 84a4a0edea..8b9cb0780b 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,4 +17,4 @@ val result = databases.decrementDocumentAttribute( value = 0, // (optional) min = 0, // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/delete-document.md b/docs/examples/1.8.x/client-android/kotlin/databases/delete-document.md index 242655ec1f..99e40c1954 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/delete-document.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/delete-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -13,4 +14,4 @@ val result = databases.deleteDocument( collectionId = "", documentId = "", transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/delete-transaction.md b/docs/examples/1.8.x/client-android/kotlin/databases/delete-transaction.md index bbce98c661..302c3644b1 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -10,4 +11,4 @@ val databases = Databases(client) val result = databases.deleteTransaction( transactionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/get-document.md b/docs/examples/1.8.x/client-android/kotlin/databases/get-document.md index f21b6f34f0..9bae41903e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/get-document.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/get-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,4 +15,4 @@ val result = databases.getDocument( documentId = "", queries = listOf(), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/get-transaction.md b/docs/examples/1.8.x/client-android/kotlin/databases/get-transaction.md index 0a1fda69df..25249ecd66 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/get-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -10,4 +11,4 @@ val databases = Databases(client) val result = databases.getTransaction( transactionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-android/kotlin/databases/increment-document-attribute.md index ca32cfcb5c..78c311e611 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,4 +17,4 @@ val result = databases.incrementDocumentAttribute( value = 0, // (optional) max = 0, // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/list-documents.md b/docs/examples/1.8.x/client-android/kotlin/databases/list-documents.md index e653fc16b5..dc086332a4 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/list-documents.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/list-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,4 +15,4 @@ val result = databases.listDocuments( queries = listOf(), // (optional) transactionId = "", // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/list-transactions.md b/docs/examples/1.8.x/client-android/kotlin/databases/list-transactions.md index da5cd4ba7a..43e0aba53e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/list-transactions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -10,4 +11,4 @@ val databases = Databases(client) val result = databases.listTransactions( queries = listOf(), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/update-document.md b/docs/examples/1.8.x/client-android/kotlin/databases/update-document.md index 49f0dbcffe..585ae4c0a9 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/update-document.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/update-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -23,4 +24,4 @@ val result = databases.updateDocument( ), // (optional) permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/update-transaction.md b/docs/examples/1.8.x/client-android/kotlin/databases/update-transaction.md index c9d6a852ce..c2e38aea44 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/update-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,4 +13,4 @@ val result = databases.updateTransaction( transactionId = "", commit = false, // (optional) rollback = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/databases/upsert-document.md b/docs/examples/1.8.x/client-android/kotlin/databases/upsert-document.md index 42aff0ec0c..d591f22a7c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-android/kotlin/databases/upsert-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -23,4 +24,4 @@ val result = databases.upsertDocument( ), // (optional) permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/functions/create-execution.md b/docs/examples/1.8.x/client-android/kotlin/functions/create-execution.md index 8f7b49b849..5037cab55a 100644 --- a/docs/examples/1.8.x/client-android/kotlin/functions/create-execution.md +++ b/docs/examples/1.8.x/client-android/kotlin/functions/create-execution.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -17,4 +18,4 @@ val result = functions.createExecution( method = ExecutionMethod.GET, // (optional) headers = mapOf( "a" to "b" ), // (optional) scheduledAt = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/functions/get-execution.md b/docs/examples/1.8.x/client-android/kotlin/functions/get-execution.md index 267be53cbb..e39fb7e87b 100644 --- a/docs/examples/1.8.x/client-android/kotlin/functions/get-execution.md +++ b/docs/examples/1.8.x/client-android/kotlin/functions/get-execution.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -11,4 +12,4 @@ val functions = Functions(client) val result = functions.getExecution( functionId = "", executionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/functions/list-executions.md b/docs/examples/1.8.x/client-android/kotlin/functions/list-executions.md index c24a67b2ab..9d2b05914d 100644 --- a/docs/examples/1.8.x/client-android/kotlin/functions/list-executions.md +++ b/docs/examples/1.8.x/client-android/kotlin/functions/list-executions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -12,4 +13,4 @@ val result = functions.listExecutions( functionId = "", queries = listOf(), // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/graphql/mutation.md b/docs/examples/1.8.x/client-android/kotlin/graphql/mutation.md index a3a762203d..c95aaca235 100644 --- a/docs/examples/1.8.x/client-android/kotlin/graphql/mutation.md +++ b/docs/examples/1.8.x/client-android/kotlin/graphql/mutation.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql @@ -10,4 +11,4 @@ val graphql = Graphql(client) val result = graphql.mutation( query = mapOf( "a" to "b" ), -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/graphql/query.md b/docs/examples/1.8.x/client-android/kotlin/graphql/query.md index 13f149cbf0..24e2f58712 100644 --- a/docs/examples/1.8.x/client-android/kotlin/graphql/query.md +++ b/docs/examples/1.8.x/client-android/kotlin/graphql/query.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql @@ -10,4 +11,4 @@ val graphql = Graphql(client) val result = graphql.query( query = mapOf( "a" to "b" ), -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/get.md b/docs/examples/1.8.x/client-android/kotlin/locale/get.md index a116aed349..1519716121 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/get.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.get() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-codes.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-codes.md index 0b63b06e3e..d705214446 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-codes.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listCodes() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-continents.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-continents.md index 98acdc9b6a..03e917e435 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-continents.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-continents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listContinents() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-eu.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-eu.md index c01602598b..a933ed85b7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listCountriesEU() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-phones.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-phones.md index d95c1c6ff6..8d4c7534e7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listCountriesPhones() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries.md index 4775161159..e67b5fe7c1 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-countries.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-countries.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listCountries() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-currencies.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-currencies.md index 6d0a04f808..fb0087d7c0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-currencies.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listCurrencies() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/locale/list-languages.md b/docs/examples/1.8.x/client-android/kotlin/locale/list-languages.md index de588aa077..30fb65bf0c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/locale/list-languages.md +++ b/docs/examples/1.8.x/client-android/kotlin/locale/list-languages.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -9,3 +10,4 @@ val client = Client(context) val locale = Locale(client) val result = locale.listLanguages() +``` diff --git a/docs/examples/1.8.x/client-android/kotlin/messaging/create-subscriber.md b/docs/examples/1.8.x/client-android/kotlin/messaging/create-subscriber.md index b7e244f041..97dc3f6262 100644 --- a/docs/examples/1.8.x/client-android/kotlin/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-android/kotlin/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,4 +13,4 @@ val result = messaging.createSubscriber( topicId = "", subscriberId = "", targetId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-android/kotlin/messaging/delete-subscriber.md index 9e102d6faa..ffa27b8ab7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-android/kotlin/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -11,4 +12,4 @@ val messaging = Messaging(client) val result = messaging.deleteSubscriber( topicId = "", subscriberId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/create-file.md b/docs/examples/1.8.x/client-android/kotlin/storage/create-file.md index 8a454b7ee2..ece44db547 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/create-file.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/create-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.models.InputFile @@ -16,4 +17,4 @@ val result = storage.createFile( fileId = "", file = InputFile.fromPath("file.png"), permissions = listOf(Permission.read(Role.any())), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/delete-file.md b/docs/examples/1.8.x/client-android/kotlin/storage/delete-file.md index ca40f41b71..6f49889651 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/delete-file.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/delete-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -11,4 +12,4 @@ val storage = Storage(client) val result = storage.deleteFile( bucketId = "", fileId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-download.md b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-download.md index 89c6e8a992..3895ab07d6 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-download.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -12,4 +13,4 @@ val result = storage.getFileDownload( bucketId = "", fileId = "", token = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-preview.md b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-preview.md index a4841d53c4..6abf988bbf 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -25,4 +26,4 @@ val result = storage.getFilePreview( background = "", // (optional) output = ImageFormat.JPG, // (optional) token = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-view.md b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-view.md index 513e1f9a90..d7adaf155f 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/get-file-view.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -12,4 +13,4 @@ val result = storage.getFileView( bucketId = "", fileId = "", token = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/get-file.md b/docs/examples/1.8.x/client-android/kotlin/storage/get-file.md index 1e9943059b..b5ab55a801 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/get-file.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/get-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -11,4 +12,4 @@ val storage = Storage(client) val result = storage.getFile( bucketId = "", fileId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/list-files.md b/docs/examples/1.8.x/client-android/kotlin/storage/list-files.md index f62ba749d5..ee04acb00a 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/list-files.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/list-files.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -13,4 +14,4 @@ val result = storage.listFiles( queries = listOf(), // (optional) search = "", // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/storage/update-file.md b/docs/examples/1.8.x/client-android/kotlin/storage/update-file.md index 32c19a8252..23147c03c8 100644 --- a/docs/examples/1.8.x/client-android/kotlin/storage/update-file.md +++ b/docs/examples/1.8.x/client-android/kotlin/storage/update-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -15,4 +16,4 @@ val result = storage.updateFile( fileId = "", name = "", // (optional) permissions = listOf(Permission.read(Role.any())), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-operations.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-operations.md index 7807102f27..da84d33a4d 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,4 +20,4 @@ val result = tablesDB.createOperations( "name" to "Walter O'Brien" ) )), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md index 5c54cdcdca..c1ecee4afa 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -23,4 +24,4 @@ val result = tablesDB.createRow( ), permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-transaction.md index b011fa051f..4b5148eba8 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -10,4 +11,4 @@ val tablesDB = TablesDB(client) val result = tablesDB.createTransaction( ttl = 60, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md index 1a8964078e..e9c95ebd6c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,4 +17,4 @@ val result = tablesDB.decrementRowColumn( value = 0, // (optional) min = 0, // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md index 6912afa10a..60796eb594 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -13,4 +14,4 @@ val result = tablesDB.deleteRow( tableId = "", rowId = "", transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-transaction.md index 92c0074acc..8186037e79 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -10,4 +11,4 @@ val tablesDB = TablesDB(client) val result = tablesDB.deleteTransaction( transactionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md index adea429759..52d505238b 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,4 +15,4 @@ val result = tablesDB.getRow( rowId = "", queries = listOf(), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-transaction.md index 38b7c33e83..94a4deb56f 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -10,4 +11,4 @@ val tablesDB = TablesDB(client) val result = tablesDB.getTransaction( transactionId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md index 1b679e181b..7820d260af 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,4 +17,4 @@ val result = tablesDB.incrementRowColumn( value = 0, // (optional) max = 0, // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md index b075e128b4..b6a54684a0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,4 +15,4 @@ val result = tablesDB.listRows( queries = listOf(), // (optional) transactionId = "", // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-transactions.md index b7764c719f..44c824e71d 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -10,4 +11,4 @@ val tablesDB = TablesDB(client) val result = tablesDB.listTransactions( queries = listOf(), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md index 20319e3b6d..01a8d8c114 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -23,4 +24,4 @@ val result = tablesDB.updateRow( ), // (optional) permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-transaction.md index 791649ff09..98c0b81691 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,4 +13,4 @@ val result = tablesDB.updateTransaction( transactionId = "", commit = false, // (optional) rollback = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md index 3af7902c33..aa3862d466 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -23,4 +24,4 @@ val result = tablesDB.upsertRow( ), // (optional) permissions = listOf(Permission.read(Role.any())), // (optional) transactionId = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/create-membership.md b/docs/examples/1.8.x/client-android/kotlin/teams/create-membership.md index f85002894d..f1580572b7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/create-membership.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/create-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -17,4 +18,4 @@ val result = teams.createMembership( phone = "+12065550100", // (optional) url = "https://example.com", // (optional) name = "", // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/create.md b/docs/examples/1.8.x/client-android/kotlin/teams/create.md index dfa4df446e..3249279ce0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/create.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -12,4 +13,4 @@ val result = teams.create( teamId = "", name = "", roles = listOf(), // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/delete-membership.md b/docs/examples/1.8.x/client-android/kotlin/teams/delete-membership.md index adf1119761..731e954f63 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/delete-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -11,4 +12,4 @@ val teams = Teams(client) val result = teams.deleteMembership( teamId = "", membershipId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/delete.md b/docs/examples/1.8.x/client-android/kotlin/teams/delete.md index e144a78e3d..614ebf113c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/delete.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -10,4 +11,4 @@ val teams = Teams(client) val result = teams.delete( teamId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/get-membership.md b/docs/examples/1.8.x/client-android/kotlin/teams/get-membership.md index 8fb8c54c3b..bee60e9ec5 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/get-membership.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/get-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -11,4 +12,4 @@ val teams = Teams(client) val result = teams.getMembership( teamId = "", membershipId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/get-prefs.md b/docs/examples/1.8.x/client-android/kotlin/teams/get-prefs.md index 5e892fb49d..4f01527b79 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/get-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -10,4 +11,4 @@ val teams = Teams(client) val result = teams.getPrefs( teamId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/get.md b/docs/examples/1.8.x/client-android/kotlin/teams/get.md index dbb487d3d6..7248a02ade 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/get.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -10,4 +11,4 @@ val teams = Teams(client) val result = teams.get( teamId = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/list-memberships.md b/docs/examples/1.8.x/client-android/kotlin/teams/list-memberships.md index fd88be4793..928f0dd7b0 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/list-memberships.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,4 +14,4 @@ val result = teams.listMemberships( queries = listOf(), // (optional) search = "", // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/list.md b/docs/examples/1.8.x/client-android/kotlin/teams/list.md index 4b092cf38c..66c98cdc6c 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/list.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -12,4 +13,4 @@ val result = teams.list( queries = listOf(), // (optional) search = "", // (optional) total = false, // (optional) -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/update-membership-status.md b/docs/examples/1.8.x/client-android/kotlin/teams/update-membership-status.md index c3770c7f1e..53a3b26463 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,4 +14,4 @@ val result = teams.updateMembershipStatus( membershipId = "", userId = "", secret = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/update-membership.md b/docs/examples/1.8.x/client-android/kotlin/teams/update-membership.md index 8375c77bee..0f3fcfbcc4 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/update-membership.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/update-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,4 +14,4 @@ val result = teams.updateMembership( teamId = "", membershipId = "", roles = roles.ADMIN, -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/update-name.md b/docs/examples/1.8.x/client-android/kotlin/teams/update-name.md index abeb6dc7c1..760a3b4966 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/update-name.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/update-name.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -11,4 +12,4 @@ val teams = Teams(client) val result = teams.updateName( teamId = "", name = "", -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-android/kotlin/teams/update-prefs.md b/docs/examples/1.8.x/client-android/kotlin/teams/update-prefs.md index d0066a94b3..854cb2b6f6 100644 --- a/docs/examples/1.8.x/client-android/kotlin/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-android/kotlin/teams/update-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -11,4 +12,4 @@ val teams = Teams(client) val result = teams.updatePrefs( teamId = "", prefs = mapOf( "a" to "b" ), -) \ No newline at end of file +)``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-apple/examples/account/create-anonymous-session.md index 22020a16d9..eeeb552a16 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let session = try await account.createAnonymousSession() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-apple/examples/account/create-email-password-session.md index 5f541a8a15..7233b73991 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.createEmailPasswordSession( password: "password" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-email-token.md b/docs/examples/1.8.x/client-apple/examples/account/create-email-token.md index cf82afde8f..eb21e9bc02 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.createEmailToken( phrase: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-apple/examples/account/create-email-verification.md index 378558ecd6..841ddd68d5 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let token = try await account.createEmailVerification( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-jwt.md b/docs/examples/1.8.x/client-apple/examples/account/create-jwt.md index 34b29f48a7..96c867f7f4 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let jwt = try await account.createJWT( duration: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-apple/examples/account/create-magic-url-token.md index 27bbe4137e..dd60fa9397 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let token = try await account.createMagicURLToken( phrase: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-authenticator.md index cfe0082fba..b42fc7fdcd 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -11,3 +12,4 @@ let mfaType = try await account.createMFAAuthenticator( type: .totp ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-challenge.md index 27f1bc1784..dfb50487eb 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -11,3 +12,4 @@ let mfaChallenge = try await account.createMFAChallenge( factor: .email ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-recovery-codes.md index 2674a40760..fb1b22de78 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.createMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-session.md index 756112e701..3552fda805 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let success = try await account.createOAuth2Session( scopes: [] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-token.md index 21b54e8c9a..1a22fb32c5 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let success = try await account.createOAuth2Token( scopes: [] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-apple/examples/account/create-phone-token.md index 12b2d4b223..bdf53c43bd 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.createPhoneToken( phone: "+12065550100" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-apple/examples/account/create-phone-verification.md index f0eb94b6fc..1259af838a 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let token = try await account.createPhoneVerification() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-push-target.md b/docs/examples/1.8.x/client-apple/examples/account/create-push-target.md index ce2d194272..2507d9660f 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let target = try await account.createPushTarget( providerId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-recovery.md b/docs/examples/1.8.x/client-apple/examples/account/create-recovery.md index ccfd5ac519..3d2e2d1b44 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.createRecovery( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-session.md b/docs/examples/1.8.x/client-apple/examples/account/create-session.md index 2065692a16..1cec5939da 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.createSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create-verification.md b/docs/examples/1.8.x/client-apple/examples/account/create-verification.md index d3ca74c7c0..054d7657c5 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let token = try await account.createVerification( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/create.md b/docs/examples/1.8.x/client-apple/examples/account/create.md index 79b4db64ba..6faa4daf80 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/create.md +++ b/docs/examples/1.8.x/client-apple/examples/account/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let user = try await account.create( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/delete-identity.md b/docs/examples/1.8.x/client-apple/examples/account/delete-identity.md index 04a3ee5f47..0e63ea0cf6 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-apple/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await account.deleteIdentity( identityId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-apple/examples/account/delete-mfa-authenticator.md index adfa363bcc..e8ef91a81d 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-apple/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -11,3 +12,4 @@ let result = try await account.deleteMFAAuthenticator( type: .totp ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-apple/examples/account/delete-push-target.md index a96a1b1d05..cf613b5537 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-apple/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await account.deletePushTarget( targetId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/delete-session.md b/docs/examples/1.8.x/client-apple/examples/account/delete-session.md index ea353e8723..79e0aa2c6d 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await account.deleteSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-apple/examples/account/delete-sessions.md index 51a86bdcc3..7e524f2d69 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-apple/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let result = try await account.deleteSessions() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-apple/examples/account/get-mfa-recovery-codes.md index efee499ea7..31e9e5b884 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-apple/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.getMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/get-prefs.md b/docs/examples/1.8.x/client-apple/examples/account/get-prefs.md index 65ce5f5908..0235e0d8d9 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-apple/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let preferences = try await account.getPrefs() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/get-session.md b/docs/examples/1.8.x/client-apple/examples/account/get-session.md index bd491ff4d7..8c22074a6b 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/get-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let session = try await account.getSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/get.md b/docs/examples/1.8.x/client-apple/examples/account/get.md index 1b1213e1da..3ddbca44df 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/get.md +++ b/docs/examples/1.8.x/client-apple/examples/account/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let user = try await account.get() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/list-identities.md b/docs/examples/1.8.x/client-apple/examples/account/list-identities.md index eaa6cbda3a..eb5874c59f 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-apple/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let identityList = try await account.listIdentities( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/list-logs.md b/docs/examples/1.8.x/client-apple/examples/account/list-logs.md index 19a607f7aa..a82fd503b1 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-apple/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let logList = try await account.listLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-apple/examples/account/list-mfa-factors.md index d81e77e7ac..534ccbe2b8 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-apple/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let mfaFactors = try await account.listMFAFactors() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/list-sessions.md b/docs/examples/1.8.x/client-apple/examples/account/list-sessions.md index 99f6930cd2..2932881f0a 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-apple/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let sessionList = try await account.listSessions() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-apple/examples/account/update-email-verification.md index 77ef28eb49..823cc4128a 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.updateEmailVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-email.md b/docs/examples/1.8.x/client-apple/examples/account/update-email.md index 037133282b..f13a4d5f14 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-email.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await account.updateEmail( password: "password" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-apple/examples/account/update-magic-url-session.md index 507006b230..c558270991 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.updateMagicURLSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-authenticator.md index 5245be2ec3..75c37f2291 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -12,3 +13,4 @@ let user = try await account.updateMFAAuthenticator( otp: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-challenge.md index 473393eecd..6bc6e47abf 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.updateMFAChallenge( otp: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-recovery-codes.md index fbd6847e89..5445ab2158 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.updateMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-mfa.md b/docs/examples/1.8.x/client-apple/examples/account/update-mfa.md index fe2b04f9a3..9a509efa97 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let user = try await account.updateMFA( mfa: false ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-name.md b/docs/examples/1.8.x/client-apple/examples/account/update-name.md index 7f8abf54fb..72d0b7a26a 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-name.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let user = try await account.updateName( name: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-password.md b/docs/examples/1.8.x/client-apple/examples/account/update-password.md index 7fa03caebc..fe287d71c9 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-password.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await account.updatePassword( oldPassword: "password" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-apple/examples/account/update-phone-session.md index f6776d1de1..bc3ae963d1 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.updatePhoneSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-apple/examples/account/update-phone-verification.md index 0bf2db1f0a..11f7f91ac0 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.updatePhoneVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-phone.md b/docs/examples/1.8.x/client-apple/examples/account/update-phone.md index 604fc85377..098bb06b39 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await account.updatePhone( password: "password" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-prefs.md b/docs/examples/1.8.x/client-apple/examples/account/update-prefs.md index c81f481f61..43ebb24613 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await account.updatePrefs( ] ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-push-target.md b/docs/examples/1.8.x/client-apple/examples/account/update-push-target.md index 549c4d6c16..7b4ce8bd93 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let target = try await account.updatePushTarget( identifier: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-recovery.md b/docs/examples/1.8.x/client-apple/examples/account/update-recovery.md index 536da69b8a..f0a43c5057 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.updateRecovery( password: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-session.md b/docs/examples/1.8.x/client-apple/examples/account/update-session.md index 8999b0a310..2e9849b47b 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let session = try await account.updateSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-status.md b/docs/examples/1.8.x/client-apple/examples/account/update-status.md index 892858dfbc..a6198d68f0 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let account = Account(client) let user = try await account.updateStatus() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/account/update-verification.md b/docs/examples/1.8.x/client-apple/examples/account/update-verification.md index 094e10f33c..d4a251c5a2 100644 --- a/docs/examples/1.8.x/client-apple/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-apple/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.updateVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-browser.md index ee0cc99f91..9825d88043 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let bytes = try await avatars.getBrowser( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-credit-card.md index 779fce3f60..a294929a6c 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let bytes = try await avatars.getCreditCard( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-favicon.md index b7dc6830c3..0d54352147 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let bytes = try await avatars.getFavicon( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-flag.md index ba1d77be27..ae4586067c 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let bytes = try await avatars.getFlag( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-image.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-image.md index 0fe71e1765..0cbc666aec 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let bytes = try await avatars.getImage( height: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-initials.md index 2bbfbe6a47..d1f6d7c2dd 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bytes = try await avatars.getInitials( background: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-qr.md index 3cc650c1b9..86a43fba1a 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bytes = try await avatars.getQR( download: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-apple/examples/avatars/get-screenshot.md index b8f6a480bc..11dd7a0faa 100644 --- a/docs/examples/1.8.x/client-apple/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-apple/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -33,3 +34,4 @@ let bytes = try await avatars.getScreenshot( output: .jpeg // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/create-document.md b/docs/examples/1.8.x/client-apple/examples/databases/create-document.md index 7513244e0d..973bb324e0 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let document = try await databases.createDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/create-operations.md b/docs/examples/1.8.x/client-apple/examples/databases/create-operations.md index 7c22de38ca..c9d59976fa 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let transaction = try await databases.createOperations( ] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-apple/examples/databases/create-transaction.md index 4319907a65..29bb609ecf 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transaction = try await databases.createTransaction( ttl: 60 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-apple/examples/databases/decrement-document-attribute.md index 714d7baabb..0e08625b88 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let document = try await databases.decrementDocumentAttribute( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/delete-document.md b/docs/examples/1.8.x/client-apple/examples/databases/delete-document.md index 4d8f5074ea..6cd36430bf 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await databases.deleteDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-apple/examples/databases/delete-transaction.md index 134d72df9c..4a3a7e29e5 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await databases.deleteTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/get-document.md b/docs/examples/1.8.x/client-apple/examples/databases/get-document.md index 89c89a3868..c7cc142a6f 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let document = try await databases.getDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-apple/examples/databases/get-transaction.md index 6274ff8d15..9e2c76c598 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transaction = try await databases.getTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-apple/examples/databases/increment-document-attribute.md index 9c771a7490..0228b214ca 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let document = try await databases.incrementDocumentAttribute( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/list-documents.md b/docs/examples/1.8.x/client-apple/examples/databases/list-documents.md index e07c66b593..4925ce3e6e 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let documentList = try await databases.listDocuments( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-apple/examples/databases/list-transactions.md index 3f889c213c..15c823f514 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transactionList = try await databases.listTransactions( queries: [] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/update-document.md b/docs/examples/1.8.x/client-apple/examples/databases/update-document.md index 3a1b4c4bd9..0963c234ae 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let document = try await databases.updateDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-apple/examples/databases/update-transaction.md index 96705d019f..e4e0eb62a4 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let transaction = try await databases.updateTransaction( rollback: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-apple/examples/databases/upsert-document.md index 4026c33d7b..9e8aea690b 100644 --- a/docs/examples/1.8.x/client-apple/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-apple/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let document = try await databases.upsertDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/functions/create-execution.md b/docs/examples/1.8.x/client-apple/examples/functions/create-execution.md index b7311df846..9597fd9d3c 100644 --- a/docs/examples/1.8.x/client-apple/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-apple/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -17,3 +18,4 @@ let execution = try await functions.createExecution( scheduledAt: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/functions/get-execution.md b/docs/examples/1.8.x/client-apple/examples/functions/get-execution.md index 787f297b2c..fbd787f4cf 100644 --- a/docs/examples/1.8.x/client-apple/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-apple/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let execution = try await functions.getExecution( executionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/functions/list-executions.md b/docs/examples/1.8.x/client-apple/examples/functions/list-executions.md index 50ed08de63..e0204619f0 100644 --- a/docs/examples/1.8.x/client-apple/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-apple/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let executionList = try await functions.listExecutions( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/graphql/mutation.md b/docs/examples/1.8.x/client-apple/examples/graphql/mutation.md index 6cd2e588f9..86894fea93 100644 --- a/docs/examples/1.8.x/client-apple/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/client-apple/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let any = try await graphql.mutation( query: [:] ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/graphql/query.md b/docs/examples/1.8.x/client-apple/examples/graphql/query.md index 47e4c243fa..e01c78df11 100644 --- a/docs/examples/1.8.x/client-apple/examples/graphql/query.md +++ b/docs/examples/1.8.x/client-apple/examples/graphql/query.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let any = try await graphql.query( query: [:] ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/get.md b/docs/examples/1.8.x/client-apple/examples/locale/get.md index 9c48317a1d..f87854a1d8 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/get.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let locale = try await locale.get() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-codes.md b/docs/examples/1.8.x/client-apple/examples/locale/list-codes.md index 21d693a7b8..d524b5e2a0 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let localeCodeList = try await locale.listCodes() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-continents.md b/docs/examples/1.8.x/client-apple/examples/locale/list-continents.md index bd44915a34..dfad5ced7b 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let continentList = try await locale.listContinents() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-apple/examples/locale/list-countries-eu.md index 2dc24e5a63..ee6a97f923 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let countryList = try await locale.listCountriesEU() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-apple/examples/locale/list-countries-phones.md index f3ab6b1f6d..d9267a6841 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let phoneList = try await locale.listCountriesPhones() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-countries.md b/docs/examples/1.8.x/client-apple/examples/locale/list-countries.md index dadcd3ee26..2b79063dbb 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let countryList = try await locale.listCountries() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-apple/examples/locale/list-currencies.md index dc20ead45e..ccd5c92e1a 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let currencyList = try await locale.listCurrencies() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/locale/list-languages.md b/docs/examples/1.8.x/client-apple/examples/locale/list-languages.md index 92c1d7b1dc..7132b1bfec 100644 --- a/docs/examples/1.8.x/client-apple/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-apple/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -8,3 +9,4 @@ let locale = Locale(client) let languageList = try await locale.listLanguages() +``` diff --git a/docs/examples/1.8.x/client-apple/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-apple/examples/messaging/create-subscriber.md index f85d5e6fb1..a7e96e5520 100644 --- a/docs/examples/1.8.x/client-apple/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-apple/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let subscriber = try await messaging.createSubscriber( targetId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-apple/examples/messaging/delete-subscriber.md index f1cdda95c7..7e68489b67 100644 --- a/docs/examples/1.8.x/client-apple/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-apple/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await messaging.deleteSubscriber( subscriberId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/create-file.md b/docs/examples/1.8.x/client-apple/examples/storage/create-file.md index 938783eb7c..c4460774c5 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let file = try await storage.createFile( permissions: [Permission.read(Role.any())] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/delete-file.md b/docs/examples/1.8.x/client-apple/examples/storage/delete-file.md index ca721a4a41..dee1c64b2c 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await storage.deleteFile( fileId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-apple/examples/storage/get-file-download.md index 9338958ede..c46d0723a8 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let bytes = try await storage.getFileDownload( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-apple/examples/storage/get-file-preview.md index 1395d7e782..5ba403231d 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -24,3 +25,4 @@ let bytes = try await storage.getFilePreview( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-apple/examples/storage/get-file-view.md index bc5ad02727..1364d8ef60 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let bytes = try await storage.getFileView( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/get-file.md b/docs/examples/1.8.x/client-apple/examples/storage/get-file.md index 2730b4d528..7ec8438e53 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let file = try await storage.getFile( fileId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/list-files.md b/docs/examples/1.8.x/client-apple/examples/storage/list-files.md index 66849d4746..f65495610f 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let fileList = try await storage.listFiles( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/storage/update-file.md b/docs/examples/1.8.x/client-apple/examples/storage/update-file.md index 9859d2ab63..dcc0c5dd27 100644 --- a/docs/examples/1.8.x/client-apple/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-apple/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let file = try await storage.updateFile( permissions: [Permission.read(Role.any())] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-operations.md index c4032cc02c..ee3d6ce3d3 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let transaction = try await tablesDB.createOperations( ] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md index ade012c4a1..68e9fc3863 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let row = try await tablesDB.createRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-transaction.md index 366aa5b663..97d1346e99 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transaction = try await tablesDB.createTransaction( ttl: 60 // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md index 8a41d43362..2c3cfb3b90 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let row = try await tablesDB.decrementRowColumn( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md index 6ddd1c5fc2..82890ed779 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await tablesDB.deleteRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-transaction.md index 12cf45fa2c..865aeaecc0 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await tablesDB.deleteTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md index 7a3aa40806..51167094f0 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let row = try await tablesDB.getRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-transaction.md index fe3cbf78b2..601ece79b8 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transaction = try await tablesDB.getTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md index 29b346e27d..a2b14f894c 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let row = try await tablesDB.incrementRowColumn( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md index 94178aaf67..e23d3d093e 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let rowList = try await tablesDB.listRows( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-transactions.md index b7edd2d1a0..655109394f 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let transactionList = try await tablesDB.listTransactions( queries: [] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md index e9b32e6c9a..29fb327e2a 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let row = try await tablesDB.updateRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-transaction.md index 2c0e6a7a37..432d7c486c 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let transaction = try await tablesDB.updateTransaction( rollback: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md index f1e3872200..77d971c975 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let row = try await tablesDB.upsertRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/create-membership.md b/docs/examples/1.8.x/client-apple/examples/teams/create-membership.md index 6b0eaafe6f..ded2b8b2b9 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -17,3 +18,4 @@ let membership = try await teams.createMembership( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/create.md b/docs/examples/1.8.x/client-apple/examples/teams/create.md index b9f5ea4080..70600909b3 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/create.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let team = try await teams.create( roles: [] // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-apple/examples/teams/delete-membership.md index 7c21410bf3..c5e61cfb2a 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await teams.deleteMembership( membershipId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/delete.md b/docs/examples/1.8.x/client-apple/examples/teams/delete.md index 1787b4c749..782b41b3d1 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let result = try await teams.delete( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/get-membership.md b/docs/examples/1.8.x/client-apple/examples/teams/get-membership.md index 837a92dd04..94882c98f2 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let membership = try await teams.getMembership( membershipId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-apple/examples/teams/get-prefs.md index b5b17a3bc2..0fc67385e7 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let preferences = try await teams.getPrefs( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/get.md b/docs/examples/1.8.x/client-apple/examples/teams/get.md index af358fbb67..592be95536 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/get.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -10,3 +11,4 @@ let team = try await teams.get( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-apple/examples/teams/list-memberships.md index c485d0bf27..b2338476b2 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let membershipList = try await teams.listMemberships( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/list.md b/docs/examples/1.8.x/client-apple/examples/teams/list.md index de209beabd..7404c8b7f6 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/list.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let teamList = try await teams.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-apple/examples/teams/update-membership-status.md index 1f3cb39d92..1a3ae91391 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let membership = try await teams.updateMembershipStatus( secret: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/update-membership.md b/docs/examples/1.8.x/client-apple/examples/teams/update-membership.md index a61f7921bd..3c8874fd92 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -13,3 +14,4 @@ let membership = try await teams.updateMembership( roles: [.admin] ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/update-name.md b/docs/examples/1.8.x/client-apple/examples/teams/update-name.md index ce5188b950..bc7187cd9c 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let team = try await teams.updateName( name: "" ) +``` diff --git a/docs/examples/1.8.x/client-apple/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-apple/examples/teams/update-prefs.md index e20ec2ea18..c40796b3a7 100644 --- a/docs/examples/1.8.x/client-apple/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-apple/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let preferences = try await teams.updatePrefs( prefs: [:] ) +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-flutter/examples/account/create-anonymous-session.md index cdcd98ddb2..0cdedf8f24 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); Session result = await account.createAnonymousSession(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-flutter/examples/account/create-email-password-session.md index 66bc2ab5f4..d444996d9b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Session result = await account.createEmailPasswordSession( email: 'email@example.com', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-email-token.md b/docs/examples/1.8.x/client-flutter/examples/account/create-email-token.md index 2640894502..738905812a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.createEmailToken( email: 'email@example.com', phrase: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/create-email-verification.md index 823ea2f216..d88979c883 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); Token result = await account.createEmailVerification( url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-jwt.md b/docs/examples/1.8.x/client-flutter/examples/account/create-jwt.md index 58dbdffb47..72ff1180e2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); Jwt result = await account.createJWT( duration: 0, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-flutter/examples/account/create-magic-url-token.md index 454a951022..59d1cc2437 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Token result = await account.createMagicURLToken( url: 'https://example.com', // optional phrase: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-authenticator.md index 2cb96dff15..c86de3ba76 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -9,3 +11,4 @@ Account account = Account(client); MfaType result = await account.createMFAAuthenticator( type: enums.AuthenticatorType.totp, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-challenge.md index 8e7d1668bb..c7007d3282 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-challenge.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -9,3 +11,4 @@ Account account = Account(client); MfaChallenge result = await account.createMFAChallenge( factor: enums.AuthenticationFactor.email, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-recovery-codes.md index 9b69ad1bd9..252dec7a70 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.createMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-session.md index c013d90b33..75abae31a9 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-session.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -12,3 +14,4 @@ await account.createOAuth2Session( failure: 'https://example.com', // optional scopes: [], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-token.md index 2b2d246e44..be098a6274 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-o-auth-2-token.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -12,3 +14,4 @@ await account.createOAuth2Token( failure: 'https://example.com', // optional scopes: [], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-flutter/examples/account/create-phone-token.md index ff0187f0dc..95799d62a8 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Token result = await account.createPhoneToken( userId: '', phone: '+12065550100', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/create-phone-verification.md index 11e215a060..9fc84dfc7c 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); Token result = await account.createPhoneVerification(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-push-target.md b/docs/examples/1.8.x/client-flutter/examples/account/create-push-target.md index fd1755e3c5..d493b2a007 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Target result = await account.createPushTarget( identifier: '', providerId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-recovery.md b/docs/examples/1.8.x/client-flutter/examples/account/create-recovery.md index 44985beb80..fe5ecfa054 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Token result = await account.createRecovery( email: 'email@example.com', url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-session.md b/docs/examples/1.8.x/client-flutter/examples/account/create-session.md index e54e68a317..ebac1f930f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Session result = await account.createSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/create-verification.md index 8f96997249..c36cb8f347 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); Token result = await account.createVerification( url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/create.md b/docs/examples/1.8.x/client-flutter/examples/account/create.md index ae0d526944..d4bf5757ab 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/create.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/create.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ User result = await account.create( password: '', name: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/delete-identity.md b/docs/examples/1.8.x/client-flutter/examples/account/delete-identity.md index 849fa726a4..47407e7f70 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); await account.deleteIdentity( identityId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-flutter/examples/account/delete-mfa-authenticator.md index 0ed6d5bc06..eac797665e 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/delete-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -9,3 +11,4 @@ Account account = Account(client); await account.deleteMFAAuthenticator( type: enums.AuthenticatorType.totp, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-flutter/examples/account/delete-push-target.md index 6393d4ed4e..477a0446f7 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); await account.deletePushTarget( targetId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/delete-session.md b/docs/examples/1.8.x/client-flutter/examples/account/delete-session.md index 55abb18c85..513f2146f5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); await account.deleteSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-flutter/examples/account/delete-sessions.md index c50b611cac..e8e8ba1af2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); await account.deleteSessions(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-flutter/examples/account/get-mfa-recovery-codes.md index 09bff7ffbd..ed5531a32a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.getMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/get-prefs.md b/docs/examples/1.8.x/client-flutter/examples/account/get-prefs.md index 9332da3a63..dc359f9c16 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); Preferences result = await account.getPrefs(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/get-session.md b/docs/examples/1.8.x/client-flutter/examples/account/get-session.md index d68afcecd2..c27058a8e1 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/get-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); Session result = await account.getSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/get.md b/docs/examples/1.8.x/client-flutter/examples/account/get.md index a318617f78..1bd67c6a1a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/get.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/get.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); User result = await account.get(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/list-identities.md b/docs/examples/1.8.x/client-flutter/examples/account/list-identities.md index 31f30b41ba..d0c0e5b605 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ IdentityList result = await account.listIdentities( queries: [], // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/list-logs.md b/docs/examples/1.8.x/client-flutter/examples/account/list-logs.md index a7bb5214b7..924470debd 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ LogList result = await account.listLogs( queries: [], // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-flutter/examples/account/list-mfa-factors.md index 5e87cbaac5..4cfcf88b3b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); MfaFactors result = await account.listMFAFactors(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/list-sessions.md b/docs/examples/1.8.x/client-flutter/examples/account/list-sessions.md index fd1d0e080c..18db93bbb5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); SessionList result = await account.listSessions(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/update-email-verification.md index 927aadf184..7e3975e96a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Token result = await account.updateEmailVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-email.md b/docs/examples/1.8.x/client-flutter/examples/account/update-email.md index 0f3d998284..e5e1a169aa 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-email.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ User result = await account.updateEmail( email: 'email@example.com', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-flutter/examples/account/update-magic-url-session.md index d0f91eb0a4..c45dcf1eb8 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Session result = await account.updateMagicURLSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-authenticator.md index 641ae8fba0..539c5e280a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -10,3 +12,4 @@ User result = await account.updateMFAAuthenticator( type: enums.AuthenticatorType.totp, otp: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-challenge.md index b917e4119c..55f4ebee48 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Session result = await account.updateMFAChallenge( challengeId: '', otp: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-recovery-codes.md index 377149bf60..7a188d40fa 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.updateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa.md b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa.md index fc81c565ed..db9addd616 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); User result = await account.updateMFA( mfa: false, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-name.md b/docs/examples/1.8.x/client-flutter/examples/account/update-name.md index 303a12351f..8ab7122324 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-name.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); User result = await account.updateName( name: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-password.md b/docs/examples/1.8.x/client-flutter/examples/account/update-password.md index 835d2383ca..33ae55f41e 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-password.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ User result = await account.updatePassword( password: '', oldPassword: 'password', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-flutter/examples/account/update-phone-session.md index 36801792f6..f538680a5b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Session result = await account.updatePhoneSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/update-phone-verification.md index f5bbb773d0..de226a7c77 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Token result = await account.updatePhoneVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-phone.md b/docs/examples/1.8.x/client-flutter/examples/account/update-phone.md index 6390d14245..f631c5dfc8 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ User result = await account.updatePhone( phone: '+12065550100', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-prefs.md b/docs/examples/1.8.x/client-flutter/examples/account/update-prefs.md index a084c13e89..6f9863d38b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await account.updatePrefs( "darkTheme": true }, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-push-target.md b/docs/examples/1.8.x/client-flutter/examples/account/update-push-target.md index c695ea0984..601f3aece3 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Target result = await account.updatePushTarget( targetId: '', identifier: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-recovery.md b/docs/examples/1.8.x/client-flutter/examples/account/update-recovery.md index 5ca0239f47..87ff07bda5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.updateRecovery( secret: '', password: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-session.md b/docs/examples/1.8.x/client-flutter/examples/account/update-session.md index 4c78ebb187..7fb334aaa3 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-session.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Account account = Account(client); Session result = await account.updateSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-status.md b/docs/examples/1.8.x/client-flutter/examples/account/update-status.md index 289a3f0a96..d7b0d0dcc3 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-status.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Account account = Account(client); User result = await account.updateStatus(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/account/update-verification.md b/docs/examples/1.8.x/client-flutter/examples/account/update-verification.md index 15c7ed1928..339b4b91cc 100644 --- a/docs/examples/1.8.x/client-flutter/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-flutter/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Token result = await account.updateVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-browser.md index 7528a6225b..19026083e5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-browser.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -31,3 +33,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-credit-card.md index 2586613c2a..395608a4b1 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-credit-card.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -31,3 +33,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-favicon.md index abd61a0974..fd1d0df702 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -25,3 +26,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-flag.md index 8d2649b3f9..a5753f6cfa 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-flag.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -31,3 +33,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-image.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-image.md index bbfcc03885..4e75bc7ea5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -29,3 +30,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-initials.md index 29940c17bf..3b5bb68ed5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -31,3 +32,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-qr.md index 0a75a6682f..8a6dc77046 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -31,3 +32,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-flutter/examples/avatars/get-screenshot.md index 43c77ca2c3..6695d05a9b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-flutter/examples/avatars/get-screenshot.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -69,3 +71,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/create-document.md b/docs/examples/1.8.x/client-flutter/examples/databases/create-document.md index 20a1c3c354..a4df848f05 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Document result = await databases.createDocument( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/create-operations.md b/docs/examples/1.8.x/client-flutter/examples/databases/create-operations.md index 2dec7ff7c8..0551c28bf7 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -20,3 +21,4 @@ Transaction result = await databases.createOperations( } ], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-flutter/examples/databases/create-transaction.md index 3d7ddc3efa..14ea55637a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Databases databases = Databases(client); Transaction result = await databases.createTransaction( ttl: 60, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-flutter/examples/databases/decrement-document-attribute.md index dad45bc836..83eaf379f2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Document result = await databases.decrementDocumentAttribute( min: 0, // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/delete-document.md b/docs/examples/1.8.x/client-flutter/examples/databases/delete-document.md index bd101370a6..92350ce2f9 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await databases.deleteDocument( documentId: '', transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-flutter/examples/databases/delete-transaction.md index 333dd1d3a1..3d6d5ed419 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Databases databases = Databases(client); await databases.deleteTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/get-document.md b/docs/examples/1.8.x/client-flutter/examples/databases/get-document.md index 9dcf2cf119..1f384afd18 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Document result = await databases.getDocument( queries: [], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-flutter/examples/databases/get-transaction.md index 153b0f3856..142b8bfa46 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Databases databases = Databases(client); Transaction result = await databases.getTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-flutter/examples/databases/increment-document-attribute.md index 855fd8f51e..22ec34312e 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Document result = await databases.incrementDocumentAttribute( max: 0, // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/list-documents.md b/docs/examples/1.8.x/client-flutter/examples/databases/list-documents.md index 0527c752c9..ca690a5594 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ DocumentList result = await databases.listDocuments( transactionId: '', // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-flutter/examples/databases/list-transactions.md index 467a1ced84..ca9ff6fb17 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Databases databases = Databases(client); TransactionList result = await databases.listTransactions( queries: [], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/update-document.md b/docs/examples/1.8.x/client-flutter/examples/databases/update-document.md index 92407b14ef..52557334c7 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Document result = await databases.updateDocument( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-flutter/examples/databases/update-transaction.md index a51f9d05d6..a882eb92c8 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Transaction result = await databases.updateTransaction( commit: false, // optional rollback: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-flutter/examples/databases/upsert-document.md index 6ad76385f8..6678a0dcb5 100644 --- a/docs/examples/1.8.x/client-flutter/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-flutter/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Document result = await databases.upsertDocument( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/functions/create-execution.md b/docs/examples/1.8.x/client-flutter/examples/functions/create-execution.md index fa9780ff45..0e21974892 100644 --- a/docs/examples/1.8.x/client-flutter/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-flutter/examples/functions/create-execution.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -15,3 +17,4 @@ Execution result = await functions.createExecution( headers: {}, // optional scheduledAt: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/functions/get-execution.md b/docs/examples/1.8.x/client-flutter/examples/functions/get-execution.md index 714933be32..f17e10c1d1 100644 --- a/docs/examples/1.8.x/client-flutter/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-flutter/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Execution result = await functions.getExecution( functionId: '', executionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/functions/list-executions.md b/docs/examples/1.8.x/client-flutter/examples/functions/list-executions.md index b4071bffeb..ae31ffccea 100644 --- a/docs/examples/1.8.x/client-flutter/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-flutter/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ ExecutionList result = await functions.listExecutions( queries: [], // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/graphql/mutation.md b/docs/examples/1.8.x/client-flutter/examples/graphql/mutation.md index 60f0c29703..7ec3ba75fe 100644 --- a/docs/examples/1.8.x/client-flutter/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/client-flutter/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Graphql graphql = Graphql(client); Any result = await graphql.mutation( query: {}, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/graphql/query.md b/docs/examples/1.8.x/client-flutter/examples/graphql/query.md index d90c3432e9..cac705e5a8 100644 --- a/docs/examples/1.8.x/client-flutter/examples/graphql/query.md +++ b/docs/examples/1.8.x/client-flutter/examples/graphql/query.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Graphql graphql = Graphql(client); Any result = await graphql.query( query: {}, ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/get.md b/docs/examples/1.8.x/client-flutter/examples/locale/get.md index b284699046..6302114427 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/get.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/get.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); Locale result = await locale.get(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-codes.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-codes.md index 0227471571..23c375ba3f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); LocaleCodeList result = await locale.listCodes(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-continents.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-continents.md index 1098bd1d58..349be7951c 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); ContinentList result = await locale.listContinents(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-eu.md index 7d6571f4ee..f775aa2e77 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); CountryList result = await locale.listCountriesEU(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-phones.md index 395f240fd7..ee368e2972 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); PhoneList result = await locale.listCountriesPhones(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries.md index a322eb2078..17e0814f95 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); CountryList result = await locale.listCountries(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-currencies.md index 8884bf45b2..751de786f9 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); CurrencyList result = await locale.listCurrencies(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/locale/list-languages.md b/docs/examples/1.8.x/client-flutter/examples/locale/list-languages.md index 0444d94151..28b46a0a8d 100644 --- a/docs/examples/1.8.x/client-flutter/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-flutter/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -7,3 +8,4 @@ Client client = Client() Locale locale = Locale(client); LanguageList result = await locale.listLanguages(); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-flutter/examples/messaging/create-subscriber.md index 2a278a0481..e28a1ab627 100644 --- a/docs/examples/1.8.x/client-flutter/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-flutter/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Subscriber result = await messaging.createSubscriber( subscriberId: '', targetId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-flutter/examples/messaging/delete-subscriber.md index 02c1f61535..4861ec905c 100644 --- a/docs/examples/1.8.x/client-flutter/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-flutter/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ await messaging.deleteSubscriber( topicId: '', subscriberId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/create-file.md b/docs/examples/1.8.x/client-flutter/examples/storage/create-file.md index ed1021c9a6..8f904801bd 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```dart import 'dart:io'; import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; @@ -15,3 +16,4 @@ File result = await storage.createFile( file: InputFile(path: './path-to-files/image.jpg', filename: 'image.jpg'), permissions: [Permission.read(Role.any())], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/delete-file.md b/docs/examples/1.8.x/client-flutter/examples/storage/delete-file.md index b2c6a78f75..960e92f578 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ await storage.deleteFile( bucketId: '', fileId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-download.md index 2cdba9b1fa..8fc48d1522 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -29,3 +30,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-preview.md index 92bee14e91..06e583a39b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-preview.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -51,3 +53,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-view.md index bcf5902c4e..56d2652d29 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -29,3 +30,4 @@ FutureBuilder( : CircularProgressIndicator(); } ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/get-file.md b/docs/examples/1.8.x/client-flutter/examples/storage/get-file.md index f4b541ffd1..9f1adb6e7f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ File result = await storage.getFile( bucketId: '', fileId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/list-files.md b/docs/examples/1.8.x/client-flutter/examples/storage/list-files.md index 8f7c3bd773..0decd69535 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ FileList result = await storage.listFiles( search: '', // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/storage/update-file.md b/docs/examples/1.8.x/client-flutter/examples/storage/update-file.md index 8aa292348d..90814329a0 100644 --- a/docs/examples/1.8.x/client-flutter/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-flutter/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -14,3 +15,4 @@ File result = await storage.updateFile( name: '', // optional permissions: [Permission.read(Role.any())], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-operations.md index 631aefe603..bc779b6bfd 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -20,3 +21,4 @@ Transaction result = await tablesDB.createOperations( } ], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md index ede8c4044a..cb5d85783f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Row result = await tablesDB.createRow( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-transaction.md index 0ad0eb5223..527dde392a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ TablesDB tablesDB = TablesDB(client); Transaction result = await tablesDB.createTransaction( ttl: 60, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md index 65f67513f4..699badfc41 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Row result = await tablesDB.decrementRowColumn( min: 0, // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md index b8ea1d2656..c4e66f58af 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await tablesDB.deleteRow( rowId: '', transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-transaction.md index 2d27c6afda..ab178fb886 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ TablesDB tablesDB = TablesDB(client); await tablesDB.deleteTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md index eb75da5073..6e385a846a 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Row result = await tablesDB.getRow( queries: [], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-transaction.md index 000e230227..39b02a77f2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ TablesDB tablesDB = TablesDB(client); Transaction result = await tablesDB.getTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md index 91cd0ce351..1837125ef3 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Row result = await tablesDB.incrementRowColumn( max: 0, // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md index 3830510101..1d535f8ab2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ RowList result = await tablesDB.listRows( transactionId: '', // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-transactions.md index 5e088cedc3..d95e5198ba 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ TablesDB tablesDB = TablesDB(client); TransactionList result = await tablesDB.listTransactions( queries: [], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md index cf7dd773ed..3cf3c95514 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Row result = await tablesDB.updateRow( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-transaction.md index ef56443e99..d5a8e08205 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Transaction result = await tablesDB.updateTransaction( commit: false, // optional rollback: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md index 9d69ef6b62..74c7d2c585 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; @@ -22,3 +23,4 @@ Row result = await tablesDB.upsertRow( permissions: [Permission.read(Role.any())], // optional transactionId: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/create-membership.md b/docs/examples/1.8.x/client-flutter/examples/teams/create-membership.md index 2491fba7a3..812219f1f2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/create-membership.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -15,3 +17,4 @@ Membership result = await teams.createMembership( url: 'https://example.com', // optional name: '', // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/create.md b/docs/examples/1.8.x/client-flutter/examples/teams/create.md index 637e216a04..7a4af366fa 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/create.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/create.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Team result = await teams.create( name: '', roles: [], // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-flutter/examples/teams/delete-membership.md index 0f1941d88b..e42161faca 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ await teams.deleteMembership( teamId: '', membershipId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/delete.md b/docs/examples/1.8.x/client-flutter/examples/teams/delete.md index 74c74c9cf1..d3f4d71157 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Teams teams = Teams(client); await teams.delete( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/get-membership.md b/docs/examples/1.8.x/client-flutter/examples/teams/get-membership.md index 468e02cf32..3a2906b9c2 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Membership result = await teams.getMembership( teamId: '', membershipId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-flutter/examples/teams/get-prefs.md index a22c78869c..e35006fa52 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Teams teams = Teams(client); Preferences result = await teams.getPrefs( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/get.md b/docs/examples/1.8.x/client-flutter/examples/teams/get.md index 5e8c3463ea..2a71db42bc 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/get.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/get.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -9,3 +10,4 @@ Teams teams = Teams(client); Team result = await teams.get( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-flutter/examples/teams/list-memberships.md index 86b5eed249..bf643511c0 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ MembershipList result = await teams.listMemberships( search: '', // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/list.md b/docs/examples/1.8.x/client-flutter/examples/teams/list.md index fd8b60f25c..2de4ebfe8c 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/list.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/list.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ TeamList result = await teams.list( search: '', // optional total: false, // optional ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-flutter/examples/teams/update-membership-status.md index 1ce3eacb79..ebb924b0af 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Membership result = await teams.updateMembershipStatus( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/update-membership.md b/docs/examples/1.8.x/client-flutter/examples/teams/update-membership.md index 2b9f9b3e61..2eb65e9023 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/update-membership.md @@ -1,4 +1,6 @@ +```dart import 'package:appwrite/appwrite.dart'; +import 'package:appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -11,3 +13,4 @@ Membership result = await teams.updateMembership( membershipId: '', roles: [enums.Roles.admin], ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/update-name.md b/docs/examples/1.8.x/client-flutter/examples/teams/update-name.md index 8f1794587e..629e76082b 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Team result = await teams.updateName( teamId: '', name: '', ); +``` diff --git a/docs/examples/1.8.x/client-flutter/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-flutter/examples/teams/update-prefs.md index 7b33c8c313..1a53c49858 100644 --- a/docs/examples/1.8.x/client-flutter/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-flutter/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:appwrite/appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Preferences result = await teams.updatePrefs( teamId: '', prefs: {}, ); +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-graphql/examples/account/create-anonymous-session.md index 92c12acee5..c040efb8c6 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateAnonymousSession { _id @@ -31,3 +32,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-graphql/examples/account/create-email-password-session.md index 931bb4add0..c68a4feb24 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailPasswordSession( email: "email@example.com", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-email-token.md b/docs/examples/1.8.x/client-graphql/examples/account/create-email-token.md index de320b45ed..f9db2e2cce 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailToken( userId: "", @@ -12,3 +13,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/create-email-verification.md index 1781188527..3a4c559b2a 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailVerification( url: "https://example.com" @@ -10,3 +11,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-jwt.md b/docs/examples/1.8.x/client-graphql/examples/account/create-jwt.md index 364b6c309a..8bc8f9acdc 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateJWT( duration: 0 @@ -5,3 +6,4 @@ mutation { jwt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-graphql/examples/account/create-magic-url-token.md index 4024a5b3a9..59b2c94f20 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMagicURLToken( userId: "", @@ -13,3 +14,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-authenticator.md index 8605340168..a3920a1972 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMFAAuthenticator( type: "totp" @@ -6,3 +7,4 @@ mutation { uri } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-challenge.md index aff5a10123..3da400f67c 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMFAChallenge( factor: "email" @@ -8,3 +9,4 @@ mutation { expire } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-recovery-codes.md index 4cb6d36d42..9f1c3596eb 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-mfa-recovery-codes.md @@ -1,5 +1,7 @@ +```graphql mutation { accountCreateMFARecoveryCodes { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-graphql/examples/account/create-phone-token.md index b56c4eb4e4..e382df55c3 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreatePhoneToken( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/create-phone-verification.md index a4cad59b1a..88ce51a147 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreatePhoneVerification { _id @@ -8,3 +9,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-push-target.md b/docs/examples/1.8.x/client-graphql/examples/account/create-push-target.md index 63802a782e..3b47523db6 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreatePushTarget( targetId: "", @@ -15,3 +16,4 @@ mutation { expired } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-recovery.md b/docs/examples/1.8.x/client-graphql/examples/account/create-recovery.md index ad31fd82d7..f72f5a6532 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateRecovery( email: "email@example.com", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-session.md b/docs/examples/1.8.x/client-graphql/examples/account/create-session.md index f473d14207..b5dda77e1a 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/create-verification.md index df50dda529..818efe4dd5 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateVerification( url: "https://example.com" @@ -10,3 +11,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/create.md b/docs/examples/1.8.x/client-graphql/examples/account/create.md index 0d39394a3d..e61fc41587 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/create.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/create.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreate( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/delete-identity.md b/docs/examples/1.8.x/client-graphql/examples/account/delete-identity.md index f3c2e2e7b9..d984a934bc 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteIdentity( identityId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-graphql/examples/account/delete-mfa-authenticator.md index 03e876e3f9..7c78bc3177 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteMFAAuthenticator( type: "totp" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-graphql/examples/account/delete-push-target.md index 894c0b2e02..a8588be935 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeletePushTarget( targetId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/delete-session.md b/docs/examples/1.8.x/client-graphql/examples/account/delete-session.md index 09aff38fdd..36c3de994e 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteSession( sessionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-graphql/examples/account/delete-sessions.md index b0d61daa81..65f6900e55 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/delete-sessions.md @@ -1,5 +1,7 @@ +```graphql mutation { accountDeleteSessions { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-graphql/examples/account/get-mfa-recovery-codes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/get-mfa-recovery-codes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/get-prefs.md b/docs/examples/1.8.x/client-graphql/examples/account/get-prefs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/get-prefs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/get-session.md b/docs/examples/1.8.x/client-graphql/examples/account/get-session.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/get-session.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/get.md b/docs/examples/1.8.x/client-graphql/examples/account/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/get.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/list-identities.md b/docs/examples/1.8.x/client-graphql/examples/account/list-identities.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/list-identities.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/list-logs.md b/docs/examples/1.8.x/client-graphql/examples/account/list-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/list-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-graphql/examples/account/list-mfa-factors.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/list-mfa-factors.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/list-sessions.md b/docs/examples/1.8.x/client-graphql/examples/account/list-sessions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/list-sessions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/update-email-verification.md index 6386d34bfa..9a045dd80e 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateEmailVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-email.md b/docs/examples/1.8.x/client-graphql/examples/account/update-email.md index c879e24a43..d9c9bb1e02 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-email.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateEmail( email: "email@example.com", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-graphql/examples/account/update-magic-url-session.md index 075bc91d17..92ad9693de 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMagicURLSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-authenticator.md index b3021b70b8..95ff9024a0 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFAAuthenticator( type: "totp", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-challenge.md index bf389f1eff..d3a438cf0e 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFAChallenge( challengeId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-recovery-codes.md index dc46be71ad..5f0c5c2d69 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa-recovery-codes.md @@ -1,5 +1,7 @@ +```graphql mutation { accountUpdateMFARecoveryCodes { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa.md b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa.md index 787c2e0860..d94c8790e6 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFA( mfa: false @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-name.md b/docs/examples/1.8.x/client-graphql/examples/account/update-name.md index 8ba2c99d9c..172eecefa3 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-name.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateName( name: "" @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-password.md b/docs/examples/1.8.x/client-graphql/examples/account/update-password.md index f3619a10d2..c3213c500f 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-password.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePassword( password: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-graphql/examples/account/update-phone-session.md index 199e774ab0..aa054709d2 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhoneSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/update-phone-verification.md index dd62298bb9..2122d41bef 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhoneVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-phone.md b/docs/examples/1.8.x/client-graphql/examples/account/update-phone.md index adecb71168..6ae27cad43 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhone( phone: "+12065550100", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-prefs.md b/docs/examples/1.8.x/client-graphql/examples/account/update-prefs.md index 8138cf0227..c1a5669d64 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePrefs( prefs: "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}" @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-push-target.md b/docs/examples/1.8.x/client-graphql/examples/account/update-push-target.md index 3c402cdf12..9cd77d8265 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePushTarget( targetId: "", @@ -14,3 +15,4 @@ mutation { expired } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-recovery.md b/docs/examples/1.8.x/client-graphql/examples/account/update-recovery.md index 2d15fdcaa1..90933c1658 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateRecovery( userId: "", @@ -12,3 +13,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-session.md b/docs/examples/1.8.x/client-graphql/examples/account/update-session.md index 29a8979872..c045df3c14 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateSession( sessionId: "" @@ -33,3 +34,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-status.md b/docs/examples/1.8.x/client-graphql/examples/account/update-status.md index c17f556842..6e46018101 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-status.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateStatus { _id @@ -33,3 +34,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/account/update-verification.md b/docs/examples/1.8.x/client-graphql/examples/account/update-verification.md index 11e63c7da3..927ce49530 100644 --- a/docs/examples/1.8.x/client-graphql/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-graphql/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-browser.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-browser.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-credit-card.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-credit-card.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-favicon.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-favicon.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-flag.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-flag.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-image.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-image.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-image.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-initials.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-initials.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-qr.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-qr.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-graphql/examples/avatars/get-screenshot.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-graphql/examples/avatars/get-screenshot.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/create-document.md b/docs/examples/1.8.x/client-graphql/examples/databases/create-document.md index 411615f7a7..a4a363b975 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/create-operations.md b/docs/examples/1.8.x/client-graphql/examples/databases/create-operations.md index 1be3b39ee1..7fa29cf3f8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateOperations( transactionId: "", @@ -21,3 +22,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-graphql/examples/databases/create-transaction.md index 7fea034ab6..d28f2eadce 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateTransaction( ttl: 60 @@ -10,3 +11,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-graphql/examples/databases/decrement-document-attribute.md index e6032fd0e7..4db00c0ae1 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDecrementDocumentAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/delete-document.md b/docs/examples/1.8.x/client-graphql/examples/databases/delete-document.md index 2e172aa5dd..f6d166b0c2 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteDocument( databaseId: "", @@ -8,3 +9,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-graphql/examples/databases/delete-transaction.md index cd29a0b8a6..9230d0c853 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteTransaction( transactionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/get-document.md b/docs/examples/1.8.x/client-graphql/examples/databases/get-document.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/get-document.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-graphql/examples/databases/get-transaction.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/get-transaction.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-graphql/examples/databases/increment-document-attribute.md index 3518ff1583..58e462f582 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesIncrementDocumentAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/list-documents.md b/docs/examples/1.8.x/client-graphql/examples/databases/list-documents.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/list-documents.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-graphql/examples/databases/list-transactions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/list-transactions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/update-document.md b/docs/examples/1.8.x/client-graphql/examples/databases/update-document.md index 056a5bed4e..fc1ce5cb12 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-graphql/examples/databases/update-transaction.md index b56c7139ac..a2d8cb145b 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateTransaction( transactionId: "", @@ -12,3 +13,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-graphql/examples/databases/upsert-document.md index 6d54d7ad10..5d095baa9b 100644 --- a/docs/examples/1.8.x/client-graphql/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-graphql/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpsertDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/functions/create-execution.md b/docs/examples/1.8.x/client-graphql/examples/functions/create-execution.md index ff0ecbe739..88a157599d 100644 --- a/docs/examples/1.8.x/client-graphql/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-graphql/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateExecution( functionId: "", @@ -34,3 +35,4 @@ mutation { scheduledAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/functions/get-execution.md b/docs/examples/1.8.x/client-graphql/examples/functions/get-execution.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-graphql/examples/functions/get-execution.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/functions/list-executions.md b/docs/examples/1.8.x/client-graphql/examples/functions/list-executions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-graphql/examples/functions/list-executions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/get.md b/docs/examples/1.8.x/client-graphql/examples/locale/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/get.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-codes.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-codes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-codes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-continents.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-continents.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-continents.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-eu.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-eu.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-phones.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries-phones.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-countries.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-currencies.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-currencies.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/locale/list-languages.md b/docs/examples/1.8.x/client-graphql/examples/locale/list-languages.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-graphql/examples/locale/list-languages.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-graphql/examples/messaging/create-subscriber.md index bab53612b7..50d67e14f9 100644 --- a/docs/examples/1.8.x/client-graphql/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-graphql/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateSubscriber( topicId: "", @@ -25,3 +26,4 @@ mutation { providerType } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-graphql/examples/messaging/delete-subscriber.md index ededffcaac..81c5558adc 100644 --- a/docs/examples/1.8.x/client-graphql/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-graphql/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingDeleteSubscriber( topicId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/create-file.md b/docs/examples/1.8.x/client-graphql/examples/storage/create-file.md index 50161e433f..6f2c95d172 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```graphql POST /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -23,3 +24,4 @@ Content-Disposition: form-data; name="0"; filename="file.ext" File contents --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/delete-file.md b/docs/examples/1.8.x/client-graphql/examples/storage/delete-file.md index 17ec89931a..c36fa0e94c 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```graphql mutation { storageDeleteFile( bucketId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-download.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-download.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-preview.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-preview.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-view.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/get-file-view.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/get-file.md b/docs/examples/1.8.x/client-graphql/examples/storage/get-file.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/get-file.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/list-files.md b/docs/examples/1.8.x/client-graphql/examples/storage/list-files.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/list-files.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/storage/update-file.md b/docs/examples/1.8.x/client-graphql/examples/storage/update-file.md index 492f1e979a..422596fe94 100644 --- a/docs/examples/1.8.x/client-graphql/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-graphql/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```graphql mutation { storageUpdateFile( bucketId: "", @@ -20,3 +21,4 @@ mutation { compression } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-operations.md index bb2be8085a..f5721ece9e 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateOperations( transactionId: "", @@ -21,3 +22,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md index 109bc008d6..2de9bda395 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-transaction.md index 0e874f0c78..2ecb303104 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateTransaction( ttl: 60 @@ -10,3 +11,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md index 1d57d79b54..981013c72f 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDecrementRowColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md index 3b44913049..0acff213ec 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteRow( databaseId: "", @@ -8,3 +9,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-transaction.md index 4a2d6f15a2..e12bd209a0 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteTransaction( transactionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-row.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-row.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-transaction.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/get-transaction.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md index 3ae008e718..6d2b7e47a5 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBIncrementRowColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-rows.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-rows.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-transactions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/list-transactions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md index a0fd284f95..5210f16e3a 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-transaction.md index 2094877303..0d0986b85b 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateTransaction( transactionId: "", @@ -12,3 +13,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md index ed5309cab8..8b085a9759 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpsertRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/create-membership.md b/docs/examples/1.8.x/client-graphql/examples/teams/create-membership.md index fe741f080d..edea065a78 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsCreateMembership( teamId: "", @@ -23,3 +24,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/create.md b/docs/examples/1.8.x/client-graphql/examples/teams/create.md index 1f2a7ab3f2..c31af8335d 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/create.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/create.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsCreate( teamId: "", @@ -14,3 +15,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-graphql/examples/teams/delete-membership.md index e391b6f6fa..297d486894 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsDeleteMembership( teamId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/delete.md b/docs/examples/1.8.x/client-graphql/examples/teams/delete.md index df0d36c5b5..924ab91c96 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsDelete( teamId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/get-membership.md b/docs/examples/1.8.x/client-graphql/examples/teams/get-membership.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/get-membership.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-graphql/examples/teams/get-prefs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/get-prefs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/get.md b/docs/examples/1.8.x/client-graphql/examples/teams/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/get.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-graphql/examples/teams/list-memberships.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/list-memberships.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/list.md b/docs/examples/1.8.x/client-graphql/examples/teams/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/list.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-graphql/examples/teams/update-membership-status.md index 9b24450a86..1791a65e75 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateMembershipStatus( teamId: "", @@ -20,3 +21,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/update-membership.md b/docs/examples/1.8.x/client-graphql/examples/teams/update-membership.md index 1c6a04f078..acaa6136ad 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateMembership( teamId: "", @@ -19,3 +20,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/update-name.md b/docs/examples/1.8.x/client-graphql/examples/teams/update-name.md index c40543b5cd..a3ce2bd1f3 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateName( teamId: "", @@ -13,3 +14,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/client-graphql/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-graphql/examples/teams/update-prefs.md index 95737e33f9..411431a122 100644 --- a/docs/examples/1.8.x/client-graphql/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-graphql/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdatePrefs( teamId: "", @@ -6,3 +7,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-react-native/examples/account/create-anonymous-session.md index 4baad33e9d..49a81c6cdd 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createAnonymousSession(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-react-native/examples/account/create-email-password-session.md index 47fb5573b1..4b3e2002aa 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createEmailPasswordSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-email-token.md b/docs/examples/1.8.x/client-react-native/examples/account/create-email-token.md index aef74a8e46..9956ed4f4d 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createEmailToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/create-email-verification.md index 42260501c2..8cef78ecb8 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-jwt.md b/docs/examples/1.8.x/client-react-native/examples/account/create-jwt.md index fbb3f362e5..517a4f0119 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createJWT({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-react-native/examples/account/create-magic-url-token.md index 5c30ef538e..85106b571e 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.createMagicURLToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-authenticator.md index d859850f2f..b7f6b847b6 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-challenge.md index c7e5f6216a..373e3f5485 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticationFactor } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-recovery-codes.md index 22d6a579d6..2f73900ebf 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-session.md index 4212803ca8..289a4c8b77 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Session({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-token.md index 8989e489c2..dda39b0d34 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Token({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-react-native/examples/account/create-phone-token.md index 68eaa38dbd..c6021381e6 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createPhoneToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/create-phone-verification.md index 62bcc48113..cf9c2e2884 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createPhoneVerification(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-push-target.md b/docs/examples/1.8.x/client-react-native/examples/account/create-push-target.md index d3fae6fd84..1679c7e04f 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createPushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-recovery.md b/docs/examples/1.8.x/client-react-native/examples/account/create-recovery.md index 01c5c387e8..23a886eeec 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-session.md b/docs/examples/1.8.x/client-react-native/examples/account/create-session.md index b6741518d1..18a0b7c0fe 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/create-verification.md index f4a210be05..ff15a6274e 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/create.md b/docs/examples/1.8.x/client-react-native/examples/account/create.md index 2c6850a101..c29ddc71eb 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/create.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/delete-identity.md b/docs/examples/1.8.x/client-react-native/examples/account/delete-identity.md index 0d9a971225..aac71687c9 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteIdentity({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-react-native/examples/account/delete-mfa-authenticator.md index 90a6e347a8..626ac9a5fd 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-react-native/examples/account/delete-push-target.md index dff171b305..271b4094b8 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deletePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/delete-session.md b/docs/examples/1.8.x/client-react-native/examples/account/delete-session.md index f1ce4a0a88..a21fa8e661 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-react-native/examples/account/delete-sessions.md index 830eb273a8..b1127016c3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.deleteSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-react-native/examples/account/get-mfa-recovery-codes.md index 94896eb752..a2016f0b09 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/get-prefs.md b/docs/examples/1.8.x/client-react-native/examples/account/get-prefs.md index b26a7b09f0..3838731d93 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getPrefs(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/get-session.md b/docs/examples/1.8.x/client-react-native/examples/account/get-session.md index 4c0fdfc0b5..5462215cad 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/get-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.getSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/get.md b/docs/examples/1.8.x/client-react-native/examples/account/get.md index 21d2401601..0397f69822 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/get.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/list-identities.md b/docs/examples/1.8.x/client-react-native/examples/account/list-identities.md index 5ff727ade6..3a8046b719 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listIdentities({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/list-logs.md b/docs/examples/1.8.x/client-react-native/examples/account/list-logs.md index e3109f32fa..b919ce24bb 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-react-native/examples/account/list-mfa-factors.md index 98ba939768..4d78b709fb 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listMFAFactors(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/list-sessions.md b/docs/examples/1.8.x/client-react-native/examples/account/list-sessions.md index 68232be292..c9868accee 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/update-email-verification.md index 4270380d5f..c29caaf8f0 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-email.md b/docs/examples/1.8.x/client-react-native/examples/account/update-email.md index 325fa472fe..148c6d903a 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-react-native/examples/account/update-magic-url-session.md index 4feaa59f52..5efeda04b1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMagicURLSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-authenticator.md index 58f2329564..67f30eafab 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-challenge.md index c2ce59f6ef..d432e08e3c 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-recovery-codes.md index 1f7b4f0d96..5283ebca15 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa.md b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa.md index 26d26ffe97..be3e8b9a3c 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateMFA({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-name.md b/docs/examples/1.8.x/client-react-native/examples/account/update-name.md index f58f26baae..5b9182e64b 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-password.md b/docs/examples/1.8.x/client-react-native/examples/account/update-password.md index 89f99d9790..7ea08255d3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-password.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePassword({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-react-native/examples/account/update-phone-session.md index b3a3ffffb3..1b63ed6928 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/update-phone-verification.md index 2f1be2f345..3f25a7378d 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-phone.md b/docs/examples/1.8.x/client-react-native/examples/account/update-phone.md index 4e123547cb..5206263a97 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhone({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-prefs.md b/docs/examples/1.8.x/client-react-native/examples/account/update-prefs.md index b4a8e0ab2e..510d038a1c 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await account.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-push-target.md b/docs/examples/1.8.x/client-react-native/examples/account/update-push-target.md index c61f65612f..3ca599f159 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-recovery.md b/docs/examples/1.8.x/client-react-native/examples/account/update-recovery.md index 9e0c439714..faebfc4698 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.updateRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-session.md b/docs/examples/1.8.x/client-react-native/examples/account/update-session.md index 948514d6f6..7c99dfaf51 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-status.md b/docs/examples/1.8.x/client-react-native/examples/account/update-status.md index 8d3a2b0698..0e079e44f0 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateStatus(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/account/update-verification.md b/docs/examples/1.8.x/client-react-native/examples/account/update-verification.md index 287a7feaf7..efba67868d 100644 --- a/docs/examples/1.8.x/client-react-native/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-react-native/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-browser.md index 6506f2e715..ff14a8c90b 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Browser } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getBrowser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-credit-card.md index 05d3a53b4c..1c83c95bc9 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, CreditCard } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getCreditCard({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-favicon.md index d3931e3ef4..c082092196 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = avatars.getFavicon({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-flag.md index 651771a0ef..dd0fb73425 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Flag } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getFlag({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-image.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-image.md index e3b89c31d7..da10748271 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = avatars.getImage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-initials.md index 3abc399a24..fbcf43ed03 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getInitials({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-qr.md index 3cbe72a920..b73c621505 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getQR({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-react-native/examples/avatars/get-screenshot.md index 8e2168031e..9cb1f990a2 100644 --- a/docs/examples/1.8.x/client-react-native/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-react-native/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "react-native-appwrite"; const client = new Client() @@ -33,3 +34,4 @@ const result = avatars.getScreenshot({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/create-document.md b/docs/examples/1.8.x/client-react-native/examples/databases/create-document.md index 58ea6ee1ef..0b5c538bc8 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/create-operations.md b/docs/examples/1.8.x/client-react-native/examples/databases/create-operations.md index bf02fd2c29..c4495a240e 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-react-native/examples/databases/create-transaction.md index 07a2103e59..a1c4d328b3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-react-native/examples/databases/decrement-document-attribute.md index 5edce7b091..19a8742b63 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.decrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/delete-document.md b/docs/examples/1.8.x/client-react-native/examples/databases/delete-document.md index 6cad3f9585..c8db1b214f 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.deleteDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-react-native/examples/databases/delete-transaction.md index 9ad2661362..30f149d9d8 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/get-document.md b/docs/examples/1.8.x/client-react-native/examples/databases/get-document.md index c61d396d3e..1dcfc2b2f4 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.getDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-react-native/examples/databases/get-transaction.md index 47f93691e0..839712a96e 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-react-native/examples/databases/increment-document-attribute.md index 259a184e3a..95123e835b 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.incrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/list-documents.md b/docs/examples/1.8.x/client-react-native/examples/databases/list-documents.md index 6a9959ab9a..0641381bf3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.listDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-react-native/examples/databases/list-transactions.md index 2339673803..0ca57bacc0 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/update-document.md b/docs/examples/1.8.x/client-react-native/examples/databases/update-document.md index 2be12b1acd..44ff772ec2 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.updateDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-react-native/examples/databases/update-transaction.md index c333850656..fa1a745c90 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-react-native/examples/databases/upsert-document.md index fcf1fb4820..9552a9d2d1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-react-native/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.upsertDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/functions/create-execution.md b/docs/examples/1.8.x/client-react-native/examples/functions/create-execution.md index b9e6682f3e..015bbedde1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-react-native/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, ExecutionMethod } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await functions.createExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/functions/get-execution.md b/docs/examples/1.8.x/client-react-native/examples/functions/get-execution.md index 2ef4e9f817..9393fc308b 100644 --- a/docs/examples/1.8.x/client-react-native/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-react-native/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/functions/list-executions.md b/docs/examples/1.8.x/client-react-native/examples/functions/list-executions.md index e832293e2c..405fbe7784 100644 --- a/docs/examples/1.8.x/client-react-native/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-react-native/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await functions.listExecutions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/graphql/mutation.md b/docs/examples/1.8.x/client-react-native/examples/graphql/mutation.md index dbc27ff120..3b7b3dc1a3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/client-react-native/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.mutation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/graphql/query.md b/docs/examples/1.8.x/client-react-native/examples/graphql/query.md index 560b7e5cf1..fe3afbf9d9 100644 --- a/docs/examples/1.8.x/client-react-native/examples/graphql/query.md +++ b/docs/examples/1.8.x/client-react-native/examples/graphql/query.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.query({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/get.md b/docs/examples/1.8.x/client-react-native/examples/locale/get.md index 34c1672c53..81f04e1807 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/get.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-codes.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-codes.md index 29cec5a5cf..efea79713b 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-continents.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-continents.md index c98ba19af3..aa3eba8252 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listContinents(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-eu.md index 7fb71a548d..92447251d6 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesEU(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-phones.md index 612debc5ab..c09816b0d1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesPhones(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries.md index 8b1f636fa6..bf607a4e41 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountries(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-currencies.md index 4b96a5fdbc..ade09501d2 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCurrencies(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/locale/list-languages.md b/docs/examples/1.8.x/client-react-native/examples/locale/list-languages.md index 54166afb1e..12e603f7f2 100644 --- a/docs/examples/1.8.x/client-react-native/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-react-native/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "react-native-appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listLanguages(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-react-native/examples/messaging/create-subscriber.md index 2057f1da59..ae78a13495 100644 --- a/docs/examples/1.8.x/client-react-native/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-react-native/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.createSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-react-native/examples/messaging/delete-subscriber.md index 38545f6280..da6370c12f 100644 --- a/docs/examples/1.8.x/client-react-native/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-react-native/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await messaging.deleteSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/create-file.md b/docs/examples/1.8.x/client-react-native/examples/storage/create-file.md index c1a383d533..c1ca26ae3f 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.createFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/delete-file.md b/docs/examples/1.8.x/client-react-native/examples/storage/delete-file.md index 776ec7fa18..f4c109fbcf 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.deleteFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-download.md index 317141c87d..52f602b9d5 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileDownload({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-preview.md index 94623fb011..d3c944adca 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, ImageGravity, ImageFormat } from "react-native-appwrite"; const client = new Client() @@ -24,3 +25,4 @@ const result = storage.getFilePreview({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-view.md index bacd1088c9..28e6e43aba 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileView({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/get-file.md b/docs/examples/1.8.x/client-react-native/examples/storage/get-file.md index f284182479..d587547c39 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.getFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/list-files.md b/docs/examples/1.8.x/client-react-native/examples/storage/list-files.md index 38569ad9fd..ac21eadbd5 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.listFiles({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/storage/update-file.md b/docs/examples/1.8.x/client-react-native/examples/storage/update-file.md index dd98cdbbfa..82fc4d26ba 100644 --- a/docs/examples/1.8.x/client-react-native/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-react-native/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.updateFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-operations.md index 1c76de77d2..c061f76cff 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md index 33f1c8d458..18e1777dc3 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-transaction.md index c2eca27695..4d73a3e2cc 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md index 7bf6d77a46..3d036ad642 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.decrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md index 3ab81237eb..a7b94e27d2 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.deleteRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-transaction.md index 121e6b3f67..4fb8204325 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md index a3a8775b4a..7fa742efad 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.getRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-transaction.md index 475e2d83ee..2c5d350f99 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md index 4bda1efb24..6c924ad9ec 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.incrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md index 85e50b54d5..5d270d6bf1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.listRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-transactions.md index 9d3004a90c..008ed3de17 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md index 9ba5054f76..0916853f48 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.updateRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-transaction.md index de29a5bd2c..d94c24a0da 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md index bea81ba413..e578cccb35 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.upsertRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/create-membership.md b/docs/examples/1.8.x/client-react-native/examples/teams/create-membership.md index 665fffabba..41c726c78d 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "react-native-appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await teams.createMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/create.md b/docs/examples/1.8.x/client-react-native/examples/teams/create.md index 6c8dbbba49..c63389308f 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/create.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-react-native/examples/teams/delete-membership.md index b881c5ac8c..1cdb4baf7c 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.deleteMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/delete.md b/docs/examples/1.8.x/client-react-native/examples/teams/delete.md index 8c98139c5b..81a4fa640a 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/get-membership.md b/docs/examples/1.8.x/client-react-native/examples/teams/get-membership.md index 46cdc4126c..41e96e2241 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.getMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-react-native/examples/teams/get-prefs.md index 0e3b4894cb..505703d308 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.getPrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/get.md b/docs/examples/1.8.x/client-react-native/examples/teams/get.md index 6305365688..2b0131e1d1 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/get.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-react-native/examples/teams/list-memberships.md index 5c017378a9..6b7fc15506 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.listMemberships({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/list.md b/docs/examples/1.8.x/client-react-native/examples/teams/list.md index 36fdcfbd08..a7fa1ec217 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/list.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-react-native/examples/teams/update-membership-status.md index 0aba8065c4..83a52c320d 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.updateMembershipStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/update-membership.md b/docs/examples/1.8.x/client-react-native/examples/teams/update-membership.md index 4e35261654..a5109fcbed 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "react-native-appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.updateMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/update-name.md b/docs/examples/1.8.x/client-react-native/examples/teams/update-name.md index 251ff26ada..d362b2cbeb 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-react-native/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-react-native/examples/teams/update-prefs.md index 490450210f..f603ac96ea 100644 --- a/docs/examples/1.8.x/client-react-native/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-react-native/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "react-native-appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-rest/examples/account/create-anonymous-session.md index ff7408fa94..45ac21f146 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/anonymous HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-rest/examples/account/create-email-password-session.md index 2cf4121b4f..bd503122e0 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "password": "password" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-email-token.md b/docs/examples/1.8.x/client-rest/examples/account/create-email-token.md index 3e0d10827f..96308d6330 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "email": "email@example.com", "phrase": false } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-rest/examples/account/create-email-verification.md index 63fcd5765e..f338aa4452 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-jwt.md b/docs/examples/1.8.x/client-rest/examples/account/create-jwt.md index c1bd9cc6df..1025ebbb97 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```http POST /v1/account/jwts HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "duration": 0 } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-rest/examples/account/create-magic-url-token.md index 4629afaac8..1e9ca63878 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/magic-url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-JWT: "url": "https://example.com", "phrase": false } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-authenticator.md index 62a068b6cf..3f51265eae 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-challenge.md index 0990fcb98d..5404940208 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/challenges HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "factor": "email" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-recovery-codes.md index f09323df0b..a37e249b59 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-session.md index f99a3ecc76..345742c848 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-session.md @@ -1,6 +1,8 @@ +```http GET /v1/account/sessions/oauth2/{provider} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-token.md index 6d569682c1..6c0ca8f98b 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-o-auth-2-token.md @@ -1,6 +1,8 @@ +```http GET /v1/account/tokens/oauth2/{provider} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-rest/examples/account/create-phone-token.md index c3cb75347f..02a0b17da3 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "phone": "+12065550100" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-rest/examples/account/create-phone-verification.md index b48c9249b3..971a1bc67f 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-push-target.md b/docs/examples/1.8.x/client-rest/examples/account/create-push-target.md index 459a2a2ecc..d25f4c4b51 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```http POST /v1/account/targets/push HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Session: "identifier": "", "providerId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-recovery.md b/docs/examples/1.8.x/client-rest/examples/account/create-recovery.md index ea0146228b..98a7a9c28b 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```http POST /v1/account/recovery HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-session.md b/docs/examples/1.8.x/client-rest/examples/account/create-session.md index 810f816212..39edcd87ca 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/token HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create-verification.md b/docs/examples/1.8.x/client-rest/examples/account/create-verification.md index 63fcd5765e..f338aa4452 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/create.md b/docs/examples/1.8.x/client-rest/examples/account/create.md index ef9967cab1..83543d7807 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/create.md +++ b/docs/examples/1.8.x/client-rest/examples/account/create.md @@ -1,3 +1,4 @@ +```http POST /v1/account HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-JWT: "password": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/delete-identity.md b/docs/examples/1.8.x/client-rest/examples/account/delete-identity.md index bacca18870..7ec33f098a 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-rest/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/identities/{identityId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-rest/examples/account/delete-mfa-authenticator.md index a0eb5a0869..5f471db6e7 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-rest/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-rest/examples/account/delete-push-target.md index 9ec6e20d27..932469da8f 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-rest/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/targets/{targetId}/push HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/delete-session.md b/docs/examples/1.8.x/client-rest/examples/account/delete-session.md index c9b0f48d6f..c70d447e6f 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-rest/examples/account/delete-sessions.md index 0b3fcd1c45..f2c5078c72 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-rest/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/sessions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-rest/examples/account/get-mfa-recovery-codes.md index 2ab10a2475..deff1c1629 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-rest/examples/account/get-mfa-recovery-codes.md @@ -1,6 +1,8 @@ +```http GET /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/get-prefs.md b/docs/examples/1.8.x/client-rest/examples/account/get-prefs.md index a038dacbfd..5666176aef 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-rest/examples/account/get-prefs.md @@ -1,6 +1,8 @@ +```http GET /v1/account/prefs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/get-session.md b/docs/examples/1.8.x/client-rest/examples/account/get-session.md index 3e372a05ef..d2e0b7832e 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/get-session.md @@ -1,6 +1,8 @@ +```http GET /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/get.md b/docs/examples/1.8.x/client-rest/examples/account/get.md index 104b643074..ba71dfda28 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/get.md +++ b/docs/examples/1.8.x/client-rest/examples/account/get.md @@ -1,6 +1,8 @@ +```http GET /v1/account HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/list-identities.md b/docs/examples/1.8.x/client-rest/examples/account/list-identities.md index 5acb221584..bb0ba07e72 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-rest/examples/account/list-identities.md @@ -1,6 +1,8 @@ +```http GET /v1/account/identities HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/list-logs.md b/docs/examples/1.8.x/client-rest/examples/account/list-logs.md index 8314123c9e..9fc92cf4f2 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-rest/examples/account/list-logs.md @@ -1,6 +1,8 @@ +```http GET /v1/account/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-rest/examples/account/list-mfa-factors.md index c591143d4e..87b64f1435 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-rest/examples/account/list-mfa-factors.md @@ -1,6 +1,8 @@ +```http GET /v1/account/mfa/factors HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/list-sessions.md b/docs/examples/1.8.x/client-rest/examples/account/list-sessions.md index 89ef6962c9..2efa29c8b3 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-rest/examples/account/list-sessions.md @@ -1,6 +1,8 @@ +```http GET /v1/account/sessions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-rest/examples/account/update-email-verification.md index c7c6c34e52..960c823f22 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-email.md b/docs/examples/1.8.x/client-rest/examples/account/update-email.md index 382327e31b..114ead3b27 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-email.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "password": "password" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-rest/examples/account/update-magic-url-session.md index a1fe139a8b..f03b2b16be 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/sessions/magic-url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-authenticator.md index 780472291c..77ba351ae4 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "otp": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-challenge.md index df2cd9a1e8..df437ae11d 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/mfa/challenges HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "challengeId": "", "otp": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-recovery-codes.md index 74e9225f3e..2e68bb0469 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-mfa.md b/docs/examples/1.8.x/client-rest/examples/account/update-mfa.md index a22b169751..8dcf1f953e 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/mfa HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "mfa": false } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-name.md b/docs/examples/1.8.x/client-rest/examples/account/update-name.md index 4c9c0e302c..c87e347b97 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-name.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/name HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "name": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-password.md b/docs/examples/1.8.x/client-rest/examples/account/update-password.md index c26f18a4f3..55cadcedbe 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-password.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/password HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "password": "", "oldPassword": "password" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-rest/examples/account/update-phone-session.md index eb18a0960c..93e208ee1f 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/sessions/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-rest/examples/account/update-phone-verification.md index faa6478150..4f9adabc39 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-phone.md b/docs/examples/1.8.x/client-rest/examples/account/update-phone.md index 791caadb0d..44ccca75f5 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "phone": "+12065550100", "password": "password" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-prefs.md b/docs/examples/1.8.x/client-rest/examples/account/update-prefs.md index 0d7e4eab0c..e7f73eeeaa 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/prefs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-JWT: "darkTheme": true } } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-push-target.md b/docs/examples/1.8.x/client-rest/examples/account/update-push-target.md index 95210b5a1c..2f094cf403 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/targets/{targetId}/push HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Session: { "identifier": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-recovery.md b/docs/examples/1.8.x/client-rest/examples/account/update-recovery.md index 68919c29fb..070dcc65b2 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/recovery HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "secret": "", "password": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-session.md b/docs/examples/1.8.x/client-rest/examples/account/update-session.md index 8e2257aeed..6d5bc5d3ff 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-session.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-status.md b/docs/examples/1.8.x/client-rest/examples/account/update-status.md index 557697fe5f..a131097493 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/account/update-verification.md b/docs/examples/1.8.x/client-rest/examples/account/update-verification.md index c7c6c34e52..960c823f22 100644 --- a/docs/examples/1.8.x/client-rest/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-rest/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-browser.md index 9de9d99173..9aaa52d820 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-browser.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/browsers/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-credit-card.md index ed30226d3b..90867a3e9e 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-credit-card.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/credit-cards/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-favicon.md index 8eaca9452e..d11f1e1bd0 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-favicon.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/favicon HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-flag.md index 07172e89d8..4f75c172f5 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-flag.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/flags/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-image.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-image.md index 98d4898e6f..f792b52f4f 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-image.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/image HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-initials.md index 93a70a80ab..dcca568ffe 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-initials.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/initials HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-qr.md index 39e513c810..d88871ffe0 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-qr.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/qr HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-rest/examples/avatars/get-screenshot.md index b4c31ca100..a792d4b93e 100644 --- a/docs/examples/1.8.x/client-rest/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-rest/examples/avatars/get-screenshot.md @@ -1,6 +1,8 @@ +```http GET /v1/avatars/screenshots HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/create-document.md b/docs/examples/1.8.x/client-rest/examples/databases/create-document.md index c53babd482..d21f959f9a 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/create-operations.md b/docs/examples/1.8.x/client-rest/examples/databases/create-operations.md index 602effd9a2..02c5eb01dd 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/transactions/{transactionId}/operations HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -19,3 +20,4 @@ X-Appwrite-JWT: } ] } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-rest/examples/databases/create-transaction.md index c58528731e..6e6322645d 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/transactions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "ttl": 60 } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-rest/examples/databases/decrement-document-attribute.md index be1d8d5bb6..45e36ad171 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId}/{attribute}/decrement HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "min": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/delete-document.md b/docs/examples/1.8.x/client-rest/examples/databases/delete-document.md index 3fa0a3ca21..2cb850e93c 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-rest/examples/databases/delete-transaction.md index 1982dbb5a4..4a60a787ad 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/get-document.md b/docs/examples/1.8.x/client-rest/examples/databases/get-document.md index dac5e48131..04710ef5d1 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/get-document.md @@ -1,6 +1,8 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-rest/examples/databases/get-transaction.md index 09cc2e6c95..a27a0041b3 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/get-transaction.md @@ -1,6 +1,8 @@ +```http GET /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-rest/examples/databases/increment-document-attribute.md index 9eb873d6ff..81afdb0920 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId}/{attribute}/increment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "max": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/list-documents.md b/docs/examples/1.8.x/client-rest/examples/databases/list-documents.md index e5c4936d6f..d90a53bc89 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/list-documents.md @@ -1,6 +1,8 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-rest/examples/databases/list-transactions.md index f080df9228..343621c388 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/list-transactions.md @@ -1,6 +1,8 @@ +```http GET /v1/databases/transactions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/update-document.md b/docs/examples/1.8.x/client-rest/examples/databases/update-document.md index 5eca403b5d..df59efd547 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-rest/examples/databases/update-transaction.md index e8358a9051..620e32e918 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "commit": false, "rollback": false } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-rest/examples/databases/upsert-document.md index 3e98bfd22f..49f6344a5e 100644 --- a/docs/examples/1.8.x/client-rest/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-rest/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```http PUT /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/functions/create-execution.md b/docs/examples/1.8.x/client-rest/examples/functions/create-execution.md index 4ae83f3096..cadb8502cd 100644 --- a/docs/examples/1.8.x/client-rest/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-rest/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/executions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-JWT: "headers": {}, "scheduledAt": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/functions/get-execution.md b/docs/examples/1.8.x/client-rest/examples/functions/get-execution.md index e2f3e97d10..49e2b402f1 100644 --- a/docs/examples/1.8.x/client-rest/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-rest/examples/functions/get-execution.md @@ -1,6 +1,8 @@ +```http GET /v1/functions/{functionId}/executions/{executionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/functions/list-executions.md b/docs/examples/1.8.x/client-rest/examples/functions/list-executions.md index 445ed1fa83..47d3f528fd 100644 --- a/docs/examples/1.8.x/client-rest/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-rest/examples/functions/list-executions.md @@ -1,6 +1,8 @@ +```http GET /v1/functions/{functionId}/executions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/graphql/mutation.md b/docs/examples/1.8.x/client-rest/examples/graphql/mutation.md index 4080765d58..a38dd1a550 100644 --- a/docs/examples/1.8.x/client-rest/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/client-rest/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```http POST /v1/graphql/mutation HTTP/1.1 Host: cloud.appwrite.io X-Sdk-Graphql: true @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "query": {} } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/graphql/query.md b/docs/examples/1.8.x/client-rest/examples/graphql/query.md index b05ce724c8..e518d3c605 100644 --- a/docs/examples/1.8.x/client-rest/examples/graphql/query.md +++ b/docs/examples/1.8.x/client-rest/examples/graphql/query.md @@ -1,3 +1,4 @@ +```http POST /v1/graphql HTTP/1.1 Host: cloud.appwrite.io X-Sdk-Graphql: true @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "query": {} } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/get.md b/docs/examples/1.8.x/client-rest/examples/locale/get.md index 8f8a1741e6..11f4b602b9 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/get.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/get.md @@ -1,6 +1,8 @@ +```http GET /v1/locale HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-codes.md b/docs/examples/1.8.x/client-rest/examples/locale/list-codes.md index 61110f6527..8496490b0b 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-codes.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/codes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-continents.md b/docs/examples/1.8.x/client-rest/examples/locale/list-continents.md index cb96cc4e16..d2dd95aebc 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-continents.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/continents HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-rest/examples/locale/list-countries-eu.md index d4de74a879..56d1bb8e5d 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-countries-eu.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/countries/eu HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-rest/examples/locale/list-countries-phones.md index 0e1ed67a7d..016fbe5332 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-countries-phones.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/countries/phones HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-countries.md b/docs/examples/1.8.x/client-rest/examples/locale/list-countries.md index 58e487a875..a8ebdbacf7 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-countries.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/countries HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-rest/examples/locale/list-currencies.md index a3a9b96c48..e79a20192a 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-currencies.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/currencies HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/locale/list-languages.md b/docs/examples/1.8.x/client-rest/examples/locale/list-languages.md index 8c7cbabddf..67902630a6 100644 --- a/docs/examples/1.8.x/client-rest/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-rest/examples/locale/list-languages.md @@ -1,6 +1,8 @@ +```http GET /v1/locale/languages HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-rest/examples/messaging/create-subscriber.md index 708ec0782a..11ba26222e 100644 --- a/docs/examples/1.8.x/client-rest/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-rest/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/topics/{topicId}/subscribers HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Session: "subscriberId": "", "targetId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-rest/examples/messaging/delete-subscriber.md index 1cb9c3e516..f7a47aaa1c 100644 --- a/docs/examples/1.8.x/client-rest/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-rest/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```http DELETE /v1/messaging/topics/{topicId}/subscribers/{subscriberId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-JWT: X-Appwrite-Session: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/create-file.md b/docs/examples/1.8.x/client-rest/examples/storage/create-file.md index 150801a22f..147fd5d44b 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```http POST /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -23,3 +24,4 @@ Content-Disposition: form-data; name="permissions[]" ["read(\"any\")"] --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/delete-file.md b/docs/examples/1.8.x/client-rest/examples/storage/delete-file.md index e00392a525..f45c3d6ee4 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```http DELETE /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-rest/examples/storage/get-file-download.md index 92991d0727..997d998947 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/get-file-download.md @@ -1,6 +1,8 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/download HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-rest/examples/storage/get-file-preview.md index e84dd4dd85..a3394ec756 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/get-file-preview.md @@ -1,6 +1,8 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/preview HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-rest/examples/storage/get-file-view.md index f482706f6f..f8d688865c 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/get-file-view.md @@ -1,6 +1,8 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/view HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/get-file.md b/docs/examples/1.8.x/client-rest/examples/storage/get-file.md index 4f929caadf..482cfb7a0e 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/get-file.md @@ -1,6 +1,8 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/list-files.md b/docs/examples/1.8.x/client-rest/examples/storage/list-files.md index 977bb9e713..523a45235f 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/list-files.md @@ -1,6 +1,8 @@ +```http GET /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/storage/update-file.md b/docs/examples/1.8.x/client-rest/examples/storage/update-file.md index fed35bb860..eac6bf8301 100644 --- a/docs/examples/1.8.x/client-rest/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-rest/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```http PUT /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "name": "", "permissions": ["read(\"any\")"] } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-operations.md index dd3a05e271..69155684ef 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/transactions/{transactionId}/operations HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -19,3 +20,4 @@ X-Appwrite-JWT: } ] } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-row.md index 2abe0cc316..0ab4d67a66 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-transaction.md index e796ea2b57..05f60baa20 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/transactions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "ttl": 60 } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/decrement-row-column.md index b8dd25fdc5..2dd325506a 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId}/{column}/decrement HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "min": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-row.md index 908bc4cc1f..6676d84991 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-transaction.md index 54421d1c47..f7f24e7fa9 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/get-row.md index 8c2187f696..b52eb187b8 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/get-row.md @@ -1,6 +1,8 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/get-transaction.md index 4276a3fb94..ba5ee99479 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/get-transaction.md @@ -1,6 +1,8 @@ +```http GET /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/increment-row-column.md index be9effd073..4a0333f36f 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId}/{column}/increment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "max": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/list-rows.md index 0d69509ca6..31f53bd045 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/list-rows.md @@ -1,6 +1,8 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/list-transactions.md index 91b6108463..17c01970ec 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/list-transactions.md @@ -1,6 +1,8 @@ +```http GET /v1/tablesdb/transactions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/update-row.md index 8f66400634..de2316af89 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/update-transaction.md index f0f96d735f..db9372fb4f 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "commit": false, "rollback": false } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-rest/examples/tablesdb/upsert-row.md index 3da7011225..553db3d95b 100644 --- a/docs/examples/1.8.x/client-rest/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-rest/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```http PUT /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/create-membership.md b/docs/examples/1.8.x/client-rest/examples/teams/create-membership.md index f96f20c2b8..eac77d8a57 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```http POST /v1/teams/{teamId}/memberships HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-JWT: "url": "https://example.com", "name": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/create.md b/docs/examples/1.8.x/client-rest/examples/teams/create.md index 33cf95ba01..66bcfa394c 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/create.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/create.md @@ -1,3 +1,4 @@ +```http POST /v1/teams HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "name": "", "roles": [] } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-rest/examples/teams/delete-membership.md index 8da481d5cf..c03c4a39b7 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```http DELETE /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/delete.md b/docs/examples/1.8.x/client-rest/examples/teams/delete.md index d1dc59c23a..c612710579 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/get-membership.md b/docs/examples/1.8.x/client-rest/examples/teams/get-membership.md index 6e7379b0d7..784840527e 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/get-membership.md @@ -1,6 +1,8 @@ +```http GET /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-rest/examples/teams/get-prefs.md index e541fd3fd8..d993b87dfe 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/get-prefs.md @@ -1,6 +1,8 @@ +```http GET /v1/teams/{teamId}/prefs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/get.md b/docs/examples/1.8.x/client-rest/examples/teams/get.md index 32d9156267..96cd35b4b7 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/get.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/get.md @@ -1,6 +1,8 @@ +```http GET /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-rest/examples/teams/list-memberships.md index 4e364053b3..74ccf3928d 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/list-memberships.md @@ -1,6 +1,8 @@ +```http GET /v1/teams/{teamId}/memberships HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/list.md b/docs/examples/1.8.x/client-rest/examples/teams/list.md index e5f0439a13..12bdd4dcc1 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/list.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/list.md @@ -1,6 +1,8 @@ +```http GET /v1/teams HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-rest/examples/teams/update-membership-status.md index da2c9189cd..95c2a951cd 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/teams/{teamId}/memberships/{membershipId}/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/update-membership.md b/docs/examples/1.8.x/client-rest/examples/teams/update-membership.md index b1010ea460..23f868e212 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```http PATCH /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "roles": [] } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/update-name.md b/docs/examples/1.8.x/client-rest/examples/teams/update-name.md index cd92d686ce..9a5d2d4b4e 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```http PUT /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "name": "" } +``` diff --git a/docs/examples/1.8.x/client-rest/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-rest/examples/teams/update-prefs.md index e17dcdb260..53ca8ac8ce 100644 --- a/docs/examples/1.8.x/client-rest/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-rest/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```http PUT /v1/teams/{teamId}/prefs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "prefs": {} } +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/client-web/examples/account/create-anonymous-session.md index 42279c0312..818f50a408 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createAnonymousSession(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-email-password-session.md b/docs/examples/1.8.x/client-web/examples/account/create-email-password-session.md index 26a745a6b2..4010b91f36 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createEmailPasswordSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-email-token.md b/docs/examples/1.8.x/client-web/examples/account/create-email-token.md index e0c4cdaaf8..940a7f7012 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createEmailToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-email-verification.md b/docs/examples/1.8.x/client-web/examples/account/create-email-verification.md index 8f93533c35..a3e378d238 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-jwt.md b/docs/examples/1.8.x/client-web/examples/account/create-jwt.md index 80d6baea8e..0ba2d26617 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createJWT({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/client-web/examples/account/create-magic-url-token.md index 16d35672b4..59d1aaf03d 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.createMagicURLToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/client-web/examples/account/create-mfa-authenticator.md index 154be4e185..cf6a609805 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/client-web/examples/account/create-mfa-challenge.md index 1328305538..d9d9856d42 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticationFactor } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/client-web/examples/account/create-mfa-recovery-codes.md index d9041f273d..3c292f26b8 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-session.md index b451e25e5e..734b697291 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Session({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-token.md index 0fce114dc6..f6187249fa 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Token({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-phone-token.md b/docs/examples/1.8.x/client-web/examples/account/create-phone-token.md index 60d032ef51..78812e3348 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createPhoneToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-phone-verification.md b/docs/examples/1.8.x/client-web/examples/account/create-phone-verification.md index 00373a3dd4..9c0ea14325 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createPhoneVerification(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-push-target.md b/docs/examples/1.8.x/client-web/examples/account/create-push-target.md index 1f973e1b46..39f4d48a34 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createPushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-recovery.md b/docs/examples/1.8.x/client-web/examples/account/create-recovery.md index 2195ed93d5..0f4e7a9191 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-session.md b/docs/examples/1.8.x/client-web/examples/account/create-session.md index 4858f9f2e0..1639c12c75 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create-verification.md b/docs/examples/1.8.x/client-web/examples/account/create-verification.md index 0325e40581..0795d0ac06 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/create.md b/docs/examples/1.8.x/client-web/examples/account/create.md index dbb374daf3..a78197cde9 100644 --- a/docs/examples/1.8.x/client-web/examples/account/create.md +++ b/docs/examples/1.8.x/client-web/examples/account/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/delete-identity.md b/docs/examples/1.8.x/client-web/examples/account/delete-identity.md index 48434496d2..d63addb7ca 100644 --- a/docs/examples/1.8.x/client-web/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/client-web/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteIdentity({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/client-web/examples/account/delete-mfa-authenticator.md index 2b1a8785fd..079f0b95b1 100644 --- a/docs/examples/1.8.x/client-web/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-web/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/delete-push-target.md b/docs/examples/1.8.x/client-web/examples/account/delete-push-target.md index 1a09b32ad1..38d0ed5afd 100644 --- a/docs/examples/1.8.x/client-web/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/client-web/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deletePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/delete-session.md b/docs/examples/1.8.x/client-web/examples/account/delete-session.md index bf17ffce8b..9d2b8f3e96 100644 --- a/docs/examples/1.8.x/client-web/examples/account/delete-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/delete-sessions.md b/docs/examples/1.8.x/client-web/examples/account/delete-sessions.md index c0fdf13924..d7df883e8b 100644 --- a/docs/examples/1.8.x/client-web/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/client-web/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.deleteSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/client-web/examples/account/get-mfa-recovery-codes.md index 527ebd9dab..1d10258316 100644 --- a/docs/examples/1.8.x/client-web/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-web/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/get-prefs.md b/docs/examples/1.8.x/client-web/examples/account/get-prefs.md index f283832896..9e2d5e25c2 100644 --- a/docs/examples/1.8.x/client-web/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/client-web/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getPrefs(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/get-session.md b/docs/examples/1.8.x/client-web/examples/account/get-session.md index 8c4bdd79f6..83ac4b0a09 100644 --- a/docs/examples/1.8.x/client-web/examples/account/get-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/get-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.getSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/get.md b/docs/examples/1.8.x/client-web/examples/account/get.md index ea605914ce..0b6c59e381 100644 --- a/docs/examples/1.8.x/client-web/examples/account/get.md +++ b/docs/examples/1.8.x/client-web/examples/account/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/list-identities.md b/docs/examples/1.8.x/client-web/examples/account/list-identities.md index 22858c2c96..8dee4b39ea 100644 --- a/docs/examples/1.8.x/client-web/examples/account/list-identities.md +++ b/docs/examples/1.8.x/client-web/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listIdentities({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/list-logs.md b/docs/examples/1.8.x/client-web/examples/account/list-logs.md index 3dc4f4df1e..91be728fd5 100644 --- a/docs/examples/1.8.x/client-web/examples/account/list-logs.md +++ b/docs/examples/1.8.x/client-web/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/client-web/examples/account/list-mfa-factors.md index 80151d977c..9950129bb4 100644 --- a/docs/examples/1.8.x/client-web/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/client-web/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listMFAFactors(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/list-sessions.md b/docs/examples/1.8.x/client-web/examples/account/list-sessions.md index 453e606517..2dae748840 100644 --- a/docs/examples/1.8.x/client-web/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/client-web/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-email-verification.md b/docs/examples/1.8.x/client-web/examples/account/update-email-verification.md index 4f1e03f3c6..f3e8b61919 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-email.md b/docs/examples/1.8.x/client-web/examples/account/update-email.md index 96dcec5bdf..0bd7d36cfd 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-email.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/client-web/examples/account/update-magic-url-session.md index c126f7ce80..d059871955 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMagicURLSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/client-web/examples/account/update-mfa-authenticator.md index f5ce65eeab..bf25c76bad 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/client-web/examples/account/update-mfa-challenge.md index 016533c09b..a16ea43ace 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/client-web/examples/account/update-mfa-recovery-codes.md index 3ab0385027..8bc8273c5d 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-mfa.md b/docs/examples/1.8.x/client-web/examples/account/update-mfa.md index 4d20604da4..f17ca2b1e3 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateMFA({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-name.md b/docs/examples/1.8.x/client-web/examples/account/update-name.md index 6a9ba82cdc..3e184d7583 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-name.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-password.md b/docs/examples/1.8.x/client-web/examples/account/update-password.md index 743335b8ba..360c577f39 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-password.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-password.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePassword({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-phone-session.md b/docs/examples/1.8.x/client-web/examples/account/update-phone-session.md index 39d0d36533..5352cf0af6 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-phone-verification.md b/docs/examples/1.8.x/client-web/examples/account/update-phone-verification.md index 6be1b777a4..2ddd0f13e2 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-phone.md b/docs/examples/1.8.x/client-web/examples/account/update-phone.md index 912b2e5256..9f640a128f 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-phone.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhone({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-prefs.md b/docs/examples/1.8.x/client-web/examples/account/update-prefs.md index 8ca2678a7a..ca2841b756 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await account.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-push-target.md b/docs/examples/1.8.x/client-web/examples/account/update-push-target.md index 57fdd6b1ef..7c14aa3b68 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-recovery.md b/docs/examples/1.8.x/client-web/examples/account/update-recovery.md index d975647a30..e08d48cb29 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.updateRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-session.md b/docs/examples/1.8.x/client-web/examples/account/update-session.md index 4c9890b216..9159580f28 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-session.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-status.md b/docs/examples/1.8.x/client-web/examples/account/update-status.md index 932f167033..ac2aa48e9c 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-status.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateStatus(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/account/update-verification.md b/docs/examples/1.8.x/client-web/examples/account/update-verification.md index b5fea5c9d6..3b52a83c51 100644 --- a/docs/examples/1.8.x/client-web/examples/account/update-verification.md +++ b/docs/examples/1.8.x/client-web/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-browser.md b/docs/examples/1.8.x/client-web/examples/avatars/get-browser.md index a0deff3fbc..d4c1a40fbb 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Browser } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getBrowser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/client-web/examples/avatars/get-credit-card.md index af0599ace5..57758501a7 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, CreditCard } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getCreditCard({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-favicon.md b/docs/examples/1.8.x/client-web/examples/avatars/get-favicon.md index 2e976c6436..8b09f65ff6 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = avatars.getFavicon({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-flag.md b/docs/examples/1.8.x/client-web/examples/avatars/get-flag.md index 76e7733e8c..d24b9b4075 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Flag } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getFlag({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-image.md b/docs/examples/1.8.x/client-web/examples/avatars/get-image.md index b8fe0f08b1..f8f33731bf 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = avatars.getImage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-initials.md b/docs/examples/1.8.x/client-web/examples/avatars/get-initials.md index 01c183031b..0722a72df6 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getInitials({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-qr.md b/docs/examples/1.8.x/client-web/examples/avatars/get-qr.md index 53202d8cd4..829c712143 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getQR({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/client-web/examples/avatars/get-screenshot.md index f1154413b1..8804b1e837 100644 --- a/docs/examples/1.8.x/client-web/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/client-web/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "appwrite"; const client = new Client() @@ -33,3 +34,4 @@ const result = avatars.getScreenshot({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/create-document.md b/docs/examples/1.8.x/client-web/examples/databases/create-document.md index 8c1b0ec03a..4d8d7f90e8 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/create-document.md +++ b/docs/examples/1.8.x/client-web/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/create-operations.md b/docs/examples/1.8.x/client-web/examples/databases/create-operations.md index 2ebc085d44..48c74718a3 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/client-web/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/create-transaction.md b/docs/examples/1.8.x/client-web/examples/databases/create-transaction.md index 5371412cc9..eab2aa52e7 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/client-web/examples/databases/decrement-document-attribute.md index f8e0ae9829..c657bd4939 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/client-web/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.decrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/delete-document.md b/docs/examples/1.8.x/client-web/examples/databases/delete-document.md index 4d10afdac5..9566508871 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/client-web/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.deleteDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/delete-transaction.md b/docs/examples/1.8.x/client-web/examples/databases/delete-transaction.md index afe55c547a..2e41d9bedb 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/get-document.md b/docs/examples/1.8.x/client-web/examples/databases/get-document.md index 5a44aeb73e..ad11eb8d4b 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/get-document.md +++ b/docs/examples/1.8.x/client-web/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.getDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/get-transaction.md b/docs/examples/1.8.x/client-web/examples/databases/get-transaction.md index cc51199a76..2419a8c02d 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/client-web/examples/databases/increment-document-attribute.md index eaf718e98d..51eec6d562 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/client-web/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.incrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/list-documents.md b/docs/examples/1.8.x/client-web/examples/databases/list-documents.md index a566c1ecfb..42dd36f667 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/client-web/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.listDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/list-transactions.md b/docs/examples/1.8.x/client-web/examples/databases/list-transactions.md index f2ce1f7536..6a74afc04b 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/client-web/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/update-document.md b/docs/examples/1.8.x/client-web/examples/databases/update-document.md index 8b1f8a8079..df5651d892 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/update-document.md +++ b/docs/examples/1.8.x/client-web/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.updateDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/update-transaction.md b/docs/examples/1.8.x/client-web/examples/databases/update-transaction.md index 9274b0f9bf..5a50ef67c9 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/databases/upsert-document.md b/docs/examples/1.8.x/client-web/examples/databases/upsert-document.md index 5a9ade4086..212964a6b4 100644 --- a/docs/examples/1.8.x/client-web/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/client-web/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.upsertDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/functions/create-execution.md b/docs/examples/1.8.x/client-web/examples/functions/create-execution.md index b8c955b8ec..2924115105 100644 --- a/docs/examples/1.8.x/client-web/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/client-web/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, ExecutionMethod } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await functions.createExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/functions/get-execution.md b/docs/examples/1.8.x/client-web/examples/functions/get-execution.md index 1e9a367df5..a9b22e296a 100644 --- a/docs/examples/1.8.x/client-web/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/client-web/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/functions/list-executions.md b/docs/examples/1.8.x/client-web/examples/functions/list-executions.md index daddf56f89..55aa3cb790 100644 --- a/docs/examples/1.8.x/client-web/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/client-web/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await functions.listExecutions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/graphql/mutation.md b/docs/examples/1.8.x/client-web/examples/graphql/mutation.md index 5771af061a..a0230ef647 100644 --- a/docs/examples/1.8.x/client-web/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/client-web/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.mutation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/graphql/query.md b/docs/examples/1.8.x/client-web/examples/graphql/query.md index c367d07d3e..bef786ab28 100644 --- a/docs/examples/1.8.x/client-web/examples/graphql/query.md +++ b/docs/examples/1.8.x/client-web/examples/graphql/query.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.query({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/get.md b/docs/examples/1.8.x/client-web/examples/locale/get.md index bdd74722f4..95e92c4c37 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/get.md +++ b/docs/examples/1.8.x/client-web/examples/locale/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-codes.md b/docs/examples/1.8.x/client-web/examples/locale/list-codes.md index 547bb056c0..d6e9d33b0e 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-continents.md b/docs/examples/1.8.x/client-web/examples/locale/list-continents.md index 217ffc116c..6af2b7f4a2 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listContinents(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/client-web/examples/locale/list-countries-eu.md index 515a3040ab..92b3fa087e 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesEU(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/client-web/examples/locale/list-countries-phones.md index 72a6a31d08..517a19a3ca 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesPhones(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-countries.md b/docs/examples/1.8.x/client-web/examples/locale/list-countries.md index a127521f36..f92f9985f4 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountries(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-currencies.md b/docs/examples/1.8.x/client-web/examples/locale/list-currencies.md index e6ff0e1fce..50c0f22207 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCurrencies(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/locale/list-languages.md b/docs/examples/1.8.x/client-web/examples/locale/list-languages.md index 03b4e7d2c1..a3afe00146 100644 --- a/docs/examples/1.8.x/client-web/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/client-web/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "appwrite"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listLanguages(); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/client-web/examples/messaging/create-subscriber.md index 59b760358e..c29c2f718a 100644 --- a/docs/examples/1.8.x/client-web/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/client-web/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.createSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/client-web/examples/messaging/delete-subscriber.md index dfe2d0688c..acd0be5197 100644 --- a/docs/examples/1.8.x/client-web/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/client-web/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await messaging.deleteSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/create-file.md b/docs/examples/1.8.x/client-web/examples/storage/create-file.md index 565f6ee435..b70885b2c9 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/create-file.md +++ b/docs/examples/1.8.x/client-web/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.createFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/delete-file.md b/docs/examples/1.8.x/client-web/examples/storage/delete-file.md index 101b87860b..950003b842 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/client-web/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.deleteFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/get-file-download.md b/docs/examples/1.8.x/client-web/examples/storage/get-file-download.md index 8454be442a..7758c7b491 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/client-web/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileDownload({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/get-file-preview.md b/docs/examples/1.8.x/client-web/examples/storage/get-file-preview.md index c4e855b207..4d01ef0cee 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/client-web/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, ImageGravity, ImageFormat } from "appwrite"; const client = new Client() @@ -24,3 +25,4 @@ const result = storage.getFilePreview({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/get-file-view.md b/docs/examples/1.8.x/client-web/examples/storage/get-file-view.md index edc28f146b..682e947c42 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/client-web/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileView({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/get-file.md b/docs/examples/1.8.x/client-web/examples/storage/get-file.md index 41c41b63d1..8260714065 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/get-file.md +++ b/docs/examples/1.8.x/client-web/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.getFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/list-files.md b/docs/examples/1.8.x/client-web/examples/storage/list-files.md index 70bc0e0f01..f2dd2f442e 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/list-files.md +++ b/docs/examples/1.8.x/client-web/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.listFiles({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/storage/update-file.md b/docs/examples/1.8.x/client-web/examples/storage/update-file.md index 1f1c460fc0..eef78a1d61 100644 --- a/docs/examples/1.8.x/client-web/examples/storage/update-file.md +++ b/docs/examples/1.8.x/client-web/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.updateFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/client-web/examples/tablesdb/create-operations.md index c25b051430..739b4e624a 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md index 2f786b7138..105c4445c8 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/client-web/examples/tablesdb/create-transaction.md index 17787dc9a3..333eb80e56 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md index d6c64645f3..bad89263cc 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.decrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md index 54c005c702..1266328673 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.deleteRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-transaction.md index 2ff1198225..0c98481cbb 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md index b345d145aa..14316385a8 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.getRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/client-web/examples/tablesdb/get-transaction.md index 8e2f24cd4c..00e72497f2 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md index 5baca80c35..2fa3354b9d 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.incrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md index 8b1120c913..c6472a0b8e 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.listRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/client-web/examples/tablesdb/list-transactions.md index fbf0908a81..b64485188f 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md index c0656d36b3..77a775b34c 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.updateRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/client-web/examples/tablesdb/update-transaction.md index 2d987e4235..80a8b89d90 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md index c4eb5c3c75..fb971043c8 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.upsertRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/create-membership.md b/docs/examples/1.8.x/client-web/examples/teams/create-membership.md index f4b5c61b18..a9ad199373 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/client-web/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "appwrite"; const client = new Client() @@ -17,3 +18,4 @@ const result = await teams.createMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/create.md b/docs/examples/1.8.x/client-web/examples/teams/create.md index a156156b0c..2c72bcdfb0 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/create.md +++ b/docs/examples/1.8.x/client-web/examples/teams/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/delete-membership.md b/docs/examples/1.8.x/client-web/examples/teams/delete-membership.md index 95e5fde3a4..2fe1327896 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/client-web/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.deleteMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/delete.md b/docs/examples/1.8.x/client-web/examples/teams/delete.md index 7299f0f791..054e34efe7 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/delete.md +++ b/docs/examples/1.8.x/client-web/examples/teams/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/get-membership.md b/docs/examples/1.8.x/client-web/examples/teams/get-membership.md index a6d4186b65..bdd6c7844e 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/client-web/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.getMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/get-prefs.md b/docs/examples/1.8.x/client-web/examples/teams/get-prefs.md index 98c7605639..bf20ed4716 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/client-web/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.getPrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/get.md b/docs/examples/1.8.x/client-web/examples/teams/get.md index c910429fd6..836a8e08df 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/get.md +++ b/docs/examples/1.8.x/client-web/examples/teams/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/list-memberships.md b/docs/examples/1.8.x/client-web/examples/teams/list-memberships.md index 588995bae9..fd3fcd30dd 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/client-web/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.listMemberships({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/list.md b/docs/examples/1.8.x/client-web/examples/teams/list.md index f18f5babca..3406925f45 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/list.md +++ b/docs/examples/1.8.x/client-web/examples/teams/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/update-membership-status.md b/docs/examples/1.8.x/client-web/examples/teams/update-membership-status.md index 8fe61083a8..2ca1c62dce 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/client-web/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.updateMembershipStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/update-membership.md b/docs/examples/1.8.x/client-web/examples/teams/update-membership.md index efb0cfc306..78e5fd00ab 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/client-web/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "appwrite"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.updateMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/update-name.md b/docs/examples/1.8.x/client-web/examples/teams/update-name.md index db1ff4c4ca..dce1107813 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/update-name.md +++ b/docs/examples/1.8.x/client-web/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/client-web/examples/teams/update-prefs.md b/docs/examples/1.8.x/client-web/examples/teams/update-prefs.md index 0844353546..2c8a15a187 100644 --- a/docs/examples/1.8.x/client-web/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/client-web/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "appwrite"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/console-cli/examples/account/create-anonymous-session.md index b6f2432c21..49dd12f6a0 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-anonymous-session.md @@ -1 +1,3 @@ +```bash appwrite account create-anonymous-session +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-email-password-session.md b/docs/examples/1.8.x/console-cli/examples/account/create-email-password-session.md index b13874c732..ed06589175 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-email-password-session.md @@ -1,3 +1,5 @@ +```bash appwrite account create-email-password-session \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-email-token.md b/docs/examples/1.8.x/console-cli/examples/account/create-email-token.md index 1902e8b24a..766351d977 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-email-token.md @@ -1,3 +1,5 @@ +```bash appwrite account create-email-token \ --user-id \ --email email@example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-email-verification.md b/docs/examples/1.8.x/console-cli/examples/account/create-email-verification.md index f9f37f2f8f..c2a163663b 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-email-verification.md @@ -1,2 +1,4 @@ +```bash appwrite account create-email-verification \ --url https://example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-jwt.md b/docs/examples/1.8.x/console-cli/examples/account/create-jwt.md index f2d656958a..71e806a0c2 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-jwt.md @@ -1 +1,3 @@ +```bash appwrite account create-jwt +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/console-cli/examples/account/create-magic-url-token.md index 4f16a8b289..137a85eb16 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-magic-url-token.md @@ -1,3 +1,5 @@ +```bash appwrite account create-magic-url-token \ --user-id \ --email email@example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-authenticator.md index a45427677d..50edfe7c8c 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-authenticator.md @@ -1,2 +1,4 @@ +```bash appwrite account create-mfa-authenticator \ --type totp +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-challenge.md index 24bab3d672..10b45c59c8 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-challenge.md @@ -1,2 +1,4 @@ +```bash appwrite account create-mfa-challenge \ --factor email +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-recovery-codes.md index 4f165d9080..9b4ec5a53e 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-mfa-recovery-codes.md @@ -1 +1,3 @@ +```bash appwrite account create-mfa-recovery-codes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-session.md index fda2faacaa..d0e18ffe2c 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-session.md @@ -1,2 +1,4 @@ +```bash appwrite account create-o-auth-2-session \ --provider amazon +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-token.md index 7fff73f564..d634cdbe95 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-o-auth-2-token.md @@ -1,2 +1,4 @@ +```bash appwrite account create-o-auth-2-token \ --provider amazon +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-phone-token.md b/docs/examples/1.8.x/console-cli/examples/account/create-phone-token.md index 619478c65f..6ff7361167 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-phone-token.md @@ -1,3 +1,5 @@ +```bash appwrite account create-phone-token \ --user-id \ --phone +12065550100 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-phone-verification.md b/docs/examples/1.8.x/console-cli/examples/account/create-phone-verification.md index b5a95ed987..913a29d4d3 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-phone-verification.md @@ -1 +1,3 @@ +```bash appwrite account create-phone-verification +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-push-target.md b/docs/examples/1.8.x/console-cli/examples/account/create-push-target.md index 1ba6fe304e..58c3c7059e 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-push-target.md @@ -1,3 +1,5 @@ +```bash appwrite account create-push-target \ --target-id \ --identifier +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-recovery.md b/docs/examples/1.8.x/console-cli/examples/account/create-recovery.md index d6977de8d4..0b2a43f982 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-recovery.md @@ -1,3 +1,5 @@ +```bash appwrite account create-recovery \ --email email@example.com \ --url https://example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-session.md b/docs/examples/1.8.x/console-cli/examples/account/create-session.md index eefeb3504e..494b23de3b 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-session.md @@ -1,3 +1,5 @@ +```bash appwrite account create-session \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create-verification.md b/docs/examples/1.8.x/console-cli/examples/account/create-verification.md index 6e972f2f7a..f06a4ab902 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create-verification.md @@ -1,2 +1,4 @@ +```bash appwrite account create-verification \ --url https://example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/create.md b/docs/examples/1.8.x/console-cli/examples/account/create.md index 56eca76d49..f4fd9643cb 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/create.md +++ b/docs/examples/1.8.x/console-cli/examples/account/create.md @@ -1,4 +1,6 @@ +```bash appwrite account create \ --user-id \ --email email@example.com \ --password '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete-identity.md b/docs/examples/1.8.x/console-cli/examples/account/delete-identity.md index 650ab7bf1c..6bda9b98b8 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete-identity.md @@ -1,2 +1,4 @@ +```bash appwrite account delete-identity \ --identity-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/console-cli/examples/account/delete-mfa-authenticator.md index e3689b17a0..441afcda4a 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete-mfa-authenticator.md @@ -1,2 +1,4 @@ +```bash appwrite account delete-mfa-authenticator \ --type totp +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete-push-target.md b/docs/examples/1.8.x/console-cli/examples/account/delete-push-target.md index 04f94f64dd..0236975be9 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete-push-target.md @@ -1,2 +1,4 @@ +```bash appwrite account delete-push-target \ --target-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete-session.md b/docs/examples/1.8.x/console-cli/examples/account/delete-session.md index 6476fd9aa5..707061baf6 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete-session.md @@ -1,2 +1,4 @@ +```bash appwrite account delete-session \ --session-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete-sessions.md b/docs/examples/1.8.x/console-cli/examples/account/delete-sessions.md index 7381069181..45e5ac4ce6 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete-sessions.md @@ -1 +1,3 @@ +```bash appwrite account delete-sessions +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/delete.md b/docs/examples/1.8.x/console-cli/examples/account/delete.md index dac412f7c2..c36a9a65d2 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/account/delete.md @@ -1 +1,3 @@ +```bash appwrite account delete +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/account/get-mfa-recovery-codes.md index 01a2f35e5c..ca5e236b48 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/account/get-mfa-recovery-codes.md @@ -1 +1,3 @@ +```bash appwrite account get-mfa-recovery-codes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/get-prefs.md b/docs/examples/1.8.x/console-cli/examples/account/get-prefs.md index 5796c083ed..fa4fa6949f 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/account/get-prefs.md @@ -1 +1,3 @@ +```bash appwrite account get-prefs +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/get-session.md b/docs/examples/1.8.x/console-cli/examples/account/get-session.md index 9901eb244e..6c73fe4b0c 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/get-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/get-session.md @@ -1,2 +1,4 @@ +```bash appwrite account get-session \ --session-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/get.md b/docs/examples/1.8.x/console-cli/examples/account/get.md index c8b46e34c7..010ec709b1 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/get.md +++ b/docs/examples/1.8.x/console-cli/examples/account/get.md @@ -1 +1,3 @@ +```bash appwrite account get +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/list-identities.md b/docs/examples/1.8.x/console-cli/examples/account/list-identities.md index 095dcc479e..583d515c99 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/list-identities.md +++ b/docs/examples/1.8.x/console-cli/examples/account/list-identities.md @@ -1 +1,3 @@ +```bash appwrite account list-identities +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/list-logs.md b/docs/examples/1.8.x/console-cli/examples/account/list-logs.md index 73fb9b629d..2414a8aa74 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/list-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/account/list-logs.md @@ -1 +1,3 @@ +```bash appwrite account list-logs +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/console-cli/examples/account/list-mfa-factors.md index 6930f34747..9edf379ca4 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/console-cli/examples/account/list-mfa-factors.md @@ -1 +1,3 @@ +```bash appwrite account list-mfa-factors +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/list-sessions.md b/docs/examples/1.8.x/console-cli/examples/account/list-sessions.md index 1aca27baf4..f71db5daba 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/console-cli/examples/account/list-sessions.md @@ -1 +1,3 @@ +```bash appwrite account list-sessions +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-email-verification.md b/docs/examples/1.8.x/console-cli/examples/account/update-email-verification.md index 02ff32aa57..875dcbd2cc 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-email-verification.md @@ -1,3 +1,5 @@ +```bash appwrite account update-email-verification \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-email.md b/docs/examples/1.8.x/console-cli/examples/account/update-email.md index 9753a064fc..e4b69338e6 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-email.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-email.md @@ -1,3 +1,5 @@ +```bash appwrite account update-email \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/console-cli/examples/account/update-magic-url-session.md index 0bf9ed7d76..8c6a893c3a 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-magic-url-session.md @@ -1,3 +1,5 @@ +```bash appwrite account update-magic-url-session \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-authenticator.md index 838297ba43..3b82d41189 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-authenticator.md @@ -1,3 +1,5 @@ +```bash appwrite account update-mfa-authenticator \ --type totp \ --otp +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-challenge.md index 4a5c8fbf63..9cbd4eb3eb 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-challenge.md @@ -1,3 +1,5 @@ +```bash appwrite account update-mfa-challenge \ --challenge-id \ --otp +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-recovery-codes.md index 9e9ab074bd..21fce38841 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-mfa-recovery-codes.md @@ -1 +1,3 @@ +```bash appwrite account update-mfa-recovery-codes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-mfa.md b/docs/examples/1.8.x/console-cli/examples/account/update-mfa.md index fa122d9bde..77b324179e 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-mfa.md @@ -1,2 +1,4 @@ +```bash appwrite account update-mfa \ --mfa false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-name.md b/docs/examples/1.8.x/console-cli/examples/account/update-name.md index c858d0e378..1bbc72234c 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-name.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-name.md @@ -1,2 +1,4 @@ +```bash appwrite account update-name \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-password.md b/docs/examples/1.8.x/console-cli/examples/account/update-password.md index e4bbdfc4e9..db0c17642c 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-password.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-password.md @@ -1,2 +1,4 @@ +```bash appwrite account update-password \ --password '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-phone-session.md b/docs/examples/1.8.x/console-cli/examples/account/update-phone-session.md index 599a905367..8f2e75effa 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-phone-session.md @@ -1,3 +1,5 @@ +```bash appwrite account update-phone-session \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-phone-verification.md b/docs/examples/1.8.x/console-cli/examples/account/update-phone-verification.md index 59dde678eb..97b8152dcb 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-phone-verification.md @@ -1,3 +1,5 @@ +```bash appwrite account update-phone-verification \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-phone.md b/docs/examples/1.8.x/console-cli/examples/account/update-phone.md index 5c257c8455..8de216c48d 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-phone.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-phone.md @@ -1,3 +1,5 @@ +```bash appwrite account update-phone \ --phone +12065550100 \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-prefs.md b/docs/examples/1.8.x/console-cli/examples/account/update-prefs.md index 7b00d7bcfc..80fc7d8f62 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-prefs.md @@ -1,2 +1,4 @@ +```bash appwrite account update-prefs \ --prefs '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-push-target.md b/docs/examples/1.8.x/console-cli/examples/account/update-push-target.md index f71232af3e..5f7dad9a3f 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-push-target.md @@ -1,3 +1,5 @@ +```bash appwrite account update-push-target \ --target-id \ --identifier +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-recovery.md b/docs/examples/1.8.x/console-cli/examples/account/update-recovery.md index c2a97bda55..d4f70b2ca7 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-recovery.md @@ -1,4 +1,6 @@ +```bash appwrite account update-recovery \ --user-id \ --secret \ --password '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-session.md b/docs/examples/1.8.x/console-cli/examples/account/update-session.md index 36833c4674..550b2b27c1 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-session.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-session.md @@ -1,2 +1,4 @@ +```bash appwrite account update-session \ --session-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-status.md b/docs/examples/1.8.x/console-cli/examples/account/update-status.md index d27174920b..c6abeaa880 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-status.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-status.md @@ -1 +1,3 @@ +```bash appwrite account update-status +``` diff --git a/docs/examples/1.8.x/console-cli/examples/account/update-verification.md b/docs/examples/1.8.x/console-cli/examples/account/update-verification.md index d7276c6325..cac810bffd 100644 --- a/docs/examples/1.8.x/console-cli/examples/account/update-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/account/update-verification.md @@ -1,3 +1,5 @@ +```bash appwrite account update-verification \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/console/get-resource.md b/docs/examples/1.8.x/console-cli/examples/console/get-resource.md index 5251dd6ac6..cfda823ce0 100644 --- a/docs/examples/1.8.x/console-cli/examples/console/get-resource.md +++ b/docs/examples/1.8.x/console-cli/examples/console/get-resource.md @@ -1,3 +1,5 @@ +```bash appwrite console get-resource \ --value \ --type rules +``` diff --git a/docs/examples/1.8.x/console-cli/examples/console/variables.md b/docs/examples/1.8.x/console-cli/examples/console/variables.md index 1c67cf5ad8..044ea4bc75 100644 --- a/docs/examples/1.8.x/console-cli/examples/console/variables.md +++ b/docs/examples/1.8.x/console-cli/examples/console/variables.md @@ -1 +1,3 @@ +```bash appwrite console variables +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-boolean-attribute.md index ce4d65fa15..50e8f8ba60 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-boolean-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-boolean-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-collection.md b/docs/examples/1.8.x/console-cli/examples/databases/create-collection.md index 89a754ce24..307ec2b846 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-collection.md @@ -1,4 +1,6 @@ +```bash appwrite databases create-collection \ --database-id \ --collection-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-datetime-attribute.md index b445d0841a..01624cb32e 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-datetime-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-datetime-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-document.md b/docs/examples/1.8.x/console-cli/examples/databases/create-document.md index a45335ad4e..7da2d8d2ac 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-document.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-document.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-document \ --database-id \ --collection-id \ --document-id \ --data '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-documents.md b/docs/examples/1.8.x/console-cli/examples/databases/create-documents.md index 3512b684a7..d40b73d356 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-documents.md @@ -1,4 +1,6 @@ +```bash appwrite databases create-documents \ --database-id \ --collection-id \ --documents one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-email-attribute.md index e4e9a0ba18..2a8ae01901 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-email-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-email-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-enum-attribute.md index 2d4c72be0f..ce73284e03 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-enum-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases create-enum-attribute \ --database-id \ --collection-id \ --key '' \ --elements one two three \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-float-attribute.md index 0b9988b3a4..0c3f6e0979 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-float-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-float-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-index.md b/docs/examples/1.8.x/console-cli/examples/databases/create-index.md index cd8fc1dc4f..375a8c5385 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-index.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-index.md @@ -1,6 +1,8 @@ +```bash appwrite databases create-index \ --database-id \ --collection-id \ --key '' \ --type key \ --attributes one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-integer-attribute.md index 4c2207e891..bbbe822810 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-integer-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-integer-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-ip-attribute.md index a1cd44e80c..a8d6653ede 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-ip-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-ip-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-line-attribute.md index f0d81ede67..00865e1bdb 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-line-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-line-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-longtext-attribute.md index 884ba9d5e2..236f64d04f 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-longtext-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-longtext-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-mediumtext-attribute.md index f937072f36..4bf67d1db6 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-mediumtext-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-mediumtext-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-operations.md b/docs/examples/1.8.x/console-cli/examples/databases/create-operations.md index 367b435c9d..60a2f590d3 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-operations.md @@ -1,2 +1,4 @@ +```bash appwrite databases create-operations \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-point-attribute.md index 926c7318e0..e4eeec986f 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-point-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-point-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-polygon-attribute.md index f0a00c744f..bf7336e92f 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-polygon-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-polygon-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-relationship-attribute.md index 700316239c..e33d1f87a1 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-relationship-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-relationship-attribute \ --database-id \ --collection-id \ --related-collection-id \ --type oneToOne +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-string-attribute.md index ed464c59dc..10be1998b8 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-string-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases create-string-attribute \ --database-id \ --collection-id \ --key '' \ --size 1 \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-text-attribute.md index 85cc370914..7113cfd4b3 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-text-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-text-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-transaction.md b/docs/examples/1.8.x/console-cli/examples/databases/create-transaction.md index ef348e75ad..21449ce882 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-transaction.md @@ -1 +1,3 @@ +```bash appwrite databases create-transaction +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-url-attribute.md index 6968e8c621..147aee2f89 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-url-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases create-url-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/create-varchar-attribute.md index 07dea67ccb..2cd15f99ec 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create-varchar-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases create-varchar-attribute \ --database-id \ --collection-id \ --key '' \ --size 1 \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/create.md b/docs/examples/1.8.x/console-cli/examples/databases/create.md index 47b0438352..0a3bd51232 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/create.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/create.md @@ -1,3 +1,5 @@ +```bash appwrite databases create \ --database-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/decrement-document-attribute.md index 0b9b8a6b75..92ae1d896e 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/decrement-document-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases decrement-document-attribute \ --database-id \ --collection-id \ --document-id \ --attribute '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-attribute.md index 0d68358642..79b7db7a09 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-attribute.md @@ -1,4 +1,6 @@ +```bash appwrite databases delete-attribute \ --database-id \ --collection-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-collection.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-collection.md index d120865c8d..7687e9a9f2 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-collection.md @@ -1,3 +1,5 @@ +```bash appwrite databases delete-collection \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-document.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-document.md index 8e900198e7..e0c779e68e 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-document.md @@ -1,4 +1,6 @@ +```bash appwrite databases delete-document \ --database-id \ --collection-id \ --document-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-documents.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-documents.md index b334ed7212..081420c54b 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-documents.md @@ -1,3 +1,5 @@ +```bash appwrite databases delete-documents \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-index.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-index.md index 2de11d36f3..2c5ec4e26a 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-index.md @@ -1,4 +1,6 @@ +```bash appwrite databases delete-index \ --database-id \ --collection-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete-transaction.md b/docs/examples/1.8.x/console-cli/examples/databases/delete-transaction.md index 13c02b676b..672f1c2d90 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite databases delete-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/delete.md b/docs/examples/1.8.x/console-cli/examples/databases/delete.md index 474377798c..6e46ed99ac 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/delete.md @@ -1,2 +1,4 @@ +```bash appwrite databases delete \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/get-attribute.md index 70cee2c6ad..1238738780 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-attribute.md @@ -1,4 +1,6 @@ +```bash appwrite databases get-attribute \ --database-id \ --collection-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-collection-usage.md b/docs/examples/1.8.x/console-cli/examples/databases/get-collection-usage.md index c9881e2738..40bdf3e1b4 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-collection-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-collection-usage.md @@ -1,3 +1,5 @@ +```bash appwrite databases get-collection-usage \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-collection.md b/docs/examples/1.8.x/console-cli/examples/databases/get-collection.md index 17cbdbef1f..4252c777ae 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-collection.md @@ -1,3 +1,5 @@ +```bash appwrite databases get-collection \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-document.md b/docs/examples/1.8.x/console-cli/examples/databases/get-document.md index beb44c14c1..9617f422aa 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-document.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-document.md @@ -1,4 +1,6 @@ +```bash appwrite databases get-document \ --database-id \ --collection-id \ --document-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-index.md b/docs/examples/1.8.x/console-cli/examples/databases/get-index.md index 50b5961af4..1be1354f34 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-index.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-index.md @@ -1,4 +1,6 @@ +```bash appwrite databases get-index \ --database-id \ --collection-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-transaction.md b/docs/examples/1.8.x/console-cli/examples/databases/get-transaction.md index 7fc80e40d2..445a62f3a6 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite databases get-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get-usage.md b/docs/examples/1.8.x/console-cli/examples/databases/get-usage.md index e3c8748121..b012b73c8f 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get-usage.md @@ -1,2 +1,4 @@ +```bash appwrite databases get-usage \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/get.md b/docs/examples/1.8.x/console-cli/examples/databases/get.md index 83cec7dcbc..178e0b7f15 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/get.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/get.md @@ -1,2 +1,4 @@ +```bash appwrite databases get \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/increment-document-attribute.md index d51e44db23..7d7ca91b7b 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/increment-document-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases increment-document-attribute \ --database-id \ --collection-id \ --document-id \ --attribute '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-attributes.md b/docs/examples/1.8.x/console-cli/examples/databases/list-attributes.md index c531111eb6..e38711de50 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-attributes.md @@ -1,3 +1,5 @@ +```bash appwrite databases list-attributes \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-collection-logs.md b/docs/examples/1.8.x/console-cli/examples/databases/list-collection-logs.md index 27f3a9bc5e..fe4f7cdcbf 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-collection-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-collection-logs.md @@ -1,3 +1,5 @@ +```bash appwrite databases list-collection-logs \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-collections.md b/docs/examples/1.8.x/console-cli/examples/databases/list-collections.md index 55576eb401..9e71024ef4 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-collections.md @@ -1,2 +1,4 @@ +```bash appwrite databases list-collections \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-document-logs.md b/docs/examples/1.8.x/console-cli/examples/databases/list-document-logs.md index 9f8fb22eb8..6ee590eaac 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-document-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-document-logs.md @@ -1,4 +1,6 @@ +```bash appwrite databases list-document-logs \ --database-id \ --collection-id \ --document-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-documents.md b/docs/examples/1.8.x/console-cli/examples/databases/list-documents.md index 69e921c012..34e8751865 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-documents.md @@ -1,3 +1,5 @@ +```bash appwrite databases list-documents \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-indexes.md b/docs/examples/1.8.x/console-cli/examples/databases/list-indexes.md index f12c1e9354..c660a669e1 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-indexes.md @@ -1,3 +1,5 @@ +```bash appwrite databases list-indexes \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-logs.md b/docs/examples/1.8.x/console-cli/examples/databases/list-logs.md index 293df55327..fbb6aac3b1 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-logs.md @@ -1,2 +1,4 @@ +```bash appwrite databases list-logs \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-transactions.md b/docs/examples/1.8.x/console-cli/examples/databases/list-transactions.md index f0cc259b43..d3857f3a94 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-transactions.md @@ -1 +1,3 @@ +```bash appwrite databases list-transactions +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list-usage.md b/docs/examples/1.8.x/console-cli/examples/databases/list-usage.md index 6bff75fa89..28dfe21f00 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list-usage.md @@ -1 +1,3 @@ +```bash appwrite databases list-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/list.md b/docs/examples/1.8.x/console-cli/examples/databases/list.md index 6681edc994..b3475f33c3 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/list.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/list.md @@ -1 +1,3 @@ +```bash appwrite databases list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-boolean-attribute.md index 578a5dc526..11df4598fe 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-boolean-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-boolean-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-collection.md b/docs/examples/1.8.x/console-cli/examples/databases/update-collection.md index c740eb7faa..66bdde1736 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-collection.md @@ -1,3 +1,5 @@ +```bash appwrite databases update-collection \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-datetime-attribute.md index 53459e0218..ae4de37840 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-datetime-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-datetime-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-document.md b/docs/examples/1.8.x/console-cli/examples/databases/update-document.md index 29f14612a4..152f25a0b4 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-document.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-document.md @@ -1,4 +1,6 @@ +```bash appwrite databases update-document \ --database-id \ --collection-id \ --document-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-documents.md b/docs/examples/1.8.x/console-cli/examples/databases/update-documents.md index f4f85eb79d..4047ec8d6a 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-documents.md @@ -1,3 +1,5 @@ +```bash appwrite databases update-documents \ --database-id \ --collection-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-email-attribute.md index 20ea219202..99381a7710 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-email-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-email-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default email@example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-enum-attribute.md index dfae8d27f3..3362afd422 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```bash appwrite databases update-enum-attribute \ --database-id \ --collection-id \ @@ -5,3 +6,4 @@ appwrite databases update-enum-attribute \ --elements one two three \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-float-attribute.md index caeaa96f31..fd42ee5aca 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-float-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-float-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default null +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-integer-attribute.md index 2ab6e12104..bf42bc2a14 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-integer-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-integer-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default null +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-ip-attribute.md index 44b4010570..969698a124 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-ip-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-ip-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-line-attribute.md index 37059ecef1..d6acba071d 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-line-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases update-line-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-longtext-attribute.md index 0996d181c5..6f03b59ddf 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-longtext-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-longtext-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-mediumtext-attribute.md index d870ac1c1c..4a583d034e 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-mediumtext-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-mediumtext-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-point-attribute.md index bcc983a432..afee46d4a6 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-point-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases update-point-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-polygon-attribute.md index 6e1e1001da..968307b5e4 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-polygon-attribute.md @@ -1,5 +1,7 @@ +```bash appwrite databases update-polygon-attribute \ --database-id \ --collection-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-relationship-attribute.md index d3f27d78e2..e64d3040a2 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-relationship-attribute.md @@ -1,4 +1,6 @@ +```bash appwrite databases update-relationship-attribute \ --database-id \ --collection-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-string-attribute.md index 0e0dd714bd..1efcfe011a 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-string-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-string-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-text-attribute.md index 561da4a4e1..f8c757e0ca 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-text-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-text-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-transaction.md b/docs/examples/1.8.x/console-cli/examples/databases/update-transaction.md index cda11d4e5f..0a9ff8ea78 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite databases update-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-url-attribute.md index 76e6feb15b..c60601a8ee 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-url-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-url-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default https://example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/console-cli/examples/databases/update-varchar-attribute.md index d0a524ec41..23b69e1d2d 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update-varchar-attribute.md @@ -1,6 +1,8 @@ +```bash appwrite databases update-varchar-attribute \ --database-id \ --collection-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/update.md b/docs/examples/1.8.x/console-cli/examples/databases/update.md index 7458dd8311..33f5227a40 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/update.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/update.md @@ -1,2 +1,4 @@ +```bash appwrite databases update \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/upsert-document.md b/docs/examples/1.8.x/console-cli/examples/databases/upsert-document.md index 8b1e138206..0b2df56939 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/upsert-document.md @@ -1,4 +1,6 @@ +```bash appwrite databases upsert-document \ --database-id \ --collection-id \ --document-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/databases/upsert-documents.md b/docs/examples/1.8.x/console-cli/examples/databases/upsert-documents.md index e58c202da0..b7674f730c 100644 --- a/docs/examples/1.8.x/console-cli/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/console-cli/examples/databases/upsert-documents.md @@ -1,4 +1,6 @@ +```bash appwrite databases upsert-documents \ --database-id \ --collection-id \ --documents one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/create-deployment.md index 465951c3ce..b4771f333c 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-deployment.md @@ -1,4 +1,6 @@ +```bash appwrite functions create-deployment \ --function-id \ --code 'path/to/file.png' \ --activate false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/create-duplicate-deployment.md index 7d5c28bcd6..2e5792eac4 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite functions create-duplicate-deployment \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-execution.md b/docs/examples/1.8.x/console-cli/examples/functions/create-execution.md index fd3b3dd62a..98cb8a30c6 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-execution.md @@ -1,2 +1,4 @@ +```bash appwrite functions create-execution \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/create-template-deployment.md index 72fa62b3c4..9080cbfa13 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```bash appwrite functions create-template-deployment \ --function-id \ --repository \ @@ -5,3 +6,4 @@ appwrite functions create-template-deployment \ --root-directory \ --type commit \ --reference +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-variable.md b/docs/examples/1.8.x/console-cli/examples/functions/create-variable.md index 50edcaaa72..1b6fe4265a 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-variable.md @@ -1,4 +1,6 @@ +```bash appwrite functions create-variable \ --function-id \ --key \ --value +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/create-vcs-deployment.md index 8e846222c8..b91268b41e 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create-vcs-deployment.md @@ -1,4 +1,6 @@ +```bash appwrite functions create-vcs-deployment \ --function-id \ --type branch \ --reference +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/create.md b/docs/examples/1.8.x/console-cli/examples/functions/create.md index bdca30d803..ee677e686b 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/create.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/create.md @@ -1,4 +1,6 @@ +```bash appwrite functions create \ --function-id \ --name \ --runtime node-14.5 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/delete-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/delete-deployment.md index 4f50b92780..8fe1f8996f 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/delete-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite functions delete-deployment \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/delete-execution.md b/docs/examples/1.8.x/console-cli/examples/functions/delete-execution.md index a11c4cb7ed..877c2c269c 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/delete-execution.md @@ -1,3 +1,5 @@ +```bash appwrite functions delete-execution \ --function-id \ --execution-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/delete-variable.md b/docs/examples/1.8.x/console-cli/examples/functions/delete-variable.md index aebe85704f..322a017457 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/delete-variable.md @@ -1,3 +1,5 @@ +```bash appwrite functions delete-variable \ --function-id \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/delete.md b/docs/examples/1.8.x/console-cli/examples/functions/delete.md index abf27334fc..6b83f1ce13 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/delete.md @@ -1,2 +1,4 @@ +```bash appwrite functions delete \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/console-cli/examples/functions/get-deployment-download.md index b9bfcabf65..c148f76c08 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-deployment-download.md @@ -1,3 +1,5 @@ +```bash appwrite functions get-deployment-download \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/get-deployment.md index 4a658074fd..d55743e152 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite functions get-deployment \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-execution.md b/docs/examples/1.8.x/console-cli/examples/functions/get-execution.md index ac2ad14278..ef4cc02a4c 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-execution.md @@ -1,3 +1,5 @@ +```bash appwrite functions get-execution \ --function-id \ --execution-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-template.md b/docs/examples/1.8.x/console-cli/examples/functions/get-template.md index 2ab2afbcf4..ef35e5be37 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-template.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-template.md @@ -1,2 +1,4 @@ +```bash appwrite functions get-template \ --template-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-usage.md b/docs/examples/1.8.x/console-cli/examples/functions/get-usage.md index a3f061d1f5..cdd677faa9 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-usage.md @@ -1,2 +1,4 @@ +```bash appwrite functions get-usage \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get-variable.md b/docs/examples/1.8.x/console-cli/examples/functions/get-variable.md index 06a3a496a3..cf6e14b38e 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get-variable.md @@ -1,3 +1,5 @@ +```bash appwrite functions get-variable \ --function-id \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/get.md b/docs/examples/1.8.x/console-cli/examples/functions/get.md index fafa87ec39..643e4201cf 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/get.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/get.md @@ -1,2 +1,4 @@ +```bash appwrite functions get \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-deployments.md b/docs/examples/1.8.x/console-cli/examples/functions/list-deployments.md index 5bb2c60192..c47edd24a3 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-deployments.md @@ -1,2 +1,4 @@ +```bash appwrite functions list-deployments \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-executions.md b/docs/examples/1.8.x/console-cli/examples/functions/list-executions.md index a008947741..d04eeb8e64 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-executions.md @@ -1,2 +1,4 @@ +```bash appwrite functions list-executions \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-runtimes.md b/docs/examples/1.8.x/console-cli/examples/functions/list-runtimes.md index a0430d6cc3..0e07f8c61b 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-runtimes.md @@ -1 +1,3 @@ +```bash appwrite functions list-runtimes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-specifications.md b/docs/examples/1.8.x/console-cli/examples/functions/list-specifications.md index 4fac74ec31..912985f022 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-specifications.md @@ -1 +1,3 @@ +```bash appwrite functions list-specifications +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-templates.md b/docs/examples/1.8.x/console-cli/examples/functions/list-templates.md index 22209fe198..d93e214807 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-templates.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-templates.md @@ -1 +1,3 @@ +```bash appwrite functions list-templates +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-usage.md b/docs/examples/1.8.x/console-cli/examples/functions/list-usage.md index de28c5c9d0..62f2a76e84 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-usage.md @@ -1 +1,3 @@ +```bash appwrite functions list-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list-variables.md b/docs/examples/1.8.x/console-cli/examples/functions/list-variables.md index 03e1162551..5639a0661e 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list-variables.md @@ -1,2 +1,4 @@ +```bash appwrite functions list-variables \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/list.md b/docs/examples/1.8.x/console-cli/examples/functions/list.md index 2d9f0ba7ff..1732458240 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/list.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/list.md @@ -1 +1,3 @@ +```bash appwrite functions list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/console-cli/examples/functions/update-deployment-status.md index 6f0bc1e550..d0de71bf2c 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/update-deployment-status.md @@ -1,3 +1,5 @@ +```bash appwrite functions update-deployment-status \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/console-cli/examples/functions/update-function-deployment.md index d3534b4e9b..e1312c7208 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/update-function-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite functions update-function-deployment \ --function-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/update-variable.md b/docs/examples/1.8.x/console-cli/examples/functions/update-variable.md index c1d87f29fb..7c7e758390 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/update-variable.md @@ -1,4 +1,6 @@ +```bash appwrite functions update-variable \ --function-id \ --variable-id \ --key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/functions/update.md b/docs/examples/1.8.x/console-cli/examples/functions/update.md index c436ef054c..0d3c0f538e 100644 --- a/docs/examples/1.8.x/console-cli/examples/functions/update.md +++ b/docs/examples/1.8.x/console-cli/examples/functions/update.md @@ -1,3 +1,5 @@ +```bash appwrite functions update \ --function-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/graphql/mutation.md b/docs/examples/1.8.x/console-cli/examples/graphql/mutation.md index 678fcc2e40..4666d3020b 100644 --- a/docs/examples/1.8.x/console-cli/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/console-cli/examples/graphql/mutation.md @@ -1,2 +1,4 @@ +```bash appwrite graphql mutation \ --query '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/graphql/query.md b/docs/examples/1.8.x/console-cli/examples/graphql/query.md index 157115a1fc..9285fbdf61 100644 --- a/docs/examples/1.8.x/console-cli/examples/graphql/query.md +++ b/docs/examples/1.8.x/console-cli/examples/graphql/query.md @@ -1,2 +1,4 @@ +```bash appwrite graphql query \ --query '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-antivirus.md b/docs/examples/1.8.x/console-cli/examples/health/get-antivirus.md index 2ef8b6f3d7..e9fb925893 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-antivirus.md @@ -1 +1,3 @@ +```bash appwrite health get-antivirus +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-cache.md b/docs/examples/1.8.x/console-cli/examples/health/get-cache.md index b1ff13104e..db9f50e8c2 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-cache.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-cache.md @@ -1 +1,3 @@ +```bash appwrite health get-cache +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-certificate.md b/docs/examples/1.8.x/console-cli/examples/health/get-certificate.md index 1765216107..d75f2aa08e 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-certificate.md @@ -1 +1,3 @@ +```bash appwrite health get-certificate +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-db.md b/docs/examples/1.8.x/console-cli/examples/health/get-db.md index c5e9cb378e..a4681f964d 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-db.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-db.md @@ -1 +1,3 @@ +```bash appwrite health get-db +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/console-cli/examples/health/get-failed-jobs.md index 9704875bb5..520e3cb9b5 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-failed-jobs.md @@ -1,2 +1,4 @@ +```bash appwrite health get-failed-jobs \ --name v1-database +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-pub-sub.md b/docs/examples/1.8.x/console-cli/examples/health/get-pub-sub.md index 29e93a2b14..592083ad6d 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-pub-sub.md @@ -1 +1,3 @@ +```bash appwrite health get-pub-sub +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-audits.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-audits.md index f228f092a5..6fa18adb18 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-audits.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-audits +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-builds.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-builds.md index 657b98880c..e120035603 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-builds.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-builds +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-certificates.md index a7c1c64a9f..585b90a717 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-certificates.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-certificates +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-databases.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-databases.md index 17d15badfd..135cc294ad 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-databases.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-databases +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-deletes.md index 78ddc3223d..d06cecf071 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-deletes.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-deletes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-functions.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-functions.md index 8109a8e8a2..20211289b7 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-functions.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-functions +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-logs.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-logs.md index 5ff48cc8ed..4c071f28f6 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-logs.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-logs +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-mails.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-mails.md index e44b1b629f..5e8d42b8eb 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-mails.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-mails +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-messaging.md index 5249c73550..95bc46e5ff 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-messaging.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-messaging +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-migrations.md index 11b07a101b..e96cc3753b 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-migrations.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-migrations +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-stats-resources.md index 2e511862ca..2508991512 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-stats-resources.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-stats-resources +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-usage.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-usage.md index 1790e0fb1d..a3d579dbb7 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-usage.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/console-cli/examples/health/get-queue-webhooks.md index e1753347b1..cbc53c8774 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-queue-webhooks.md @@ -1 +1,3 @@ +```bash appwrite health get-queue-webhooks +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-storage-local.md b/docs/examples/1.8.x/console-cli/examples/health/get-storage-local.md index 512d135f0e..161d333539 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-storage-local.md @@ -1 +1,3 @@ +```bash appwrite health get-storage-local +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-storage.md b/docs/examples/1.8.x/console-cli/examples/health/get-storage.md index 170bcfc43d..f439346a0b 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-storage.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-storage.md @@ -1 +1,3 @@ +```bash appwrite health get-storage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get-time.md b/docs/examples/1.8.x/console-cli/examples/health/get-time.md index feb3901ef5..bc0c8b935c 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get-time.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get-time.md @@ -1 +1,3 @@ +```bash appwrite health get-time +``` diff --git a/docs/examples/1.8.x/console-cli/examples/health/get.md b/docs/examples/1.8.x/console-cli/examples/health/get.md index 94c08e5aa3..9be60c5eb6 100644 --- a/docs/examples/1.8.x/console-cli/examples/health/get.md +++ b/docs/examples/1.8.x/console-cli/examples/health/get.md @@ -1 +1,3 @@ +```bash appwrite health get +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/get.md b/docs/examples/1.8.x/console-cli/examples/locale/get.md index 2002a06c20..3c4da34abd 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/get.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/get.md @@ -1 +1,3 @@ +```bash appwrite locale get +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-codes.md b/docs/examples/1.8.x/console-cli/examples/locale/list-codes.md index ac96ac14af..2bb6e6bad5 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-codes.md @@ -1 +1,3 @@ +```bash appwrite locale list-codes +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-continents.md b/docs/examples/1.8.x/console-cli/examples/locale/list-continents.md index 18267872c0..74dae6a27a 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-continents.md @@ -1 +1,3 @@ +```bash appwrite locale list-continents +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/console-cli/examples/locale/list-countries-eu.md index eba8886a54..e3e0f876d1 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-countries-eu.md @@ -1 +1,3 @@ +```bash appwrite locale list-countries-eu +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/console-cli/examples/locale/list-countries-phones.md index ea27155238..1ac104ca5e 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-countries-phones.md @@ -1 +1,3 @@ +```bash appwrite locale list-countries-phones +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-countries.md b/docs/examples/1.8.x/console-cli/examples/locale/list-countries.md index 652446136b..8c0f01bc8f 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-countries.md @@ -1 +1,3 @@ +```bash appwrite locale list-countries +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-currencies.md b/docs/examples/1.8.x/console-cli/examples/locale/list-currencies.md index bbc0f363fe..bf087d51cc 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-currencies.md @@ -1 +1,3 @@ +```bash appwrite locale list-currencies +``` diff --git a/docs/examples/1.8.x/console-cli/examples/locale/list-languages.md b/docs/examples/1.8.x/console-cli/examples/locale/list-languages.md index a0cfe918af..69e5ea4c3e 100644 --- a/docs/examples/1.8.x/console-cli/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/console-cli/examples/locale/list-languages.md @@ -1 +1,3 @@ +```bash appwrite locale list-languages +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-apns-provider.md index fd5aaa9927..4d473ab572 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-apns-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-apns-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-email.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-email.md index e8ffc11633..c4dffaaa38 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-email.md @@ -1,4 +1,6 @@ +```bash appwrite messaging create-email \ --message-id \ --subject \ --content +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-fcm-provider.md index 487bb03981..65f717efc4 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-fcm-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-fcm-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-mailgun-provider.md index 2616f0074c..00432be789 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-mailgun-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-msg-91-provider.md index d4f975d3c8..992607187c 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-msg-91-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-push.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-push.md index d5740b9394..200272105f 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-push.md @@ -1,2 +1,4 @@ +```bash appwrite messaging create-push \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-resend-provider.md index 9a16a17a94..3c6fdcd6eb 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-resend-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-resend-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-sendgrid-provider.md index 2a478fdb29..856bfffa95 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-sendgrid-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-sms.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-sms.md index 3633d06570..1d06390117 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-sms.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-sms \ --message-id \ --content +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-smtp-provider.md index 9a4178352d..700ed2bef9 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-smtp-provider.md @@ -1,4 +1,6 @@ +```bash appwrite messaging create-smtp-provider \ --provider-id \ --name \ --host +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-subscriber.md index 5fe7682f73..365a0a9383 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-subscriber.md @@ -1,4 +1,6 @@ +```bash appwrite messaging create-subscriber \ --topic-id \ --subscriber-id \ --target-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-telesign-provider.md index 052028d6c5..5c52fae365 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-telesign-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-telesign-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-textmagic-provider.md index 6ff37b016d..99154354ef 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-textmagic-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-topic.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-topic.md index 3a28bb163d..be4956795f 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-topic.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-topic \ --topic-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-twilio-provider.md index 2b2f00dc44..f019952d82 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-twilio-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-twilio-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/create-vonage-provider.md index 56fb3e679f..1dfa49bd05 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/create-vonage-provider.md @@ -1,3 +1,5 @@ +```bash appwrite messaging create-vonage-provider \ --provider-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/delete-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/delete-provider.md index 75671a99e4..b240270dc0 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/delete-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging delete-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/console-cli/examples/messaging/delete-subscriber.md index d433e3a599..df116db9e6 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/delete-subscriber.md @@ -1,3 +1,5 @@ +```bash appwrite messaging delete-subscriber \ --topic-id \ --subscriber-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/delete-topic.md b/docs/examples/1.8.x/console-cli/examples/messaging/delete-topic.md index 0c2887c076..04030f6630 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/delete-topic.md @@ -1,2 +1,4 @@ +```bash appwrite messaging delete-topic \ --topic-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/delete.md b/docs/examples/1.8.x/console-cli/examples/messaging/delete.md index eb5d2a62f1..5e73638c85 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/delete.md @@ -1,2 +1,4 @@ +```bash appwrite messaging delete \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/get-message.md b/docs/examples/1.8.x/console-cli/examples/messaging/get-message.md index 2de245efd1..f908891393 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/get-message.md @@ -1,2 +1,4 @@ +```bash appwrite messaging get-message \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/get-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/get-provider.md index b115c52c2a..41baabd582 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/get-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging get-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/console-cli/examples/messaging/get-subscriber.md index 88c2ab60e2..86111db075 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/get-subscriber.md @@ -1,3 +1,5 @@ +```bash appwrite messaging get-subscriber \ --topic-id \ --subscriber-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/get-topic.md b/docs/examples/1.8.x/console-cli/examples/messaging/get-topic.md index 7628bedf00..489c445f08 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/get-topic.md @@ -1,2 +1,4 @@ +```bash appwrite messaging get-topic \ --topic-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-message-logs.md index 9cc6dc559d..45b14aa3bf 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-message-logs.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-message-logs \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-messages.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-messages.md index 1e8a726f9a..3efe745924 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-messages.md @@ -1 +1,3 @@ +```bash appwrite messaging list-messages +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-provider-logs.md index 95e514ec8a..ca94e5119a 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-provider-logs.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-provider-logs \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-providers.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-providers.md index d075be571c..6fa490ab3e 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-providers.md @@ -1 +1,3 @@ +```bash appwrite messaging list-providers +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-subscriber-logs.md index 4858c6c7d9..5dc4100f21 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-subscriber-logs.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-subscriber-logs \ --subscriber-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-subscribers.md index c122c6845c..1431c324c0 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-subscribers.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-subscribers \ --topic-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-targets.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-targets.md index e161e9338a..08072882e8 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-targets.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-targets \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-topic-logs.md index 121f2795c1..3bcda10fa3 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-topic-logs.md @@ -1,2 +1,4 @@ +```bash appwrite messaging list-topic-logs \ --topic-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/list-topics.md b/docs/examples/1.8.x/console-cli/examples/messaging/list-topics.md index 0337b3d197..87e895e068 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/list-topics.md @@ -1 +1,3 @@ +```bash appwrite messaging list-topics +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-apns-provider.md index 7bd5db2624..b86fd08e42 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-apns-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-apns-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-email.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-email.md index 7e318ad492..5458921bbe 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-email.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-email \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-fcm-provider.md index 4d41680639..159eda10c7 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-fcm-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-fcm-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-mailgun-provider.md index 9d07afead8..4ee7825b29 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-mailgun-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-mailgun-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-msg-91-provider.md index e4bc24b4ef..149c7347e4 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-msg-91-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-msg-91-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-push.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-push.md index c11d462943..a8f8f80aa4 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-push.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-push \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-resend-provider.md index df22cf075f..3920c365db 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-resend-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-resend-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-sendgrid-provider.md index 77e9fcd2df..490e51b23a 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-sendgrid-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-sendgrid-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-sms.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-sms.md index 888df629d6..f35dd30f13 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-sms.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-sms \ --message-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-smtp-provider.md index 23bb89998f..5df387c509 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-smtp-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-smtp-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-telesign-provider.md index 69eee1f57b..31178a0f08 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-telesign-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-telesign-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-textmagic-provider.md index ff23b82155..ee6d4837a0 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-textmagic-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-textmagic-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-topic.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-topic.md index ea7bc458e3..e70e8e9eff 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-topic.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-topic \ --topic-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-twilio-provider.md index 25f2910d26..eba2fd1154 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-twilio-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-twilio-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/console-cli/examples/messaging/update-vonage-provider.md index 7b87a9422b..62265d3119 100644 --- a/docs/examples/1.8.x/console-cli/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/console-cli/examples/messaging/update-vonage-provider.md @@ -1,2 +1,4 @@ +```bash appwrite messaging update-vonage-provider \ --provider-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-appwrite-migration.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-appwrite-migration.md index 34fee2f307..b11c94b49e 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-appwrite-migration.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-appwrite-migration.md @@ -1,5 +1,7 @@ +```bash appwrite migrations create-appwrite-migration \ --resources one two three \ --endpoint https://example.com \ --project-id \ --api-key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-export.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-export.md index 61eceabcd8..0e2a463ea1 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-export.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-export.md @@ -1,3 +1,5 @@ +```bash appwrite migrations create-csv-export \ --resource-id \ --filename +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-import.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-import.md index 196112bdf8..032771eb78 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-import.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-csv-import.md @@ -1,4 +1,6 @@ +```bash appwrite migrations create-csv-import \ --bucket-id \ --file-id \ --resource-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-firebase-migration.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-firebase-migration.md index 81337b4cf4..4e3a9f6e54 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-firebase-migration.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-firebase-migration.md @@ -1,3 +1,5 @@ +```bash appwrite migrations create-firebase-migration \ --resources one two three \ --service-account +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-n-host-migration.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-n-host-migration.md index 2bcba6ad8c..703d3ec09f 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-n-host-migration.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-n-host-migration.md @@ -1,3 +1,4 @@ +```bash appwrite migrations create-n-host-migration \ --resources one two three \ --subdomain \ @@ -6,3 +7,4 @@ appwrite migrations create-n-host-migration \ --database \ --username \ --password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/create-supabase-migration.md b/docs/examples/1.8.x/console-cli/examples/migrations/create-supabase-migration.md index a186b17212..d89211c4b3 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/create-supabase-migration.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/create-supabase-migration.md @@ -1,3 +1,4 @@ +```bash appwrite migrations create-supabase-migration \ --resources one two three \ --endpoint https://example.com \ @@ -5,3 +6,4 @@ appwrite migrations create-supabase-migration \ --database-host \ --username \ --password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/delete.md b/docs/examples/1.8.x/console-cli/examples/migrations/delete.md index b7ad0f07ba..c70fd35b51 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/delete.md @@ -1,2 +1,4 @@ +```bash appwrite migrations delete \ --migration-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/get-appwrite-report.md b/docs/examples/1.8.x/console-cli/examples/migrations/get-appwrite-report.md index 3f54fed2bc..0c79740ce2 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/get-appwrite-report.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/get-appwrite-report.md @@ -1,5 +1,7 @@ +```bash appwrite migrations get-appwrite-report \ --resources one two three \ --endpoint https://example.com \ --project-id \ --key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/get-firebase-report.md b/docs/examples/1.8.x/console-cli/examples/migrations/get-firebase-report.md index 33e7e732f4..07ca36fc7f 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/get-firebase-report.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/get-firebase-report.md @@ -1,3 +1,5 @@ +```bash appwrite migrations get-firebase-report \ --resources one two three \ --service-account +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/get-n-host-report.md b/docs/examples/1.8.x/console-cli/examples/migrations/get-n-host-report.md index 2d1ed043ef..8e472c6eee 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/get-n-host-report.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/get-n-host-report.md @@ -1,3 +1,4 @@ +```bash appwrite migrations get-n-host-report \ --resources one two three \ --subdomain \ @@ -6,3 +7,4 @@ appwrite migrations get-n-host-report \ --database \ --username \ --password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/get-supabase-report.md b/docs/examples/1.8.x/console-cli/examples/migrations/get-supabase-report.md index 789c66a543..9aabb7144e 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/get-supabase-report.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/get-supabase-report.md @@ -1,3 +1,4 @@ +```bash appwrite migrations get-supabase-report \ --resources one two three \ --endpoint https://example.com \ @@ -5,3 +6,4 @@ appwrite migrations get-supabase-report \ --database-host \ --username \ --password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/get.md b/docs/examples/1.8.x/console-cli/examples/migrations/get.md index 46959a3ef0..8d27d54049 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/get.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/get.md @@ -1,2 +1,4 @@ +```bash appwrite migrations get \ --migration-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/list.md b/docs/examples/1.8.x/console-cli/examples/migrations/list.md index 659c9fd46f..ffc69a201d 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/list.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/list.md @@ -1 +1,3 @@ +```bash appwrite migrations list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/migrations/retry.md b/docs/examples/1.8.x/console-cli/examples/migrations/retry.md index d656dd9956..5c4ed63850 100644 --- a/docs/examples/1.8.x/console-cli/examples/migrations/retry.md +++ b/docs/examples/1.8.x/console-cli/examples/migrations/retry.md @@ -1,2 +1,4 @@ +```bash appwrite migrations retry \ --migration-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/create-variable.md b/docs/examples/1.8.x/console-cli/examples/project/create-variable.md index 113c0bafc9..e1dc16069e 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/create-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/project/create-variable.md @@ -1,3 +1,5 @@ +```bash appwrite project create-variable \ --key \ --value +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/delete-variable.md b/docs/examples/1.8.x/console-cli/examples/project/delete-variable.md index a4213dca5d..bc15e3d708 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/delete-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/project/delete-variable.md @@ -1,2 +1,4 @@ +```bash appwrite project delete-variable \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/get-usage.md b/docs/examples/1.8.x/console-cli/examples/project/get-usage.md index 75cc4b99a3..666f4a229c 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/project/get-usage.md @@ -1,3 +1,5 @@ +```bash appwrite project get-usage \ --start-date '' \ --end-date '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/get-variable.md b/docs/examples/1.8.x/console-cli/examples/project/get-variable.md index 2833758541..df1c31ee52 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/get-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/project/get-variable.md @@ -1,2 +1,4 @@ +```bash appwrite project get-variable \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/list-variables.md b/docs/examples/1.8.x/console-cli/examples/project/list-variables.md index dc6251c497..2f564671ae 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/list-variables.md +++ b/docs/examples/1.8.x/console-cli/examples/project/list-variables.md @@ -1 +1,3 @@ +```bash appwrite project list-variables +``` diff --git a/docs/examples/1.8.x/console-cli/examples/project/update-variable.md b/docs/examples/1.8.x/console-cli/examples/project/update-variable.md index 5f12a12be1..70bed01e5a 100644 --- a/docs/examples/1.8.x/console-cli/examples/project/update-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/project/update-variable.md @@ -1,3 +1,5 @@ +```bash appwrite project update-variable \ --variable-id \ --key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-dev-key.md b/docs/examples/1.8.x/console-cli/examples/projects/create-dev-key.md index b90e0ca85c..373c5d3bfa 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-dev-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-dev-key.md @@ -1,4 +1,6 @@ +```bash appwrite projects create-dev-key \ --project-id \ --name \ --expire '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-jwt.md b/docs/examples/1.8.x/console-cli/examples/projects/create-jwt.md index df708a53ed..be167ed727 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-jwt.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-jwt.md @@ -1,3 +1,5 @@ +```bash appwrite projects create-jwt \ --project-id \ --scopes one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-key.md b/docs/examples/1.8.x/console-cli/examples/projects/create-key.md index 0650ccd1d2..43055f2b86 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-key.md @@ -1,4 +1,6 @@ +```bash appwrite projects create-key \ --project-id \ --name \ --scopes one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-platform.md b/docs/examples/1.8.x/console-cli/examples/projects/create-platform.md index 94f5234156..4d1d0d8209 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-platform.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-platform.md @@ -1,4 +1,6 @@ +```bash appwrite projects create-platform \ --project-id \ --type web \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-smtp-test.md b/docs/examples/1.8.x/console-cli/examples/projects/create-smtp-test.md index c83aebfb30..bd5e2da821 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-smtp-test.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-smtp-test.md @@ -1,6 +1,8 @@ +```bash appwrite projects create-smtp-test \ --project-id \ --emails one two three \ --sender-name \ --sender-email email@example.com \ --host '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create-webhook.md b/docs/examples/1.8.x/console-cli/examples/projects/create-webhook.md index 0983d31497..1a3c766312 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create-webhook.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create-webhook.md @@ -1,6 +1,8 @@ +```bash appwrite projects create-webhook \ --project-id \ --name \ --events one two three \ --url '' \ --security false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/create.md b/docs/examples/1.8.x/console-cli/examples/projects/create.md index 5bdd1ffda1..4a742404f0 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/create.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/create.md @@ -1,4 +1,6 @@ +```bash appwrite projects create \ --project-id '' \ --name \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-dev-key.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-dev-key.md index 3e911eab69..402e408390 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-dev-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-dev-key.md @@ -1,3 +1,5 @@ +```bash appwrite projects delete-dev-key \ --project-id \ --key-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-email-template.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-email-template.md index 81cf403c6d..a88536f362 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-email-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-email-template.md @@ -1,4 +1,6 @@ +```bash appwrite projects delete-email-template \ --project-id \ --type verification \ --locale af +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-key.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-key.md index eccb09b911..ed1d0987b4 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-key.md @@ -1,3 +1,5 @@ +```bash appwrite projects delete-key \ --project-id \ --key-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-platform.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-platform.md index 7f68e7d6f9..4f6c98cac1 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-platform.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-platform.md @@ -1,3 +1,5 @@ +```bash appwrite projects delete-platform \ --project-id \ --platform-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-sms-template.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-sms-template.md index 666de541d9..06e2a45d54 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-sms-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-sms-template.md @@ -1,4 +1,6 @@ +```bash appwrite projects delete-sms-template \ --project-id \ --type verification \ --locale af +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete-webhook.md b/docs/examples/1.8.x/console-cli/examples/projects/delete-webhook.md index 70e686556e..e0e1a99a23 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete-webhook.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete-webhook.md @@ -1,3 +1,5 @@ +```bash appwrite projects delete-webhook \ --project-id \ --webhook-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/delete.md b/docs/examples/1.8.x/console-cli/examples/projects/delete.md index 3127385598..d225400f47 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/delete.md @@ -1,2 +1,4 @@ +```bash appwrite projects delete \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-dev-key.md b/docs/examples/1.8.x/console-cli/examples/projects/get-dev-key.md index 57b2c2275c..762df35ce9 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-dev-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-dev-key.md @@ -1,3 +1,5 @@ +```bash appwrite projects get-dev-key \ --project-id \ --key-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-email-template.md b/docs/examples/1.8.x/console-cli/examples/projects/get-email-template.md index ea6d5422a8..13d60fa3a4 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-email-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-email-template.md @@ -1,4 +1,6 @@ +```bash appwrite projects get-email-template \ --project-id \ --type verification \ --locale af +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-key.md b/docs/examples/1.8.x/console-cli/examples/projects/get-key.md index cfd5013536..0a84cb1c94 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-key.md @@ -1,3 +1,5 @@ +```bash appwrite projects get-key \ --project-id \ --key-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-platform.md b/docs/examples/1.8.x/console-cli/examples/projects/get-platform.md index 62077309b6..d6c2d894d2 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-platform.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-platform.md @@ -1,3 +1,5 @@ +```bash appwrite projects get-platform \ --project-id \ --platform-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-sms-template.md b/docs/examples/1.8.x/console-cli/examples/projects/get-sms-template.md index bbb755b085..00eeef740f 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-sms-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-sms-template.md @@ -1,4 +1,6 @@ +```bash appwrite projects get-sms-template \ --project-id \ --type verification \ --locale af +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get-webhook.md b/docs/examples/1.8.x/console-cli/examples/projects/get-webhook.md index d725bee7bf..7d2374bd2f 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get-webhook.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get-webhook.md @@ -1,3 +1,5 @@ +```bash appwrite projects get-webhook \ --project-id \ --webhook-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/get.md b/docs/examples/1.8.x/console-cli/examples/projects/get.md index 0665b37e0a..553fa8665f 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/get.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/get.md @@ -1,2 +1,4 @@ +```bash appwrite projects get \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/list-dev-keys.md b/docs/examples/1.8.x/console-cli/examples/projects/list-dev-keys.md index f6f9a844c5..aa0c9502c1 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/list-dev-keys.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/list-dev-keys.md @@ -1,2 +1,4 @@ +```bash appwrite projects list-dev-keys \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/list-keys.md b/docs/examples/1.8.x/console-cli/examples/projects/list-keys.md index aa70a5c5eb..cb88548f52 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/list-keys.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/list-keys.md @@ -1,2 +1,4 @@ +```bash appwrite projects list-keys \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/list-platforms.md b/docs/examples/1.8.x/console-cli/examples/projects/list-platforms.md index e7fbfb2831..cc6f2e7c22 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/list-platforms.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/list-platforms.md @@ -1,2 +1,4 @@ +```bash appwrite projects list-platforms \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/list-webhooks.md b/docs/examples/1.8.x/console-cli/examples/projects/list-webhooks.md index ab4012a11a..64307b4d7b 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/list-webhooks.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/list-webhooks.md @@ -1,2 +1,4 @@ +```bash appwrite projects list-webhooks \ --project-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/list.md b/docs/examples/1.8.x/console-cli/examples/projects/list.md index f84f712fb5..e22f4117a5 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/list.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/list.md @@ -1 +1,3 @@ +```bash appwrite projects list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-api-status-all.md b/docs/examples/1.8.x/console-cli/examples/projects/update-api-status-all.md index bbbec4500d..3e49c0cd13 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-api-status-all.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-api-status-all.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-api-status-all \ --project-id \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-api-status.md b/docs/examples/1.8.x/console-cli/examples/projects/update-api-status.md index 7e269ba2ec..ef67d7e356 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-api-status.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-api-status.md @@ -1,4 +1,6 @@ +```bash appwrite projects update-api-status \ --project-id \ --api rest \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-duration.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-duration.md index 07e458e731..5b2eed3d0d 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-duration.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-duration.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-auth-duration \ --project-id \ --duration 0 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-limit.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-limit.md index 5e5d2addda..5403cb8d75 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-limit.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-limit.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-auth-limit \ --project-id \ --limit 0 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-dictionary.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-dictionary.md index b4160e3412..13c8fa9ea0 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-dictionary.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-dictionary.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-auth-password-dictionary \ --project-id \ --enabled false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-history.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-history.md index cffc917911..0a48049a01 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-history.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-password-history.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-auth-password-history \ --project-id \ --limit 0 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-sessions-limit.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-sessions-limit.md index fc205c03ac..080e99dad1 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-sessions-limit.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-sessions-limit.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-auth-sessions-limit \ --project-id \ --limit 1 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-status.md b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-status.md index 5f38dc9225..248750f71f 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-auth-status.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-auth-status.md @@ -1,4 +1,6 @@ +```bash appwrite projects update-auth-status \ --project-id \ --method email-password \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-dev-key.md b/docs/examples/1.8.x/console-cli/examples/projects/update-dev-key.md index 1e54db37cb..5d7a67afcb 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-dev-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-dev-key.md @@ -1,5 +1,7 @@ +```bash appwrite projects update-dev-key \ --project-id \ --key-id \ --name \ --expire '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-email-template.md b/docs/examples/1.8.x/console-cli/examples/projects/update-email-template.md index f8e4919a4a..996e75eb9c 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-email-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-email-template.md @@ -1,6 +1,8 @@ +```bash appwrite projects update-email-template \ --project-id \ --type verification \ --locale af \ --subject \ --message +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-key.md b/docs/examples/1.8.x/console-cli/examples/projects/update-key.md index 8ac173b75e..98f13551a4 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-key.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-key.md @@ -1,5 +1,7 @@ +```bash appwrite projects update-key \ --project-id \ --key-id \ --name \ --scopes one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-labels.md b/docs/examples/1.8.x/console-cli/examples/projects/update-labels.md index 841dc4ee94..746c2cfbc7 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-labels.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-labels.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-labels \ --project-id \ --labels one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-memberships-privacy.md b/docs/examples/1.8.x/console-cli/examples/projects/update-memberships-privacy.md index 94582f48b7..5544b7be2a 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-memberships-privacy.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-memberships-privacy.md @@ -1,5 +1,7 @@ +```bash appwrite projects update-memberships-privacy \ --project-id \ --user-name false \ --user-email false \ --mfa false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-mock-numbers.md b/docs/examples/1.8.x/console-cli/examples/projects/update-mock-numbers.md index 774887d6af..fb659a3907 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-mock-numbers.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-mock-numbers.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-mock-numbers \ --project-id \ --numbers one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-o-auth-2.md b/docs/examples/1.8.x/console-cli/examples/projects/update-o-auth-2.md index 7f8364df6a..10d0adb03e 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-o-auth-2.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-o-auth-2.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-o-auth-2 \ --project-id \ --provider amazon +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-personal-data-check.md b/docs/examples/1.8.x/console-cli/examples/projects/update-personal-data-check.md index 7130decb07..c1d64f4a68 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-personal-data-check.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-personal-data-check.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-personal-data-check \ --project-id \ --enabled false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-platform.md b/docs/examples/1.8.x/console-cli/examples/projects/update-platform.md index 170e8a6e68..84fd835415 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-platform.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-platform.md @@ -1,4 +1,6 @@ +```bash appwrite projects update-platform \ --project-id \ --platform-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-service-status-all.md b/docs/examples/1.8.x/console-cli/examples/projects/update-service-status-all.md index 1d8fab29a7..a2e47f4f7c 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-service-status-all.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-service-status-all.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-service-status-all \ --project-id \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-service-status.md b/docs/examples/1.8.x/console-cli/examples/projects/update-service-status.md index ce589bcb41..75dac3c5e4 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-service-status.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-service-status.md @@ -1,4 +1,6 @@ +```bash appwrite projects update-service-status \ --project-id \ --service account \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-session-alerts.md b/docs/examples/1.8.x/console-cli/examples/projects/update-session-alerts.md index d25fa96000..10cd5f8616 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-session-alerts.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-session-alerts.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-session-alerts \ --project-id \ --alerts false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-session-invalidation.md b/docs/examples/1.8.x/console-cli/examples/projects/update-session-invalidation.md index 17d635e5ac..4a043c987c 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-session-invalidation.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-session-invalidation.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-session-invalidation \ --project-id \ --enabled false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-sms-template.md b/docs/examples/1.8.x/console-cli/examples/projects/update-sms-template.md index 5e10477f73..ee6e8213fe 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-sms-template.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-sms-template.md @@ -1,5 +1,7 @@ +```bash appwrite projects update-sms-template \ --project-id \ --type verification \ --locale af \ --message +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-smtp.md b/docs/examples/1.8.x/console-cli/examples/projects/update-smtp.md index f62059aa5c..46a432c5f4 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-smtp.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-smtp.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-smtp \ --project-id \ --enabled false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-team.md b/docs/examples/1.8.x/console-cli/examples/projects/update-team.md index 4cb0a981c0..3c68c60da9 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-team.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-team.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-team \ --project-id \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-webhook-signature.md b/docs/examples/1.8.x/console-cli/examples/projects/update-webhook-signature.md index 708ff65663..1887859269 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-webhook-signature.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-webhook-signature.md @@ -1,3 +1,5 @@ +```bash appwrite projects update-webhook-signature \ --project-id \ --webhook-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update-webhook.md b/docs/examples/1.8.x/console-cli/examples/projects/update-webhook.md index f505e6e520..f72d39d4cd 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update-webhook.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update-webhook.md @@ -1,3 +1,4 @@ +```bash appwrite projects update-webhook \ --project-id \ --webhook-id \ @@ -5,3 +6,4 @@ appwrite projects update-webhook \ --events one two three \ --url '' \ --security false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/projects/update.md b/docs/examples/1.8.x/console-cli/examples/projects/update.md index e3c7ecaa88..dca0630c7b 100644 --- a/docs/examples/1.8.x/console-cli/examples/projects/update.md +++ b/docs/examples/1.8.x/console-cli/examples/projects/update.md @@ -1,3 +1,5 @@ +```bash appwrite projects update \ --project-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/create-api-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/create-api-rule.md index 3bd7bb16fe..d108738c24 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/create-api-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/create-api-rule.md @@ -1,2 +1,4 @@ +```bash appwrite proxy create-api-rule \ --domain '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/create-function-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/create-function-rule.md index 2312f3afbb..44202505f3 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/create-function-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/create-function-rule.md @@ -1,3 +1,5 @@ +```bash appwrite proxy create-function-rule \ --domain '' \ --function-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/create-redirect-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/create-redirect-rule.md index 763f9bc8b4..9a406f785f 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/create-redirect-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/create-redirect-rule.md @@ -1,6 +1,8 @@ +```bash appwrite proxy create-redirect-rule \ --domain '' \ --url https://example.com \ --status-code 301 \ --resource-id \ --resource-type site +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/create-site-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/create-site-rule.md index fa7859b352..7d3826963c 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/create-site-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/create-site-rule.md @@ -1,3 +1,5 @@ +```bash appwrite proxy create-site-rule \ --domain '' \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/delete-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/delete-rule.md index c676893a1b..7ba7abe912 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/delete-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/delete-rule.md @@ -1,2 +1,4 @@ +```bash appwrite proxy delete-rule \ --rule-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/get-rule.md b/docs/examples/1.8.x/console-cli/examples/proxy/get-rule.md index 22ac1de7bf..9a654f292c 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/get-rule.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/get-rule.md @@ -1,2 +1,4 @@ +```bash appwrite proxy get-rule \ --rule-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/list-rules.md b/docs/examples/1.8.x/console-cli/examples/proxy/list-rules.md index ab530846d0..167603db33 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/list-rules.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/list-rules.md @@ -1 +1,3 @@ +```bash appwrite proxy list-rules +``` diff --git a/docs/examples/1.8.x/console-cli/examples/proxy/update-rule-verification.md b/docs/examples/1.8.x/console-cli/examples/proxy/update-rule-verification.md index b381aa3353..3e5734d2e6 100644 --- a/docs/examples/1.8.x/console-cli/examples/proxy/update-rule-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/proxy/update-rule-verification.md @@ -1,2 +1,4 @@ +```bash appwrite proxy update-rule-verification \ --rule-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/create-deployment.md index dda0468278..d8cf3e99e3 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create-deployment.md @@ -1,4 +1,6 @@ +```bash appwrite sites create-deployment \ --site-id \ --code 'path/to/file.png' \ --activate false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/create-duplicate-deployment.md index 30cf7d5ac8..76b196d01b 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite sites create-duplicate-deployment \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/create-template-deployment.md index 5242534073..84793d2c36 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```bash appwrite sites create-template-deployment \ --site-id \ --repository \ @@ -5,3 +6,4 @@ appwrite sites create-template-deployment \ --root-directory \ --type branch \ --reference +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create-variable.md b/docs/examples/1.8.x/console-cli/examples/sites/create-variable.md index af1f470113..100ac21e4c 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create-variable.md @@ -1,4 +1,6 @@ +```bash appwrite sites create-variable \ --site-id \ --key \ --value +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/create-vcs-deployment.md index ab9c444e06..c53c2c35f8 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create-vcs-deployment.md @@ -1,4 +1,6 @@ +```bash appwrite sites create-vcs-deployment \ --site-id \ --type branch \ --reference +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/create.md b/docs/examples/1.8.x/console-cli/examples/sites/create.md index 6806a106db..ac7938f7d9 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/create.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/create.md @@ -1,5 +1,7 @@ +```bash appwrite sites create \ --site-id \ --name \ --framework analog \ --build-runtime node-14.5 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/delete-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/delete-deployment.md index 7f7fe2f89b..2ccb416f77 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/delete-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite sites delete-deployment \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/delete-log.md b/docs/examples/1.8.x/console-cli/examples/sites/delete-log.md index 3ea350396c..e7ca5d54ae 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/delete-log.md @@ -1,3 +1,5 @@ +```bash appwrite sites delete-log \ --site-id \ --log-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/delete-variable.md b/docs/examples/1.8.x/console-cli/examples/sites/delete-variable.md index a7a32b93ba..b9ab8afc32 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/delete-variable.md @@ -1,3 +1,5 @@ +```bash appwrite sites delete-variable \ --site-id \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/delete.md b/docs/examples/1.8.x/console-cli/examples/sites/delete.md index e03eca67f1..6f4c42f162 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/delete.md @@ -1,2 +1,4 @@ +```bash appwrite sites delete \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/console-cli/examples/sites/get-deployment-download.md index e7af5c31b1..44fe3e723d 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-deployment-download.md @@ -1,3 +1,5 @@ +```bash appwrite sites get-deployment-download \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/get-deployment.md index 28fee04df8..7e6f96afe8 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite sites get-deployment \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-log.md b/docs/examples/1.8.x/console-cli/examples/sites/get-log.md index adba026759..01589593d7 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-log.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-log.md @@ -1,3 +1,5 @@ +```bash appwrite sites get-log \ --site-id \ --log-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-template.md b/docs/examples/1.8.x/console-cli/examples/sites/get-template.md index 64bfd67d19..c511516c5e 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-template.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-template.md @@ -1,2 +1,4 @@ +```bash appwrite sites get-template \ --template-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-usage.md b/docs/examples/1.8.x/console-cli/examples/sites/get-usage.md index e1f88627e9..87c564ea44 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-usage.md @@ -1,2 +1,4 @@ +```bash appwrite sites get-usage \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get-variable.md b/docs/examples/1.8.x/console-cli/examples/sites/get-variable.md index 2e96d63277..53a3aab731 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get-variable.md @@ -1,3 +1,5 @@ +```bash appwrite sites get-variable \ --site-id \ --variable-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/get.md b/docs/examples/1.8.x/console-cli/examples/sites/get.md index db34c8212b..334ba6866d 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/get.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/get.md @@ -1,2 +1,4 @@ +```bash appwrite sites get \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-deployments.md b/docs/examples/1.8.x/console-cli/examples/sites/list-deployments.md index 0c5de0578e..9d27a69f3d 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-deployments.md @@ -1,2 +1,4 @@ +```bash appwrite sites list-deployments \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-frameworks.md b/docs/examples/1.8.x/console-cli/examples/sites/list-frameworks.md index 7a213b9ac5..809b725f6d 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-frameworks.md @@ -1 +1,3 @@ +```bash appwrite sites list-frameworks +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-logs.md b/docs/examples/1.8.x/console-cli/examples/sites/list-logs.md index 565bcab9d4..3cc1e0a258 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-logs.md @@ -1,2 +1,4 @@ +```bash appwrite sites list-logs \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-specifications.md b/docs/examples/1.8.x/console-cli/examples/sites/list-specifications.md index e8f1a87eb5..6107240c3d 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-specifications.md @@ -1 +1,3 @@ +```bash appwrite sites list-specifications +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-templates.md b/docs/examples/1.8.x/console-cli/examples/sites/list-templates.md index bde094fce8..46d6629eb0 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-templates.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-templates.md @@ -1 +1,3 @@ +```bash appwrite sites list-templates +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-usage.md b/docs/examples/1.8.x/console-cli/examples/sites/list-usage.md index b5b4171d34..7addfce68c 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-usage.md @@ -1 +1,3 @@ +```bash appwrite sites list-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list-variables.md b/docs/examples/1.8.x/console-cli/examples/sites/list-variables.md index 419fe76f8f..67861820af 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list-variables.md @@ -1,2 +1,4 @@ +```bash appwrite sites list-variables \ --site-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/list.md b/docs/examples/1.8.x/console-cli/examples/sites/list.md index 9d3b883c34..7ca046dcd4 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/list.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/list.md @@ -1 +1,3 @@ +```bash appwrite sites list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/console-cli/examples/sites/update-deployment-status.md index 9220265d12..a2f82e1ce7 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/update-deployment-status.md @@ -1,3 +1,5 @@ +```bash appwrite sites update-deployment-status \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/console-cli/examples/sites/update-site-deployment.md index 9db9e11ae0..c6d38309b5 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/update-site-deployment.md @@ -1,3 +1,5 @@ +```bash appwrite sites update-site-deployment \ --site-id \ --deployment-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/update-variable.md b/docs/examples/1.8.x/console-cli/examples/sites/update-variable.md index e7df76a549..06fe2cd7cc 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/update-variable.md @@ -1,4 +1,6 @@ +```bash appwrite sites update-variable \ --site-id \ --variable-id \ --key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/sites/update.md b/docs/examples/1.8.x/console-cli/examples/sites/update.md index 6fab0af5fb..e308ce5ee6 100644 --- a/docs/examples/1.8.x/console-cli/examples/sites/update.md +++ b/docs/examples/1.8.x/console-cli/examples/sites/update.md @@ -1,4 +1,6 @@ +```bash appwrite sites update \ --site-id \ --name \ --framework analog +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/create-bucket.md b/docs/examples/1.8.x/console-cli/examples/storage/create-bucket.md index 2e26dc770f..1b19668b58 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/create-bucket.md @@ -1,3 +1,5 @@ +```bash appwrite storage create-bucket \ --bucket-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/create-file.md b/docs/examples/1.8.x/console-cli/examples/storage/create-file.md index 82b4d0a1aa..f7a00e86be 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/create-file.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/create-file.md @@ -1,4 +1,6 @@ +```bash appwrite storage create-file \ --bucket-id \ --file-id \ --file 'path/to/file.png' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/delete-bucket.md b/docs/examples/1.8.x/console-cli/examples/storage/delete-bucket.md index 33e520cc15..568355e4af 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/delete-bucket.md @@ -1,2 +1,4 @@ +```bash appwrite storage delete-bucket \ --bucket-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/delete-file.md b/docs/examples/1.8.x/console-cli/examples/storage/delete-file.md index a3006c2fea..1414d61f41 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/delete-file.md @@ -1,3 +1,5 @@ +```bash appwrite storage delete-file \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-bucket-usage.md b/docs/examples/1.8.x/console-cli/examples/storage/get-bucket-usage.md index 794b0ec8cf..237158e937 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-bucket-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-bucket-usage.md @@ -1,2 +1,4 @@ +```bash appwrite storage get-bucket-usage \ --bucket-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-bucket.md b/docs/examples/1.8.x/console-cli/examples/storage/get-bucket.md index 64042812f6..173cbfd9d0 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-bucket.md @@ -1,2 +1,4 @@ +```bash appwrite storage get-bucket \ --bucket-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-file-download.md b/docs/examples/1.8.x/console-cli/examples/storage/get-file-download.md index 12a74ea0a2..761ff67a25 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-file-download.md @@ -1,3 +1,5 @@ +```bash appwrite storage get-file-download \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-file-preview.md b/docs/examples/1.8.x/console-cli/examples/storage/get-file-preview.md index 82f180efc8..cc9d13d9be 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-file-preview.md @@ -1,3 +1,5 @@ +```bash appwrite storage get-file-preview \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-file-view.md b/docs/examples/1.8.x/console-cli/examples/storage/get-file-view.md index 5ce6526fad..d548d9e9e4 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-file-view.md @@ -1,3 +1,5 @@ +```bash appwrite storage get-file-view \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-file.md b/docs/examples/1.8.x/console-cli/examples/storage/get-file.md index 8c139e602a..89a7e4a76c 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-file.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-file.md @@ -1,3 +1,5 @@ +```bash appwrite storage get-file \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/get-usage.md b/docs/examples/1.8.x/console-cli/examples/storage/get-usage.md index 1d69ffd820..e2f5bb9af7 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/get-usage.md @@ -1 +1,3 @@ +```bash appwrite storage get-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/list-buckets.md b/docs/examples/1.8.x/console-cli/examples/storage/list-buckets.md index 1bffd0ebf8..2b466f6403 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/list-buckets.md @@ -1 +1,3 @@ +```bash appwrite storage list-buckets +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/list-files.md b/docs/examples/1.8.x/console-cli/examples/storage/list-files.md index 29dc20d3a1..bb45294c12 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/list-files.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/list-files.md @@ -1,2 +1,4 @@ +```bash appwrite storage list-files \ --bucket-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/update-bucket.md b/docs/examples/1.8.x/console-cli/examples/storage/update-bucket.md index 12282f3b11..e34fca27a1 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/update-bucket.md @@ -1,3 +1,5 @@ +```bash appwrite storage update-bucket \ --bucket-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/storage/update-file.md b/docs/examples/1.8.x/console-cli/examples/storage/update-file.md index 86a3f3d10b..c8ce98b067 100644 --- a/docs/examples/1.8.x/console-cli/examples/storage/update-file.md +++ b/docs/examples/1.8.x/console-cli/examples/storage/update-file.md @@ -1,3 +1,5 @@ +```bash appwrite storage update-file \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md index b191215d67..07660633a9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-boolean-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md index 7ccaf9e41f..3dac98375e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-datetime-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md index 54f32b99db..1f7aac87f7 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-email-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md index 4f3e9cea71..1fffdc8091 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db create-enum-column \ --database-id \ --table-id \ --key '' \ --elements one two three \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md index a365cefc8c..f8828d3715 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-float-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md index 7100907ff3..2446ccf667 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db create-index \ --database-id \ --table-id \ --key '' \ --type key \ --columns one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md index 2dc799b29f..a6634cfa86 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-integer-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md index 2b4601337e..51e54769ba 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-ip-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-line-column.md index cd6db93ea9..9b7607b123 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-line-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-line-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-longtext-column.md index fdc497ed66..c24530d25e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-longtext-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-longtext-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-mediumtext-column.md index 37ae05ffab..db1aca5e2c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-mediumtext-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-mediumtext-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-operations.md index dbea61862b..d89fb8dc19 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-operations.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db create-operations \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-point-column.md index 0e7d2320d1..16260b1170 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-point-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-point-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-polygon-column.md index 060323b152..6103ed51bf 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-polygon-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-polygon-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md index d7d58b6eb0..194e9c53cf 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-relationship-column \ --database-id \ --table-id \ --related-table-id \ --type oneToOne +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md index d15c5ec047..343d3bcc98 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-row \ --database-id \ --table-id \ --row-id \ --data '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md index 39eb34961c..13e372acd3 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db create-rows \ --database-id \ --table-id \ --rows one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md index a394ff59d0..02da4b2217 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db create-string-column \ --database-id \ --table-id \ --key '' \ --size 1 \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md index 1c5a22d7ef..aaabdfc253 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db create-table \ --database-id \ --table-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-text-column.md index 76e799af6d..7fa1ea5f7e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-text-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-text-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-transaction.md index c6487fd74a..b1013a1f32 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-transaction.md @@ -1 +1,3 @@ +```bash appwrite tables-db create-transaction +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md index d9b9f2b36f..fa167f56fd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db create-url-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-varchar-column.md index 9e946fc059..760c87041c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-varchar-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db create-varchar-column \ --database-id \ --table-id \ --key '' \ --size 1 \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md index d10c5d663d..ea3ddfcc0c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db create \ --database-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md index 79e0a51de1..df9c48608a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db decrement-row-column \ --database-id \ --table-id \ --row-id \ --column '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md index 4689290543..bee77154a8 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db delete-column \ --database-id \ --table-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md index 0729f87952..b847866913 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db delete-index \ --database-id \ --table-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md index 03b3562f5f..f7a58ca6d9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db delete-row \ --database-id \ --table-id \ --row-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md index 92cd143ad2..eccdc15031 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db delete-rows \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md index 6ec9df4539..39429f07bd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db delete-table \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-transaction.md index 59e40d2fda..d807c91e99 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db delete-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md index 52bf4cdde3..009008738f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db delete \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md index d209c45b22..29f4689aa9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db get-column \ --database-id \ --table-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md index 2035e78b65..44073c021a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db get-index \ --database-id \ --table-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md index c8d06ea02f..e8ccf4bd36 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db get-row \ --database-id \ --table-id \ --row-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md index 0e7782f5eb..c59a5e03dc 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db get-table-usage \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md index 9e5e038163..a9be557c99 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db get-table \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-transaction.md index 29ea9d75da..74f2ffdc55 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db get-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md index ff421ce3f0..58f5a6e3df 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db get-usage \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md index 1b125eccf0..1451a3bf1e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db get \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md index a15ab6917c..750a6253c7 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db increment-row-column \ --database-id \ --table-id \ --row-id \ --column '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md index 4c233d519a..d84d3b88b0 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db list-columns \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md index 4139175a17..5880cfd9ec 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db list-indexes \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md index dfa2f98455..f956b3ee06 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db list-row-logs \ --database-id \ --table-id \ --row-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md index 904350ef20..adf42b303a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db list-rows \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md index a803bf4053..3b7bf557cd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db list-table-logs \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md index f7e7930841..5954aa178f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db list-tables \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-transactions.md index 4dfbc2e567..b99de5fb39 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-transactions.md @@ -1 +1,3 @@ +```bash appwrite tables-db list-transactions +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md index 9e6b9802a4..a49a293ca4 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md @@ -1 +1,3 @@ +```bash appwrite tables-db list-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md index 22d7e017a7..832493db5e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md @@ -1 +1,3 @@ +```bash appwrite tables-db list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md index 318ddac301..efcdb41eba 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-boolean-column \ --database-id \ --table-id \ --key '' \ --required false \ --default false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md index b40a825368..df3c82ac65 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-datetime-column \ --database-id \ --table-id \ --key '' \ --required false \ --default '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md index cd8104b775..f4d07a30aa 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-email-column \ --database-id \ --table-id \ --key '' \ --required false \ --default email@example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md index 66bc3e2899..33571baeb1 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```bash appwrite tables-db update-enum-column \ --database-id \ --table-id \ @@ -5,3 +6,4 @@ appwrite tables-db update-enum-column \ --elements one two three \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md index a3c6e6b265..805feb0973 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-float-column \ --database-id \ --table-id \ --key '' \ --required false \ --default null +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md index f651c5c142..3cd84bcca0 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-integer-column \ --database-id \ --table-id \ --key '' \ --required false \ --default null +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md index 9a1425c522..b045fac26e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-ip-column \ --database-id \ --table-id \ --key '' \ --required false \ --default '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-line-column.md index 203ebd64db..0273d18d39 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-line-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db update-line-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-longtext-column.md index 5a5941393d..5c37b21a83 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-longtext-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-longtext-column \ --database-id \ --table-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-mediumtext-column.md index 09d8607898..ab605d9122 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-mediumtext-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-mediumtext-column \ --database-id \ --table-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-point-column.md index 676a37ef49..01516c2aae 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-point-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db update-point-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-polygon-column.md index 24e1f01f91..3758834a0d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-polygon-column.md @@ -1,5 +1,7 @@ +```bash appwrite tables-db update-polygon-column \ --database-id \ --table-id \ --key '' \ --required false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md index fb358a311b..63dba1dd5b 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db update-relationship-column \ --database-id \ --table-id \ --key '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md index 31d88664ab..416d495ab0 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db update-row \ --database-id \ --table-id \ --row-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md index eca741f185..5176616437 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db update-rows \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md index fadb277b02..6fd3cf2959 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-string-column \ --database-id \ --table-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md index d438c885cd..c260e4c8ec 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md @@ -1,3 +1,5 @@ +```bash appwrite tables-db update-table \ --database-id \ --table-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-text-column.md index f07a97ce62..608ce2dfde 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-text-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-text-column \ --database-id \ --table-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-transaction.md index 6fa6d9510e..295ec8821c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-transaction.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db update-transaction \ --transaction-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md index e1bbdbb3b4..4a4c47b09d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-url-column \ --database-id \ --table-id \ --key '' \ --required false \ --default https://example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-varchar-column.md index ef2ebd01dc..fdcfd83b90 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-varchar-column.md @@ -1,6 +1,8 @@ +```bash appwrite tables-db update-varchar-column \ --database-id \ --table-id \ --key '' \ --required false \ --default +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md index 4fc7bbc928..32cbef04fd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md @@ -1,2 +1,4 @@ +```bash appwrite tables-db update \ --database-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md index 32c9fd62b2..298f592a3c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db upsert-row \ --database-id \ --table-id \ --row-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md index 85e0bc0ec9..e0ff179554 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md @@ -1,4 +1,6 @@ +```bash appwrite tables-db upsert-rows \ --database-id \ --table-id \ --rows one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/create-membership.md b/docs/examples/1.8.x/console-cli/examples/teams/create-membership.md index 6e9d50a147..10a209a3a5 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/create-membership.md @@ -1,3 +1,5 @@ +```bash appwrite teams create-membership \ --team-id \ --roles one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/create.md b/docs/examples/1.8.x/console-cli/examples/teams/create.md index fb8bc3ade6..b48b5b6a73 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/create.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/create.md @@ -1,3 +1,5 @@ +```bash appwrite teams create \ --team-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/delete-membership.md b/docs/examples/1.8.x/console-cli/examples/teams/delete-membership.md index c9f1596aa8..840b2f34fa 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/delete-membership.md @@ -1,3 +1,5 @@ +```bash appwrite teams delete-membership \ --team-id \ --membership-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/delete.md b/docs/examples/1.8.x/console-cli/examples/teams/delete.md index 04d5e4eadd..9cc070f3bb 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/delete.md @@ -1,2 +1,4 @@ +```bash appwrite teams delete \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/get-membership.md b/docs/examples/1.8.x/console-cli/examples/teams/get-membership.md index a832b2384d..ded848a44d 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/get-membership.md @@ -1,3 +1,5 @@ +```bash appwrite teams get-membership \ --team-id \ --membership-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/get-prefs.md b/docs/examples/1.8.x/console-cli/examples/teams/get-prefs.md index a2d456a77c..82bac1afcc 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/get-prefs.md @@ -1,2 +1,4 @@ +```bash appwrite teams get-prefs \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/get.md b/docs/examples/1.8.x/console-cli/examples/teams/get.md index 94f80a9ab7..5c46157a31 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/get.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/get.md @@ -1,2 +1,4 @@ +```bash appwrite teams get \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/list-logs.md b/docs/examples/1.8.x/console-cli/examples/teams/list-logs.md index cbdf32ad9e..6a19292294 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/list-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/list-logs.md @@ -1,2 +1,4 @@ +```bash appwrite teams list-logs \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/list-memberships.md b/docs/examples/1.8.x/console-cli/examples/teams/list-memberships.md index 6a1cbcae7e..bce1769de3 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/list-memberships.md @@ -1,2 +1,4 @@ +```bash appwrite teams list-memberships \ --team-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/list.md b/docs/examples/1.8.x/console-cli/examples/teams/list.md index 90ab82f8a1..6f4f38dcd9 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/list.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/list.md @@ -1 +1,3 @@ +```bash appwrite teams list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/update-membership-status.md b/docs/examples/1.8.x/console-cli/examples/teams/update-membership-status.md index 9c234f528e..92221b8773 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/update-membership-status.md @@ -1,5 +1,7 @@ +```bash appwrite teams update-membership-status \ --team-id \ --membership-id \ --user-id \ --secret +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/update-membership.md b/docs/examples/1.8.x/console-cli/examples/teams/update-membership.md index f16c776ac3..db2f9ff4a3 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/update-membership.md @@ -1,4 +1,6 @@ +```bash appwrite teams update-membership \ --team-id \ --membership-id \ --roles one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/update-name.md b/docs/examples/1.8.x/console-cli/examples/teams/update-name.md index cc803fbc47..017c9b106e 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/update-name.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/update-name.md @@ -1,3 +1,5 @@ +```bash appwrite teams update-name \ --team-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/teams/update-prefs.md b/docs/examples/1.8.x/console-cli/examples/teams/update-prefs.md index a8ce42646e..404b52f93e 100644 --- a/docs/examples/1.8.x/console-cli/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/teams/update-prefs.md @@ -1,3 +1,5 @@ +```bash appwrite teams update-prefs \ --team-id \ --prefs '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tokens/create-file-token.md b/docs/examples/1.8.x/console-cli/examples/tokens/create-file-token.md index 3890041d59..02b877e04c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/console-cli/examples/tokens/create-file-token.md @@ -1,3 +1,5 @@ +```bash appwrite tokens create-file-token \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tokens/delete.md b/docs/examples/1.8.x/console-cli/examples/tokens/delete.md index 93c99a924b..82786766a8 100644 --- a/docs/examples/1.8.x/console-cli/examples/tokens/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/tokens/delete.md @@ -1,2 +1,4 @@ +```bash appwrite tokens delete \ --token-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tokens/get.md b/docs/examples/1.8.x/console-cli/examples/tokens/get.md index 617c112eac..4b87183954 100644 --- a/docs/examples/1.8.x/console-cli/examples/tokens/get.md +++ b/docs/examples/1.8.x/console-cli/examples/tokens/get.md @@ -1,2 +1,4 @@ +```bash appwrite tokens get \ --token-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tokens/list.md b/docs/examples/1.8.x/console-cli/examples/tokens/list.md index 95e0df3b02..8f0599147a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tokens/list.md +++ b/docs/examples/1.8.x/console-cli/examples/tokens/list.md @@ -1,3 +1,5 @@ +```bash appwrite tokens list \ --bucket-id \ --file-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/tokens/update.md b/docs/examples/1.8.x/console-cli/examples/tokens/update.md index ab86424adf..ead2ff1c5e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tokens/update.md +++ b/docs/examples/1.8.x/console-cli/examples/tokens/update.md @@ -1,2 +1,4 @@ +```bash appwrite tokens update \ --token-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-argon-2-user.md index fd2a7e4135..9e6feeee3a 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-argon-2-user.md @@ -1,4 +1,6 @@ +```bash appwrite users create-argon-2-user \ --user-id \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-bcrypt-user.md index e05d9e83d8..9a01746f42 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-bcrypt-user.md @@ -1,4 +1,6 @@ +```bash appwrite users create-bcrypt-user \ --user-id \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-jwt.md b/docs/examples/1.8.x/console-cli/examples/users/create-jwt.md index 508c0f64c5..cdf8fbb2cd 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-jwt.md @@ -1,2 +1,4 @@ +```bash appwrite users create-jwt \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-md-5-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-md-5-user.md index f47b9499b1..716df51ee9 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-md-5-user.md @@ -1,4 +1,6 @@ +```bash appwrite users create-md-5-user \ --user-id \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/users/create-mfa-recovery-codes.md index c212872385..1d4be1d66d 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-mfa-recovery-codes.md @@ -1,2 +1,4 @@ +```bash appwrite users create-mfa-recovery-codes \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-ph-pass-user.md index a40470516d..1f8f59faa9 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-ph-pass-user.md @@ -1,4 +1,6 @@ +```bash appwrite users create-ph-pass-user \ --user-id \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-modified-user.md index df4d651abf..d06f3bfc62 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```bash appwrite users create-scrypt-modified-user \ --user-id \ --email email@example.com \ @@ -5,3 +6,4 @@ appwrite users create-scrypt-modified-user \ --password-salt \ --password-salt-separator \ --password-signer-key +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-user.md index 2f911b5891..01b099ac96 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```bash appwrite users create-scrypt-user \ --user-id \ --email email@example.com \ @@ -7,3 +8,4 @@ appwrite users create-scrypt-user \ --password-memory null \ --password-parallel null \ --password-length null +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-session.md b/docs/examples/1.8.x/console-cli/examples/users/create-session.md index 2644dce0ce..f4955272ca 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-session.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-session.md @@ -1,2 +1,4 @@ +```bash appwrite users create-session \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-sha-user.md b/docs/examples/1.8.x/console-cli/examples/users/create-sha-user.md index 6965698f55..c5afbeb075 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-sha-user.md @@ -1,4 +1,6 @@ +```bash appwrite users create-sha-user \ --user-id \ --email email@example.com \ --password password +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-target.md b/docs/examples/1.8.x/console-cli/examples/users/create-target.md index d0775c9e4d..9653635c73 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-target.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-target.md @@ -1,5 +1,7 @@ +```bash appwrite users create-target \ --user-id \ --target-id \ --provider-type email \ --identifier +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create-token.md b/docs/examples/1.8.x/console-cli/examples/users/create-token.md index 30b7812af9..20d0bc2532 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create-token.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create-token.md @@ -1,2 +1,4 @@ +```bash appwrite users create-token \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/create.md b/docs/examples/1.8.x/console-cli/examples/users/create.md index 1103eaf476..f17370a419 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/create.md +++ b/docs/examples/1.8.x/console-cli/examples/users/create.md @@ -1,2 +1,4 @@ +```bash appwrite users create \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete-identity.md b/docs/examples/1.8.x/console-cli/examples/users/delete-identity.md index 602a7d0cd8..85365557b0 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete-identity.md @@ -1,2 +1,4 @@ +```bash appwrite users delete-identity \ --identity-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/console-cli/examples/users/delete-mfa-authenticator.md index a0fcc704c3..64f32443ad 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,5 @@ +```bash appwrite users delete-mfa-authenticator \ --user-id \ --type totp +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete-session.md b/docs/examples/1.8.x/console-cli/examples/users/delete-session.md index f638b83303..cc2192a8a3 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete-session.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete-session.md @@ -1,3 +1,5 @@ +```bash appwrite users delete-session \ --user-id \ --session-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete-sessions.md b/docs/examples/1.8.x/console-cli/examples/users/delete-sessions.md index eb038cc504..f8559f27c4 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete-sessions.md @@ -1,2 +1,4 @@ +```bash appwrite users delete-sessions \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete-target.md b/docs/examples/1.8.x/console-cli/examples/users/delete-target.md index e6410dd1f0..2858b0d88e 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete-target.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete-target.md @@ -1,3 +1,5 @@ +```bash appwrite users delete-target \ --user-id \ --target-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/delete.md b/docs/examples/1.8.x/console-cli/examples/users/delete.md index 00f8f9c982..611b9be030 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/users/delete.md @@ -1,2 +1,4 @@ +```bash appwrite users delete \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/users/get-mfa-recovery-codes.md index cbb75820c5..bf9e3614bf 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/users/get-mfa-recovery-codes.md @@ -1,2 +1,4 @@ +```bash appwrite users get-mfa-recovery-codes \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/get-prefs.md b/docs/examples/1.8.x/console-cli/examples/users/get-prefs.md index 45d01a6fc3..3de07bc57f 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/users/get-prefs.md @@ -1,2 +1,4 @@ +```bash appwrite users get-prefs \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/get-target.md b/docs/examples/1.8.x/console-cli/examples/users/get-target.md index 1be3c0efda..9310d7b701 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/get-target.md +++ b/docs/examples/1.8.x/console-cli/examples/users/get-target.md @@ -1,3 +1,5 @@ +```bash appwrite users get-target \ --user-id \ --target-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/get-usage.md b/docs/examples/1.8.x/console-cli/examples/users/get-usage.md index a4d13e70b9..bbb6ee34a2 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/users/get-usage.md @@ -1 +1,3 @@ +```bash appwrite users get-usage +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/get.md b/docs/examples/1.8.x/console-cli/examples/users/get.md index 341844cfc9..b9afa039fe 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/get.md +++ b/docs/examples/1.8.x/console-cli/examples/users/get.md @@ -1,2 +1,4 @@ +```bash appwrite users get \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-identities.md b/docs/examples/1.8.x/console-cli/examples/users/list-identities.md index d4fa82f2a6..4dcdb5d8a1 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-identities.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-identities.md @@ -1 +1,3 @@ +```bash appwrite users list-identities +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-logs.md b/docs/examples/1.8.x/console-cli/examples/users/list-logs.md index d2b95beef6..0b622bf9dd 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-logs.md @@ -1,2 +1,4 @@ +```bash appwrite users list-logs \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-memberships.md b/docs/examples/1.8.x/console-cli/examples/users/list-memberships.md index f027e4a2e3..df51790f9b 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-memberships.md @@ -1,2 +1,4 @@ +```bash appwrite users list-memberships \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/console-cli/examples/users/list-mfa-factors.md index d2cadf5b6f..94cb34d8b6 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-mfa-factors.md @@ -1,2 +1,4 @@ +```bash appwrite users list-mfa-factors \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-sessions.md b/docs/examples/1.8.x/console-cli/examples/users/list-sessions.md index 761447a6d1..5986e2bad5 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-sessions.md @@ -1,2 +1,4 @@ +```bash appwrite users list-sessions \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list-targets.md b/docs/examples/1.8.x/console-cli/examples/users/list-targets.md index 26330e801f..38d7eee827 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list-targets.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list-targets.md @@ -1,2 +1,4 @@ +```bash appwrite users list-targets \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/list.md b/docs/examples/1.8.x/console-cli/examples/users/list.md index 94057adff1..9930d18492 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/list.md +++ b/docs/examples/1.8.x/console-cli/examples/users/list.md @@ -1 +1,3 @@ +```bash appwrite users list +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-email-verification.md b/docs/examples/1.8.x/console-cli/examples/users/update-email-verification.md index 9f4788aae0..389b34e700 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-email-verification.md @@ -1,3 +1,5 @@ +```bash appwrite users update-email-verification \ --user-id \ --email-verification false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-email.md b/docs/examples/1.8.x/console-cli/examples/users/update-email.md index f02b79de5a..2575bd6706 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-email.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-email.md @@ -1,3 +1,5 @@ +```bash appwrite users update-email \ --user-id \ --email email@example.com +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-labels.md b/docs/examples/1.8.x/console-cli/examples/users/update-labels.md index 5963768ffc..8a7f8f33af 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-labels.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-labels.md @@ -1,3 +1,5 @@ +```bash appwrite users update-labels \ --user-id \ --labels one two three +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/console-cli/examples/users/update-mfa-recovery-codes.md index 4f63119f5a..86b7c52fcf 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-mfa-recovery-codes.md @@ -1,2 +1,4 @@ +```bash appwrite users update-mfa-recovery-codes \ --user-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-mfa.md b/docs/examples/1.8.x/console-cli/examples/users/update-mfa.md index 1d36d9e1de..234ef597f8 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-mfa.md @@ -1,3 +1,5 @@ +```bash appwrite users update-mfa \ --user-id \ --mfa false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-name.md b/docs/examples/1.8.x/console-cli/examples/users/update-name.md index 2f0d0788a5..9d74d4d5a4 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-name.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-name.md @@ -1,3 +1,5 @@ +```bash appwrite users update-name \ --user-id \ --name +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-password.md b/docs/examples/1.8.x/console-cli/examples/users/update-password.md index ec320c23cd..1298b26e7d 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-password.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-password.md @@ -1,3 +1,5 @@ +```bash appwrite users update-password \ --user-id \ --password '' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-phone-verification.md b/docs/examples/1.8.x/console-cli/examples/users/update-phone-verification.md index 2cf56b2a79..e74c81c5c7 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-phone-verification.md @@ -1,3 +1,5 @@ +```bash appwrite users update-phone-verification \ --user-id \ --phone-verification false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-phone.md b/docs/examples/1.8.x/console-cli/examples/users/update-phone.md index d1b7db3531..c137dfceb4 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-phone.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-phone.md @@ -1,3 +1,5 @@ +```bash appwrite users update-phone \ --user-id \ --number +12065550100 +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-prefs.md b/docs/examples/1.8.x/console-cli/examples/users/update-prefs.md index b4e27cdadf..14d601634f 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-prefs.md @@ -1,3 +1,5 @@ +```bash appwrite users update-prefs \ --user-id \ --prefs '{ "key": "value" }' +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-status.md b/docs/examples/1.8.x/console-cli/examples/users/update-status.md index f7c1bb44e2..39fe70564e 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-status.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-status.md @@ -1,3 +1,5 @@ +```bash appwrite users update-status \ --user-id \ --status false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/users/update-target.md b/docs/examples/1.8.x/console-cli/examples/users/update-target.md index 1fa4b7ab7b..1bdd8bfe7a 100644 --- a/docs/examples/1.8.x/console-cli/examples/users/update-target.md +++ b/docs/examples/1.8.x/console-cli/examples/users/update-target.md @@ -1,3 +1,5 @@ +```bash appwrite users update-target \ --user-id \ --target-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/create-repository-detection.md b/docs/examples/1.8.x/console-cli/examples/vcs/create-repository-detection.md index d10eac8091..b0d5315c1a 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/create-repository-detection.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/create-repository-detection.md @@ -1,4 +1,6 @@ +```bash appwrite vcs create-repository-detection \ --installation-id \ --provider-repository-id \ --type runtime +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/create-repository.md b/docs/examples/1.8.x/console-cli/examples/vcs/create-repository.md index fa9206cfa2..97a89a3e8f 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/create-repository.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/create-repository.md @@ -1,4 +1,6 @@ +```bash appwrite vcs create-repository \ --installation-id \ --name \ --private false +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/delete-installation.md b/docs/examples/1.8.x/console-cli/examples/vcs/delete-installation.md index ae9fd335a8..fc1189b23e 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/delete-installation.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/delete-installation.md @@ -1,2 +1,4 @@ +```bash appwrite vcs delete-installation \ --installation-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/get-installation.md b/docs/examples/1.8.x/console-cli/examples/vcs/get-installation.md index e589d60460..8dfe1d01f8 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/get-installation.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/get-installation.md @@ -1,2 +1,4 @@ +```bash appwrite vcs get-installation \ --installation-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/get-repository-contents.md b/docs/examples/1.8.x/console-cli/examples/vcs/get-repository-contents.md index 786d2201f1..682bdddaea 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/get-repository-contents.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/get-repository-contents.md @@ -1,3 +1,5 @@ +```bash appwrite vcs get-repository-contents \ --installation-id \ --provider-repository-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/get-repository.md b/docs/examples/1.8.x/console-cli/examples/vcs/get-repository.md index 10ab55500c..70a3d71b36 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/get-repository.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/get-repository.md @@ -1,3 +1,5 @@ +```bash appwrite vcs get-repository \ --installation-id \ --provider-repository-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/list-installations.md b/docs/examples/1.8.x/console-cli/examples/vcs/list-installations.md index 92e13bf0b8..9f342c8678 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/list-installations.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/list-installations.md @@ -1 +1,3 @@ +```bash appwrite vcs list-installations +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/list-repositories.md b/docs/examples/1.8.x/console-cli/examples/vcs/list-repositories.md index 7a3214074a..f0b67571e1 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/list-repositories.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/list-repositories.md @@ -1,3 +1,5 @@ +```bash appwrite vcs list-repositories \ --installation-id \ --type runtime +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/list-repository-branches.md b/docs/examples/1.8.x/console-cli/examples/vcs/list-repository-branches.md index c6036731b1..cfa8d0fa18 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/list-repository-branches.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/list-repository-branches.md @@ -1,3 +1,5 @@ +```bash appwrite vcs list-repository-branches \ --installation-id \ --provider-repository-id +``` diff --git a/docs/examples/1.8.x/console-cli/examples/vcs/update-external-deployments.md b/docs/examples/1.8.x/console-cli/examples/vcs/update-external-deployments.md index f83891cb3e..8e5ae96c0d 100644 --- a/docs/examples/1.8.x/console-cli/examples/vcs/update-external-deployments.md +++ b/docs/examples/1.8.x/console-cli/examples/vcs/update-external-deployments.md @@ -1,4 +1,6 @@ +```bash appwrite vcs update-external-deployments \ --installation-id \ --repository-id \ --provider-pull-request-id +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/console-web/examples/account/create-anonymous-session.md index 113f882e80..8a84c929f7 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createAnonymousSession(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-email-password-session.md b/docs/examples/1.8.x/console-web/examples/account/create-email-password-session.md index d8766a4da9..678501c601 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createEmailPasswordSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-email-token.md b/docs/examples/1.8.x/console-web/examples/account/create-email-token.md index 12e7fb9365..ac4deedf5c 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createEmailToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-email-verification.md b/docs/examples/1.8.x/console-web/examples/account/create-email-verification.md index b0e52db469..d65d644eb7 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-jwt.md b/docs/examples/1.8.x/console-web/examples/account/create-jwt.md index 2507a651b9..d3841a6869 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createJWT({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/console-web/examples/account/create-magic-url-token.md index 7f3cd722ea..87fb96ae90 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.createMagicURLToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/console-web/examples/account/create-mfa-authenticator.md index 7d3a01011f..6e29cea269 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/console-web/examples/account/create-mfa-challenge.md index 3bea832ffd..10d5136f98 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticationFactor } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/account/create-mfa-recovery-codes.md index d5ec4aaffb..2425d4ee95 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-session.md b/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-session.md index 10270fc64f..304990e0d0 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Session({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-token.md index 15c0d5b440..5686fbc412 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, OAuthProvider } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ account.createOAuth2Token({ scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-phone-token.md b/docs/examples/1.8.x/console-web/examples/account/create-phone-token.md index 192a83f6ad..3b99a968a8 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createPhoneToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-phone-verification.md b/docs/examples/1.8.x/console-web/examples/account/create-phone-verification.md index 03185e3e91..28d14c1334 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.createPhoneVerification(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-push-target.md b/docs/examples/1.8.x/console-web/examples/account/create-push-target.md index d4add51faa..5f1ff79403 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-push-target.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.createPushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-recovery.md b/docs/examples/1.8.x/console-web/examples/account/create-recovery.md index e7699db34a..6174d234c4 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-session.md b/docs/examples/1.8.x/console-web/examples/account/create-session.md index 74e8917612..7e7d479823 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.createSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create-verification.md b/docs/examples/1.8.x/console-web/examples/account/create-verification.md index bc873b5263..b8b9369568 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.createVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/create.md b/docs/examples/1.8.x/console-web/examples/account/create.md index d379255361..060f3188db 100644 --- a/docs/examples/1.8.x/console-web/examples/account/create.md +++ b/docs/examples/1.8.x/console-web/examples/account/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await account.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete-identity.md b/docs/examples/1.8.x/console-web/examples/account/delete-identity.md index c5bcd94525..9a332b2906 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteIdentity({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/console-web/examples/account/delete-mfa-authenticator.md index 5d6cfd9a3a..579dfbc15d 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete-push-target.md b/docs/examples/1.8.x/console-web/examples/account/delete-push-target.md index 546813a3f6..a18fbfca44 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete-push-target.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deletePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete-session.md b/docs/examples/1.8.x/console-web/examples/account/delete-session.md index 83bc337294..b1f53ae165 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.deleteSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete-sessions.md b/docs/examples/1.8.x/console-web/examples/account/delete-sessions.md index b9904d612f..e1b64ddf63 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.deleteSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/delete.md b/docs/examples/1.8.x/console-web/examples/account/delete.md index 2fc730f9f0..4f1ce4e97b 100644 --- a/docs/examples/1.8.x/console-web/examples/account/delete.md +++ b/docs/examples/1.8.x/console-web/examples/account/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.delete(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/account/get-mfa-recovery-codes.md index a8c7810d78..8f330891ae 100644 --- a/docs/examples/1.8.x/console-web/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/get-prefs.md b/docs/examples/1.8.x/console-web/examples/account/get-prefs.md index 3a013e6615..67801d203a 100644 --- a/docs/examples/1.8.x/console-web/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.getPrefs(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/get-session.md b/docs/examples/1.8.x/console-web/examples/account/get-session.md index 803966f165..dee316f2bb 100644 --- a/docs/examples/1.8.x/console-web/examples/account/get-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/get-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.getSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/get.md b/docs/examples/1.8.x/console-web/examples/account/get.md index 35661e483b..6f45cf3175 100644 --- a/docs/examples/1.8.x/console-web/examples/account/get.md +++ b/docs/examples/1.8.x/console-web/examples/account/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/list-identities.md b/docs/examples/1.8.x/console-web/examples/account/list-identities.md index 334b0a766e..c14c21ada8 100644 --- a/docs/examples/1.8.x/console-web/examples/account/list-identities.md +++ b/docs/examples/1.8.x/console-web/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listIdentities({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/list-logs.md b/docs/examples/1.8.x/console-web/examples/account/list-logs.md index 3a26507b00..2468c1a3e6 100644 --- a/docs/examples/1.8.x/console-web/examples/account/list-logs.md +++ b/docs/examples/1.8.x/console-web/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/console-web/examples/account/list-mfa-factors.md index 078503a678..bbf10c48e1 100644 --- a/docs/examples/1.8.x/console-web/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/console-web/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listMFAFactors(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/list-sessions.md b/docs/examples/1.8.x/console-web/examples/account/list-sessions.md index 6a24e372c5..b6f0cbc5fc 100644 --- a/docs/examples/1.8.x/console-web/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/console-web/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.listSessions(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-email-verification.md b/docs/examples/1.8.x/console-web/examples/account/update-email-verification.md index e0e09fd4ce..1ace42d7ff 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-email.md b/docs/examples/1.8.x/console-web/examples/account/update-email.md index f6631646aa..7f396f76b2 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-email.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/console-web/examples/account/update-magic-url-session.md index 7c58ca4db9..486ccd76b4 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMagicURLSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/console-web/examples/account/update-mfa-authenticator.md index b6aa383de3..f04ca1e1ad 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/console-web/examples/account/update-mfa-challenge.md index d82e58326f..3ec065c9af 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateMFAChallenge({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/account/update-mfa-recovery-codes.md index d359a4ee3d..f747ab7e29 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateMFARecoveryCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-mfa.md b/docs/examples/1.8.x/console-web/examples/account/update-mfa.md index f62374c57e..59b099cf90 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateMFA({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-name.md b/docs/examples/1.8.x/console-web/examples/account/update-name.md index c370197036..88432c5099 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-name.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-password.md b/docs/examples/1.8.x/console-web/examples/account/update-password.md index 9e2d367dd2..5699dab485 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-password.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-password.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePassword({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-phone-session.md b/docs/examples/1.8.x/console-web/examples/account/update-phone-session.md index 8be5b8e43d..73bcd308f6 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-phone-verification.md b/docs/examples/1.8.x/console-web/examples/account/update-phone-verification.md index 0b1b91374f..9cfd5c5b9e 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhoneVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-phone.md b/docs/examples/1.8.x/console-web/examples/account/update-phone.md index 19bfd15360..5702ff7609 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-phone.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePhone({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-prefs.md b/docs/examples/1.8.x/console-web/examples/account/update-prefs.md index cebe1da948..ce5cd03768 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await account.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-push-target.md b/docs/examples/1.8.x/console-web/examples/account/update-push-target.md index b9c52b872c..fc66115e39 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-push-target.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-push-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updatePushTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-recovery.md b/docs/examples/1.8.x/console-web/examples/account/update-recovery.md index 17fe29b7b3..e283313b0c 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await account.updateRecovery({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-session.md b/docs/examples/1.8.x/console-web/examples/account/update-session.md index 3f331b1064..0b455cbe36 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-session.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await account.updateSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-status.md b/docs/examples/1.8.x/console-web/examples/account/update-status.md index c1377dc4a6..b4c557cdd7 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-status.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const account = new Account(client); const result = await account.updateStatus(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/account/update-verification.md b/docs/examples/1.8.x/console-web/examples/account/update-verification.md index 8d254c1014..5d1b312b87 100644 --- a/docs/examples/1.8.x/console-web/examples/account/update-verification.md +++ b/docs/examples/1.8.x/console-web/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Account } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await account.updateVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/assistant/chat.md b/docs/examples/1.8.x/console-web/examples/assistant/chat.md index 868e3edbe4..9f8ee395e1 100644 --- a/docs/examples/1.8.x/console-web/examples/assistant/chat.md +++ b/docs/examples/1.8.x/console-web/examples/assistant/chat.md @@ -1,3 +1,4 @@ +```javascript import { Client, Assistant } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await assistant.chat({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-browser.md b/docs/examples/1.8.x/console-web/examples/avatars/get-browser.md index 954dd5dfef..b28ec7d935 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Browser } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getBrowser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/console-web/examples/avatars/get-credit-card.md index d81b6177c4..8949b1f4ac 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, CreditCard } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getCreditCard({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-favicon.md b/docs/examples/1.8.x/console-web/examples/avatars/get-favicon.md index 40daf096e7..0df25533e6 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = avatars.getFavicon({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-flag.md b/docs/examples/1.8.x/console-web/examples/avatars/get-flag.md index 36c746894c..122c988f15 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Flag } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getFlag({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-image.md b/docs/examples/1.8.x/console-web/examples/avatars/get-image.md index fc7fb40222..d24f49efc0 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = avatars.getImage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-initials.md b/docs/examples/1.8.x/console-web/examples/avatars/get-initials.md index 117bc5046c..892497b2be 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getInitials({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-qr.md b/docs/examples/1.8.x/console-web/examples/avatars/get-qr.md index dc1bad5727..f15fa6e97b 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = avatars.getQR({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/console-web/examples/avatars/get-screenshot.md index f08516b370..0f7a92168a 100644 --- a/docs/examples/1.8.x/console-web/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/console-web/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```javascript import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "@appwrite.io/console"; const client = new Client() @@ -33,3 +34,4 @@ const result = avatars.getScreenshot({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/console/get-resource.md b/docs/examples/1.8.x/console-web/examples/console/get-resource.md index eb687a827e..706d96ea37 100644 --- a/docs/examples/1.8.x/console-web/examples/console/get-resource.md +++ b/docs/examples/1.8.x/console-web/examples/console/get-resource.md @@ -1,3 +1,4 @@ +```javascript import { Client, Console, ConsoleResourceType } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await console.getResource({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/console/variables.md b/docs/examples/1.8.x/console-web/examples/console/variables.md index 1dce6c0260..d8c4077d9c 100644 --- a/docs/examples/1.8.x/console-web/examples/console/variables.md +++ b/docs/examples/1.8.x/console-web/examples/console/variables.md @@ -1,3 +1,4 @@ +```javascript import { Client, Console } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const console = new Console(client); const result = await console.variables(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-boolean-attribute.md index 4a5a080f29..42bfa489ac 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createBooleanAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-collection.md b/docs/examples/1.8.x/console-web/examples/databases/create-collection.md index 492379bab0..3cfc945d07 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.createCollection({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-datetime-attribute.md index a881eeb14f..c066b5bbd4 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createDatetimeAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-document.md b/docs/examples/1.8.x/console-web/examples/databases/create-document.md index ae93f274a9..4c664eca66 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-document.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-documents.md b/docs/examples/1.8.x/console-web/examples/databases/create-documents.md index 10738b0f11..01ccfa646b 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.createDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-email-attribute.md index cf998a388e..2e519cecd4 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createEmailAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-enum-attribute.md index f9cacb3721..25e914a1d2 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.createEnumAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-float-attribute.md index 00fb992d55..0234ad10cb 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.createFloatAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-index.md b/docs/examples/1.8.x/console-web/examples/databases/create-index.md index b2dc7dd018..4df9565ead 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-index.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, IndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.createIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-integer-attribute.md index a5a186b0bc..fad81d7931 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.createIntegerAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-ip-attribute.md index 940f51f33e..1aa3a6c199 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createIpAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-line-attribute.md index 113ccc8028..2ea9e81364 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.createLineAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-longtext-attribute.md index 05f5baa55a..2f777f513b 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createLongtextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-mediumtext-attribute.md index e82388797f..4a07863a87 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createMediumtextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-operations.md b/docs/examples/1.8.x/console-web/examples/databases/create-operations.md index ec511b0ddc..3fb0d8e2c5 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-point-attribute.md index 8e24fb9c0f..37b500a136 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.createPointAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-polygon-attribute.md index 82c2e519f0..736e9c52e5 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.createPolygonAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-relationship-attribute.md index 6a0e39b402..3981e35b26 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, RelationshipType, RelationMutate } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.createRelationshipAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-string-attribute.md index 5457b159ca..e5a3de86b9 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.createStringAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-text-attribute.md index c0be49a3d3..8e2a1c979b 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createTextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-transaction.md b/docs/examples/1.8.x/console-web/examples/databases/create-transaction.md index fc84f1d14f..0cc19aff4f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-url-attribute.md index 085af6c61c..c059cd8ffd 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.createUrlAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/create-varchar-attribute.md index 7d1d70cc49..f5d61db290 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.createVarcharAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/create.md b/docs/examples/1.8.x/console-web/examples/databases/create.md index ff1f739c57..7afa30b8b6 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/create.md +++ b/docs/examples/1.8.x/console-web/examples/databases/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/decrement-document-attribute.md index 64f469c6ef..dbb0c6aa38 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.decrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/delete-attribute.md index 6370b447c5..911189a8e6 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.deleteAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-collection.md b/docs/examples/1.8.x/console-web/examples/databases/delete-collection.md index ec9e8e3455..6b5b2d58e8 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await databases.deleteCollection({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-document.md b/docs/examples/1.8.x/console-web/examples/databases/delete-document.md index c2cdad3d84..7e14bd2867 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.deleteDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-documents.md b/docs/examples/1.8.x/console-web/examples/databases/delete-documents.md index 0749194c97..9b90816c65 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.deleteDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-index.md b/docs/examples/1.8.x/console-web/examples/databases/delete-index.md index 47e88ab3e9..ecdb3e2b38 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.deleteIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete-transaction.md b/docs/examples/1.8.x/console-web/examples/databases/delete-transaction.md index 16b7c64022..8800d0f1ab 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/delete.md b/docs/examples/1.8.x/console-web/examples/databases/delete.md index 4edf39c5d5..104248036c 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/delete.md +++ b/docs/examples/1.8.x/console-web/examples/databases/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/get-attribute.md index ba5c561a92..c59814ccc8 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.getAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-collection-usage.md b/docs/examples/1.8.x/console-web/examples/databases/get-collection-usage.md index c4fc5c264d..8aca6654d5 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-collection-usage.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-collection-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.getCollectionUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-collection.md b/docs/examples/1.8.x/console-web/examples/databases/get-collection.md index 4e31e9e7b1..dfeaf8b587 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await databases.getCollection({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-document.md b/docs/examples/1.8.x/console-web/examples/databases/get-document.md index 8d893df7d9..2c21e0a292 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-document.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.getDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-index.md b/docs/examples/1.8.x/console-web/examples/databases/get-index.md index 73f61b8766..030d604e15 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-index.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.getIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-transaction.md b/docs/examples/1.8.x/console-web/examples/databases/get-transaction.md index 8b6733b423..a5c5be010f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get-usage.md b/docs/examples/1.8.x/console-web/examples/databases/get-usage.md index b4cdcbd849..c30e53a87b 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await databases.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/get.md b/docs/examples/1.8.x/console-web/examples/databases/get.md index a1c4573962..a10bf53673 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/get.md +++ b/docs/examples/1.8.x/console-web/examples/databases/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/increment-document-attribute.md index dbba4b0688..62aff0c91c 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.incrementDocumentAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-attributes.md b/docs/examples/1.8.x/console-web/examples/databases/list-attributes.md index e46462ca93..07dd434359 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.listAttributes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-collection-logs.md b/docs/examples/1.8.x/console-web/examples/databases/list-collection-logs.md index 291b77f668..55f70228d5 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-collection-logs.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-collection-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.listCollectionLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-collections.md b/docs/examples/1.8.x/console-web/examples/databases/list-collections.md index 4d94372e18..c5af6024cd 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.listCollections({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-document-logs.md b/docs/examples/1.8.x/console-web/examples/databases/list-document-logs.md index 8de4b4eab5..c3e21f1d4c 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-document-logs.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-document-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.listDocumentLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-documents.md b/docs/examples/1.8.x/console-web/examples/databases/list-documents.md index 848f102be3..d9125be87f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.listDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-indexes.md b/docs/examples/1.8.x/console-web/examples/databases/list-indexes.md index e101993b42..ee4057d83b 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.listIndexes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-logs.md b/docs/examples/1.8.x/console-web/examples/databases/list-logs.md index a7726312f6..6a7017943f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-logs.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await databases.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-transactions.md b/docs/examples/1.8.x/console-web/examples/databases/list-transactions.md index 53e8d61f3e..11356cb69f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list-usage.md b/docs/examples/1.8.x/console-web/examples/databases/list-usage.md index ce6203cbb1..1cee73bfc5 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list-usage.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await databases.listUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/list.md b/docs/examples/1.8.x/console-web/examples/databases/list.md index 75f484ef92..c8794cfa0a 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/list.md +++ b/docs/examples/1.8.x/console-web/examples/databases/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-boolean-attribute.md index 85b6138287..d95cd30e28 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateBooleanAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-collection.md b/docs/examples/1.8.x/console-web/examples/databases/update-collection.md index 8e67807bee..a630f751fc 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateCollection({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-datetime-attribute.md index 2f9a8e065a..61e2e1a4e1 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateDatetimeAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-document.md b/docs/examples/1.8.x/console-web/examples/databases/update-document.md index 30f9b4c39b..4d16675e44 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-document.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.updateDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-documents.md b/docs/examples/1.8.x/console-web/examples/databases/update-documents.md index da4043bbc1..a3c81ac86e 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -21,3 +22,4 @@ const result = await databases.updateDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-email-attribute.md index c5fa3de6e9..d2cbd192e8 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateEmailAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-enum-attribute.md index 65e0931eeb..fcc0f84f8d 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.updateEnumAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-float-attribute.md index 1526c98f03..4727581e0d 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.updateFloatAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-integer-attribute.md index 01b063006f..d3f6513044 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await databases.updateIntegerAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-ip-attribute.md index 85506d6f1a..c940c81d37 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateIpAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-line-attribute.md index 85190fc085..a7a68785fb 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateLineAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-longtext-attribute.md index ee48d67c6d..d92bb148df 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateLongtextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-mediumtext-attribute.md index 8bace29a54..37474b5354 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateMediumtextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-point-attribute.md index ec4a2c02c1..346fbab1bb 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updatePointAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-polygon-attribute.md index 4fa9eb197b..13617139ad 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updatePolygonAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-relationship-attribute.md index 8a7340af4e..90ab8d6c30 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, RelationMutate } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await databases.updateRelationshipAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-string-attribute.md index aeb3753428..56c743ab0e 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.updateStringAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-text-attribute.md index 138572a940..f0299e90c1 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateTextAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-transaction.md b/docs/examples/1.8.x/console-web/examples/databases/update-transaction.md index 4a219f4beb..a46ecbd853 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-url-attribute.md index 75171f0206..3b76a3f05d 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await databases.updateUrlAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/console-web/examples/databases/update-varchar-attribute.md index 623a3c5606..f369d3e94f 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await databases.updateVarcharAttribute({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/update.md b/docs/examples/1.8.x/console-web/examples/databases/update.md index ec614fc133..dbae901686 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/update.md +++ b/docs/examples/1.8.x/console-web/examples/databases/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await databases.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/upsert-document.md b/docs/examples/1.8.x/console-web/examples/databases/upsert-document.md index 03947bc418..6c5a76367e 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/console-web/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await databases.upsertDocument({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/databases/upsert-documents.md b/docs/examples/1.8.x/console-web/examples/databases/upsert-documents.md index cc561de247..d94a1373b3 100644 --- a/docs/examples/1.8.x/console-web/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/console-web/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Databases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await databases.upsertDocuments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/create-deployment.md index ff9be3c80f..020c4aad8d 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await functions.createDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/create-duplicate-deployment.md index 05da2af37b..77e792b393 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await functions.createDuplicateDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-execution.md b/docs/examples/1.8.x/console-web/examples/functions/create-execution.md index d4015d46e1..4a9f62bbfd 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, ExecutionMethod } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await functions.createExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/create-template-deployment.md index 414a0d0bfb..6e311461c4 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, TemplateReferenceType } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await functions.createTemplateDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-variable.md b/docs/examples/1.8.x/console-web/examples/functions/create-variable.md index 28cfb8877f..2310f83d71 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await functions.createVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/create-vcs-deployment.md index d6f4e765e3..50a54465c7 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, VCSReferenceType } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await functions.createVcsDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/create.md b/docs/examples/1.8.x/console-web/examples/functions/create.md index 4eb019183f..c59d4e0e56 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/create.md +++ b/docs/examples/1.8.x/console-web/examples/functions/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, Runtime, Scopes } from "@appwrite.io/console"; const client = new Client() @@ -28,3 +29,4 @@ const result = await functions.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/delete-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/delete-deployment.md index 6558690f2f..9fee1bfd46 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.deleteDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/delete-execution.md b/docs/examples/1.8.x/console-web/examples/functions/delete-execution.md index 2791eea9b6..4f8569be62 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/console-web/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.deleteExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/delete-variable.md b/docs/examples/1.8.x/console-web/examples/functions/delete-variable.md index 369cdd6cff..5775d4db72 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/console-web/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.deleteVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/delete.md b/docs/examples/1.8.x/console-web/examples/functions/delete.md index 6cad721da9..141706ca41 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/delete.md +++ b/docs/examples/1.8.x/console-web/examples/functions/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await functions.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/console-web/examples/functions/get-deployment-download.md index 82f8881929..d6b46f1d75 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, DeploymentDownloadType } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = functions.getDeploymentDownload({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/get-deployment.md index 483b3eb6a8..34ebaaca9e 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-execution.md b/docs/examples/1.8.x/console-web/examples/functions/get-execution.md index 29a7357415..dc49ea5d95 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getExecution({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-template.md b/docs/examples/1.8.x/console-web/examples/functions/get-template.md index 031f9536d3..64c515d66a 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-template.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await functions.getTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-usage.md b/docs/examples/1.8.x/console-web/examples/functions/get-usage.md index ffba26f4d9..38529294df 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get-variable.md b/docs/examples/1.8.x/console-web/examples/functions/get-variable.md index d813d1250c..31417ad258 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.getVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/get.md b/docs/examples/1.8.x/console-web/examples/functions/get.md index 4a5126b29e..9cdadfbf52 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/get.md +++ b/docs/examples/1.8.x/console-web/examples/functions/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await functions.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-deployments.md b/docs/examples/1.8.x/console-web/examples/functions/list-deployments.md index 4b5a8fb6f7..07f50b0931 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await functions.listDeployments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-executions.md b/docs/examples/1.8.x/console-web/examples/functions/list-executions.md index 87fdd6a81c..b04560577e 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await functions.listExecutions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-runtimes.md b/docs/examples/1.8.x/console-web/examples/functions/list-runtimes.md index cdd1e08cad..6136507d9b 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const functions = new Functions(client); const result = await functions.listRuntimes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-specifications.md b/docs/examples/1.8.x/console-web/examples/functions/list-specifications.md index fe671c54bb..90fd9d93df 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const functions = new Functions(client); const result = await functions.listSpecifications(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-templates.md b/docs/examples/1.8.x/console-web/examples/functions/list-templates.md index 672b006f29..41bf6cb344 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-templates.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-templates.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, Runtimes, UseCases } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await functions.listTemplates({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-usage.md b/docs/examples/1.8.x/console-web/examples/functions/list-usage.md index 42035ec8f1..4088175f67 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-usage.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await functions.listUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list-variables.md b/docs/examples/1.8.x/console-web/examples/functions/list-variables.md index c5fdc226d1..854cff95bc 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await functions.listVariables({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/list.md b/docs/examples/1.8.x/console-web/examples/functions/list.md index b73230c49b..83272a93f2 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/list.md +++ b/docs/examples/1.8.x/console-web/examples/functions/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await functions.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/console-web/examples/functions/update-deployment-status.md index e9da320ef7..6a2d147238 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/console-web/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.updateDeploymentStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/console-web/examples/functions/update-function-deployment.md index c249a279cf..d5fed6e023 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await functions.updateFunctionDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/update-variable.md b/docs/examples/1.8.x/console-web/examples/functions/update-variable.md index 6e1366ca0a..383e9c0592 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/console-web/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await functions.updateVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/functions/update.md b/docs/examples/1.8.x/console-web/examples/functions/update.md index 9e239785b1..986ff0f690 100644 --- a/docs/examples/1.8.x/console-web/examples/functions/update.md +++ b/docs/examples/1.8.x/console-web/examples/functions/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, Functions, Runtime, Scopes } from "@appwrite.io/console"; const client = new Client() @@ -28,3 +29,4 @@ const result = await functions.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/graphql/mutation.md b/docs/examples/1.8.x/console-web/examples/graphql/mutation.md index 24c30e25a6..f8efffe818 100644 --- a/docs/examples/1.8.x/console-web/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/console-web/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.mutation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/graphql/query.md b/docs/examples/1.8.x/console-web/examples/graphql/query.md index f4b8ac9b3d..604e431cdc 100644 --- a/docs/examples/1.8.x/console-web/examples/graphql/query.md +++ b/docs/examples/1.8.x/console-web/examples/graphql/query.md @@ -1,3 +1,4 @@ +```javascript import { Client, Graphql } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await graphql.query({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-antivirus.md b/docs/examples/1.8.x/console-web/examples/health/get-antivirus.md index 30e142a63d..c9091fb584 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getAntivirus(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-cache.md b/docs/examples/1.8.x/console-web/examples/health/get-cache.md index 1c0bb182e2..b69b9880b9 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-cache.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getCache(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-certificate.md b/docs/examples/1.8.x/console-web/examples/health/get-certificate.md index ebff42e2fa..375dba0589 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getCertificate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-db.md b/docs/examples/1.8.x/console-web/examples/health/get-db.md index 855e73466c..1b86f74f42 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-db.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-db.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getDB(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/console-web/examples/health/get-failed-jobs.md index f47927214f..f87018ff90 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health, Name } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await health.getFailedJobs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-pub-sub.md b/docs/examples/1.8.x/console-web/examples/health/get-pub-sub.md index 0ccce8e4d8..869943d76d 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getPubSub(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-audits.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-audits.md index eed50dcc96..6823fb1451 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueAudits({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-builds.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-builds.md index a9edbe1c7f..0a69b799a2 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueBuilds({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-certificates.md index fb4656723f..ddec046a77 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueCertificates({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-databases.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-databases.md index 6209742ce7..eab195070a 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await health.getQueueDatabases({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-deletes.md index fcbb5b5e85..da34a82bfe 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueDeletes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-functions.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-functions.md index c169fd946b..420e3e7443 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueFunctions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-logs.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-logs.md index e71d80895e..083222fb18 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-mails.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-mails.md index fcb82acfa3..8a68cb835f 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueMails({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-messaging.md index 63d58e2363..3c63659cd0 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueMessaging({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-migrations.md index 3fa3110d7f..626f9dc1df 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueMigrations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-stats-resources.md index 198b1558e8..8f4d0e0ef5 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueStatsResources({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-usage.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-usage.md index e80c0d8bc1..1f33effff8 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/console-web/examples/health/get-queue-webhooks.md index 23a0169320..dd8d2012ba 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await health.getQueueWebhooks({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-storage-local.md b/docs/examples/1.8.x/console-web/examples/health/get-storage-local.md index e6bdf62c50..d5dcc178ac 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getStorageLocal(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-storage.md b/docs/examples/1.8.x/console-web/examples/health/get-storage.md index 1d8941490e..8373e2f3d4 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-storage.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getStorage(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get-time.md b/docs/examples/1.8.x/console-web/examples/health/get-time.md index 826eaf5a8c..c0d4d30127 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get-time.md +++ b/docs/examples/1.8.x/console-web/examples/health/get-time.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.getTime(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/health/get.md b/docs/examples/1.8.x/console-web/examples/health/get.md index b510d8a891..558b241741 100644 --- a/docs/examples/1.8.x/console-web/examples/health/get.md +++ b/docs/examples/1.8.x/console-web/examples/health/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Health } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const health = new Health(client); const result = await health.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/get.md b/docs/examples/1.8.x/console-web/examples/locale/get.md index 4b0331787e..37b2592309 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/get.md +++ b/docs/examples/1.8.x/console-web/examples/locale/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.get(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-codes.md b/docs/examples/1.8.x/console-web/examples/locale/list-codes.md index d20399af4a..739e3255f9 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCodes(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-continents.md b/docs/examples/1.8.x/console-web/examples/locale/list-continents.md index d769e88f1c..56fbe897a5 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listContinents(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/console-web/examples/locale/list-countries-eu.md index ce8746421b..aca056bbba 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesEU(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/console-web/examples/locale/list-countries-phones.md index 457867707c..41de55a731 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountriesPhones(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-countries.md b/docs/examples/1.8.x/console-web/examples/locale/list-countries.md index 298e25ee81..f6d7b9e8eb 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCountries(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-currencies.md b/docs/examples/1.8.x/console-web/examples/locale/list-currencies.md index 05ff041cbb..18fc15b609 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listCurrencies(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/locale/list-languages.md b/docs/examples/1.8.x/console-web/examples/locale/list-languages.md index 1a2db31b55..93f34bf830 100644 --- a/docs/examples/1.8.x/console-web/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/console-web/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```javascript import { Client, Locale } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const locale = new Locale(client); const result = await locale.listLanguages(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-apns-provider.md index 4b65337d49..a361f0d490 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.createAPNSProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-email.md b/docs/examples/1.8.x/console-web/examples/messaging/create-email.md index fa84304cc6..851d680288 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await messaging.createEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-fcm-provider.md index 6586ffbc5e..382ffe1d79 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await messaging.createFCMProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-mailgun-provider.md index 10c58cc7b6..956f913835 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -20,3 +21,4 @@ const result = await messaging.createMailgunProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-msg-91-provider.md index 7efa2df1be..79135cb509 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.createMsg91Provider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-push.md b/docs/examples/1.8.x/console-web/examples/messaging/create-push.md index 783d8fe535..810e795fa6 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging, MessagePriority } from "@appwrite.io/console"; const client = new Client() @@ -29,3 +30,4 @@ const result = await messaging.createPush({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-resend-provider.md index 22a905c2c0..5de02136ef 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.createResendProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-sendgrid-provider.md index 51b6096e64..c03cdc80ce 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.createSendgridProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-sms.md b/docs/examples/1.8.x/console-web/examples/messaging/create-sms.md index 3130ee8835..27ce1ab208 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await messaging.createSMS({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-smtp-provider.md index 77033deae2..5e7099ad34 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging, SmtpEncryption } from "@appwrite.io/console"; const client = new Client() @@ -24,3 +25,4 @@ const result = await messaging.createSMTPProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/console-web/examples/messaging/create-subscriber.md index 2c2796a289..d5abed7ac4 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.createSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-telesign-provider.md index 9e5d344964..fecf2bbd2a 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.createTelesignProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-textmagic-provider.md index fc48d32d01..dce3a211f0 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.createTextmagicProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-topic.md b/docs/examples/1.8.x/console-web/examples/messaging/create-topic.md index 4fb72cbeb3..9a86f78b51 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.createTopic({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-twilio-provider.md index 9997303d69..53d0048728 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.createTwilioProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/create-vonage-provider.md index 342922cb03..8e970d6f55 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.createVonageProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/delete-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/delete-provider.md index cb173c8077..e4f0b6a870 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.deleteProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/console-web/examples/messaging/delete-subscriber.md index 67c0865605..9dea15eb04 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await messaging.deleteSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/delete-topic.md b/docs/examples/1.8.x/console-web/examples/messaging/delete-topic.md index de14ac49f6..fb07baf0a1 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.deleteTopic({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/delete.md b/docs/examples/1.8.x/console-web/examples/messaging/delete.md index 8eaef5ce5f..e8702e5751 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/delete.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/get-message.md b/docs/examples/1.8.x/console-web/examples/messaging/get-message.md index 32b9306033..d5e777b377 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.getMessage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/get-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/get-provider.md index 579018678d..d2adcc1efe 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.getProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/console-web/examples/messaging/get-subscriber.md index 985fe87013..3a6b0c4e27 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await messaging.getSubscriber({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/get-topic.md b/docs/examples/1.8.x/console-web/examples/messaging/get-topic.md index 9ec0a0d66d..6efb434be4 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await messaging.getTopic({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/console-web/examples/messaging/list-message-logs.md index 53db8aa20c..86dc05181d 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listMessageLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-messages.md b/docs/examples/1.8.x/console-web/examples/messaging/list-messages.md index 59f32fc6cb..86d2a6b122 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listMessages({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/console-web/examples/messaging/list-provider-logs.md index 03e3176601..a3e4deb925 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listProviderLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-providers.md b/docs/examples/1.8.x/console-web/examples/messaging/list-providers.md index 219eec2565..ab3cf343a5 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listProviders({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/console-web/examples/messaging/list-subscriber-logs.md index 6514db9123..745fb04925 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listSubscriberLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/console-web/examples/messaging/list-subscribers.md index e171042823..c7aabf9ce2 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await messaging.listSubscribers({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-targets.md b/docs/examples/1.8.x/console-web/examples/messaging/list-targets.md index b37b232984..613be1207c 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listTargets({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/console-web/examples/messaging/list-topic-logs.md index 6b2348ff4f..5f7f2515bb 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listTopicLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/list-topics.md b/docs/examples/1.8.x/console-web/examples/messaging/list-topics.md index eba699b40b..c2af07edc9 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.listTopics({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-apns-provider.md index b48c5fe4ae..dd06d11891 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.updateAPNSProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-email.md b/docs/examples/1.8.x/console-web/examples/messaging/update-email.md index deda783ff3..fac85d2012 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await messaging.updateEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-fcm-provider.md index 55e4ccbec2..c16475be95 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await messaging.updateFCMProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-mailgun-provider.md index 4e5a9199f9..e78d702741 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -20,3 +21,4 @@ const result = await messaging.updateMailgunProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-msg-91-provider.md index 369443fc61..7aa3ec3f5c 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.updateMsg91Provider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-push.md b/docs/examples/1.8.x/console-web/examples/messaging/update-push.md index e1b0cc6b9d..77d24b287d 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging, MessagePriority } from "@appwrite.io/console"; const client = new Client() @@ -29,3 +30,4 @@ const result = await messaging.updatePush({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-resend-provider.md index daea9920a1..cfbc37d05c 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.updateResendProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-sendgrid-provider.md index 46608a3bb3..28660a7a23 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await messaging.updateSendgridProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-sms.md b/docs/examples/1.8.x/console-web/examples/messaging/update-sms.md index f121f7e865..39153aa875 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await messaging.updateSMS({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-smtp-provider.md index 254c23e12b..ebd649b7eb 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging, SmtpEncryption } from "@appwrite.io/console"; const client = new Client() @@ -24,3 +25,4 @@ const result = await messaging.updateSMTPProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-telesign-provider.md index 1df2779ce1..c95ff2080d 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.updateTelesignProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-textmagic-provider.md index c739e0cd02..86fc6ef1b9 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.updateTextmagicProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-topic.md b/docs/examples/1.8.x/console-web/examples/messaging/update-topic.md index 100f5ca73a..ac03014e63 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await messaging.updateTopic({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-twilio-provider.md index b09b23fb97..8d448fa058 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.updateTwilioProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/console-web/examples/messaging/update-vonage-provider.md index e998dbfbf5..3f91755591 100644 --- a/docs/examples/1.8.x/console-web/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/console-web/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```javascript import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await messaging.updateVonageProvider({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-appwrite-migration.md b/docs/examples/1.8.x/console-web/examples/migrations/create-appwrite-migration.md index 64e074c5b7..2f7c07f80c 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-appwrite-migration.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-appwrite-migration.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await migrations.createAppwriteMigration({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-csv-export.md b/docs/examples/1.8.x/console-web/examples/migrations/create-csv-export.md index 89f779fc4c..250a16b190 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-csv-export.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-csv-export.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -19,3 +20,4 @@ const result = await migrations.createCSVExport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-csv-import.md b/docs/examples/1.8.x/console-web/examples/migrations/create-csv-import.md index 9b8b2b2b33..f39b10309a 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-csv-import.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-csv-import.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await migrations.createCSVImport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-firebase-migration.md b/docs/examples/1.8.x/console-web/examples/migrations/create-firebase-migration.md index 89e5cd4124..21c972170f 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-firebase-migration.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-firebase-migration.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await migrations.createFirebaseMigration({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-n-host-migration.md b/docs/examples/1.8.x/console-web/examples/migrations/create-n-host-migration.md index 565ae61c71..a24f9f35fb 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-n-host-migration.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-n-host-migration.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await migrations.createNHostMigration({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/create-supabase-migration.md b/docs/examples/1.8.x/console-web/examples/migrations/create-supabase-migration.md index a946b813b4..3344ac0e37 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/create-supabase-migration.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/create-supabase-migration.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await migrations.createSupabaseMigration({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/delete.md b/docs/examples/1.8.x/console-web/examples/migrations/delete.md index 9df30d4178..4eaebdb2fb 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/delete.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await migrations.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/get-appwrite-report.md b/docs/examples/1.8.x/console-web/examples/migrations/get-appwrite-report.md index bb97e9aea3..b8396f260b 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/get-appwrite-report.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/get-appwrite-report.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await migrations.getAppwriteReport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/get-firebase-report.md b/docs/examples/1.8.x/console-web/examples/migrations/get-firebase-report.md index 34361a77c1..2c652ce83a 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/get-firebase-report.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/get-firebase-report.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await migrations.getFirebaseReport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/get-n-host-report.md b/docs/examples/1.8.x/console-web/examples/migrations/get-n-host-report.md index 63ff62e148..16c2626d66 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/get-n-host-report.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/get-n-host-report.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await migrations.getNHostReport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/get-supabase-report.md b/docs/examples/1.8.x/console-web/examples/migrations/get-supabase-report.md index 18e92446c1..40f04a218b 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/get-supabase-report.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/get-supabase-report.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations, Resources } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await migrations.getSupabaseReport({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/get.md b/docs/examples/1.8.x/console-web/examples/migrations/get.md index e007ac9c73..7e9a6dd78b 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/get.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await migrations.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/list.md b/docs/examples/1.8.x/console-web/examples/migrations/list.md index 42b6e602e5..3bd32ec024 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/list.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await migrations.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/migrations/retry.md b/docs/examples/1.8.x/console-web/examples/migrations/retry.md index 31322a14e5..257075078e 100644 --- a/docs/examples/1.8.x/console-web/examples/migrations/retry.md +++ b/docs/examples/1.8.x/console-web/examples/migrations/retry.md @@ -1,3 +1,4 @@ +```javascript import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await migrations.retry({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/create-variable.md b/docs/examples/1.8.x/console-web/examples/project/create-variable.md index 2c7fea32d1..c788af9402 100644 --- a/docs/examples/1.8.x/console-web/examples/project/create-variable.md +++ b/docs/examples/1.8.x/console-web/examples/project/create-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await project.createVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/delete-variable.md b/docs/examples/1.8.x/console-web/examples/project/delete-variable.md index 4994eeebf3..1435d112f6 100644 --- a/docs/examples/1.8.x/console-web/examples/project/delete-variable.md +++ b/docs/examples/1.8.x/console-web/examples/project/delete-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await project.deleteVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/get-usage.md b/docs/examples/1.8.x/console-web/examples/project/get-usage.md index dd548885a6..432ddb8dc6 100644 --- a/docs/examples/1.8.x/console-web/examples/project/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/project/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project, ProjectUsageRange } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await project.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/get-variable.md b/docs/examples/1.8.x/console-web/examples/project/get-variable.md index 45ab31e614..bf5de97bde 100644 --- a/docs/examples/1.8.x/console-web/examples/project/get-variable.md +++ b/docs/examples/1.8.x/console-web/examples/project/get-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await project.getVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/list-variables.md b/docs/examples/1.8.x/console-web/examples/project/list-variables.md index 9c17f8514e..ec14f99c36 100644 --- a/docs/examples/1.8.x/console-web/examples/project/list-variables.md +++ b/docs/examples/1.8.x/console-web/examples/project/list-variables.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const project = new Project(client); const result = await project.listVariables(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/project/update-variable.md b/docs/examples/1.8.x/console-web/examples/project/update-variable.md index 646333278e..8d22cd0b18 100644 --- a/docs/examples/1.8.x/console-web/examples/project/update-variable.md +++ b/docs/examples/1.8.x/console-web/examples/project/update-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Project } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await project.updateVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-dev-key.md b/docs/examples/1.8.x/console-web/examples/projects/create-dev-key.md index 9f1ed21e6f..9989c01d7c 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-dev-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-dev-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.createDevKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-jwt.md b/docs/examples/1.8.x/console-web/examples/projects/create-jwt.md index ceaa2f24bc..2c8929c9c7 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-jwt.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-jwt.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, Scopes } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.createJWT({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-key.md b/docs/examples/1.8.x/console-web/examples/projects/create-key.md index e155b3e424..605c390306 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, Scopes } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await projects.createKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-platform.md b/docs/examples/1.8.x/console-web/examples/projects/create-platform.md index 28a520626a..c50df19395 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-platform.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-platform.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, PlatformType } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await projects.createPlatform({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-smtp-test.md b/docs/examples/1.8.x/console-web/examples/projects/create-smtp-test.md index aa4fc1e1fe..d5091a0c04 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-smtp-test.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-smtp-test.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, SMTPSecure } from "@appwrite.io/console"; const client = new Client() @@ -20,3 +21,4 @@ const result = await projects.createSMTPTest({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create-webhook.md b/docs/examples/1.8.x/console-web/examples/projects/create-webhook.md index 3f32d7247b..847eb386c0 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create-webhook.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create-webhook.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await projects.createWebhook({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/create.md b/docs/examples/1.8.x/console-web/examples/projects/create.md index 2bfcaa79bb..fa4e255c69 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/create.md +++ b/docs/examples/1.8.x/console-web/examples/projects/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, Region } from "@appwrite.io/console"; const client = new Client() @@ -23,3 +24,4 @@ const result = await projects.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-dev-key.md b/docs/examples/1.8.x/console-web/examples/projects/delete-dev-key.md index 2e5c08ab06..8130044a99 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-dev-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-dev-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.deleteDevKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-email-template.md b/docs/examples/1.8.x/console-web/examples/projects/delete-email-template.md index 5c21e4797b..ec82038477 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-email-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-email-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, EmailTemplateType, EmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.deleteEmailTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-key.md b/docs/examples/1.8.x/console-web/examples/projects/delete-key.md index 671413f0b5..c844ad05f7 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.deleteKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-platform.md b/docs/examples/1.8.x/console-web/examples/projects/delete-platform.md index 8ed3e23afa..b50266631a 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-platform.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-platform.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.deletePlatform({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-sms-template.md b/docs/examples/1.8.x/console-web/examples/projects/delete-sms-template.md index f89ae275e3..75e32ee176 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-sms-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-sms-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, SmsTemplateType, SmsTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.deleteSMSTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete-webhook.md b/docs/examples/1.8.x/console-web/examples/projects/delete-webhook.md index ec89642a3f..cac839075e 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete-webhook.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete-webhook.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.deleteWebhook({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/delete.md b/docs/examples/1.8.x/console-web/examples/projects/delete.md index c6ccd67cd6..10819f631c 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/delete.md +++ b/docs/examples/1.8.x/console-web/examples/projects/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await projects.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-dev-key.md b/docs/examples/1.8.x/console-web/examples/projects/get-dev-key.md index 1e3ab57070..3262240ac3 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-dev-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-dev-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.getDevKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-email-template.md b/docs/examples/1.8.x/console-web/examples/projects/get-email-template.md index 3b812045c0..0715b656a9 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-email-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-email-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, EmailTemplateType, EmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.getEmailTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-key.md b/docs/examples/1.8.x/console-web/examples/projects/get-key.md index a937d8c413..7acbcbac30 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.getKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-platform.md b/docs/examples/1.8.x/console-web/examples/projects/get-platform.md index 6d5ca40214..43de17d88f 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-platform.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-platform.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.getPlatform({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-sms-template.md b/docs/examples/1.8.x/console-web/examples/projects/get-sms-template.md index f48722c2a5..5381f8c8e5 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-sms-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-sms-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, SmsTemplateType, SmsTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.getSMSTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get-webhook.md b/docs/examples/1.8.x/console-web/examples/projects/get-webhook.md index e8d00d2da6..314a750071 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get-webhook.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get-webhook.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.getWebhook({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/get.md b/docs/examples/1.8.x/console-web/examples/projects/get.md index f55a9677f9..b8856f8e50 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/get.md +++ b/docs/examples/1.8.x/console-web/examples/projects/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await projects.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/list-dev-keys.md b/docs/examples/1.8.x/console-web/examples/projects/list-dev-keys.md index ecdf02598f..02ff49626a 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/list-dev-keys.md +++ b/docs/examples/1.8.x/console-web/examples/projects/list-dev-keys.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.listDevKeys({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/list-keys.md b/docs/examples/1.8.x/console-web/examples/projects/list-keys.md index c552e011df..8f62a043bf 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/list-keys.md +++ b/docs/examples/1.8.x/console-web/examples/projects/list-keys.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.listKeys({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/list-platforms.md b/docs/examples/1.8.x/console-web/examples/projects/list-platforms.md index d08419cded..5d7e7bf06f 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/list-platforms.md +++ b/docs/examples/1.8.x/console-web/examples/projects/list-platforms.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.listPlatforms({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/list-webhooks.md b/docs/examples/1.8.x/console-web/examples/projects/list-webhooks.md index ef3f41741e..de37755d93 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/list-webhooks.md +++ b/docs/examples/1.8.x/console-web/examples/projects/list-webhooks.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.listWebhooks({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/list.md b/docs/examples/1.8.x/console-web/examples/projects/list.md index 4cc12dc756..b18c821000 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/list.md +++ b/docs/examples/1.8.x/console-web/examples/projects/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-api-status-all.md b/docs/examples/1.8.x/console-web/examples/projects/update-api-status-all.md index 02e0595130..260797b155 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-api-status-all.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-api-status-all.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAPIStatusAll({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-api-status.md b/docs/examples/1.8.x/console-web/examples/projects/update-api-status.md index 7f0f7ca970..2745e85bdb 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-api-status.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-api-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, Api } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.updateAPIStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-duration.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-duration.md index a8119d12d3..50a32dcf9b 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-duration.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-duration.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAuthDuration({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-limit.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-limit.md index daed702834..c5c29fefb6 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-limit.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-limit.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAuthLimit({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-dictionary.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-dictionary.md index 06ab09316c..5e91365eb8 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-dictionary.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-dictionary.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAuthPasswordDictionary({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-history.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-history.md index 76c246991f..850f9211ad 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-history.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-password-history.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAuthPasswordHistory({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-sessions-limit.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-sessions-limit.md index ca5aef7737..239840d78e 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-sessions-limit.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-sessions-limit.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateAuthSessionsLimit({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-auth-status.md b/docs/examples/1.8.x/console-web/examples/projects/update-auth-status.md index 75deb5ae5d..a36fdc3e54 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-auth-status.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-auth-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, AuthMethod } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.updateAuthStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-dev-key.md b/docs/examples/1.8.x/console-web/examples/projects/update-dev-key.md index 3d84fbbc85..947dc93768 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-dev-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-dev-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await projects.updateDevKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-email-template.md b/docs/examples/1.8.x/console-web/examples/projects/update-email-template.md index f26e8887a7..8c0673f405 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-email-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-email-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, EmailTemplateType, EmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await projects.updateEmailTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-key.md b/docs/examples/1.8.x/console-web/examples/projects/update-key.md index 6dfef7c406..843aec1fab 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-key.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-key.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, Scopes } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await projects.updateKey({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-labels.md b/docs/examples/1.8.x/console-web/examples/projects/update-labels.md index 22b2068b15..f1ba8ee6bb 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-labels.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-labels.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateLabels({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-memberships-privacy.md b/docs/examples/1.8.x/console-web/examples/projects/update-memberships-privacy.md index ca873e7ee1..21737c5982 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-memberships-privacy.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-memberships-privacy.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await projects.updateMembershipsPrivacy({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-mock-numbers.md b/docs/examples/1.8.x/console-web/examples/projects/update-mock-numbers.md index 918993be50..80099e15f7 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-mock-numbers.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-mock-numbers.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateMockNumbers({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-o-auth-2.md b/docs/examples/1.8.x/console-web/examples/projects/update-o-auth-2.md index 01ecf3a1b4..74ba246a25 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-o-auth-2.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-o-auth-2.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, OAuthProvider } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await projects.updateOAuth2({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-personal-data-check.md b/docs/examples/1.8.x/console-web/examples/projects/update-personal-data-check.md index 0fe0a35652..27c06949a2 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-personal-data-check.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-personal-data-check.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updatePersonalDataCheck({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-platform.md b/docs/examples/1.8.x/console-web/examples/projects/update-platform.md index 996cace8b5..afc6fad1a0 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-platform.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-platform.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await projects.updatePlatform({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-service-status-all.md b/docs/examples/1.8.x/console-web/examples/projects/update-service-status-all.md index c4216fcbbc..4e33ff321b 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-service-status-all.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-service-status-all.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateServiceStatusAll({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-service-status.md b/docs/examples/1.8.x/console-web/examples/projects/update-service-status.md index e5b92683d2..b6a589cbe2 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-service-status.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-service-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, ApiService } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await projects.updateServiceStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-session-alerts.md b/docs/examples/1.8.x/console-web/examples/projects/update-session-alerts.md index 21e73494fa..ef40b3c276 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-session-alerts.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-session-alerts.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateSessionAlerts({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-session-invalidation.md b/docs/examples/1.8.x/console-web/examples/projects/update-session-invalidation.md index 748ac72629..34c049ae63 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-session-invalidation.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-session-invalidation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateSessionInvalidation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-sms-template.md b/docs/examples/1.8.x/console-web/examples/projects/update-sms-template.md index ab332c52e2..8e4e1571dc 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-sms-template.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-sms-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, SmsTemplateType, SmsTemplateLocale } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await projects.updateSMSTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-smtp.md b/docs/examples/1.8.x/console-web/examples/projects/update-smtp.md index cb5d73b0e9..89bfb0da82 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-smtp.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-smtp.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects, SMTPSecure } from "@appwrite.io/console"; const client = new Client() @@ -20,3 +21,4 @@ const result = await projects.updateSMTP({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-team.md b/docs/examples/1.8.x/console-web/examples/projects/update-team.md index 6c27714d6d..4062f8faa2 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-team.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-team.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateTeam({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-webhook-signature.md b/docs/examples/1.8.x/console-web/examples/projects/update-webhook-signature.md index 6ea0ee6969..19cdb2e886 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-webhook-signature.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-webhook-signature.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await projects.updateWebhookSignature({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update-webhook.md b/docs/examples/1.8.x/console-web/examples/projects/update-webhook.md index d3a1e4e60e..93b6aa937e 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update-webhook.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update-webhook.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -19,3 +20,4 @@ const result = await projects.updateWebhook({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/projects/update.md b/docs/examples/1.8.x/console-web/examples/projects/update.md index 3df8d6dc15..5400483644 100644 --- a/docs/examples/1.8.x/console-web/examples/projects/update.md +++ b/docs/examples/1.8.x/console-web/examples/projects/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, Projects } from "@appwrite.io/console"; const client = new Client() @@ -21,3 +22,4 @@ const result = await projects.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/create-api-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/create-api-rule.md index 593601da1f..8fb6d2387a 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/create-api-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/create-api-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await proxy.createAPIRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/create-function-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/create-function-rule.md index 168351723e..a7d9ae631b 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/create-function-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/create-function-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await proxy.createFunctionRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/create-redirect-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/create-redirect-rule.md index 83a98438ec..1b8d2f39f9 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/create-redirect-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/create-redirect-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy, StatusCode, ProxyResourceType } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await proxy.createRedirectRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/create-site-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/create-site-rule.md index 60b371a359..9f30b18061 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/create-site-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/create-site-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await proxy.createSiteRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/delete-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/delete-rule.md index 7417ab7ddd..96bd5b2fc1 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/delete-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/delete-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await proxy.deleteRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/get-rule.md b/docs/examples/1.8.x/console-web/examples/proxy/get-rule.md index 1033693196..2cb890fb92 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/get-rule.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/get-rule.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await proxy.getRule({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/list-rules.md b/docs/examples/1.8.x/console-web/examples/proxy/list-rules.md index c7792fc808..83a661f0ed 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/list-rules.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/list-rules.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await proxy.listRules({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/proxy/update-rule-verification.md b/docs/examples/1.8.x/console-web/examples/proxy/update-rule-verification.md index 4806b3072a..6eccae876f 100644 --- a/docs/examples/1.8.x/console-web/examples/proxy/update-rule-verification.md +++ b/docs/examples/1.8.x/console-web/examples/proxy/update-rule-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await proxy.updateRuleVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/create-deployment.md index 44dc68adb8..0b9ea0cd31 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await sites.createDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/create-duplicate-deployment.md index 43812cfb7c..e202b7e3d8 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.createDuplicateDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/create-template-deployment.md index 1bfaeb6a7e..1a9584cf91 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, TemplateReferenceType } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await sites.createTemplateDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create-variable.md b/docs/examples/1.8.x/console-web/examples/sites/create-variable.md index 2379e52496..d255a0254a 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await sites.createVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/create-vcs-deployment.md index 80d9403ccb..c4313ec804 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, VCSReferenceType } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await sites.createVcsDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/create.md b/docs/examples/1.8.x/console-web/examples/sites/create.md index e59139a1e2..5a7e0d3bb6 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/create.md +++ b/docs/examples/1.8.x/console-web/examples/sites/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, Framework, BuildRuntime, Adapter } from "@appwrite.io/console"; const client = new Client() @@ -28,3 +29,4 @@ const result = await sites.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/delete-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/delete-deployment.md index dac0500b73..6dcaaf7eca 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.deleteDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/delete-log.md b/docs/examples/1.8.x/console-web/examples/sites/delete-log.md index 18d543775a..6e22e9becb 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/console-web/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.deleteLog({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/delete-variable.md b/docs/examples/1.8.x/console-web/examples/sites/delete-variable.md index a0e6f6fbb0..753080a228 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/console-web/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.deleteVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/delete.md b/docs/examples/1.8.x/console-web/examples/sites/delete.md index 1a289f6ef6..13b944cece 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/delete.md +++ b/docs/examples/1.8.x/console-web/examples/sites/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await sites.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/console-web/examples/sites/get-deployment-download.md index d66c9a682f..2645bd5106 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, DeploymentDownloadType } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = sites.getDeploymentDownload({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/get-deployment.md index dc2a77c29a..86e84fc0fd 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.getDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-log.md b/docs/examples/1.8.x/console-web/examples/sites/get-log.md index 18021449cf..ba6f399a4c 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-log.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.getLog({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-template.md b/docs/examples/1.8.x/console-web/examples/sites/get-template.md index 1ddc6ec97f..94b7404381 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-template.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-template.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await sites.getTemplate({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-usage.md b/docs/examples/1.8.x/console-web/examples/sites/get-usage.md index 39158c8c28..f76d91d9b1 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get-variable.md b/docs/examples/1.8.x/console-web/examples/sites/get-variable.md index a35bb511c1..dd08714443 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.getVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/get.md b/docs/examples/1.8.x/console-web/examples/sites/get.md index 07016aab02..c49df69f6a 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/get.md +++ b/docs/examples/1.8.x/console-web/examples/sites/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await sites.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-deployments.md b/docs/examples/1.8.x/console-web/examples/sites/list-deployments.md index 8d9bda9948..d7fb2766f6 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await sites.listDeployments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-frameworks.md b/docs/examples/1.8.x/console-web/examples/sites/list-frameworks.md index aceadcc8c9..2d4daa8e67 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const sites = new Sites(client); const result = await sites.listFrameworks(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-logs.md b/docs/examples/1.8.x/console-web/examples/sites/list-logs.md index 4e990baa31..3a57a8d476 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await sites.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-specifications.md b/docs/examples/1.8.x/console-web/examples/sites/list-specifications.md index 9bbb35d76d..b019a627b1 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -9,3 +10,4 @@ const sites = new Sites(client); const result = await sites.listSpecifications(); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-templates.md b/docs/examples/1.8.x/console-web/examples/sites/list-templates.md index 4e3dcb7937..f427bd2553 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-templates.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-templates.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, Frameworks, UseCases } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await sites.listTemplates({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-usage.md b/docs/examples/1.8.x/console-web/examples/sites/list-usage.md index 1cd2cf7af1..d5582437ea 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-usage.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await sites.listUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list-variables.md b/docs/examples/1.8.x/console-web/examples/sites/list-variables.md index 0b795d08af..e0f5717d42 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await sites.listVariables({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/list.md b/docs/examples/1.8.x/console-web/examples/sites/list.md index 859d25da93..316553fe00 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/list.md +++ b/docs/examples/1.8.x/console-web/examples/sites/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await sites.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/console-web/examples/sites/update-deployment-status.md index 4b9d2a87db..960718d5ec 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/console-web/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.updateDeploymentStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/console-web/examples/sites/update-site-deployment.md index 91118ec734..20558fca8d 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/console-web/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await sites.updateSiteDeployment({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/update-variable.md b/docs/examples/1.8.x/console-web/examples/sites/update-variable.md index 9fe767db81..6dcb5421f6 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/console-web/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await sites.updateVariable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/sites/update.md b/docs/examples/1.8.x/console-web/examples/sites/update.md index c68fe2924b..d88613cf86 100644 --- a/docs/examples/1.8.x/console-web/examples/sites/update.md +++ b/docs/examples/1.8.x/console-web/examples/sites/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, Sites, Framework, BuildRuntime, Adapter } from "@appwrite.io/console"; const client = new Client() @@ -28,3 +29,4 @@ const result = await sites.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/create-bucket.md b/docs/examples/1.8.x/console-web/examples/storage/create-bucket.md index 9a067abbdb..fa8f9d4944 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/console-web/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Compression, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -21,3 +22,4 @@ const result = await storage.createBucket({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/create-file.md b/docs/examples/1.8.x/console-web/examples/storage/create-file.md index 95a19050d1..ddf29a0004 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/create-file.md +++ b/docs/examples/1.8.x/console-web/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.createFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/delete-bucket.md b/docs/examples/1.8.x/console-web/examples/storage/delete-bucket.md index 25d4d2023d..1d2aa69ce2 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/console-web/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await storage.deleteBucket({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/delete-file.md b/docs/examples/1.8.x/console-web/examples/storage/delete-file.md index e8750be3c3..e40590c1ac 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/console-web/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.deleteFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-bucket-usage.md b/docs/examples/1.8.x/console-web/examples/storage/get-bucket-usage.md index 5749effa41..0cbd184fa1 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-bucket-usage.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-bucket-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.getBucketUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-bucket.md b/docs/examples/1.8.x/console-web/examples/storage/get-bucket.md index 7519b2b1c2..a710bc7f89 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await storage.getBucket({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-file-download.md b/docs/examples/1.8.x/console-web/examples/storage/get-file-download.md index 876776f0f8..1e940d16f1 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileDownload({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-file-preview.md b/docs/examples/1.8.x/console-web/examples/storage/get-file-preview.md index 16bfe5feb8..781c5cc4d6 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, ImageGravity, ImageFormat } from "@appwrite.io/console"; const client = new Client() @@ -24,3 +25,4 @@ const result = storage.getFilePreview({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-file-view.md b/docs/examples/1.8.x/console-web/examples/storage/get-file-view.md index dca7ffae2f..800f3f9352 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = storage.getFileView({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-file.md b/docs/examples/1.8.x/console-web/examples/storage/get-file.md index 5f5370dcf3..a48d4dfe44 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-file.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await storage.getFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/get-usage.md b/docs/examples/1.8.x/console-web/examples/storage/get-usage.md index 1584361d18..7637f02aaa 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/storage/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await storage.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/list-buckets.md b/docs/examples/1.8.x/console-web/examples/storage/list-buckets.md index 8b6b8065e0..bad2cd1777 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/console-web/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await storage.listBuckets({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/list-files.md b/docs/examples/1.8.x/console-web/examples/storage/list-files.md index 94c1bd6584..4085f3923b 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/list-files.md +++ b/docs/examples/1.8.x/console-web/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.listFiles({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/update-bucket.md b/docs/examples/1.8.x/console-web/examples/storage/update-bucket.md index 2fffcaf085..cca106f0a3 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/console-web/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Compression, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -21,3 +22,4 @@ const result = await storage.updateBucket({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/storage/update-file.md b/docs/examples/1.8.x/console-web/examples/storage/update-file.md index b014b0bf62..b24ff730cf 100644 --- a/docs/examples/1.8.x/console-web/examples/storage/update-file.md +++ b/docs/examples/1.8.x/console-web/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```javascript import { Client, Storage, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await storage.updateFile({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md index 4622b821a5..7c61e9282c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createBooleanColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md index 30dd10e3a2..2a9b2a35a8 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createDatetimeColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md index 61ae3e1e85..876da2fa3a 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createEmailColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md index 0a5657148d..31700e02b7 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createEnumColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md index b8794dd697..68aa906fe3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.createFloatColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md index f319fa20fe..648f033d0c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, IndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md index 0eaf240078..fc9d60800c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.createIntegerColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md index 4df6dcd7a8..89c29c0035 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createIpColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-line-column.md index 05b4ec76d0..d2deeb4a71 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createLineColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-longtext-column.md index 3fae43796c..d3b25f3046 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createLongtextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-mediumtext-column.md index a52dbe9404..a0ec9f2192 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createMediumtextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-operations.md index 744627adae..60a6813544 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createOperations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-point-column.md index a2c94fb247..58fd92378a 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createPointColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-polygon-column.md index 5de3ece01a..54e02abede 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createPolygonColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md index e7c72e7e30..851f8c3ea3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, RelationshipType, RelationMutate } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.createRelationshipColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md index 80c8a9763d..1d24f7873a 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.createRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md index 1054433a74..b57175c88e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.createRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md index e162c976ba..dec6e7d25c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.createStringColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md index 725bb50ef0..78fde6c6da 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.createTable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-text-column.md index 8c39e53d06..65a79782ee 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createTextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-transaction.md index 68465d4968..29c1af688d 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.createTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md index 2cee4674f9..127354aee4 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createUrlColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-varchar-column.md index 97c15ab4f1..a5d0978ddf 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createVarcharColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create.md index 91a89ce236..d64f396348 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md index 2f46b6d958..50477de15a 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.decrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md index 868cd6e277..73d092a6ef 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.deleteColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md index 451dcc8a94..0287aa5b74 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.deleteIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md index 1bcb477c18..bb2f7eddad 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.deleteRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md index c955326753..4c57578112 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.deleteRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md index e3d453291d..22548e3430 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await tablesDB.deleteTable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-transaction.md index b4f427a727..be5edcc08e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.deleteTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md index a567ad5035..4906f8440f 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md index 45d5c20531..75425492cc 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.getColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md index 576702638d..8f8b0c82d5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.getIndex({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md index 831a9d1af2..717e9720d9 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.getRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md index 6f5cff484c..21e0505c70 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.getTableUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md index 47ca8b7e04..6de4b809e3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await tablesDB.getTable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-transaction.md index 99d405e0a2..511c602924 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.getTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md index c4f34ee36e..854523876e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await tablesDB.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get.md index fc408caa56..275d646b23 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md index a0047abb86..60fad4d8b8 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.incrementRowColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md index fb36125432..831c46756c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.listColumns({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md index c1b4ef1fd5..ea4a541ce6 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.listIndexes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md index 870023ee0e..8c6acd01f5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.listRowLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md index ae4343cbc2..0ada5b3e8c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.listRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md index 102623e431..094c66033e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.listTableLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md index 5e2dc93c25..c9a182dff8 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.listTables({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-transactions.md index 8ecfcefee1..c2f6b3cff0 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.listTransactions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md index 875128dc53..1c36584232 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tablesDB.listUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list.md index 1f4dbdccae..a487fabebb 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md index d91927dd5f..6dade8f9d5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateBooleanColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md index 977c5106f9..2485c7bf5b 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateDatetimeColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md index 7f575a3d0c..29e59fe724 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateEmailColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md index 28dfc51ba6..182eba095d 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.updateEnumColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md index 2be0755220..b6c827a827 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.updateFloatColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md index 3e752b7009..f4fb54c4e2 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -18,3 +19,4 @@ const result = await tablesDB.updateIntegerColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md index c5f43af64e..513b114118 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateIpColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-line-column.md index 38b5aedb37..3b0f8a73f3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateLineColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-longtext-column.md index 3b1aa13caf..d444e8b1f5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateLongtextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-mediumtext-column.md index ed8b5fd281..10366e7db8 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateMediumtextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-point-column.md index f361d4c5bc..9706918d7e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updatePointColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-polygon-column.md index 64b60d7630..1639129d19 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updatePolygonColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md index 88d6725507..adc6e16d04 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, RelationMutate } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateRelationshipColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md index b096cfa992..e516e012d5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.updateRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md index 699ab5dfef..1ef873da6e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -21,3 +22,4 @@ const result = await tablesDB.updateRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md index b84185ca8f..e997d71c11 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.updateStringColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md index 5ef9bedb82..4691895c7a 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateTable({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-text-column.md index 1c36caeb7f..30db18db49 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateTextColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-transaction.md index 9095edc161..ab7e649857 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.updateTransaction({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md index e267e404de..cde0cb2357 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateUrlColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-varchar-column.md index 3ca2024d2c..6cbdc9c5fc 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await tablesDB.updateVarcharColumn({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update.md index e3f1600e1d..9e66c96669 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tablesDB.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md index 0c1a7ea2b6..20d39e6c8d 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() @@ -22,3 +23,4 @@ const result = await tablesDB.upsertRow({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md index 173d0e3065..510dc3e7bc 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```javascript import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tablesDB.upsertRows({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/create-membership.md b/docs/examples/1.8.x/console-web/examples/teams/create-membership.md index 6243375a04..f4132ccdae 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/console-web/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await teams.createMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/create.md b/docs/examples/1.8.x/console-web/examples/teams/create.md index 027155b4eb..a4dc3f2dac 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/create.md +++ b/docs/examples/1.8.x/console-web/examples/teams/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/delete-membership.md b/docs/examples/1.8.x/console-web/examples/teams/delete-membership.md index 43edacebde..a54c5a2f49 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/console-web/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.deleteMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/delete.md b/docs/examples/1.8.x/console-web/examples/teams/delete.md index 9ebc45b39a..655f7c79aa 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/delete.md +++ b/docs/examples/1.8.x/console-web/examples/teams/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/get-membership.md b/docs/examples/1.8.x/console-web/examples/teams/get-membership.md index a766060bc9..9f4922551e 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/console-web/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.getMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/get-prefs.md b/docs/examples/1.8.x/console-web/examples/teams/get-prefs.md index a044e8a4d7..040ea35b13 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.getPrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/get.md b/docs/examples/1.8.x/console-web/examples/teams/get.md index 2ec6271f0f..4192dac7ca 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/get.md +++ b/docs/examples/1.8.x/console-web/examples/teams/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await teams.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/list-logs.md b/docs/examples/1.8.x/console-web/examples/teams/list-logs.md index 8f5f6370ad..769b7cec4f 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/list-logs.md +++ b/docs/examples/1.8.x/console-web/examples/teams/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/list-memberships.md b/docs/examples/1.8.x/console-web/examples/teams/list-memberships.md index 644d466d73..656a46ca4c 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/console-web/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.listMemberships({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/list.md b/docs/examples/1.8.x/console-web/examples/teams/list.md index 3588a9cd61..739a3040cc 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/list.md +++ b/docs/examples/1.8.x/console-web/examples/teams/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/update-membership-status.md b/docs/examples/1.8.x/console-web/examples/teams/update-membership-status.md index ab6bc93d4f..94ae41f299 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/console-web/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await teams.updateMembershipStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/update-membership.md b/docs/examples/1.8.x/console-web/examples/teams/update-membership.md index 2e9edf5275..69ab78c8f0 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/console-web/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams, Roles } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await teams.updateMembership({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/update-name.md b/docs/examples/1.8.x/console-web/examples/teams/update-name.md index 82d3d0fac2..5723ad178e 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/update-name.md +++ b/docs/examples/1.8.x/console-web/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/teams/update-prefs.md b/docs/examples/1.8.x/console-web/examples/teams/update-prefs.md index 1519f5398a..e4e790444a 100644 --- a/docs/examples/1.8.x/console-web/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Teams } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await teams.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tokens/create-file-token.md b/docs/examples/1.8.x/console-web/examples/tokens/create-file-token.md index b762493708..900c5d7956 100644 --- a/docs/examples/1.8.x/console-web/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/console-web/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await tokens.createFileToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tokens/delete.md b/docs/examples/1.8.x/console-web/examples/tokens/delete.md index 8591dce076..20c59410e4 100644 --- a/docs/examples/1.8.x/console-web/examples/tokens/delete.md +++ b/docs/examples/1.8.x/console-web/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tokens.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tokens/get.md b/docs/examples/1.8.x/console-web/examples/tokens/get.md index 33916c1939..f918dd22fe 100644 --- a/docs/examples/1.8.x/console-web/examples/tokens/get.md +++ b/docs/examples/1.8.x/console-web/examples/tokens/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await tokens.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tokens/list.md b/docs/examples/1.8.x/console-web/examples/tokens/list.md index 8172e7b239..5b190cb65f 100644 --- a/docs/examples/1.8.x/console-web/examples/tokens/list.md +++ b/docs/examples/1.8.x/console-web/examples/tokens/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await tokens.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/tokens/update.md b/docs/examples/1.8.x/console-web/examples/tokens/update.md index 96d92348ef..86e340675a 100644 --- a/docs/examples/1.8.x/console-web/examples/tokens/update.md +++ b/docs/examples/1.8.x/console-web/examples/tokens/update.md @@ -1,3 +1,4 @@ +```javascript import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await tokens.update({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/console-web/examples/users/create-argon-2-user.md index 58da25bcb0..8b92df0bcf 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await users.createArgon2User({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/console-web/examples/users/create-bcrypt-user.md index f83290d10d..0d9a15fb82 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await users.createBcryptUser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-jwt.md b/docs/examples/1.8.x/console-web/examples/users/create-jwt.md index 4bd160bc96..01cbdc8bc7 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.createJWT({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-md-5-user.md b/docs/examples/1.8.x/console-web/examples/users/create-md-5-user.md index a0bfb47a2d..239e1e524b 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await users.createMD5User({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/users/create-mfa-recovery-codes.md index f8669589af..431e4420d2 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.createMFARecoveryCodes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/console-web/examples/users/create-ph-pass-user.md index a42b8d7594..b237c30761 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await users.createPHPassUser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/console-web/examples/users/create-scrypt-modified-user.md index b5a7ca3231..5d2909db21 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -17,3 +18,4 @@ const result = await users.createScryptModifiedUser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/console-web/examples/users/create-scrypt-user.md index 6727e2895f..22749a80d5 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -19,3 +20,4 @@ const result = await users.createScryptUser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-session.md b/docs/examples/1.8.x/console-web/examples/users/create-session.md index 917fbaa341..785ec0e615 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-session.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.createSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-sha-user.md b/docs/examples/1.8.x/console-web/examples/users/create-sha-user.md index 8d593ce6b5..e57bd0fe62 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users, PasswordHash } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await users.createSHAUser({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-target.md b/docs/examples/1.8.x/console-web/examples/users/create-target.md index 814d6f780a..905adb7c10 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-target.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users, MessagingProviderType } from "@appwrite.io/console"; const client = new Client() @@ -16,3 +17,4 @@ const result = await users.createTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create-token.md b/docs/examples/1.8.x/console-web/examples/users/create-token.md index d1fa556e6f..c6f43124fb 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create-token.md +++ b/docs/examples/1.8.x/console-web/examples/users/create-token.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.createToken({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/create.md b/docs/examples/1.8.x/console-web/examples/users/create.md index b61c814539..1dcd2c2452 100644 --- a/docs/examples/1.8.x/console-web/examples/users/create.md +++ b/docs/examples/1.8.x/console-web/examples/users/create.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await users.create({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete-identity.md b/docs/examples/1.8.x/console-web/examples/users/delete-identity.md index 9961f4a53f..8a75f548ee 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.deleteIdentity({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/console-web/examples/users/delete-mfa-authenticator.md index eeba75ad32..fac8f2fe84 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.deleteMFAAuthenticator({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete-session.md b/docs/examples/1.8.x/console-web/examples/users/delete-session.md index 08342e854e..0bea56266c 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete-session.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.deleteSession({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete-sessions.md b/docs/examples/1.8.x/console-web/examples/users/delete-sessions.md index 0f4d5efe0f..0087096e13 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.deleteSessions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete-target.md b/docs/examples/1.8.x/console-web/examples/users/delete-target.md index 44c65cda48..d6b84512ea 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete-target.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.deleteTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/delete.md b/docs/examples/1.8.x/console-web/examples/users/delete.md index dc702403f8..fd7c6777a6 100644 --- a/docs/examples/1.8.x/console-web/examples/users/delete.md +++ b/docs/examples/1.8.x/console-web/examples/users/delete.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.delete({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/users/get-mfa-recovery-codes.md index 082a2f8485..f0acfe9112 100644 --- a/docs/examples/1.8.x/console-web/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.getMFARecoveryCodes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/get-prefs.md b/docs/examples/1.8.x/console-web/examples/users/get-prefs.md index 61e575b12b..b2b8fbbb51 100644 --- a/docs/examples/1.8.x/console-web/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.getPrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/get-target.md b/docs/examples/1.8.x/console-web/examples/users/get-target.md index c5e209032c..3ab5afaa16 100644 --- a/docs/examples/1.8.x/console-web/examples/users/get-target.md +++ b/docs/examples/1.8.x/console-web/examples/users/get-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.getTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/get-usage.md b/docs/examples/1.8.x/console-web/examples/users/get-usage.md index 80c3a0ced3..53d11decd2 100644 --- a/docs/examples/1.8.x/console-web/examples/users/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/users/get-usage.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users, UsageRange } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.getUsage({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/get.md b/docs/examples/1.8.x/console-web/examples/users/get.md index 0c6ead786b..151401f859 100644 --- a/docs/examples/1.8.x/console-web/examples/users/get.md +++ b/docs/examples/1.8.x/console-web/examples/users/get.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.get({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-identities.md b/docs/examples/1.8.x/console-web/examples/users/list-identities.md index 69a35d7dc6..9afe716dcf 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-identities.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.listIdentities({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-logs.md b/docs/examples/1.8.x/console-web/examples/users/list-logs.md index ca7c3f8383..5b40db8e7c 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-logs.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.listLogs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-memberships.md b/docs/examples/1.8.x/console-web/examples/users/list-memberships.md index b45d1cf717..de0cc69d02 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await users.listMemberships({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/console-web/examples/users/list-mfa-factors.md index 4301971574..7120c655a0 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.listMFAFactors({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-sessions.md b/docs/examples/1.8.x/console-web/examples/users/list-sessions.md index 9cd4c1e2ca..d8db6a6512 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.listSessions({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list-targets.md b/docs/examples/1.8.x/console-web/examples/users/list-targets.md index f5aaa707d5..456b824b6a 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list-targets.md +++ b/docs/examples/1.8.x/console-web/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.listTargets({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/list.md b/docs/examples/1.8.x/console-web/examples/users/list.md index a5c0bc0795..47f3b2019f 100644 --- a/docs/examples/1.8.x/console-web/examples/users/list.md +++ b/docs/examples/1.8.x/console-web/examples/users/list.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await users.list({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-email-verification.md b/docs/examples/1.8.x/console-web/examples/users/update-email-verification.md index f5af0085b7..88c24c6fd7 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateEmailVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-email.md b/docs/examples/1.8.x/console-web/examples/users/update-email.md index ed5c83886b..b764d525f2 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-email.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-email.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateEmail({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-labels.md b/docs/examples/1.8.x/console-web/examples/users/update-labels.md index e25ee6a6b0..14bb2ebb47 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-labels.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateLabels({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/console-web/examples/users/update-mfa-recovery-codes.md index f9eecac66d..8c4ead69ef 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await users.updateMFARecoveryCodes({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-mfa.md b/docs/examples/1.8.x/console-web/examples/users/update-mfa.md index bbb33e8a42..616ca30ed6 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateMFA({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-name.md b/docs/examples/1.8.x/console-web/examples/users/update-name.md index 7433abca41..708733e878 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-name.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-name.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateName({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-password.md b/docs/examples/1.8.x/console-web/examples/users/update-password.md index 5c620e60f1..04b1a9a5c3 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-password.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-password.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updatePassword({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-phone-verification.md b/docs/examples/1.8.x/console-web/examples/users/update-phone-verification.md index a163d34406..2666cd99ef 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updatePhoneVerification({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-phone.md b/docs/examples/1.8.x/console-web/examples/users/update-phone.md index a8a31dcfc9..3244d09dcf 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-phone.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updatePhone({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-prefs.md b/docs/examples/1.8.x/console-web/examples/users/update-prefs.md index a08e27d10e..c2afe2ecb2 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updatePrefs({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-status.md b/docs/examples/1.8.x/console-web/examples/users/update-status.md index cdb393dd16..4a1d4c1aba 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-status.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-status.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await users.updateStatus({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/users/update-target.md b/docs/examples/1.8.x/console-web/examples/users/update-target.md index 27f5611cee..2752bb78db 100644 --- a/docs/examples/1.8.x/console-web/examples/users/update-target.md +++ b/docs/examples/1.8.x/console-web/examples/users/update-target.md @@ -1,3 +1,4 @@ +```javascript import { Client, Users } from "@appwrite.io/console"; const client = new Client() @@ -15,3 +16,4 @@ const result = await users.updateTarget({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/create-repository-detection.md b/docs/examples/1.8.x/console-web/examples/vcs/create-repository-detection.md index 69b2ea1f44..6666a9f3aa 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/create-repository-detection.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/create-repository-detection.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs, VCSDetectionType } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await vcs.createRepositoryDetection({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/create-repository.md b/docs/examples/1.8.x/console-web/examples/vcs/create-repository.md index 7e4e629099..41707e650e 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/create-repository.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/create-repository.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await vcs.createRepository({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/delete-installation.md b/docs/examples/1.8.x/console-web/examples/vcs/delete-installation.md index 9c49ac9cb5..8afd6e6d43 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/delete-installation.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/delete-installation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await vcs.deleteInstallation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/get-installation.md b/docs/examples/1.8.x/console-web/examples/vcs/get-installation.md index 2942f5b56e..2852c4ab17 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/get-installation.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/get-installation.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -11,3 +12,4 @@ const result = await vcs.getInstallation({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/get-repository-contents.md b/docs/examples/1.8.x/console-web/examples/vcs/get-repository-contents.md index b33cadd448..5be6ef8734 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/get-repository-contents.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/get-repository-contents.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await vcs.getRepositoryContents({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/get-repository.md b/docs/examples/1.8.x/console-web/examples/vcs/get-repository.md index e42812e11e..bff984b391 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/get-repository.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/get-repository.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await vcs.getRepository({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/list-installations.md b/docs/examples/1.8.x/console-web/examples/vcs/list-installations.md index e7e7d3a236..cda9fc9cb1 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/list-installations.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/list-installations.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await vcs.listInstallations({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/list-repositories.md b/docs/examples/1.8.x/console-web/examples/vcs/list-repositories.md index 85334c43e1..0aad1f021c 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/list-repositories.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/list-repositories.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs, VCSDetectionType } from "@appwrite.io/console"; const client = new Client() @@ -14,3 +15,4 @@ const result = await vcs.listRepositories({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/list-repository-branches.md b/docs/examples/1.8.x/console-web/examples/vcs/list-repository-branches.md index d0103afa03..4c85339ebb 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/list-repository-branches.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/list-repository-branches.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -12,3 +13,4 @@ const result = await vcs.listRepositoryBranches({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/console-web/examples/vcs/update-external-deployments.md b/docs/examples/1.8.x/console-web/examples/vcs/update-external-deployments.md index 2ebcada011..20a11e02e5 100644 --- a/docs/examples/1.8.x/console-web/examples/vcs/update-external-deployments.md +++ b/docs/examples/1.8.x/console-web/examples/vcs/update-external-deployments.md @@ -1,3 +1,4 @@ +```javascript import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() @@ -13,3 +14,4 @@ const result = await vcs.updateExternalDeployments({ }); console.log(result); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-dart/examples/account/create-anonymous-session.md index b12451d11a..542c0d644d 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); Session result = await account.createAnonymousSession(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-dart/examples/account/create-email-password-session.md index 63200d506c..bac35a1259 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Session result = await account.createEmailPasswordSession( email: 'email@example.com', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-email-token.md b/docs/examples/1.8.x/server-dart/examples/account/create-email-token.md index 348b8bb157..dfcfc76c83 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Token result = await account.createEmailToken( email: 'email@example.com', phrase: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-dart/examples/account/create-email-verification.md index b10173d190..0db846c121 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); Token result = await account.createEmailVerification( url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-jwt.md b/docs/examples/1.8.x/server-dart/examples/account/create-jwt.md index 43df06e2f6..0e02e203c7 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); Jwt result = await account.createJWT( duration: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-dart/examples/account/create-magic-url-token.md index 9aa4c5e502..4b4f703e88 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Token result = await account.createMagicURLToken( url: 'https://example.com', // (optional) phrase: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-authenticator.md index afd036347a..98a10171cc 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -10,3 +12,4 @@ Account account = Account(client); MfaType result = await account.createMFAAuthenticator( type: enums.AuthenticatorType.totp, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-challenge.md index 97b17f62da..36d2f8981d 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-challenge.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -10,3 +12,4 @@ Account account = Account(client); MfaChallenge result = await account.createMFAChallenge( factor: enums.AuthenticationFactor.email, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-recovery-codes.md index 1e8d478887..1fc2ec3b17 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.createMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-dart/examples/account/create-o-auth-2-token.md index 329c3b14d7..de299d60bf 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-o-auth-2-token.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ await account.createOAuth2Token( failure: 'https://example.com', // (optional) scopes: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-dart/examples/account/create-phone-token.md index 1ea7532fbd..86a2ed36bb 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.createPhoneToken( userId: '', phone: '+12065550100', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-dart/examples/account/create-phone-verification.md index 8616834b27..400e47ec4c 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); Token result = await account.createPhoneVerification(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-recovery.md b/docs/examples/1.8.x/server-dart/examples/account/create-recovery.md index f56d4227a9..a71d691f54 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.createRecovery( email: 'email@example.com', url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-session.md b/docs/examples/1.8.x/server-dart/examples/account/create-session.md index c23e5c94bb..5e6f733d53 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Session result = await account.createSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create-verification.md b/docs/examples/1.8.x/server-dart/examples/account/create-verification.md index 150833cd6b..c12b0dd2de 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); Token result = await account.createVerification( url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/create.md b/docs/examples/1.8.x/server-dart/examples/account/create.md index 21af6db4c8..fd08fa83cf 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/create.md +++ b/docs/examples/1.8.x/server-dart/examples/account/create.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await account.create( password: '', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/delete-identity.md b/docs/examples/1.8.x/server-dart/examples/account/delete-identity.md index 124e6adad4..e05b30fa59 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-dart/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); await account.deleteIdentity( identityId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-dart/examples/account/delete-mfa-authenticator.md index 910e2f34c3..06b60ece9c 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dart/examples/account/delete-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -10,3 +12,4 @@ Account account = Account(client); await account.deleteMFAAuthenticator( type: enums.AuthenticatorType.totp, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/delete-session.md b/docs/examples/1.8.x/server-dart/examples/account/delete-session.md index d02808bbe9..2961f1a48e 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); await account.deleteSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-dart/examples/account/delete-sessions.md index 9406ca39d0..2b7f5b8199 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-dart/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); await account.deleteSessions(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/account/get-mfa-recovery-codes.md index 5ff858fdaf..7b6c314ae4 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.getMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/get-prefs.md b/docs/examples/1.8.x/server-dart/examples/account/get-prefs.md index 94e10db1b6..667f2c040f 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); Preferences result = await account.getPrefs(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/get-session.md b/docs/examples/1.8.x/server-dart/examples/account/get-session.md index 3a81954bd9..36429bf744 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/get-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); Session result = await account.getSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/get.md b/docs/examples/1.8.x/server-dart/examples/account/get.md index 76a139a46a..fb5633f4b0 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/get.md +++ b/docs/examples/1.8.x/server-dart/examples/account/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); User result = await account.get(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/list-identities.md b/docs/examples/1.8.x/server-dart/examples/account/list-identities.md index 26d8ae6a0f..9db450bbe3 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-dart/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ IdentityList result = await account.listIdentities( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/list-logs.md b/docs/examples/1.8.x/server-dart/examples/account/list-logs.md index ceff065160..f29691858b 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ LogList result = await account.listLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-dart/examples/account/list-mfa-factors.md index 083b51d6c3..80f3668025 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-dart/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); MfaFactors result = await account.listMFAFactors(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/list-sessions.md b/docs/examples/1.8.x/server-dart/examples/account/list-sessions.md index 73cf462af6..53c0d220bd 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-dart/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); SessionList result = await account.listSessions(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-dart/examples/account/update-email-verification.md index b48535a31a..4f41ac0591 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.updateEmailVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-email.md b/docs/examples/1.8.x/server-dart/examples/account/update-email.md index cf6a56edcc..b6c7c59248 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-email.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await account.updateEmail( email: 'email@example.com', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-dart/examples/account/update-magic-url-session.md index c18efc60b8..bed558eab8 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Session result = await account.updateMagicURLSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-authenticator.md index 938652fa8d..d898bc2d3b 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -11,3 +13,4 @@ User result = await account.updateMFAAuthenticator( type: enums.AuthenticatorType.totp, otp: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-challenge.md index 6cf3bb473e..928a7ad8fa 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Session result = await account.updateMFAChallenge( challengeId: '', otp: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-recovery-codes.md index 10fc77d2f2..b1abcd8589 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); MfaRecoveryCodes result = await account.updateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-mfa.md b/docs/examples/1.8.x/server-dart/examples/account/update-mfa.md index 947d862e46..744a5da5d4 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); User result = await account.updateMFA( mfa: false, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-name.md b/docs/examples/1.8.x/server-dart/examples/account/update-name.md index 82cc3358a1..4022100768 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-name.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); User result = await account.updateName( name: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-password.md b/docs/examples/1.8.x/server-dart/examples/account/update-password.md index 27d360ba51..9f4ad48948 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-password.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await account.updatePassword( password: '', oldPassword: 'password', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-dart/examples/account/update-phone-session.md index 47176c4d97..d99d8b6d32 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Session result = await account.updatePhoneSession( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-dart/examples/account/update-phone-verification.md index f4b0c6fe6a..909b228ef3 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.updatePhoneVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-phone.md b/docs/examples/1.8.x/server-dart/examples/account/update-phone.md index d861561b60..7bf501690e 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await account.updatePhone( phone: '+12065550100', password: 'password', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-prefs.md b/docs/examples/1.8.x/server-dart/examples/account/update-prefs.md index 4334383546..fe0076a272 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ User result = await account.updatePrefs( "darkTheme": true }, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-recovery.md b/docs/examples/1.8.x/server-dart/examples/account/update-recovery.md index 162ad58ac9..7b6920e1bd 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Token result = await account.updateRecovery( secret: '', password: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-session.md b/docs/examples/1.8.x/server-dart/examples/account/update-session.md index a317a0840a..12ad41b51b 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Account account = Account(client); Session result = await account.updateSession( sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-status.md b/docs/examples/1.8.x/server-dart/examples/account/update-status.md index 2ee15d603c..0841e5e259 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-status.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Account account = Account(client); User result = await account.updateStatus(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/account/update-verification.md b/docs/examples/1.8.x/server-dart/examples/account/update-verification.md index 61904fd3f0..e45bfd3cfb 100644 --- a/docs/examples/1.8.x/server-dart/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Token result = await account.updateVerification( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-browser.md index 2808587493..b4626789bd 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-browser.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ Uint8List result = await avatars.getBrowser( height: 0, // (optional) quality: -1, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-credit-card.md index 32036da12b..b5eb4f427c 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-credit-card.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ Uint8List result = await avatars.getCreditCard( height: 0, // (optional) quality: -1, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-favicon.md index e2df21f6fd..1bfa9b7215 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Avatars avatars = Avatars(client); Uint8List result = await avatars.getFavicon( url: 'https://example.com', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-flag.md index e3e5d6e080..920ccc5d8b 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-flag.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ Uint8List result = await avatars.getFlag( height: 0, // (optional) quality: -1, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-image.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-image.md index fc727f481e..c4c347102a 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Uint8List result = await avatars.getImage( width: 0, // (optional) height: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-initials.md index be77c67147..65ff5806ba 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Uint8List result = await avatars.getInitials( height: 0, // (optional) background: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-qr.md index f44ce59076..9c470360e0 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Uint8List result = await avatars.getQR( margin: 0, // (optional) download: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-dart/examples/avatars/get-screenshot.md index 9cb912f921..eb480002e0 100644 --- a/docs/examples/1.8.x/server-dart/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-dart/examples/avatars/get-screenshot.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -32,3 +34,4 @@ Uint8List result = await avatars.getScreenshot( quality: 85, // (optional) output: enums.ImageFormat.jpeg, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-boolean-attribute.md index 13ca992889..6ffdea71db 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeBoolean result = await databases.createBooleanAttribute( xdefault: false, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-collection.md b/docs/examples/1.8.x/server-dart/examples/databases/create-collection.md index e131269f6f..f0c3aea512 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -19,3 +20,4 @@ Collection result = await databases.createCollection( attributes: [], // (optional) indexes: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-datetime-attribute.md index 2591011423..f722c7ea4d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeDatetime result = await databases.createDatetimeAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-document.md b/docs/examples/1.8.x/server-dart/examples/databases/create-document.md index 359ef2368c..f6dc0aaa60 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Document result = await databases.createDocument( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-documents.md b/docs/examples/1.8.x/server-dart/examples/databases/create-documents.md index 6c77b78fe2..dd02046768 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ DocumentList result = await databases.createDocuments( documents: [], transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-email-attribute.md index 216d020260..24347079d0 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeEmail result = await databases.createEmailAttribute( xdefault: 'email@example.com', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-enum-attribute.md index d45ca4476c..c50157b86a 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ AttributeEnum result = await databases.createEnumAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-float-attribute.md index 75d47f44ad..33c1207030 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ AttributeFloat result = await databases.createFloatAttribute( xdefault: 0, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-index.md b/docs/examples/1.8.x/server-dart/examples/databases/create-index.md index de5e0e23e3..32a2b1997d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-index.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ Index result = await databases.createIndex( orders: [enums.OrderBy.asc], // (optional) lengths: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-integer-attribute.md index 6511696f92..6d017d66e9 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ AttributeInteger result = await databases.createIntegerAttribute( xdefault: 0, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-ip-attribute.md index 10ddb47bdf..3648d5bb41 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeIp result = await databases.createIpAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-line-attribute.md index 74e8e406b8..15adc9686b 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ AttributeLine result = await databases.createLineAttribute( xrequired: false, xdefault: [[1, 2], [3, 4], [5, 6]], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-longtext-attribute.md index 63540f044e..2f58278184 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeLongtext result = await databases.createLongtextAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-mediumtext-attribute.md index a79acbcd5d..a62fdf9b11 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeMediumtext result = await databases.createMediumtextAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-operations.md b/docs/examples/1.8.x/server-dart/examples/databases/create-operations.md index 2fe1121bf4..d44b4e8397 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -21,3 +22,4 @@ Transaction result = await databases.createOperations( } ], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-point-attribute.md index 7a630825a1..c015d4b5a0 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ AttributePoint result = await databases.createPointAttribute( xrequired: false, xdefault: [1, 2], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-polygon-attribute.md index b0fa8d6a38..3f16e332ec 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ AttributePolygon result = await databases.createPolygonAttribute( xrequired: false, xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-relationship-attribute.md index b8ad5e0c87..00afb5f754 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-relationship-attribute.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -17,3 +19,4 @@ AttributeRelationship result = await databases.createRelationshipAttribute( twoWayKey: '', // (optional) onDelete: enums.RelationMutate.cascade, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-string-attribute.md index 8785ea7647..e8f66c180a 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ AttributeString result = await databases.createStringAttribute( array: false, // (optional) encrypt: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-text-attribute.md index 1095decbcc..7cadac41b8 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeText result = await databases.createTextAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-dart/examples/databases/create-transaction.md index 69af666c73..5ab1c8ae14 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); Transaction result = await databases.createTransaction( ttl: 60, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-url-attribute.md index 9088f8dfeb..735f8a1d91 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeUrl result = await databases.createUrlAttribute( xdefault: 'https://example.com', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/create-varchar-attribute.md index 1fc70515a4..0ceabe882f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ AttributeVarchar result = await databases.createVarcharAttribute( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/create.md b/docs/examples/1.8.x/server-dart/examples/databases/create.md index a2e978bd30..3abe57d109 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/create.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/create.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Database result = await databases.create( name: '', enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/decrement-document-attribute.md index 6fb7ab68e6..3c69500fa3 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Document result = await databases.decrementDocumentAttribute( min: 0, // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-attribute.md index f9cbbd42ef..aafeb02598 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await databases.deleteAttribute( collectionId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-collection.md index 919e17891b..76a0289e17 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await databases.deleteCollection( databaseId: '', collectionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-document.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-document.md index eb9c3eba36..659e09e74a 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ await databases.deleteDocument( documentId: '', transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-documents.md index 2e4e0c3cc2..6a8bd5a875 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ await databases.deleteDocuments( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-index.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-index.md index f16c84b9a7..2422caff7d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await databases.deleteIndex( collectionId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-dart/examples/databases/delete-transaction.md index 6cebc33f83..1a00f8166b 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); await databases.deleteTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/delete.md b/docs/examples/1.8.x/server-dart/examples/databases/delete.md index 5e9042e542..eabebed6f1 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); await databases.delete( databaseId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/get-attribute.md index 91a3646121..2159d188cb 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ AttributeBoolean result = await databases.getAttribute( collectionId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get-collection.md b/docs/examples/1.8.x/server-dart/examples/databases/get-collection.md index b678420128..0e19f4e041 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Collection result = await databases.getCollection( databaseId: '', collectionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get-document.md b/docs/examples/1.8.x/server-dart/examples/databases/get-document.md index cd87138b7e..75fbb943e9 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ Document result = await databases.getDocument( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get-index.md b/docs/examples/1.8.x/server-dart/examples/databases/get-index.md index 848257960a..6190145ac2 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Index result = await databases.getIndex( collectionId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-dart/examples/databases/get-transaction.md index dfa1b583c1..230f2ee61c 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); Transaction result = await databases.getTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/get.md b/docs/examples/1.8.x/server-dart/examples/databases/get.md index 28d3d2bd14..e8b042b371 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/get.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); Database result = await databases.get( databaseId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/increment-document-attribute.md index ab108ebb27..211740f428 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Document result = await databases.incrementDocumentAttribute( max: 0, // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-dart/examples/databases/list-attributes.md index 61b407cd74..3d98457fe3 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ AttributeList result = await databases.listAttributes( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list-collections.md b/docs/examples/1.8.x/server-dart/examples/databases/list-collections.md index 8feb6e7073..6b983d6bb7 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ CollectionList result = await databases.listCollections( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list-documents.md b/docs/examples/1.8.x/server-dart/examples/databases/list-documents.md index cb4284a825..ab4f90b63f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ DocumentList result = await databases.listDocuments( transactionId: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-dart/examples/databases/list-indexes.md index 1a984af456..ccfa33582f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ IndexList result = await databases.listIndexes( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-dart/examples/databases/list-transactions.md index 856e5e86ac..07a73e26d0 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Databases databases = Databases(client); TransactionList result = await databases.listTransactions( queries: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/list.md b/docs/examples/1.8.x/server-dart/examples/databases/list.md index ba321857b4..3da1314830 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/list.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ DatabaseList result = await databases.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-boolean-attribute.md index 46e3ef4ce3..29b13e615f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeBoolean result = await databases.updateBooleanAttribute( xdefault: false, newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-collection.md b/docs/examples/1.8.x/server-dart/examples/databases/update-collection.md index ba84d6c832..b9ce24fa3c 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -17,3 +18,4 @@ Collection result = await databases.updateCollection( documentSecurity: false, // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-datetime-attribute.md index ddc8f26a70..dee3b520d3 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeDatetime result = await databases.updateDatetimeAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-document.md b/docs/examples/1.8.x/server-dart/examples/databases/update-document.md index b193cdffc1..ccfc6838c5 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Document result = await databases.updateDocument( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-documents.md b/docs/examples/1.8.x/server-dart/examples/databases/update-documents.md index cf3be35fda..9ab88a699d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -20,3 +21,4 @@ DocumentList result = await databases.updateDocuments( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-email-attribute.md index ee0e09719e..0a261f5f7d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeEmail result = await databases.updateEmailAttribute( xdefault: 'email@example.com', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-enum-attribute.md index 61ef4d0835..b37ab12f75 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ AttributeEnum result = await databases.updateEnumAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-float-attribute.md index 36f360eebc..d418bfd08b 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ AttributeFloat result = await databases.updateFloatAttribute( max: 0, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-integer-attribute.md index 9089cc8bf6..8a7b3775c4 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ AttributeInteger result = await databases.updateIntegerAttribute( max: 0, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-ip-attribute.md index e698a59e3a..98d8eff422 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeIp result = await databases.updateIpAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-line-attribute.md index 8787e84433..59ab5f7108 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeLine result = await databases.updateLineAttribute( xdefault: [[1, 2], [3, 4], [5, 6]], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-longtext-attribute.md index a79072b37e..c0f6d7ec93 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeLongtext result = await databases.updateLongtextAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-mediumtext-attribute.md index 88c8392ea4..fb5f85ac2f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeMediumtext result = await databases.updateMediumtextAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-point-attribute.md index d1a64941d5..29d1354ec8 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributePoint result = await databases.updatePointAttribute( xdefault: [1, 2], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-polygon-attribute.md index 3596475911..c2e2c6a567 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributePolygon result = await databases.updatePolygonAttribute( xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-relationship-attribute.md index 3d7a966c7a..d964f5006e 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-relationship-attribute.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -14,3 +16,4 @@ AttributeRelationship result = await databases.updateRelationshipAttribute( onDelete: enums.RelationMutate.cascade, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-string-attribute.md index 7674f51c5b..79dda5087d 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ AttributeString result = await databases.updateStringAttribute( size: 1, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-text-attribute.md index 18495e7f86..38f2b4bdfc 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeText result = await databases.updateTextAttribute( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-dart/examples/databases/update-transaction.md index b2b35f20eb..f43e7e5d71 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Transaction result = await databases.updateTransaction( commit: false, // (optional) rollback: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-url-attribute.md index 3aaa01b441..b05dd6f1be 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ AttributeUrl result = await databases.updateUrlAttribute( xdefault: 'https://example.com', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-dart/examples/databases/update-varchar-attribute.md index 3a1d621159..adf5625438 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ AttributeVarchar result = await databases.updateVarcharAttribute( size: 1, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/update.md b/docs/examples/1.8.x/server-dart/examples/databases/update.md index 54efc0b8c6..4c097968a2 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/update.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/update.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Database result = await databases.update( name: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-dart/examples/databases/upsert-document.md index 6d2f832512..46a70fda1f 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Document result = await databases.upsertDocument( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-dart/examples/databases/upsert-documents.md index 009fe18b4a..95806e1ab7 100644 --- a/docs/examples/1.8.x/server-dart/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-dart/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ DocumentList result = await databases.upsertDocuments( documents: [], transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/create-deployment.md index f459b3dd89..62ac7cca5d 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```dart import 'dart:io'; import 'package:dart_appwrite/dart_appwrite.dart'; @@ -15,3 +16,4 @@ Deployment result = await functions.createDeployment( entrypoint: '', // (optional) commands: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/create-duplicate-deployment.md index 34ff5b2067..14804895be 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Deployment result = await functions.createDuplicateDeployment( deploymentId: '', buildId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-execution.md b/docs/examples/1.8.x/server-dart/examples/functions/create-execution.md index 4105034801..2f6ac1c332 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-execution.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ Execution result = await functions.createExecution( headers: {}, // (optional) scheduledAt: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/create-template-deployment.md index fec6e111ab..1b1f5d2442 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-template-deployment.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ Deployment result = await functions.createTemplateDeployment( reference: '', activate: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-variable.md b/docs/examples/1.8.x/server-dart/examples/functions/create-variable.md index 03e36d8275..7c7cf991e0 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Variable result = await functions.createVariable( value: '', secret: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/create-vcs-deployment.md index 375b30a005..a241c80fe3 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create-vcs-deployment.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ Deployment result = await functions.createVcsDeployment( reference: '', activate: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/create.md b/docs/examples/1.8.x/server-dart/examples/functions/create.md index a9d439775e..7efe07f01a 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/create.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/create.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -27,3 +29,4 @@ Func result = await functions.create( providerRootDirectory: '', // (optional) specification: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/delete-deployment.md index 8e4167f756..a4d629d190 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await functions.deleteDeployment( functionId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-dart/examples/functions/delete-execution.md index d077bc9328..f5226dda0c 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await functions.deleteExecution( functionId: '', executionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-dart/examples/functions/delete-variable.md index d4b2832830..ce2c26c129 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await functions.deleteVariable( functionId: '', variableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/delete.md b/docs/examples/1.8.x/server-dart/examples/functions/delete.md index 38d360b764..9d0465d0ce 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Functions functions = Functions(client); await functions.delete( functionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-dart/examples/functions/get-deployment-download.md index 29352dca29..378a366ad0 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/get-deployment-download.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -12,3 +14,4 @@ Uint8List result = await functions.getDeploymentDownload( deploymentId: '', type: enums.DeploymentDownloadType.source, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/get-deployment.md index 805ca0b634..8e3e2e28ce 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Deployment result = await functions.getDeployment( functionId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/get-execution.md b/docs/examples/1.8.x/server-dart/examples/functions/get-execution.md index e0026e0c4b..1f36548451 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Execution result = await functions.getExecution( functionId: '', executionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/get-variable.md b/docs/examples/1.8.x/server-dart/examples/functions/get-variable.md index fe61cee587..ab8179e0c1 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Variable result = await functions.getVariable( functionId: '', variableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/get.md b/docs/examples/1.8.x/server-dart/examples/functions/get.md index c92a4f746c..caafad0ac0 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/get.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Functions functions = Functions(client); Func result = await functions.get( functionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-dart/examples/functions/list-deployments.md index 5a3187334b..0cd7c71fb6 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ DeploymentList result = await functions.listDeployments( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list-executions.md b/docs/examples/1.8.x/server-dart/examples/functions/list-executions.md index fb409ed3d6..deb100be08 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ExecutionList result = await functions.listExecutions( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-dart/examples/functions/list-runtimes.md index a99f872b7e..6325f4e4b0 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Functions functions = Functions(client); RuntimeList result = await functions.listRuntimes(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-dart/examples/functions/list-specifications.md index bec5d5e635..d7a3cffc0b 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Functions functions = Functions(client); SpecificationList result = await functions.listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list-variables.md b/docs/examples/1.8.x/server-dart/examples/functions/list-variables.md index 0fa3b002bf..0cbd895cf9 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Functions functions = Functions(client); VariableList result = await functions.listVariables( functionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/list.md b/docs/examples/1.8.x/server-dart/examples/functions/list.md index 8b4a3235b3..5b5fb57114 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/list.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ FunctionList result = await functions.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-dart/examples/functions/update-deployment-status.md index 2b068098af..7c8d0cb8e0 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Deployment result = await functions.updateDeploymentStatus( functionId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-dart/examples/functions/update-function-deployment.md index 0a5c09dd96..2fd5848b88 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Func result = await functions.updateFunctionDeployment( functionId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/update-variable.md b/docs/examples/1.8.x/server-dart/examples/functions/update-variable.md index 7330d9f850..be5e0345ee 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ Variable result = await functions.updateVariable( value: '', // (optional) secret: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/functions/update.md b/docs/examples/1.8.x/server-dart/examples/functions/update.md index 19fc73778f..3a23cd68f2 100644 --- a/docs/examples/1.8.x/server-dart/examples/functions/update.md +++ b/docs/examples/1.8.x/server-dart/examples/functions/update.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -27,3 +29,4 @@ Func result = await functions.update( providerRootDirectory: '', // (optional) specification: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/graphql/mutation.md b/docs/examples/1.8.x/server-dart/examples/graphql/mutation.md index a88749851c..cd55d655ec 100644 --- a/docs/examples/1.8.x/server-dart/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-dart/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Graphql graphql = Graphql(client); Any result = await graphql.mutation( query: {}, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/graphql/query.md b/docs/examples/1.8.x/server-dart/examples/graphql/query.md index 2dca8f2929..7d6fa18418 100644 --- a/docs/examples/1.8.x/server-dart/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-dart/examples/graphql/query.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Graphql graphql = Graphql(client); Any result = await graphql.query( query: {}, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-dart/examples/health/get-antivirus.md index 395d1f84d1..32b7065e26 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthAntivirus result = await health.getAntivirus(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-cache.md b/docs/examples/1.8.x/server-dart/examples/health/get-cache.md index e3c3043151..0a47515491 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatusList result = await health.getCache(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-certificate.md b/docs/examples/1.8.x/server-dart/examples/health/get-certificate.md index eac30a6aef..692c55ae8f 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthCertificate result = await health.getCertificate( domain: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-db.md b/docs/examples/1.8.x/server-dart/examples/health/get-db.md index ef88004fb0..9080ec235e 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-db.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatusList result = await health.getDB(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-dart/examples/health/get-failed-jobs.md index 4ed7bac9c0..472eb1aee4 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-failed-jobs.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -11,3 +13,4 @@ HealthQueue result = await health.getFailedJobs( name: enums.Name.v1Database, threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-dart/examples/health/get-pub-sub.md index 69c4465957..10c906b06f 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatusList result = await health.getPubSub(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-audits.md index 093c77e140..d367220aa8 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueAudits( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-builds.md index b48623ec18..f837c97dfd 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueBuilds( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-certificates.md index d72ac97b14..c8ae268360 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueCertificates( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-databases.md index b9d8e8bc66..aa37f3edba 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ HealthQueue result = await health.getQueueDatabases( name: '', // (optional) threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-deletes.md index 3074cbb8ab..8519349068 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueDeletes( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-functions.md index 727fd239cc..00e7879b1a 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueFunctions( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-logs.md index 32d3e3bb7b..33379121d2 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueLogs( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-mails.md index 93ec993845..4631902e40 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueMails( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-messaging.md index 4ffd769d3c..5803dd9dfb 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueMessaging( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-migrations.md index fab19875e5..862ca9d499 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueMigrations( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-stats-resources.md index 89a3d03179..23075db53e 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueStatsResources( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-usage.md index 473dcd15ee..06a3e93911 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueUsage( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-dart/examples/health/get-queue-webhooks.md index 523c1007f5..38ee6e7237 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Health health = Health(client); HealthQueue result = await health.getQueueWebhooks( threshold: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-dart/examples/health/get-storage-local.md index c33cf555f3..46a303614e 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatus result = await health.getStorageLocal(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-storage.md b/docs/examples/1.8.x/server-dart/examples/health/get-storage.md index cb6c572154..b5e046f653 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatus result = await health.getStorage(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get-time.md b/docs/examples/1.8.x/server-dart/examples/health/get-time.md index f4439957d9..d4c4fc236a 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get-time.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthTime result = await health.getTime(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/health/get.md b/docs/examples/1.8.x/server-dart/examples/health/get.md index 3134490848..007a68f64e 100644 --- a/docs/examples/1.8.x/server-dart/examples/health/get.md +++ b/docs/examples/1.8.x/server-dart/examples/health/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Health health = Health(client); HealthStatus result = await health.get(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/get.md b/docs/examples/1.8.x/server-dart/examples/locale/get.md index dec6f068c6..e8d5a6e5f7 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/get.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); Locale result = await locale.get(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-codes.md b/docs/examples/1.8.x/server-dart/examples/locale/list-codes.md index 9f9eac9f29..c8b2490d9d 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); LocaleCodeList result = await locale.listCodes(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-continents.md b/docs/examples/1.8.x/server-dart/examples/locale/list-continents.md index 276738eac7..5d96631bc8 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); ContinentList result = await locale.listContinents(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-dart/examples/locale/list-countries-eu.md index 59596c624c..191be9496e 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); CountryList result = await locale.listCountriesEU(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-dart/examples/locale/list-countries-phones.md index 2a2d32eaca..00ec7810b6 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); PhoneList result = await locale.listCountriesPhones(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-countries.md b/docs/examples/1.8.x/server-dart/examples/locale/list-countries.md index 6b8343c6b3..62da933f81 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); CountryList result = await locale.listCountries(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-dart/examples/locale/list-currencies.md index 48247d98fe..c10296305f 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); CurrencyList result = await locale.listCurrencies(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/locale/list-languages.md b/docs/examples/1.8.x/server-dart/examples/locale/list-languages.md index 2376f18917..297128406b 100644 --- a/docs/examples/1.8.x/server-dart/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-dart/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Locale locale = Locale(client); LanguageList result = await locale.listLanguages(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-apns-provider.md index a4faf2dacf..5ccf6f7647 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.createAPNSProvider( sandbox: false, // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-email.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-email.md index 78c695c7ed..fd9f1eab03 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -21,3 +22,4 @@ Message result = await messaging.createEmail( html: false, // (optional) scheduledAt: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-fcm-provider.md index ce4f810d5d..93a224593b 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Provider result = await messaging.createFCMProvider( serviceAccountJSON: {}, // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-mailgun-provider.md index 10d803d624..3f4d98547e 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -19,3 +20,4 @@ Provider result = await messaging.createMailgunProvider( replyToEmail: 'email@example.com', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-msg-91-provider.md index b283b75325..b6b919f512 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.createMsg91Provider( authKey: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-push.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-push.md index 14f95e1855..9908cdd3ed 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-push.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -28,3 +30,4 @@ Message result = await messaging.createPush( critical: false, // (optional) priority: enums.MessagePriority.normal, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-resend-provider.md index ca5e2a0e7d..6ce3fb47f3 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.createResendProvider( replyToEmail: 'email@example.com', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-sendgrid-provider.md index e759a26094..376bf8ccb7 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.createSendgridProvider( replyToEmail: 'email@example.com', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-sms.md index ca90bc6011..1996889349 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Message result = await messaging.createSMS( draft: false, // (optional) scheduledAt: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-smtp-provider.md index b808690602..6d7d7e9df1 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-smtp-provider.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -23,3 +25,4 @@ Provider result = await messaging.createSMTPProvider( replyToEmail: 'email@example.com', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-subscriber.md index 5fd4859fb9..cd9e9a43bf 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Subscriber result = await messaging.createSubscriber( subscriberId: '', targetId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-telesign-provider.md index 5417b951dd..0e86c2d835 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.createTelesignProvider( apiKey: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-textmagic-provider.md index 4cf6463b6e..88086ee51b 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.createTextmagicProvider( apiKey: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-topic.md index 67e47412a1..1414bd0cc6 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Topic result = await messaging.createTopic( name: '', subscribe: ["any"], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-twilio-provider.md index 8c3370baa7..abd848d477 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.createTwilioProvider( authToken: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/create-vonage-provider.md index d625f38230..cb372b787e 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.createVonageProvider( apiSecret: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/delete-provider.md index 361bacc2c3..f59b3ddc58 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); await messaging.deleteProvider( providerId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-dart/examples/messaging/delete-subscriber.md index e4a044c280..870894a1c7 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await messaging.deleteSubscriber( topicId: '', subscriberId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-dart/examples/messaging/delete-topic.md index 59c5592c93..25afc81740 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); await messaging.deleteTopic( topicId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/delete.md b/docs/examples/1.8.x/server-dart/examples/messaging/delete.md index 14b680ae99..757aa24abd 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); await messaging.delete( messageId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/get-message.md b/docs/examples/1.8.x/server-dart/examples/messaging/get-message.md index ccc98961e7..6030ab4115 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); Message result = await messaging.getMessage( messageId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/get-provider.md index a82ef15775..b9978e1245 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); Provider result = await messaging.getProvider( providerId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-dart/examples/messaging/get-subscriber.md index 03f78b7fa4..4866ec4064 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Subscriber result = await messaging.getSubscriber( topicId: '', subscriberId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-dart/examples/messaging/get-topic.md index 204f875793..9bde98187b 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Messaging messaging = Messaging(client); Topic result = await messaging.getTopic( topicId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-message-logs.md index 8a109b22f9..9e3bcb5a98 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ LogList result = await messaging.listMessageLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-messages.md index f8d6728d70..cb43477f49 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ MessageList result = await messaging.listMessages( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-provider-logs.md index f7bd179b07..a884aa3b25 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ LogList result = await messaging.listProviderLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-providers.md index b8e67f3db2..3fb8e6ffc4 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ProviderList result = await messaging.listProviders( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-subscriber-logs.md index 0268b5eab1..507443f7cd 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ LogList result = await messaging.listSubscriberLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-subscribers.md index 0a2816cf99..6a876a7c32 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ SubscriberList result = await messaging.listSubscribers( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-targets.md index 6a527e4b14..6f0225e194 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ TargetList result = await messaging.listTargets( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-topic-logs.md index ad18a03dfe..b3b8ba8f88 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ LogList result = await messaging.listTopicLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-dart/examples/messaging/list-topics.md index cd9302b846..7147c2d0dd 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ TopicList result = await messaging.listTopics( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-apns-provider.md index 7f3bc8340e..47e714d5c4 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.updateAPNSProvider( bundleId: '', // (optional) sandbox: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-email.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-email.md index b725cee5f0..fa31f10be3 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -21,3 +22,4 @@ Message result = await messaging.updateEmail( scheduledAt: '', // (optional) attachments: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-fcm-provider.md index 65afba1fe2..5224661763 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Provider result = await messaging.updateFCMProvider( enabled: false, // (optional) serviceAccountJSON: {}, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-mailgun-provider.md index c042a6faaa..6b164546fa 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -19,3 +20,4 @@ Provider result = await messaging.updateMailgunProvider( replyToName: '', // (optional) replyToEmail: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-msg-91-provider.md index 24290e958f..37a0a56736 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.updateMsg91Provider( senderId: '', // (optional) authKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-push.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-push.md index eaaa40e00d..d367dca5be 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-push.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -28,3 +30,4 @@ Message result = await messaging.updatePush( critical: false, // (optional) priority: enums.MessagePriority.normal, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-resend-provider.md index cd4755280a..6af01550d1 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.updateResendProvider( replyToName: '', // (optional) replyToEmail: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-sendgrid-provider.md index 53b8c33df4..3cfbe82b0f 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ Provider result = await messaging.updateSendgridProvider( replyToName: '', // (optional) replyToEmail: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-sms.md index 26e6649b57..b33c146064 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Message result = await messaging.updateSMS( draft: false, // (optional) scheduledAt: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-smtp-provider.md index 9e362c1d4a..e77b1455df 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-smtp-provider.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -23,3 +25,4 @@ Provider result = await messaging.updateSMTPProvider( replyToEmail: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-telesign-provider.md index 4bf76fbcfe..cc1759931f 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.updateTelesignProvider( apiKey: '', // (optional) from: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-textmagic-provider.md index 86bb985778..2eaff53534 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.updateTextmagicProvider( apiKey: '', // (optional) from: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-topic.md index 5311fd5e9b..4488127291 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Topic result = await messaging.updateTopic( name: '', // (optional) subscribe: ["any"], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-twilio-provider.md index 8ace97521b..d177d8718f 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.updateTwilioProvider( authToken: '', // (optional) from: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-dart/examples/messaging/update-vonage-provider.md index e0d95d1cb4..ca12280673 100644 --- a/docs/examples/1.8.x/server-dart/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-dart/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ Provider result = await messaging.updateVonageProvider( apiSecret: '', // (optional) from: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/create-deployment.md index 93f9615b8b..ad506f99db 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```dart import 'dart:io'; import 'package:dart_appwrite/dart_appwrite.dart'; @@ -16,3 +17,4 @@ Deployment result = await sites.createDeployment( buildCommand: '', // (optional) outputDirectory: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/create-duplicate-deployment.md index 1a3e84a33c..6844d143c1 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Deployment result = await sites.createDuplicateDeployment( siteId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/create-template-deployment.md index 4a9e005634..a0d9004e24 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create-template-deployment.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ Deployment result = await sites.createTemplateDeployment( reference: '', activate: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create-variable.md b/docs/examples/1.8.x/server-dart/examples/sites/create-variable.md index aa3c876174..d4c23fd6a8 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Variable result = await sites.createVariable( value: '', secret: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/create-vcs-deployment.md index e0683ab818..a4fe7f8dbc 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create-vcs-deployment.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -13,3 +15,4 @@ Deployment result = await sites.createVcsDeployment( reference: '', activate: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/create.md b/docs/examples/1.8.x/server-dart/examples/sites/create.md index db044c3803..692255b0a4 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/create.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/create.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -27,3 +29,4 @@ Site result = await sites.create( providerRootDirectory: '', // (optional) specification: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/delete-deployment.md index ca93ac668d..0a847f0a00 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await sites.deleteDeployment( siteId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/delete-log.md b/docs/examples/1.8.x/server-dart/examples/sites/delete-log.md index c11ecab71e..93b7d29a11 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await sites.deleteLog( siteId: '', logId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-dart/examples/sites/delete-variable.md index f04b9451ae..46caceb2d5 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await sites.deleteVariable( siteId: '', variableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/delete.md b/docs/examples/1.8.x/server-dart/examples/sites/delete.md index e81df372bc..059e1dbd62 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Sites sites = Sites(client); await sites.delete( siteId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-dart/examples/sites/get-deployment-download.md index 0bcf94618e..b9e4baa1de 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/get-deployment-download.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -12,3 +14,4 @@ Uint8List result = await sites.getDeploymentDownload( deploymentId: '', type: enums.DeploymentDownloadType.source, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/get-deployment.md index 9acc89b56f..baaae7e752 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Deployment result = await sites.getDeployment( siteId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/get-log.md b/docs/examples/1.8.x/server-dart/examples/sites/get-log.md index 195f8aad2d..b7e12b992b 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Execution result = await sites.getLog( siteId: '', logId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/get-variable.md b/docs/examples/1.8.x/server-dart/examples/sites/get-variable.md index 637e08a58c..6da082beff 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Variable result = await sites.getVariable( siteId: '', variableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/get.md b/docs/examples/1.8.x/server-dart/examples/sites/get.md index 32abcfcffc..148689b73c 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/get.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Sites sites = Sites(client); Site result = await sites.get( siteId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-dart/examples/sites/list-deployments.md index 184e651130..eef8e7d64a 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ DeploymentList result = await sites.listDeployments( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-dart/examples/sites/list-frameworks.md index 72a600fad3..b3e9bd8b0d 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Sites sites = Sites(client); FrameworkList result = await sites.listFrameworks(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list-logs.md b/docs/examples/1.8.x/server-dart/examples/sites/list-logs.md index 98dd549c33..a95b29ac61 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ExecutionList result = await sites.listLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-dart/examples/sites/list-specifications.md index b81faf0e43..d1ba26edfc 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -8,3 +9,4 @@ Client client = Client() Sites sites = Sites(client); SpecificationList result = await sites.listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list-variables.md b/docs/examples/1.8.x/server-dart/examples/sites/list-variables.md index 14be96629c..1377758381 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Sites sites = Sites(client); VariableList result = await sites.listVariables( siteId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/list.md b/docs/examples/1.8.x/server-dart/examples/sites/list.md index 89a5f23973..a9860af6df 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/list.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ SiteList result = await sites.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-dart/examples/sites/update-deployment-status.md index bd031cf27a..01a22596ee 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Deployment result = await sites.updateDeploymentStatus( siteId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-dart/examples/sites/update-site-deployment.md index dbb4e27aa6..6139981e84 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Site result = await sites.updateSiteDeployment( siteId: '', deploymentId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/update-variable.md b/docs/examples/1.8.x/server-dart/examples/sites/update-variable.md index af2123c989..8fb4b42df8 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ Variable result = await sites.updateVariable( value: '', // (optional) secret: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/sites/update.md b/docs/examples/1.8.x/server-dart/examples/sites/update.md index 4c05413ccd..8846b51bc9 100644 --- a/docs/examples/1.8.x/server-dart/examples/sites/update.md +++ b/docs/examples/1.8.x/server-dart/examples/sites/update.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -27,3 +29,4 @@ Site result = await sites.update( providerRootDirectory: '', // (optional) specification: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-dart/examples/storage/create-bucket.md index 157ea524f5..6f634a984e 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/create-bucket.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -22,3 +24,4 @@ Bucket result = await storage.createBucket( antivirus: false, // (optional) transformations: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/create-file.md b/docs/examples/1.8.x/server-dart/examples/storage/create-file.md index 25d7ea6fbb..fe16a41f1c 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```dart import 'dart:io'; import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; @@ -16,3 +17,4 @@ File result = await storage.createFile( file: InputFile(path: './path-to-files/image.jpg', filename: 'image.jpg'), permissions: [Permission.read(Role.any())], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-dart/examples/storage/delete-bucket.md index 1eb1b51ca2..041612f867 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Storage storage = Storage(client); await storage.deleteBucket( bucketId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/delete-file.md b/docs/examples/1.8.x/server-dart/examples/storage/delete-file.md index 26dd602c7e..b52b5f9183 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await storage.deleteFile( bucketId: '', fileId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-dart/examples/storage/get-bucket.md index 3464d2233b..e5e2ed721e 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Storage storage = Storage(client); Bucket result = await storage.getBucket( bucketId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-dart/examples/storage/get-file-download.md index 34f40685fe..3eefb650e1 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Uint8List result = await storage.getFileDownload( fileId: '', token: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-dart/examples/storage/get-file-preview.md index b4a273d2cb..382080fb00 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/get-file-preview.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -23,3 +25,4 @@ Uint8List result = await storage.getFilePreview( output: enums.ImageFormat.jpg, // (optional) token: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-dart/examples/storage/get-file-view.md index a1d9271f13..63cd869956 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Uint8List result = await storage.getFileView( fileId: '', token: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/get-file.md b/docs/examples/1.8.x/server-dart/examples/storage/get-file.md index f765c62356..bc5272c549 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ File result = await storage.getFile( bucketId: '', fileId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-dart/examples/storage/list-buckets.md index 82abf277b5..0b76ac287d 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ BucketList result = await storage.listBuckets( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/list-files.md b/docs/examples/1.8.x/server-dart/examples/storage/list-files.md index 0d2644a147..ad417224ef 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ FileList result = await storage.listFiles( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-dart/examples/storage/update-bucket.md index 65126d9687..c796c34c08 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/update-bucket.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -22,3 +24,4 @@ Bucket result = await storage.updateBucket( antivirus: false, // (optional) transformations: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/storage/update-file.md b/docs/examples/1.8.x/server-dart/examples/storage/update-file.md index 4ecc9ecf91..4b3c3ac869 100644 --- a/docs/examples/1.8.x/server-dart/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-dart/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -15,3 +16,4 @@ File result = await storage.updateFile( name: '', // (optional) permissions: [Permission.read(Role.any())], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md index aa7b7c592d..aabbee0354 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnBoolean result = await tablesDB.createBooleanColumn( xdefault: false, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md index 10284ddf9a..c30ee7a90e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnDatetime result = await tablesDB.createDatetimeColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md index ec36530e82..dc323278e6 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnEmail result = await tablesDB.createEmailColumn( xdefault: 'email@example.com', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md index 594376d72f..e1ff3a863c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ ColumnEnum result = await tablesDB.createEnumColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md index 0b97073709..19a8572570 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ ColumnFloat result = await tablesDB.createFloatColumn( xdefault: 0, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md index 1b2b3d7a7f..1dfebbb93e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ ColumnIndex result = await tablesDB.createIndex( orders: [enums.OrderBy.asc], // (optional) lengths: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md index d90dca56b7..98bd9c5756 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ ColumnInteger result = await tablesDB.createIntegerColumn( xdefault: 0, // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md index 322776e64a..82d5a86126 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnIp result = await tablesDB.createIpColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-line-column.md index e9b578f466..7f260d9f2f 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ ColumnLine result = await tablesDB.createLineColumn( xrequired: false, xdefault: [[1, 2], [3, 4], [5, 6]], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-longtext-column.md index 60bbba9aee..a41a4e44f8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnLongtext result = await tablesDB.createLongtextColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-mediumtext-column.md index d27d8a9eb9..63faf87f10 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnMediumtext result = await tablesDB.createMediumtextColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-operations.md index 2b5c046b14..359982dad6 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -21,3 +22,4 @@ Transaction result = await tablesDB.createOperations( } ], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-point-column.md index 6e055170dc..0ca5f6c5ad 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ ColumnPoint result = await tablesDB.createPointColumn( xrequired: false, xdefault: [1, 2], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-polygon-column.md index 5e851f86f1..9046bbd7b8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ ColumnPolygon result = await tablesDB.createPolygonColumn( xrequired: false, xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md index 85995f5dee..c9a5359071 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -17,3 +19,4 @@ ColumnRelationship result = await tablesDB.createRelationshipColumn( twoWayKey: '', // (optional) onDelete: enums.RelationMutate.cascade, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md index ff91143812..589d98ff19 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Row result = await tablesDB.createRow( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md index 6366006c31..afa7629dad 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ RowList result = await tablesDB.createRows( rows: [], transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md index 6fd0e93a93..18b6388535 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ ColumnString result = await tablesDB.createStringColumn( array: false, // (optional) encrypt: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md index 4a3c58d2b9..e4563135cd 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -19,3 +20,4 @@ Table result = await tablesDB.createTable( columns: [], // (optional) indexes: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-text-column.md index b3c0159404..daedad6abe 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnText result = await tablesDB.createTextColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-transaction.md index 721ac4cf8b..bb779b8c28 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); Transaction result = await tablesDB.createTransaction( ttl: 60, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md index 05c8da80f8..19a1cdef71 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnUrl result = await tablesDB.createUrlColumn( xdefault: 'https://example.com', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-varchar-column.md index ef44dafa97..095d46ba0a 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ ColumnVarchar result = await tablesDB.createVarcharColumn( xdefault: '', // (optional) array: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md index 6991b910eb..3c85e98f58 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Database result = await tablesDB.create( name: '', enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md index 304e6b0219..dae6b62334 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Row result = await tablesDB.decrementRowColumn( min: 0, // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md index ebee29e4c7..9995ae0b45 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await tablesDB.deleteColumn( tableId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md index 2b73e25f0a..f3c16e1e64 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ await tablesDB.deleteIndex( tableId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md index da1e280cba..1cf058fd55 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ await tablesDB.deleteRow( rowId: '', transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md index 6738ac78fc..443aee01f8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ await tablesDB.deleteRows( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md index d425cec160..046c8c9411 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await tablesDB.deleteTable( databaseId: '', tableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-transaction.md index 8dc80418a0..18bdc902b6 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); await tablesDB.deleteTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md index 565f4ef6c9..7001ddaa8f 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); await tablesDB.delete( databaseId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md index 715ba189e0..5c8e68751a 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ColumnBoolean result = await tablesDB.getColumn( tableId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md index ef5f9a0ed6..e0f6b03bff 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ColumnIndex result = await tablesDB.getIndex( tableId: '', key: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md index a0d7a83b39..11a7d67b8d 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ Row result = await tablesDB.getRow( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md index c230f6a1df..81eed7f1b4 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Table result = await tablesDB.getTable( databaseId: '', tableId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-transaction.md index 267af59aa9..ffe1332989 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); Transaction result = await tablesDB.getTransaction( transactionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md index d147fb1c3f..24412ad115 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); Database result = await tablesDB.get( databaseId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md index 049a48a7d0..57e9c5bcac 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ Row result = await tablesDB.incrementRowColumn( max: 0, // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md index 285953f29f..7c2200768c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ ColumnList result = await tablesDB.listColumns( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md index 71686bee92..669bbb3a27 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ ColumnIndexList result = await tablesDB.listIndexes( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md index bf25a9e77c..c3a426c57c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ RowList result = await tablesDB.listRows( transactionId: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md index dabfb33cfd..b640527bab 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ TableList result = await tablesDB.listTables( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-transactions.md index d4b3a5e2c3..fa4782b5b5 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ TablesDB tablesDB = TablesDB(client); TransactionList result = await tablesDB.listTransactions( queries: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md index d274fc31f5..ef67227820 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ DatabaseList result = await tablesDB.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md index 1e6c604a64..d3ab8b357e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnBoolean result = await tablesDB.updateBooleanColumn( xdefault: false, newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md index 982d8d55f9..04a5f89ac4 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnDatetime result = await tablesDB.updateDatetimeColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md index e2f075191c..40927640fd 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnEmail result = await tablesDB.updateEmailColumn( xdefault: 'email@example.com', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md index b0ddd485bb..8499b864af 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ ColumnEnum result = await tablesDB.updateEnumColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md index 7239b48882..5a0c0a5d1e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ ColumnFloat result = await tablesDB.updateFloatColumn( max: 0, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md index bb98ad27e7..260c4a2548 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -17,3 +18,4 @@ ColumnInteger result = await tablesDB.updateIntegerColumn( max: 0, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md index 21c5f1bcd8..5b4ff1411e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnIp result = await tablesDB.updateIpColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-line-column.md index 53d7999d6f..9d19a8d04b 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnLine result = await tablesDB.updateLineColumn( xdefault: [[1, 2], [3, 4], [5, 6]], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-longtext-column.md index 443a21873b..571a4c56df 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnLongtext result = await tablesDB.updateLongtextColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-mediumtext-column.md index 7e2e5c99c2..d3daabb391 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnMediumtext result = await tablesDB.updateMediumtextColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-point-column.md index 5658393b07..c51e19dbd0 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnPoint result = await tablesDB.updatePointColumn( xdefault: [1, 2], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-polygon-column.md index b98e8615a4..3b2aa8a9b0 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnPolygon result = await tablesDB.updatePolygonColumn( xdefault: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md index 52134861be..bdaac70d03 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -14,3 +16,4 @@ ColumnRelationship result = await tablesDB.updateRelationshipColumn( onDelete: enums.RelationMutate.cascade, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md index a7906d9b08..514f740b5c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Row result = await tablesDB.updateRow( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md index 4e3e42dbcb..3d3730bce8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -20,3 +21,4 @@ RowList result = await tablesDB.updateRows( queries: [], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md index bd390dfd4d..ba3f1c7d52 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ ColumnString result = await tablesDB.updateStringColumn( size: 1, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md index eb23c90ca7..9cf9c05cdd 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -17,3 +18,4 @@ Table result = await tablesDB.updateTable( rowSecurity: false, // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-text-column.md index 6bd2cf8f88..aca63e048e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnText result = await tablesDB.updateTextColumn( xdefault: '', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-transaction.md index bb3837d4ec..fbcafc8ab4 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Transaction result = await tablesDB.updateTransaction( commit: false, // (optional) rollback: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md index fcfdfcd1d9..db522a0c48 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -15,3 +16,4 @@ ColumnUrl result = await tablesDB.updateUrlColumn( xdefault: 'https://example.com', newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-varchar-column.md index 952bd445f4..93b56a85d8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ ColumnVarchar result = await tablesDB.updateVarcharColumn( size: 1, // (optional) newKey: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md index 0eb441c19d..ad85b595f8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Database result = await tablesDB.update( name: '', // (optional) enabled: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md index 1fd5489971..21f2734b22 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; @@ -23,3 +24,4 @@ Row result = await tablesDB.upsertRow( permissions: [Permission.read(Role.any())], // (optional) transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md index d48e9094f4..a457f5e882 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ RowList result = await tablesDB.upsertRows( rows: [], transactionId: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/create-membership.md b/docs/examples/1.8.x/server-dart/examples/teams/create-membership.md index e8dfcdc833..967a39addc 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/create-membership.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -16,3 +18,4 @@ Membership result = await teams.createMembership( url: 'https://example.com', // (optional) name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/create.md b/docs/examples/1.8.x/server-dart/examples/teams/create.md index 772f3cfa86..61bb5daa3f 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/create.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/create.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Team result = await teams.create( name: '', roles: [], // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-dart/examples/teams/delete-membership.md index 9d99cbbd3d..5c63224f6f 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await teams.deleteMembership( teamId: '', membershipId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/delete.md b/docs/examples/1.8.x/server-dart/examples/teams/delete.md index 1c08ab8ed9..8cb4181a02 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Teams teams = Teams(client); await teams.delete( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/get-membership.md b/docs/examples/1.8.x/server-dart/examples/teams/get-membership.md index 0bdc63f8d4..b7a8200a83 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Membership result = await teams.getMembership( teamId: '', membershipId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-dart/examples/teams/get-prefs.md index e206393320..482390cf6d 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Teams teams = Teams(client); Preferences result = await teams.getPrefs( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/get.md b/docs/examples/1.8.x/server-dart/examples/teams/get.md index bb3bcaf7e2..cd426afcb2 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/get.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Teams teams = Teams(client); Team result = await teams.get( teamId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-dart/examples/teams/list-memberships.md index 729550f082..2f6400d9ad 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ MembershipList result = await teams.listMemberships( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/list.md b/docs/examples/1.8.x/server-dart/examples/teams/list.md index f620431b01..b056968ec5 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/list.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ TeamList result = await teams.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-dart/examples/teams/update-membership-status.md index c947162fa4..a5ec5e1c05 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ Membership result = await teams.updateMembershipStatus( userId: '', secret: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/update-membership.md b/docs/examples/1.8.x/server-dart/examples/teams/update-membership.md index ebb6587b96..536c04f8e5 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/update-membership.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -12,3 +14,4 @@ Membership result = await teams.updateMembership( membershipId: '', roles: [enums.Roles.admin], ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/update-name.md b/docs/examples/1.8.x/server-dart/examples/teams/update-name.md index fe3a9faabf..84069773ec 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Team result = await teams.updateName( teamId: '', name: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-dart/examples/teams/update-prefs.md index 57518ada43..e51b2da052 100644 --- a/docs/examples/1.8.x/server-dart/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Preferences result = await teams.updatePrefs( teamId: '', prefs: {}, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-dart/examples/tokens/create-file-token.md index cc75a91726..8e08bf2cf2 100644 --- a/docs/examples/1.8.x/server-dart/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-dart/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ ResourceToken result = await tokens.createFileToken( fileId: '', expire: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tokens/delete.md b/docs/examples/1.8.x/server-dart/examples/tokens/delete.md index ce95e7b752..b5541b0e3b 100644 --- a/docs/examples/1.8.x/server-dart/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Tokens tokens = Tokens(client); await tokens.delete( tokenId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tokens/get.md b/docs/examples/1.8.x/server-dart/examples/tokens/get.md index 3112b5e1e5..53bbd181e8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-dart/examples/tokens/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Tokens tokens = Tokens(client); ResourceToken result = await tokens.get( tokenId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tokens/list.md b/docs/examples/1.8.x/server-dart/examples/tokens/list.md index c626cac348..17fb2ff80a 100644 --- a/docs/examples/1.8.x/server-dart/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-dart/examples/tokens/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ ResourceTokenList result = await tokens.list( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/tokens/update.md b/docs/examples/1.8.x/server-dart/examples/tokens/update.md index 47e910d574..678d904b13 100644 --- a/docs/examples/1.8.x/server-dart/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-dart/examples/tokens/update.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ ResourceToken result = await tokens.update( tokenId: '', expire: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-argon-2-user.md index 38b0255ea4..2cddf2fa61 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await users.createArgon2User( password: 'password', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-bcrypt-user.md index aa898ba22f..ca5bdf5647 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await users.createBcryptUser( password: 'password', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-jwt.md b/docs/examples/1.8.x/server-dart/examples/users/create-jwt.md index 6e8b7a2bac..42e74d9582 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Jwt result = await users.createJWT( sessionId: '', // (optional) duration: 0, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-md-5-user.md index e08edd617f..490b26a6ec 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await users.createMD5User( password: 'password', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/users/create-mfa-recovery-codes.md index 12a7e32f5a..9251cb5041 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); MfaRecoveryCodes result = await users.createMFARecoveryCodes( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-ph-pass-user.md index 9f23baaef2..74105bcf31 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ User result = await users.createPHPassUser( password: 'password', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-modified-user.md index 34bfbf66c4..5c6301854b 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -16,3 +17,4 @@ User result = await users.createScryptModifiedUser( passwordSignerKey: '', name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-user.md index 20cf911a09..6c0427f017 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -18,3 +19,4 @@ User result = await users.createScryptUser( passwordLength: 0, name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-session.md b/docs/examples/1.8.x/server-dart/examples/users/create-session.md index 4293e7edf6..f782dbefec 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); Session result = await users.createSession( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-dart/examples/users/create-sha-user.md index 92a7aab10a..65adca6091 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-sha-user.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -14,3 +16,4 @@ User result = await users.createSHAUser( passwordVersion: enums.PasswordHash.sha1, // (optional) name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-target.md b/docs/examples/1.8.x/server-dart/examples/users/create-target.md index 8803f82d56..ea9c4014a9 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-target.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -15,3 +17,4 @@ Target result = await users.createTarget( providerId: '', // (optional) name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create-token.md b/docs/examples/1.8.x/server-dart/examples/users/create-token.md index ab7acba3dd..c79c21cc69 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create-token.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ Token result = await users.createToken( length: 4, // (optional) expire: 60, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/create.md b/docs/examples/1.8.x/server-dart/examples/users/create.md index b4953748e5..247460b4e2 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/create.md +++ b/docs/examples/1.8.x/server-dart/examples/users/create.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ User result = await users.create( password: '', // (optional) name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete-identity.md b/docs/examples/1.8.x/server-dart/examples/users/delete-identity.md index 7ac2da9000..6ec6cfa816 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); await users.deleteIdentity( identityId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-dart/examples/users/delete-mfa-authenticator.md index 65e9b84e72..d33dd5f7d2 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete-mfa-authenticator.md @@ -1,4 +1,6 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint @@ -11,3 +13,4 @@ await users.deleteMFAAuthenticator( userId: '', type: enums.AuthenticatorType.totp, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete-session.md b/docs/examples/1.8.x/server-dart/examples/users/delete-session.md index 68d243e52f..d5555502f9 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await users.deleteSession( userId: '', sessionId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-dart/examples/users/delete-sessions.md index 07c3566a7c..cb84cac702 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); await users.deleteSessions( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete-target.md b/docs/examples/1.8.x/server-dart/examples/users/delete-target.md index aa27b32d38..86ade933f1 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ await users.deleteTarget( userId: '', targetId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/delete.md b/docs/examples/1.8.x/server-dart/examples/users/delete.md index 93819b72d7..a109427448 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/users/delete.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); await users.delete( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/users/get-mfa-recovery-codes.md index e16158bfda..72fb5b9ebd 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); MfaRecoveryCodes result = await users.getMFARecoveryCodes( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/get-prefs.md b/docs/examples/1.8.x/server-dart/examples/users/get-prefs.md index 146cff6820..c8f314c6f1 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); Preferences result = await users.getPrefs( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/get-target.md b/docs/examples/1.8.x/server-dart/examples/users/get-target.md index 9ddaafb55f..f765ada56b 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-dart/examples/users/get-target.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Target result = await users.getTarget( userId: '', targetId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/get.md b/docs/examples/1.8.x/server-dart/examples/users/get.md index a171b79582..1ce98396b6 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/get.md +++ b/docs/examples/1.8.x/server-dart/examples/users/get.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); User result = await users.get( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-identities.md b/docs/examples/1.8.x/server-dart/examples/users/list-identities.md index 92131c2cd6..a6d570f1e0 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ IdentityList result = await users.listIdentities( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-logs.md b/docs/examples/1.8.x/server-dart/examples/users/list-logs.md index 717c69cc81..e206fc3350 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ LogList result = await users.listLogs( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-memberships.md b/docs/examples/1.8.x/server-dart/examples/users/list-memberships.md index 9fc3c05f0e..b6b7f7cac6 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -13,3 +14,4 @@ MembershipList result = await users.listMemberships( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-dart/examples/users/list-mfa-factors.md index 290109d2ae..f8b1db82c4 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); MfaFactors result = await users.listMFAFactors( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-sessions.md b/docs/examples/1.8.x/server-dart/examples/users/list-sessions.md index ba5bfac087..abbf7932cb 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ SessionList result = await users.listSessions( userId: '', total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list-targets.md b/docs/examples/1.8.x/server-dart/examples/users/list-targets.md index 4c14e6fc84..3014b8de17 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ TargetList result = await users.listTargets( queries: [], // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/list.md b/docs/examples/1.8.x/server-dart/examples/users/list.md index ad885e164f..bb00e0cfec 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/list.md +++ b/docs/examples/1.8.x/server-dart/examples/users/list.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -12,3 +13,4 @@ UserList result = await users.list( search: '', // (optional) total: false, // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-dart/examples/users/update-email-verification.md index 9930e30be5..636afc1072 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateEmailVerification( userId: '', emailVerification: false, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-email.md b/docs/examples/1.8.x/server-dart/examples/users/update-email.md index 129a8e2437..0bd3d61e15 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-email.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateEmail( userId: '', email: 'email@example.com', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-labels.md b/docs/examples/1.8.x/server-dart/examples/users/update-labels.md index d247bf5e74..efbf657d3e 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateLabels( userId: '', labels: [], ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dart/examples/users/update-mfa-recovery-codes.md index a2340ff8c1..a08fc361d3 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -10,3 +11,4 @@ Users users = Users(client); MfaRecoveryCodes result = await users.updateMFARecoveryCodes( userId: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-mfa.md b/docs/examples/1.8.x/server-dart/examples/users/update-mfa.md index 7d3b71d9c4..cd67922e98 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateMFA( userId: '', mfa: false, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-name.md b/docs/examples/1.8.x/server-dart/examples/users/update-name.md index 905cee0e49..4a67672d4e 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-name.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateName( userId: '', name: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-password.md b/docs/examples/1.8.x/server-dart/examples/users/update-password.md index 14e27482ec..d4ea3a2624 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-password.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updatePassword( userId: '', password: '', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-dart/examples/users/update-phone-verification.md index b57aafab1f..14f91aeb36 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updatePhoneVerification( userId: '', phoneVerification: false, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-phone.md b/docs/examples/1.8.x/server-dart/examples/users/update-phone.md index aa891d2351..3eb43b1e1b 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updatePhone( userId: '', number: '+12065550100', ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-prefs.md b/docs/examples/1.8.x/server-dart/examples/users/update-prefs.md index 87fc2968f5..e8b7e7e828 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ Preferences result = await users.updatePrefs( userId: '', prefs: {}, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-status.md b/docs/examples/1.8.x/server-dart/examples/users/update-status.md index 4d8dca03ad..3d47418725 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-status.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -11,3 +12,4 @@ User result = await users.updateStatus( userId: '', status: false, ); +``` diff --git a/docs/examples/1.8.x/server-dart/examples/users/update-target.md b/docs/examples/1.8.x/server-dart/examples/users/update-target.md index f66f0b7475..f15e170fb0 100644 --- a/docs/examples/1.8.x/server-dart/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-dart/examples/users/update-target.md @@ -1,3 +1,4 @@ +```dart import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() @@ -14,3 +15,4 @@ Target result = await users.updateTarget( providerId: '', // (optional) name: '', // (optional) ); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-anonymous-session.md index 087afeee81..47a2fc6d29 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); Session result = await account.CreateAnonymousSession(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-password-session.md index 8e62f30d7e..a2408cdcf8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Session result = await account.CreateEmailPasswordSession( email: "email@example.com", password: "password" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-token.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-token.md index 0e867a00d0..dd012ac055 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Token result = await account.CreateEmailToken( userId: "", email: "email@example.com", phrase: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-verification.md index 6efee895e0..ca2429709d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); Token result = await account.CreateEmailVerification( url: "https://example.com" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-jwt.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-jwt.md index d3e1348f86..71ea697d84 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); JWT result = await account.CreateJWT( duration: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-magic-url-token.md index 9bba5fcf69..f1d22ded8c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Token result = await account.CreateMagicURLToken( email: "email@example.com", url: "https://example.com", // optional phrase: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-authenticator.md index 9076fcd069..4bea1f2109 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -12,4 +13,4 @@ Account account = new Account(client); MfaType result = await account.CreateMFAAuthenticator( type: AuthenticatorType.Totp -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-challenge.md index 0d7a20c7f6..afd906639e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -12,4 +13,4 @@ Account account = new Account(client); MfaChallenge result = await account.CreateMFAChallenge( factor: AuthenticationFactor.Email -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-recovery-codes.md index 406fd4493f..899854687d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); MfaRecoveryCodes result = await account.CreateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-o-auth-2-token.md index a5e15c086d..891bf4ffc8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ await account.CreateOAuth2Token( success: "https://example.com", // optional failure: "https://example.com", // optional scopes: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-token.md index 02f86ee31f..af5747b38e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Token result = await account.CreatePhoneToken( userId: "", phone: "+12065550100" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-verification.md index 185fc46e0d..177ea7f775 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); Token result = await account.CreatePhoneVerification(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-recovery.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-recovery.md index c2e3571d56..e236ddf53f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Token result = await account.CreateRecovery( email: "email@example.com", url: "https://example.com" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-session.md index e682599e21..5d2c1d2ea2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Session result = await account.CreateSession( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/create-verification.md index 92222ea88a..49be67503b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); Token result = await account.CreateVerification( url: "https://example.com" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/create.md b/docs/examples/1.8.x/server-dotnet/examples/account/create.md index d3d2ecc62d..bbc8ae2361 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ User result = await account.Create( email: "email@example.com", password: "", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/delete-identity.md b/docs/examples/1.8.x/server-dotnet/examples/account/delete-identity.md index 9b084800d4..d68919c4b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); await account.DeleteIdentity( identityId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-dotnet/examples/account/delete-mfa-authenticator.md index c695de2956..1a55201958 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -12,4 +13,4 @@ Account account = new Account(client); await account.DeleteMFAAuthenticator( type: AuthenticatorType.Totp -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/delete-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/delete-session.md index 0bca7c172a..fa546c004c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); await account.DeleteSession( sessionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-dotnet/examples/account/delete-sessions.md index 5b0e7b5cba..d6051e8375 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); await account.DeleteSessions(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/account/get-mfa-recovery-codes.md index 2e5468ad98..f2ba2fa7c9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); MfaRecoveryCodes result = await account.GetMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/get-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/account/get-prefs.md index b0fce89a3f..75d0984b14 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); Preferences result = await account.GetPrefs(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/get-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/get-session.md index 9aa7abaee0..903360ae26 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/get-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); Session result = await account.GetSession( sessionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/get.md b/docs/examples/1.8.x/server-dotnet/examples/account/get.md index eecb890b30..0184bb9e5c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); User result = await account.Get(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/list-identities.md b/docs/examples/1.8.x/server-dotnet/examples/account/list-identities.md index e10d8e7111..3d0b024bcb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); IdentityList result = await account.ListIdentities( queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/list-logs.md b/docs/examples/1.8.x/server-dotnet/examples/account/list-logs.md index f4a4052c15..d73311bc17 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); LogList result = await account.ListLogs( queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-dotnet/examples/account/list-mfa-factors.md index f284f6f227..37bd907e03 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); MfaFactors result = await account.ListMFAFactors(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/list-sessions.md b/docs/examples/1.8.x/server-dotnet/examples/account/list-sessions.md index 6304383cb3..791af9739f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); SessionList result = await account.ListSessions(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-email-verification.md index a336682be3..ef431989c4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Token result = await account.UpdateEmailVerification( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-email.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-email.md index 06e2a2a9df..5dbb8ee667 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-email.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); User result = await account.UpdateEmail( email: "email@example.com", password: "password" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-magic-url-session.md index b1d729b405..f123e72b5f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Session result = await account.UpdateMagicURLSession( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-authenticator.md index f5dd5c502f..6950ba6f7a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -13,4 +14,4 @@ Account account = new Account(client); User result = await account.UpdateMFAAuthenticator( type: AuthenticatorType.Totp, otp: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-challenge.md index f9a9db465b..c7108fefcd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Session result = await account.UpdateMFAChallenge( challengeId: "", otp: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-recovery-codes.md index bfc6c876f2..3f2943d936 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); MfaRecoveryCodes result = await account.UpdateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa.md index b9405e7e2c..3480ee42ff 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); User result = await account.UpdateMFA( mfa: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-name.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-name.md index 6088226fc8..cdbf82c2d4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-name.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); User result = await account.UpdateName( name: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-password.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-password.md index f24c703a9a..4c468ddc56 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-password.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); User result = await account.UpdatePassword( password: "", oldPassword: "password" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-session.md index e5dbef1a39..d1aada972f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Session result = await account.UpdatePhoneSession( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-verification.md index a100c0f2e2..fd99865b02 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Token result = await account.UpdatePhoneVerification( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone.md index 224001dd6e..558fd1c873 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); User result = await account.UpdatePhone( phone: "+12065550100", password: "password" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-prefs.md index 80f42aaaf8..4c43263ba0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ User result = await account.UpdatePrefs( timezone = "UTC", darkTheme = true } -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-recovery.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-recovery.md index 188462229b..a822d3e407 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Token result = await account.UpdateRecovery( userId: "", secret: "", password: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-session.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-session.md index a98644c032..48adb6c08d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Account account = new Account(client); Session result = await account.UpdateSession( sessionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-status.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-status.md index d9c5b41d72..1ea1fc4bee 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-status.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Account account = new Account(client); User result = await account.UpdateStatus(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/account/update-verification.md b/docs/examples/1.8.x/server-dotnet/examples/account/update-verification.md index b9dd1ded40..60c397bcf3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Account account = new Account(client); Token result = await account.UpdateVerification( userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-browser.md index 9c7b643af1..f17be7dd3b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ byte[] result = await avatars.GetBrowser( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-credit-card.md index a41ade1438..6d1647ee08 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ byte[] result = await avatars.GetCreditCard( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-favicon.md index 345d856717..4443daf461 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Avatars avatars = new Avatars(client); byte[] result = await avatars.GetFavicon( url: "https://example.com" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-flag.md index f7a3e05cee..2242497af9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ byte[] result = await avatars.GetFlag( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-image.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-image.md index 4a67e58517..99518bedd1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ byte[] result = await avatars.GetImage( url: "https://example.com", width: 0, // optional height: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-initials.md index 55427ff622..8f6f1cd4f1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ byte[] result = await avatars.GetInitials( width: 0, // optional height: 0, // optional background: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-qr.md index 4591b7d99c..2414e3d5b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ byte[] result = await avatars.GetQR( size: 1, // optional margin: 0, // optional download: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-screenshot.md index eb827d5162..4c35a02cf4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-dotnet/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -34,4 +35,4 @@ byte[] result = await avatars.GetScreenshot( height: 600, // optional quality: 85, // optional output: ImageFormat.Jpeg // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-boolean-attribute.md index 8807648521..7a2a803881 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeBoolean result = await databases.CreateBooleanAttribute( required: false, default: false, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-collection.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-collection.md index a4cbf7c4ed..51398280b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Collection result = await databases.CreateCollection( enabled: false, // optional attributes: new List(), // optional indexes: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-datetime-attribute.md index 7be723379e..10f6a19e88 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeDatetime result = await databases.CreateDatetimeAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-document.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-document.md index 7efb16c10c..f2eb911c05 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Document result = await databases.CreateDocument( }, permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-documents.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-documents.md index cc6cfb7606..f026a31ab0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ DocumentList result = await databases.CreateDocuments( collectionId: "", documents: new List(), transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-email-attribute.md index df00119ff9..a08ca0b3cd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeEmail result = await databases.CreateEmailAttribute( required: false, default: "email@example.com", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-enum-attribute.md index d85e8a72a9..5a27fbca70 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ AttributeEnum result = await databases.CreateEnumAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-float-attribute.md index bc03fac7ae..2c8f71edd2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ AttributeFloat result = await databases.CreateFloatAttribute( max: 0, // optional default: 0, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-index.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-index.md index c1867ce6bb..7f0e22af4f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ Index result = await databases.CreateIndex( attributes: new List(), orders: new List<OrderBy> { OrderBy.Asc }, // optional lengths: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-integer-attribute.md index c8e7c13355..71a02566ae 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ AttributeInteger result = await databases.CreateIntegerAttribute( max: 0, // optional default: 0, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-ip-attribute.md index f95c257089..666ae483e7 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeIp result = await databases.CreateIpAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-line-attribute.md index d0de49457d..ac36d800e9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ AttributeLine result = await databases.CreateLineAttribute( key: "", required: false, default: [[1, 2], [3, 4], [5, 6]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-longtext-attribute.md index 5e9b4aa47b..55e8573fb1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeLongtext result = await databases.CreateLongtextAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-mediumtext-attribute.md index 672bd1b526..e5c7906b72 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeMediumtext result = await databases.CreateMediumtextAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-operations.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-operations.md index 701c6432b8..689678a02a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Transaction result = await databases.CreateOperations( } } ] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-point-attribute.md index 4843174c1a..66e876405d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ AttributePoint result = await databases.CreatePointAttribute( key: "", required: false, default: [1, 2] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-polygon-attribute.md index 15c8b98696..66c44b12ba 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ AttributePolygon result = await databases.CreatePolygonAttribute( key: "", required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-relationship-attribute.md index b0f4d1194f..a5262ffe32 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -19,4 +20,4 @@ AttributeRelationship result = await databases.CreateRelationshipAttribute( key: "", // optional twoWayKey: "", // optional onDelete: RelationMutate.Cascade // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-string-attribute.md index 6cba31ff36..9e7be5f6b1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ AttributeString result = await databases.CreateStringAttribute( default: "", // optional array: false, // optional encrypt: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-text-attribute.md index 80d5e4fcf9..93aeaa54bf 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeText result = await databases.CreateTextAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-transaction.md index f8d7b34ffd..affe6894e4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); Transaction result = await databases.CreateTransaction( ttl: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-url-attribute.md index dce1ac496a..2f278ed123 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeUrl result = await databases.CreateUrlAttribute( required: false, default: "https://example.com", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create-varchar-attribute.md index c86beb26b4..7f6573aefd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ AttributeVarchar result = await databases.CreateVarcharAttribute( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/create.md b/docs/examples/1.8.x/server-dotnet/examples/databases/create.md index 9b66c15cef..534cd64fca 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Database result = await databases.Create( databaseId: "", name: "", enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/decrement-document-attribute.md index 9ff62a08aa..4dc89d8e33 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Document result = await databases.DecrementDocumentAttribute( value: 0, // optional min: 0, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-attribute.md index 46eb44b4b8..fdf5b395cb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ await databases.DeleteAttribute( databaseId: "", collectionId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-collection.md index e05717dc6c..50d6e4e706 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Databases databases = new Databases(client); await databases.DeleteCollection( databaseId: "", collectionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-document.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-document.md index 34bdbdafcd..fda3b456e3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ await databases.DeleteDocument( collectionId: "", documentId: "", transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-documents.md index 52f711b842..d6c85c9af6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ await databases.DeleteDocuments( collectionId: "", queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-index.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-index.md index 02dcf5c66a..5dce665041 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ await databases.DeleteIndex( databaseId: "", collectionId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-transaction.md index 713a75787e..692245f633 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); await databases.DeleteTransaction( transactionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/delete.md b/docs/examples/1.8.x/server-dotnet/examples/databases/delete.md index a877eabc02..2c4d440b27 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); await databases.Delete( databaseId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get-attribute.md index 024f14fb59..bd861538b8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ AttributeBoolean result = await databases.GetAttribute( databaseId: "", collectionId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get-collection.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get-collection.md index 79fe685cbc..90bcbd5bc9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Databases databases = new Databases(client); Collection result = await databases.GetCollection( databaseId: "", collectionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get-document.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get-document.md index bbafc3c888..404aeaa2aa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Document result = await databases.GetDocument( documentId: "", queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get-index.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get-index.md index 02f7b812c8..fb11f427a0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Index result = await databases.GetIndex( databaseId: "", collectionId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get-transaction.md index d66ab6e205..38441e99ea 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); Transaction result = await databases.GetTransaction( transactionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/get.md b/docs/examples/1.8.x/server-dotnet/examples/databases/get.md index 174d74c4f0..ff8ff6ba2a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); Database result = await databases.Get( databaseId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/increment-document-attribute.md index 37a4ed76eb..3a6eaa2b4b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Document result = await databases.IncrementDocumentAttribute( value: 0, // optional max: 0, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list-attributes.md index c14c92b380..b0ac39a0b1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ AttributeList result = await databases.ListAttributes( collectionId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list-collections.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list-collections.md index b840648c24..9cc4aeffcb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ CollectionList result = await databases.ListCollections( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list-documents.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list-documents.md index 6d6a91adef..c5f69e3e12 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ DocumentList result = await databases.ListDocuments( queries: new List(), // optional transactionId: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list-indexes.md index 866f14855c..207d060bd5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ IndexList result = await databases.ListIndexes( collectionId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list-transactions.md index 3f2ce0df24..1213629cbb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Databases databases = new Databases(client); TransactionList result = await databases.ListTransactions( queries: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/list.md b/docs/examples/1.8.x/server-dotnet/examples/databases/list.md index cb7fa8ccf3..52aa1970ec 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ DatabaseList result = await databases.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-boolean-attribute.md index aa2ed498d2..0b5caaa256 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeBoolean result = await databases.UpdateBooleanAttribute( required: false, default: false, newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-collection.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-collection.md index 05648d9aab..25ef7b6d9e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Collection result = await databases.UpdateCollection( permissions: new List { Permission.Read(Role.Any()) }, // optional documentSecurity: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-datetime-attribute.md index e6b60c8753..2151781556 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeDatetime result = await databases.UpdateDatetimeAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-document.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-document.md index 8bebfdfd8e..58d268ba23 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Document result = await databases.UpdateDocument( }, // optional permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-documents.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-documents.md index d7788b4387..add1deb666 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -21,4 +22,4 @@ DocumentList result = await databases.UpdateDocuments( }, // optional queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-email-attribute.md index 8d36a43780..543e95be0d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeEmail result = await databases.UpdateEmailAttribute( required: false, default: "email@example.com", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-enum-attribute.md index e3ca9fe124..e71c4bdbfa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ AttributeEnum result = await databases.UpdateEnumAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-float-attribute.md index 46328d26f5..14723431a9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ AttributeFloat result = await databases.UpdateFloatAttribute( min: 0, // optional max: 0, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-integer-attribute.md index 91ff1897c7..75764af79f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ AttributeInteger result = await databases.UpdateIntegerAttribute( min: 0, // optional max: 0, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-ip-attribute.md index dfcb5d214a..d0b25c7c33 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeIp result = await databases.UpdateIpAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-line-attribute.md index 0cc21572bc..eb3a8e76a2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeLine result = await databases.UpdateLineAttribute( required: false, default: [[1, 2], [3, 4], [5, 6]], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-longtext-attribute.md index 970e6b3192..ad74738f9d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeLongtext result = await databases.UpdateLongtextAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-mediumtext-attribute.md index f26b4e49ac..b85055ef3d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeMediumtext result = await databases.UpdateMediumtextAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-point-attribute.md index 3969b16074..cb8d54b641 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributePoint result = await databases.UpdatePointAttribute( required: false, default: [1, 2], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-polygon-attribute.md index 1344574585..5c8937992b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributePolygon result = await databases.UpdatePolygonAttribute( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-relationship-attribute.md index 5b6dd71467..5d260d973c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -16,4 +17,4 @@ AttributeRelationship result = await databases.UpdateRelationshipAttribute( key: "", onDelete: RelationMutate.Cascade, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-string-attribute.md index 918fdc0e3f..08337fc23b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ AttributeString result = await databases.UpdateStringAttribute( default: "", size: 1, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-text-attribute.md index 2133c6def3..2ead38d21d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeText result = await databases.UpdateTextAttribute( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-transaction.md index 056f0d86f0..afa8362a73 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Transaction result = await databases.UpdateTransaction( transactionId: "", commit: false, // optional rollback: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-url-attribute.md index 8766a3f2f7..2c78b794e6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ AttributeUrl result = await databases.UpdateUrlAttribute( required: false, default: "https://example.com", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update-varchar-attribute.md index ce7f331d4b..201c17de97 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ AttributeVarchar result = await databases.UpdateVarcharAttribute( default: "", size: 1, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/update.md b/docs/examples/1.8.x/server-dotnet/examples/databases/update.md index 75db2a55ff..7a6c2e4c86 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/update.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Database result = await databases.Update( databaseId: "", name: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-document.md index c54bcfc54f..a471409934 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Document result = await databases.UpsertDocument( }, // optional permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-documents.md index 4fefbfcc38..8223f8ab2e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ DocumentList result = await databases.UpsertDocuments( collectionId: "", documents: new List(), transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-deployment.md index 26c6ff4c42..ec99b73cf9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Deployment result = await functions.CreateDeployment( activate: false, entrypoint: "", // optional commands: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-duplicate-deployment.md index 057fe12b10..e906e3735d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Deployment result = await functions.CreateDuplicateDeployment( functionId: "", deploymentId: "", buildId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-execution.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-execution.md index 98d1b2f3ff..11a6b73ab8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ Execution result = await functions.CreateExecution( method: ExecutionMethod.GET, // optional headers: [object], // optional scheduledAt: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-template-deployment.md index 6fcf2398dd..18cb1c7b00 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ Deployment result = await functions.CreateTemplateDeployment( type: TemplateReferenceType.Commit, reference: "", activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-variable.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-variable.md index 6d1f85b12e..c48bdd2bf7 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Variable result = await functions.CreateVariable( key: "", value: "", secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create-vcs-deployment.md index a7403ff116..0276172433 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ Deployment result = await functions.CreateVcsDeployment( type: VCSReferenceType.Branch, reference: "", activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/create.md b/docs/examples/1.8.x/server-dotnet/examples/functions/create.md index 447ad5ced6..5032fc38fc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -29,4 +30,4 @@ Function result = await functions.Create( providerSilentMode: false, // optional providerRootDirectory: "", // optional specification: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-deployment.md index 33c537ad0d..89ed174dc6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); await functions.DeleteDeployment( functionId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-execution.md index 5d5ab8dee2..0d5958be47 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); await functions.DeleteExecution( functionId: "", executionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-variable.md index 263c3f6420..2c69a5881e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); await functions.DeleteVariable( functionId: "", variableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/delete.md b/docs/examples/1.8.x/server-dotnet/examples/functions/delete.md index ed780ac15a..104a7485c0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Functions functions = new Functions(client); await functions.Delete( functionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment-download.md index bfc3209635..d78d52a71d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -14,4 +15,4 @@ byte[] result = await functions.GetDeploymentDownload( functionId: "", deploymentId: "", type: DeploymentDownloadType.Source // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment.md index 5fe31a2f6e..4bca044dc8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); Deployment result = await functions.GetDeployment( functionId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/get-execution.md b/docs/examples/1.8.x/server-dotnet/examples/functions/get-execution.md index 8581b968af..a4705dc9d0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); Execution result = await functions.GetExecution( functionId: "", executionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/get-variable.md b/docs/examples/1.8.x/server-dotnet/examples/functions/get-variable.md index 57ba993389..fb4bd21775 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); Variable result = await functions.GetVariable( functionId: "", variableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/get.md b/docs/examples/1.8.x/server-dotnet/examples/functions/get.md index baba5d0b4a..1c8ab33161 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Functions functions = new Functions(client); Function result = await functions.Get( functionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list-deployments.md index aabb168072..ae2a3f7bbc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ DeploymentList result = await functions.ListDeployments( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list-executions.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list-executions.md index 325093bd43..e3e838e1f2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ExecutionList result = await functions.ListExecutions( functionId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list-runtimes.md index c238671670..c0a58ab6ac 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Functions functions = new Functions(client); RuntimeList result = await functions.ListRuntimes(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list-specifications.md index 2d868d1343..2c168c038d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Functions functions = new Functions(client); SpecificationList result = await functions.ListSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list-variables.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list-variables.md index 4c85da8995..345fd30673 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Functions functions = new Functions(client); VariableList result = await functions.ListVariables( functionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/list.md b/docs/examples/1.8.x/server-dotnet/examples/functions/list.md index 56b457c2dc..f8da87f86b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ FunctionList result = await functions.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-dotnet/examples/functions/update-deployment-status.md index 4dd70b1932..819221cbc5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); Deployment result = await functions.UpdateDeploymentStatus( functionId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/functions/update-function-deployment.md index 7bdbd91b5c..1045b45525 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Functions functions = new Functions(client); Function result = await functions.UpdateFunctionDeployment( functionId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/update-variable.md b/docs/examples/1.8.x/server-dotnet/examples/functions/update-variable.md index 2b776d69ea..0d2c6bba43 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Variable result = await functions.UpdateVariable( key: "", value: "", // optional secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/functions/update.md b/docs/examples/1.8.x/server-dotnet/examples/functions/update.md index cb1a251c46..4f9df255a6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/functions/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/functions/update.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -29,4 +30,4 @@ Function result = await functions.Update( providerSilentMode: false, // optional providerRootDirectory: "", // optional specification: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/graphql/mutation.md b/docs/examples/1.8.x/server-dotnet/examples/graphql/mutation.md index b153e34d51..4280455fc1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-dotnet/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Graphql graphql = new Graphql(client); Any result = await graphql.Mutation( query: [object] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/graphql/query.md b/docs/examples/1.8.x/server-dotnet/examples/graphql/query.md index 61345d7665..6d1c447efc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-dotnet/examples/graphql/query.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Graphql graphql = new Graphql(client); Any result = await graphql.Query( query: [object] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-antivirus.md index 115c0e5c7b..f7fdc0c59a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthAntivirus result = await health.GetAntivirus(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-cache.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-cache.md index bf66405c42..d10993ff20 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatusList result = await health.GetCache(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-certificate.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-certificate.md index 457b70128a..2db4b03856 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthCertificate result = await health.GetCertificate( domain: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-db.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-db.md index ab7a8ff6a8..83827fc1cc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-db.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatusList result = await health.GetDB(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-failed-jobs.md index ee0aceaace..33a9e9bf02 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -13,4 +14,4 @@ Health health = new Health(client); HealthQueue result = await health.GetFailedJobs( name: Name.V1Database, threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-pub-sub.md index 2ddf3963b7..9e44103aa8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatusList result = await health.GetPubSub(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-audits.md index 24ff6ad0a0..9e04d1feb8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueAudits( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-builds.md index 5d522f03f2..65cea92383 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueBuilds( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-certificates.md index c7e186e5ee..4457901e9d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueCertificates( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-databases.md index 1db6fb518c..fc8312e72f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueDatabases( name: "", // optional threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-deletes.md index 487cee3411..c905fa863a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueDeletes( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-functions.md index 949e3766a7..79751bba26 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueFunctions( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-logs.md index 58ad1ac2fe..50a4806635 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueLogs( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-mails.md index 2c1008c7b1..d0224adcd4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueMails( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-messaging.md index 4116f19b1f..3a7b2dafa1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueMessaging( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-migrations.md index 5a0c7a0337..78bfa709ac 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueMigrations( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-stats-resources.md index 4002cca158..1ad7d85410 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueStatsResources( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-usage.md index 546e9a07de..a45b747325 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueUsage( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-webhooks.md index 1fc8d4d63c..9a670034e5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Health health = new Health(client); HealthQueue result = await health.GetQueueWebhooks( threshold: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-storage-local.md index 3e8539794a..73aa206970 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatus result = await health.GetStorageLocal(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-storage.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-storage.md index 42d4aba45b..06b0058014 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatus result = await health.GetStorage(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get-time.md b/docs/examples/1.8.x/server-dotnet/examples/health/get-time.md index 959060113b..e8a0cecfce 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get-time.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthTime result = await health.GetTime(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/health/get.md b/docs/examples/1.8.x/server-dotnet/examples/health/get.md index a926fe71e5..4b31b04bf6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/health/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/health/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Health health = new Health(client); HealthStatus result = await health.Get(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/get.md b/docs/examples/1.8.x/server-dotnet/examples/locale/get.md index 48b9701801..c8bd51ea96 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); Locale result = await locale.Get(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-codes.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-codes.md index 0df7696da5..ec8da7d643 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); LocaleCodeList result = await locale.ListCodes(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-continents.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-continents.md index 7cf74caec3..b53a4a1f70 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); ContinentList result = await locale.ListContinents(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-eu.md index 106e140ee4..aa85c78177 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); CountryList result = await locale.ListCountriesEU(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-phones.md index 38fbe24ff3..6a600fc537 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); PhoneList result = await locale.ListCountriesPhones(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries.md index 5e5d9f407f..ce3e0f538b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); CountryList result = await locale.ListCountries(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-currencies.md index e51a138813..526d618093 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); CurrencyList result = await locale.ListCurrencies(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/locale/list-languages.md b/docs/examples/1.8.x/server-dotnet/examples/locale/list-languages.md index 62aa15d1d9..bd9cd0583f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-dotnet/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Locale locale = new Locale(client); LanguageList result = await locale.ListLanguages(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-apns-provider.md index 74bfe5ec2f..8f1e99d077 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.CreateAPNSProvider( bundleId: "", // optional sandbox: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-email.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-email.md index 51c6db4ddb..1c38822262 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Message result = await messaging.CreateEmail( draft: false, // optional html: false, // optional scheduledAt: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-fcm-provider.md index 0b72bb3fea..e07bfe9a41 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Provider result = await messaging.CreateFCMProvider( name: "", serviceAccountJSON: [object], // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-mailgun-provider.md index 1bacbab8d5..352bd50483 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -20,4 +21,4 @@ Provider result = await messaging.CreateMailgunProvider( replyToName: "", // optional replyToEmail: "email@example.com", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-msg-91-provider.md index a0b7372709..6abd30bc15 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.CreateMsg91Provider( senderId: "", // optional authKey: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-push.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-push.md index ec90fa6d90..2a133fca83 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -30,4 +31,4 @@ Message result = await messaging.CreatePush( contentAvailable: false, // optional critical: false, // optional priority: MessagePriority.Normal // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-resend-provider.md index 526e7916b6..ea6ff5ecb3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.CreateResendProvider( replyToName: "", // optional replyToEmail: "email@example.com", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sendgrid-provider.md index 8464c47ae1..9df34e0a5d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.CreateSendgridProvider( replyToName: "", // optional replyToEmail: "email@example.com", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sms.md index f67a43164f..45a42d3ef8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Message result = await messaging.CreateSMS( targets: new List(), // optional draft: false, // optional scheduledAt: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-smtp-provider.md index d29826dd4a..1e28297e6d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -25,4 +26,4 @@ Provider result = await messaging.CreateSMTPProvider( replyToName: "", // optional replyToEmail: "email@example.com", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-subscriber.md index 8b37d31e68..cfb3d15985 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Subscriber result = await messaging.CreateSubscriber( topicId: "", subscriberId: "", targetId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-telesign-provider.md index 37e1bd1df9..14770eb512 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.CreateTelesignProvider( customerId: "", // optional apiKey: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-textmagic-provider.md index 7dc0a6b26f..2fbea11ae1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.CreateTextmagicProvider( username: "", // optional apiKey: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-topic.md index 51eab0fd11..d9b8370b23 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Topic result = await messaging.CreateTopic( topicId: "", name: "", subscribe: ["any"] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-twilio-provider.md index 0deba742ff..4eba8078d3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.CreateTwilioProvider( accountSid: "", // optional authToken: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-vonage-provider.md index 8f4855aab4..1407190ee3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.CreateVonageProvider( apiKey: "", // optional apiSecret: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-provider.md index a1ca2a1450..06dbf22fdc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); await messaging.DeleteProvider( providerId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-subscriber.md index 9424535c9f..ee4b8dc474 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Messaging messaging = new Messaging(client); await messaging.DeleteSubscriber( topicId: "", subscriberId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-topic.md index 0b4819a219..a27b40366c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); await messaging.DeleteTopic( topicId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete.md index ff041e853a..8e2777a15e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); await messaging.Delete( messageId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-message.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-message.md index 0dad3668f8..6e7d6a82db 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); Message result = await messaging.GetMessage( messageId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-provider.md index fac5a07da5..e30778d726 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); Provider result = await messaging.GetProvider( providerId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-subscriber.md index 516aa682c8..91f76b884c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Messaging messaging = new Messaging(client); Subscriber result = await messaging.GetSubscriber( topicId: "", subscriberId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-topic.md index 3a662b3111..8236a9664b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Messaging messaging = new Messaging(client); Topic result = await messaging.GetTopic( topicId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-message-logs.md index 8956394e31..2684e747f5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ LogList result = await messaging.ListMessageLogs( messageId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-messages.md index 68bd4079bb..dfdf9056de 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ MessageList result = await messaging.ListMessages( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-provider-logs.md index 50a578e179..47f3bb2f8b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ LogList result = await messaging.ListProviderLogs( providerId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-providers.md index 85d357e1fb..3823f05250 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ProviderList result = await messaging.ListProviders( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscriber-logs.md index 53e14032cc..b5db4513f6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ LogList result = await messaging.ListSubscriberLogs( subscriberId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscribers.md index 1782e0cb0f..22a267e713 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ SubscriberList result = await messaging.ListSubscribers( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-targets.md index 5e44378cd7..d6e99c9ade 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ TargetList result = await messaging.ListTargets( messageId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topic-logs.md index a58cfe6989..0402adba83 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ LogList result = await messaging.ListTopicLogs( topicId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topics.md index d3a8b77317..1002a4d93f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ TopicList result = await messaging.ListTopics( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-apns-provider.md index 24cd49da16..515500986e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.UpdateAPNSProvider( teamId: "", // optional bundleId: "", // optional sandbox: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-email.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-email.md index 90d1555d8f..10e08e1345 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Message result = await messaging.UpdateEmail( bcc: new List(), // optional scheduledAt: "", // optional attachments: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-fcm-provider.md index df1ce204f6..43478a5a00 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Provider result = await messaging.UpdateFCMProvider( name: "", // optional enabled: false, // optional serviceAccountJSON: [object] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-mailgun-provider.md index 512cb0586b..2cf3a83e08 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -20,4 +21,4 @@ Provider result = await messaging.UpdateMailgunProvider( fromEmail: "email@example.com", // optional replyToName: "", // optional replyToEmail: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-msg-91-provider.md index 51355c5836..7a651250bf 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.UpdateMsg91Provider( templateId: "", // optional senderId: "", // optional authKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-push.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-push.md index b45752c815..0075d82348 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -30,4 +31,4 @@ Message result = await messaging.UpdatePush( contentAvailable: false, // optional critical: false, // optional priority: MessagePriority.Normal // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-resend-provider.md index 0d295cf007..d6d42c856d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.UpdateResendProvider( fromEmail: "email@example.com", // optional replyToName: "", // optional replyToEmail: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sendgrid-provider.md index d718a7158b..03d1972db0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Provider result = await messaging.UpdateSendgridProvider( fromEmail: "email@example.com", // optional replyToName: "", // optional replyToEmail: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sms.md index 3216fcff03..8d1ff80c21 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Message result = await messaging.UpdateSMS( content: "", // optional draft: false, // optional scheduledAt: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-smtp-provider.md index 29553887ff..b9f0436fda 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -25,4 +26,4 @@ Provider result = await messaging.UpdateSMTPProvider( replyToName: "", // optional replyToEmail: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-telesign-provider.md index d4f1c5e015..e9ebd80e31 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.UpdateTelesignProvider( customerId: "", // optional apiKey: "", // optional from: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-textmagic-provider.md index 3529f9b99c..b5b7b8aff4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.UpdateTextmagicProvider( username: "", // optional apiKey: "", // optional from: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-topic.md index 11943f70e2..361a239683 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Topic result = await messaging.UpdateTopic( topicId: "", name: "", // optional subscribe: ["any"] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-twilio-provider.md index 66fc7e27a3..594bdee86a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.UpdateTwilioProvider( accountSid: "", // optional authToken: "", // optional from: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-vonage-provider.md index 03addd3de6..61e8c84848 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-dotnet/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Provider result = await messaging.UpdateVonageProvider( apiKey: "", // optional apiSecret: "", // optional from: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create-deployment.md index 1bcb5d5bac..d9be1a1e29 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Deployment result = await sites.CreateDeployment( installCommand: "", // optional buildCommand: "", // optional outputDirectory: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create-duplicate-deployment.md index 1e45aca8ef..acca4c7c28 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Deployment result = await sites.CreateDuplicateDeployment( siteId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create-template-deployment.md index 5353b004b8..306a9653d7 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ Deployment result = await sites.CreateTemplateDeployment( type: TemplateReferenceType.Branch, reference: "", activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create-variable.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create-variable.md index 09feb0316e..c6f2828188 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Variable result = await sites.CreateVariable( key: "", value: "", secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create-vcs-deployment.md index 229549befa..8a4a618d63 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -15,4 +16,4 @@ Deployment result = await sites.CreateVcsDeployment( type: VCSReferenceType.Branch, reference: "", activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/create.md b/docs/examples/1.8.x/server-dotnet/examples/sites/create.md index ed7360d5f2..ac31e244f4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -29,4 +30,4 @@ Site result = await sites.Create( providerSilentMode: false, // optional providerRootDirectory: "", // optional specification: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-deployment.md index f74be24acf..fb457b05d8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); await sites.DeleteDeployment( siteId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-log.md b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-log.md index 83d1aa12ca..a5aebb198b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); await sites.DeleteLog( siteId: "", logId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-variable.md index 9751512718..2b79ffeb0d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); await sites.DeleteVariable( siteId: "", variableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/delete.md b/docs/examples/1.8.x/server-dotnet/examples/sites/delete.md index 173c486499..2e1470f636 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Sites sites = new Sites(client); await sites.Delete( siteId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment-download.md index 27c9647629..25bc376b4b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -14,4 +15,4 @@ byte[] result = await sites.GetDeploymentDownload( siteId: "", deploymentId: "", type: DeploymentDownloadType.Source // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment.md index 138c97ba42..f92ffb4245 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Deployment result = await sites.GetDeployment( siteId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/get-log.md b/docs/examples/1.8.x/server-dotnet/examples/sites/get-log.md index d90b6c8477..822bcdbdc5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Execution result = await sites.GetLog( siteId: "", logId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/get-variable.md b/docs/examples/1.8.x/server-dotnet/examples/sites/get-variable.md index 01f57f3bf2..75c28abde3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Variable result = await sites.GetVariable( siteId: "", variableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/get.md b/docs/examples/1.8.x/server-dotnet/examples/sites/get.md index 87a91ae8e8..6863555c89 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Sites sites = new Sites(client); Site result = await sites.Get( siteId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list-deployments.md index e2cae052ee..39acb57c80 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ DeploymentList result = await sites.ListDeployments( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list-frameworks.md index 9220b2a7da..8d802f7f6e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Sites sites = new Sites(client); FrameworkList result = await sites.ListFrameworks(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list-logs.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list-logs.md index f4935ee3f4..36463eeb88 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ExecutionList result = await sites.ListLogs( siteId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list-specifications.md index edf82da81b..a1d63a1e6b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -10,3 +11,4 @@ Client client = new Client() Sites sites = new Sites(client); SpecificationList result = await sites.ListSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list-variables.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list-variables.md index 6eb0ff7093..9a9896194d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Sites sites = new Sites(client); VariableList result = await sites.ListVariables( siteId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/list.md b/docs/examples/1.8.x/server-dotnet/examples/sites/list.md index a7593da2e1..fe543e7c72 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ SiteList result = await sites.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-dotnet/examples/sites/update-deployment-status.md index c7415e7a0b..322c8cc16c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Deployment result = await sites.UpdateDeploymentStatus( siteId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-dotnet/examples/sites/update-site-deployment.md index 8706ff594a..4f75e1f394 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Sites sites = new Sites(client); Site result = await sites.UpdateSiteDeployment( siteId: "", deploymentId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/update-variable.md b/docs/examples/1.8.x/server-dotnet/examples/sites/update-variable.md index 99718cd6cd..e71837a3f0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Variable result = await sites.UpdateVariable( key: "", value: "", // optional secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/sites/update.md b/docs/examples/1.8.x/server-dotnet/examples/sites/update.md index 32da483318..bd65e36dbb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/sites/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/sites/update.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -29,4 +30,4 @@ Site result = await sites.Update( providerSilentMode: false, // optional providerRootDirectory: "", // optional specification: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-dotnet/examples/storage/create-bucket.md index 758883e5ec..6ccdb33e29 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -22,4 +23,4 @@ Bucket result = await storage.CreateBucket( encryption: false, // optional antivirus: false, // optional transformations: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/create-file.md b/docs/examples/1.8.x/server-dotnet/examples/storage/create-file.md index d7cc86e199..356120e761 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ File result = await storage.CreateFile( fileId: "", file: InputFile.FromPath("./path-to-files/image.jpg"), permissions: new List { Permission.Read(Role.Any()) } // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-dotnet/examples/storage/delete-bucket.md index 22aa2acf19..dfee759be4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Storage storage = new Storage(client); await storage.DeleteBucket( bucketId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/delete-file.md b/docs/examples/1.8.x/server-dotnet/examples/storage/delete-file.md index a8cc310aa5..a637341b52 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Storage storage = new Storage(client); await storage.DeleteFile( bucketId: "", fileId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-dotnet/examples/storage/get-bucket.md index a6f74ebdae..27d9e405c9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Storage storage = new Storage(client); Bucket result = await storage.GetBucket( bucketId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-download.md index 514fda9e9c..02ad30d557 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ byte[] result = await storage.GetFileDownload( bucketId: "", fileId: "", token: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-preview.md index c9ec508b4a..cc3d88a8ab 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -25,4 +26,4 @@ byte[] result = await storage.GetFilePreview( background: "", // optional output: ImageFormat.Jpg, // optional token: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-view.md index 1a27dc153c..b9088d0069 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ byte[] result = await storage.GetFileView( bucketId: "", fileId: "", token: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file.md b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file.md index e4c05c1e6b..769386ed48 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Storage storage = new Storage(client); File result = await storage.GetFile( bucketId: "", fileId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-dotnet/examples/storage/list-buckets.md index 6762192efb..5580b72768 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ BucketList result = await storage.ListBuckets( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/list-files.md b/docs/examples/1.8.x/server-dotnet/examples/storage/list-files.md index 04dff4a3d1..9394301933 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ FileList result = await storage.ListFiles( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-dotnet/examples/storage/update-bucket.md index 7dfed901e7..c68d001c14 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -22,4 +23,4 @@ Bucket result = await storage.UpdateBucket( encryption: false, // optional antivirus: false, // optional transformations: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/storage/update-file.md b/docs/examples/1.8.x/server-dotnet/examples/storage/update-file.md index 36552b529b..df3e737320 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-dotnet/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ File result = await storage.UpdateFile( fileId: "", name: "", // optional permissions: new List { Permission.Read(Role.Any()) } // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md index ff7b647fe6..67cefc22f4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnBoolean result = await tablesDB.CreateBooleanColumn( required: false, default: false, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md index c03ba36156..1721459041 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnDatetime result = await tablesDB.CreateDatetimeColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md index 309db62820..4c07c436a6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnEmail result = await tablesDB.CreateEmailColumn( required: false, default: "email@example.com", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md index 632bbef52b..ebe5d6b7ad 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ ColumnEnum result = await tablesDB.CreateEnumColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md index e7da5323f3..2a0c502340 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ ColumnFloat result = await tablesDB.CreateFloatColumn( max: 0, // optional default: 0, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md index 65a9973b41..ec486577dd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ ColumnIndex result = await tablesDB.CreateIndex( columns: new List(), orders: new List<OrderBy> { OrderBy.Asc }, // optional lengths: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md index 7bdb971aca..4f8220412e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ ColumnInteger result = await tablesDB.CreateIntegerColumn( max: 0, // optional default: 0, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md index 9359b28983..bf996e72a7 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnIp result = await tablesDB.CreateIpColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-line-column.md index 31dc069815..e3d438a2c4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ ColumnLine result = await tablesDB.CreateLineColumn( key: "", required: false, default: [[1, 2], [3, 4], [5, 6]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-longtext-column.md index 86e5bca129..99442d563c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnLongtext result = await tablesDB.CreateLongtextColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md index 54e3bea513..05362521d8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnMediumtext result = await tablesDB.CreateMediumtextColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-operations.md index 0a8da3e8cc..1d5b385aed 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Transaction result = await tablesDB.CreateOperations( } } ] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-point-column.md index a1461bcc8f..318e8eb793 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ ColumnPoint result = await tablesDB.CreatePointColumn( key: "", required: false, default: [1, 2] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-polygon-column.md index e1e92b2d97..f39ceeb557 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ ColumnPolygon result = await tablesDB.CreatePolygonColumn( key: "", required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md index 95b34d0265..003d9b8cf0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -19,4 +20,4 @@ ColumnRelationship result = await tablesDB.CreateRelationshipColumn( key: "", // optional twoWayKey: "", // optional onDelete: RelationMutate.Cascade // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md index f0070e3233..4f6112b8e1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Row result = await tablesDB.CreateRow( }, permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md index c73c474f45..2a8a07b7ef 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ RowList result = await tablesDB.CreateRows( tableId: "", rows: new List(), transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md index ab77d4da61..28f5e4c3d2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ ColumnString result = await tablesDB.CreateStringColumn( default: "", // optional array: false, // optional encrypt: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md index 7b622d1d58..242456de9d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ Table result = await tablesDB.CreateTable( enabled: false, // optional columns: new List(), // optional indexes: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-text-column.md index b1487e7d1d..aeb50d3159 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnText result = await tablesDB.CreateTextColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-transaction.md index b42b087539..9fea42b889 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); Transaction result = await tablesDB.CreateTransaction( ttl: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md index bfae1ccd7e..1df7b2e9d1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnUrl result = await tablesDB.CreateUrlColumn( required: false, default: "https://example.com", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-varchar-column.md index 86c3a78de7..83a37c4cb0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ ColumnVarchar result = await tablesDB.CreateVarcharColumn( required: false, default: "", // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md index 105d838d5f..d34245c84d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Database result = await tablesDB.Create( databaseId: "", name: "", enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md index 19498d035f..b91aed745b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Row result = await tablesDB.DecrementRowColumn( value: 0, // optional min: 0, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md index 4cc43f20e7..edd9432584 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ await tablesDB.DeleteColumn( databaseId: "", tableId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md index 46c899b7ee..e52f9655ac 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ await tablesDB.DeleteIndex( databaseId: "", tableId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md index 81bd084f62..9186473c7c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ await tablesDB.DeleteRow( tableId: "", rowId: "", transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md index c0f656cda5..57762ab4fa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ await tablesDB.DeleteRows( tableId: "", queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md index 4f772f3fb7..89af4df878 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ TablesDB tablesDB = new TablesDB(client); await tablesDB.DeleteTable( databaseId: "", tableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-transaction.md index 6e41c80c02..42fdcc148e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); await tablesDB.DeleteTransaction( transactionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md index 55395b0230..051de97064 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); await tablesDB.Delete( databaseId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md index e4c17807e8..521213eaaa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ColumnBoolean result = await tablesDB.GetColumn( databaseId: "", tableId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md index b48ac846b8..66cdd1ca83 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ColumnIndex result = await tablesDB.GetIndex( databaseId: "", tableId: "", key: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md index 66f6a230e3..21af7c4d4f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Row result = await tablesDB.GetRow( rowId: "", queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md index 82311e8f55..9932f84c13 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ TablesDB tablesDB = new TablesDB(client); Table result = await tablesDB.GetTable( databaseId: "", tableId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-transaction.md index 73e0904982..a3d72b1a98 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); Transaction result = await tablesDB.GetTransaction( transactionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md index ace26de4fe..85e7223fd0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); Database result = await tablesDB.Get( databaseId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md index cbac61f159..fc594b90d2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ Row result = await tablesDB.IncrementRowColumn( value: 0, // optional max: 0, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md index 3a11c5a6d0..5d459077b1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ ColumnList result = await tablesDB.ListColumns( tableId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md index dfbff0b230..3942b40028 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ ColumnIndexList result = await tablesDB.ListIndexes( tableId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md index 8c8493e7ad..a0f582fc7a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ RowList result = await tablesDB.ListRows( queries: new List(), // optional transactionId: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md index 11bf2382de..1d8c95c255 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ TableList result = await tablesDB.ListTables( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-transactions.md index b1a00e1a44..fe7b4a4359 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ TablesDB tablesDB = new TablesDB(client); TransactionList result = await tablesDB.ListTransactions( queries: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md index 144f0879b7..f3d19ac772 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ DatabaseList result = await tablesDB.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md index b6c6d58438..4c7763fd41 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnBoolean result = await tablesDB.UpdateBooleanColumn( required: false, default: false, newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md index 8236b6af7c..a3d8c353a8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnDatetime result = await tablesDB.UpdateDatetimeColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md index 88567783a2..6661c90025 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnEmail result = await tablesDB.UpdateEmailColumn( required: false, default: "email@example.com", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md index 58c3c65d7b..30024727ca 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ ColumnEnum result = await tablesDB.UpdateEnumColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md index 057a076733..24f28a9267 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ ColumnFloat result = await tablesDB.UpdateFloatColumn( min: 0, // optional max: 0, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md index 2cc3b3614e..0390d353ca 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -18,4 +19,4 @@ ColumnInteger result = await tablesDB.UpdateIntegerColumn( min: 0, // optional max: 0, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md index 7e6d64f03c..218342f545 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnIp result = await tablesDB.UpdateIpColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-line-column.md index 7a7620a98d..8aac55998a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnLine result = await tablesDB.UpdateLineColumn( required: false, default: [[1, 2], [3, 4], [5, 6]], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-longtext-column.md index b73907bf5d..d7abb4f476 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnLongtext result = await tablesDB.UpdateLongtextColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md index 3bd20fac99..3a8a490fda 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnMediumtext result = await tablesDB.UpdateMediumtextColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-point-column.md index 663f1838a0..a976260af0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnPoint result = await tablesDB.UpdatePointColumn( required: false, default: [1, 2], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-polygon-column.md index ac8300ad39..f19a0717d4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnPolygon result = await tablesDB.UpdatePolygonColumn( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md index 9a0a36b690..36cc97d267 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -16,4 +17,4 @@ ColumnRelationship result = await tablesDB.UpdateRelationshipColumn( key: "", onDelete: RelationMutate.Cascade, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md index 31dfd9dd89..54e6ca16c0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Row result = await tablesDB.UpdateRow( }, // optional permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md index ddd88e041e..0fe6b38b43 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -21,4 +22,4 @@ RowList result = await tablesDB.UpdateRows( }, // optional queries: new List(), // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md index df5308ddb3..c0b860db6a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ ColumnString result = await tablesDB.UpdateStringColumn( default: "", size: 1, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md index 9e2e56722f..034b74fee5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ Table result = await tablesDB.UpdateTable( permissions: new List { Permission.Read(Role.Any()) }, // optional rowSecurity: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-text-column.md index 6a88a5434f..da4fefaafc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnText result = await tablesDB.UpdateTextColumn( required: false, default: "", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-transaction.md index 3b44fd5d37..99e6a017f9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Transaction result = await tablesDB.UpdateTransaction( transactionId: "", commit: false, // optional rollback: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md index d342fc9476..10761c90fa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -16,4 +17,4 @@ ColumnUrl result = await tablesDB.UpdateUrlColumn( required: false, default: "https://example.com", newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-varchar-column.md index 87bbed3810..948be687ed 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ ColumnVarchar result = await tablesDB.UpdateVarcharColumn( default: "", size: 1, // optional newKey: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md index e254acb491..e03329ddee 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Database result = await tablesDB.Update( databaseId: "", name: "", // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md index f4860bc9f5..5f3c4d28a7 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -22,4 +23,4 @@ Row result = await tablesDB.UpsertRow( }, // optional permissions: new List { Permission.Read(Role.Any()) }, // optional transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md index fde5df7149..b1fbe1910f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ RowList result = await tablesDB.UpsertRows( tableId: "", rows: new List(), transactionId: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/create-membership.md b/docs/examples/1.8.x/server-dotnet/examples/teams/create-membership.md index 787d595e99..4cf6babac3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -18,4 +19,4 @@ Membership result = await teams.CreateMembership( phone: "+12065550100", // optional url: "https://example.com", // optional name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/create.md b/docs/examples/1.8.x/server-dotnet/examples/teams/create.md index 07b102d70a..ead315a948 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Team result = await teams.Create( teamId: "", name: "", roles: new List() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-dotnet/examples/teams/delete-membership.md index 01a58aaa11..ac7ff43269 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Teams teams = new Teams(client); await teams.DeleteMembership( teamId: "", membershipId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/delete.md b/docs/examples/1.8.x/server-dotnet/examples/teams/delete.md index ee525f23c9..67f20deee0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Teams teams = new Teams(client); await teams.Delete( teamId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/get-membership.md b/docs/examples/1.8.x/server-dotnet/examples/teams/get-membership.md index cb9109df14..f8c0cd0b77 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Teams teams = new Teams(client); Membership result = await teams.GetMembership( teamId: "", membershipId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/teams/get-prefs.md index f95d73af77..b8a790a1af 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Teams teams = new Teams(client); Preferences result = await teams.GetPrefs( teamId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/get.md b/docs/examples/1.8.x/server-dotnet/examples/teams/get.md index 339b33f657..0ad3fd3c92 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Teams teams = new Teams(client); Team result = await teams.Get( teamId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-dotnet/examples/teams/list-memberships.md index b3aa6838ef..85fe50cd72 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ MembershipList result = await teams.ListMemberships( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/list.md b/docs/examples/1.8.x/server-dotnet/examples/teams/list.md index 70bdc6e363..d345222a6d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ TeamList result = await teams.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership-status.md index 87609aa32e..05d763d3dc 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ Membership result = await teams.UpdateMembershipStatus( membershipId: "", userId: "", secret: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership.md b/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership.md index dd942cc8b9..e6f09e9c58 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -14,4 +15,4 @@ Membership result = await teams.UpdateMembership( teamId: "", membershipId: "", roles: new List<Roles> { Roles.Admin } -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/update-name.md b/docs/examples/1.8.x/server-dotnet/examples/teams/update-name.md index 9a3fb1316a..e3161e1bed 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Teams teams = new Teams(client); Team result = await teams.UpdateName( teamId: "", name: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/teams/update-prefs.md index 55ff96e9e8..fdfa9e0d7c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Teams teams = new Teams(client); Preferences result = await teams.UpdatePrefs( teamId: "", prefs: [object] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-dotnet/examples/tokens/create-file-token.md index 70f4ed3900..7e575517e9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ ResourceToken result = await tokens.CreateFileToken( bucketId: "", fileId: "", expire: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tokens/delete.md b/docs/examples/1.8.x/server-dotnet/examples/tokens/delete.md index e88147c1c9..22004e2806 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Tokens tokens = new Tokens(client); await tokens.Delete( tokenId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tokens/get.md b/docs/examples/1.8.x/server-dotnet/examples/tokens/get.md index da9b431017..274b3432f0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tokens/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Tokens tokens = new Tokens(client); ResourceToken result = await tokens.Get( tokenId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tokens/list.md b/docs/examples/1.8.x/server-dotnet/examples/tokens/list.md index ee1066cdf5..0cc4dc4b97 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tokens/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ ResourceTokenList result = await tokens.List( fileId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/tokens/update.md b/docs/examples/1.8.x/server-dotnet/examples/tokens/update.md index b7604182ab..43ac47203a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tokens/update.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Tokens tokens = new Tokens(client); ResourceToken result = await tokens.Update( tokenId: "", expire: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-argon-2-user.md index db6dd6486a..0962eff693 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ User result = await users.CreateArgon2User( email: "email@example.com", password: "password", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-bcrypt-user.md index bf8bf3dedd..bdcfd9a8bd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ User result = await users.CreateBcryptUser( email: "email@example.com", password: "password", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-jwt.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-jwt.md index a7c57ad642..2c6d9770a6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ JWT result = await users.CreateJWT( userId: "", sessionId: "", // optional duration: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-md-5-user.md index 7b7d0e7760..5fc94ca7a0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ User result = await users.CreateMD5User( email: "email@example.com", password: "password", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-mfa-recovery-codes.md index d0c0d95ad8..453e66c228 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); MfaRecoveryCodes result = await users.CreateMFARecoveryCodes( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-ph-pass-user.md index 9f5521ef2f..0d6b7fae7a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ User result = await users.CreatePHPassUser( email: "email@example.com", password: "password", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-modified-user.md index 3af99e88c2..640cdb8f12 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -17,4 +18,4 @@ User result = await users.CreateScryptModifiedUser( passwordSaltSeparator: "", passwordSignerKey: "", name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-user.md index 79085f7206..47f4d8e14c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -19,4 +20,4 @@ User result = await users.CreateScryptUser( passwordParallel: 0, passwordLength: 0, name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-session.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-session.md index a021c2551f..78cd1d2be0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); Session result = await users.CreateSession( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-sha-user.md index 0821bf46e9..9c8d13b731 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -16,4 +17,4 @@ User result = await users.CreateSHAUser( password: "password", passwordVersion: PasswordHash.Sha1, // optional name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-target.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-target.md index 44ba48ac01..1712912520 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-target.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -17,4 +18,4 @@ Target result = await users.CreateTarget( identifier: "", providerId: "", // optional name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create-token.md b/docs/examples/1.8.x/server-dotnet/examples/users/create-token.md index 0e9cf43fd7..5e8fd9e3a1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create-token.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ Token result = await users.CreateToken( userId: "", length: 4, // optional expire: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/create.md b/docs/examples/1.8.x/server-dotnet/examples/users/create.md index 3cf1d3af29..e15c2071ea 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/create.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ User result = await users.Create( phone: "+12065550100", // optional password: "", // optional name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete-identity.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete-identity.md index d2bac6b797..1237f3a4d9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); await users.DeleteIdentity( identityId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete-mfa-authenticator.md index b4cec73ae9..7b311319ca 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Enums; using Appwrite.Models; @@ -13,4 +14,4 @@ Users users = new Users(client); await users.DeleteMFAAuthenticator( userId: "", type: AuthenticatorType.Totp -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete-session.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete-session.md index d9d36d20b4..5d0282d5f0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); await users.DeleteSession( userId: "", sessionId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete-sessions.md index 7011e426bb..26b2cac1c3 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); await users.DeleteSessions( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete-target.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete-target.md index ad900afa5a..60bbc5a6be 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); await users.DeleteTarget( userId: "", targetId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/delete.md b/docs/examples/1.8.x/server-dotnet/examples/users/delete.md index 00ed23cf5f..f1ee25ffc4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/delete.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); await users.Delete( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/users/get-mfa-recovery-codes.md index ce9453119f..34dca0165a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); MfaRecoveryCodes result = await users.GetMFARecoveryCodes( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/get-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/users/get-prefs.md index 36888651d9..183bf14af4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); Preferences result = await users.GetPrefs( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/get-target.md b/docs/examples/1.8.x/server-dotnet/examples/users/get-target.md index 2bbf4d614c..428e924806 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/get-target.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); Target result = await users.GetTarget( userId: "", targetId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/get.md b/docs/examples/1.8.x/server-dotnet/examples/users/get.md index 25971baddc..f1de9cd011 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/get.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); User result = await users.Get( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-identities.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-identities.md index 375b3df826..3c8cdd62d5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ IdentityList result = await users.ListIdentities( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-logs.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-logs.md index d6769b89ad..b1faf3dc5e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ LogList result = await users.ListLogs( userId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-memberships.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-memberships.md index 6f9f3fa233..b72ebb3721 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -14,4 +15,4 @@ MembershipList result = await users.ListMemberships( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-mfa-factors.md index 956949d0a9..18f888f2aa 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); MfaFactors result = await users.ListMFAFactors( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-sessions.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-sessions.md index 7410cdcb87..3c888ddad9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); SessionList result = await users.ListSessions( userId: "", total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list-targets.md b/docs/examples/1.8.x/server-dotnet/examples/users/list-targets.md index f04ffd3a07..d825f0b1ac 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ TargetList result = await users.ListTargets( userId: "", queries: new List(), // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/list.md b/docs/examples/1.8.x/server-dotnet/examples/users/list.md index a2b22a9e25..24407b5558 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/list.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -13,4 +14,4 @@ UserList result = await users.List( queries: new List(), // optional search: "", // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-email-verification.md index 8add2d4d6b..1a9bee6886 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateEmailVerification( userId: "", emailVerification: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-email.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-email.md index d0d737cb80..971db635a5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-email.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateEmail( userId: "", email: "email@example.com" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-labels.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-labels.md index 6637ad0438..745fcde070 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateLabels( userId: "", labels: new List() -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa-recovery-codes.md index ac14ccf932..f2c59a7d3d 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -11,4 +12,4 @@ Users users = new Users(client); MfaRecoveryCodes result = await users.UpdateMFARecoveryCodes( userId: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa.md index 1114982333..ea9ae97fec 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateMFA( userId: "", mfa: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-name.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-name.md index ffa90f9657..874476e94e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-name.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateName( userId: "", name: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-password.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-password.md index 6dc30d5bcf..0222d6f6b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-password.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdatePassword( userId: "", password: "" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-phone-verification.md index ba5ca253ee..fce805cebf 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdatePhoneVerification( userId: "", phoneVerification: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-phone.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-phone.md index e633740e94..dce430d0d4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdatePhone( userId: "", number: "+12065550100" -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-prefs.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-prefs.md index 421a4c2314..e6ebf0d019 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); Preferences result = await users.UpdatePrefs( userId: "", prefs: [object] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-status.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-status.md index 3037d8dd0c..04057430d1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-status.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -12,4 +13,4 @@ Users users = new Users(client); User result = await users.UpdateStatus( userId: "", status: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-dotnet/examples/users/update-target.md b/docs/examples/1.8.x/server-dotnet/examples/users/update-target.md index 9863af19d8..9104e97478 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-dotnet/examples/users/update-target.md @@ -1,3 +1,4 @@ +```csharp using Appwrite; using Appwrite.Models; using Appwrite.Services; @@ -15,4 +16,4 @@ Target result = await users.UpdateTarget( identifier: "", // optional providerId: "", // optional name: "" // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-go/examples/account/create-anonymous-session.md index b6da8a7467..1185d1f41c 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-anonymous-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.CreateAnonymousSession()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-go/examples/account/create-email-password-session.md index 7067b8a073..c27436bbe2 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-email-password-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.CreateEmailPasswordSession( "email@example.com", "password", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-email-token.md b/docs/examples/1.8.x/server-go/examples/account/create-email-token.md index 466d1c839a..4746b0c134 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-email-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateEmailToken( "email@example.com", account.WithCreateEmailTokenPhrase(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-go/examples/account/create-email-verification.md index d10b88e21d..c9483c30b9 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-email-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.CreateEmailVerification( "https://example.com", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-jwt.md b/docs/examples/1.8.x/server-go/examples/account/create-jwt.md index a5952d8cf7..70113e5808 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-jwt.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.CreateJWT( account.WithCreateJWTDuration(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-go/examples/account/create-magic-url-token.md index e1fe889732..a0c4792ad6 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-magic-url-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateMagicURLToken( account.WithCreateMagicURLTokenUrl("https://example.com"), account.WithCreateMagicURLTokenPhrase(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-go/examples/account/create-mfa-authenticator.md index c0124d6cf9..f562bb5028 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-mfa-authenticator.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.CreateMFAAuthenticator( "totp", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-go/examples/account/create-mfa-challenge.md index 7eb816c829..a548edda54 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-mfa-challenge.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.CreateMFAChallenge( "email", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/account/create-mfa-recovery-codes.md index 332102ea64..d63daefa41 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.CreateMFARecoveryCodes()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-go/examples/account/create-o-auth-2-token.md index 48ff13ee70..a8519f6117 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-o-auth-2-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateOAuth2Token( account.WithCreateOAuth2TokenFailure("https://example.com"), account.WithCreateOAuth2TokenScopes([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-go/examples/account/create-phone-token.md index 043ef3c8e3..f47be6e4b8 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-phone-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.CreatePhoneToken( "", "+12065550100", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-go/examples/account/create-phone-verification.md index 68fd7f788d..2646633b32 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-phone-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.CreatePhoneVerification()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-recovery.md b/docs/examples/1.8.x/server-go/examples/account/create-recovery.md index 5e78d01980..36080d0d2f 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-recovery.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.CreateRecovery( "email@example.com", "https://example.com", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-session.md b/docs/examples/1.8.x/server-go/examples/account/create-session.md index 3c24783b3c..8b3b2ffb7a 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.CreateSession( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create-verification.md b/docs/examples/1.8.x/server-go/examples/account/create-verification.md index 14a1b946f3..ee2378c574 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/create-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.CreateVerification( "https://example.com", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/create.md b/docs/examples/1.8.x/server-go/examples/account/create.md index ebb5001509..6921daf304 100644 --- a/docs/examples/1.8.x/server-go/examples/account/create.md +++ b/docs/examples/1.8.x/server-go/examples/account/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.Create( "", account.WithCreateName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/delete-identity.md b/docs/examples/1.8.x/server-go/examples/account/delete-identity.md index a513991ad6..0a8fa0b79c 100644 --- a/docs/examples/1.8.x/server-go/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-go/examples/account/delete-identity.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.DeleteIdentity( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-go/examples/account/delete-mfa-authenticator.md index 33b7e51af7..15dab4ff41 100644 --- a/docs/examples/1.8.x/server-go/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-go/examples/account/delete-mfa-authenticator.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.DeleteMFAAuthenticator( "totp", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/delete-session.md b/docs/examples/1.8.x/server-go/examples/account/delete-session.md index 0a7bb5a856..020582f6fe 100644 --- a/docs/examples/1.8.x/server-go/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/delete-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.DeleteSession( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-go/examples/account/delete-sessions.md index 87c9881e06..43c6f12908 100644 --- a/docs/examples/1.8.x/server-go/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-go/examples/account/delete-sessions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.DeleteSessions()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/account/get-mfa-recovery-codes.md index ee955116f3..01c41e7c98 100644 --- a/docs/examples/1.8.x/server-go/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/account/get-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.GetMFARecoveryCodes()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/get-prefs.md b/docs/examples/1.8.x/server-go/examples/account/get-prefs.md index c4511438ab..c8d530b81f 100644 --- a/docs/examples/1.8.x/server-go/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/account/get-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.GetPrefs()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/get-session.md b/docs/examples/1.8.x/server-go/examples/account/get-session.md index 9005de9cf6..12c020d9ca 100644 --- a/docs/examples/1.8.x/server-go/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/get-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.GetSession( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/get.md b/docs/examples/1.8.x/server-go/examples/account/get.md index 280492c77e..f2e19d0535 100644 --- a/docs/examples/1.8.x/server-go/examples/account/get.md +++ b/docs/examples/1.8.x/server-go/examples/account/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.Get()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/list-identities.md b/docs/examples/1.8.x/server-go/examples/account/list-identities.md index 30a367e6d6..b1a178c95d 100644 --- a/docs/examples/1.8.x/server-go/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-go/examples/account/list-identities.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.ListIdentities( account.WithListIdentitiesQueries([]interface{}{}), account.WithListIdentitiesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/list-logs.md b/docs/examples/1.8.x/server-go/examples/account/list-logs.md index f217318113..9ed5884adf 100644 --- a/docs/examples/1.8.x/server-go/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-go/examples/account/list-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.ListLogs( account.WithListLogsQueries([]interface{}{}), account.WithListLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-go/examples/account/list-mfa-factors.md index f6f90f625f..1431389f7b 100644 --- a/docs/examples/1.8.x/server-go/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-go/examples/account/list-mfa-factors.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.ListMFAFactors()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/list-sessions.md b/docs/examples/1.8.x/server-go/examples/account/list-sessions.md index c8a408586b..593524c020 100644 --- a/docs/examples/1.8.x/server-go/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-go/examples/account/list-sessions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.ListSessions()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-go/examples/account/update-email-verification.md index 780405d514..b554bbaae2 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-email-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateEmailVerification( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-email.md b/docs/examples/1.8.x/server-go/examples/account/update-email.md index 6defd00964..81debd5129 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-email.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateEmail( "email@example.com", "password", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-go/examples/account/update-magic-url-session.md index 0fc951b346..8d7e192b11 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-magic-url-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateMagicURLSession( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-go/examples/account/update-mfa-authenticator.md index 4999034576..48c1203b04 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-mfa-authenticator.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateMFAAuthenticator( "totp", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-go/examples/account/update-mfa-challenge.md index a9dd94eab6..78e6bdff66 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-mfa-challenge.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateMFAChallenge( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/account/update-mfa-recovery-codes.md index fc47d3b023..7b81371dde 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.UpdateMFARecoveryCodes()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-mfa.md b/docs/examples/1.8.x/server-go/examples/account/update-mfa.md index 1808eed84b..0ece4de6e5 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-mfa.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.UpdateMFA( false, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-name.md b/docs/examples/1.8.x/server-go/examples/account/update-name.md index 1cf5aa2a22..d22d088777 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-name.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.UpdateName( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-password.md b/docs/examples/1.8.x/server-go/examples/account/update-password.md index f574679217..df55436de3 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-password.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePassword( "", account.WithUpdatePasswordOldPassword("password"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-go/examples/account/update-phone-session.md index 6c7ee57b1d..3490a8b732 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-phone-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePhoneSession( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-go/examples/account/update-phone-verification.md index cb5a93934e..811d787c21 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-phone-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePhoneVerification( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-phone.md b/docs/examples/1.8.x/server-go/examples/account/update-phone.md index ac21bd321f..20a9295d75 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-phone.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePhone( "+12065550100", "password", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-prefs.md b/docs/examples/1.8.x/server-go/examples/account/update-prefs.md index 2091395fb5..d457f3fac2 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdatePrefs( "darkTheme": true }, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-recovery.md b/docs/examples/1.8.x/server-go/examples/account/update-recovery.md index e21e5ccfdc..4a08719116 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-recovery.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.UpdateRecovery( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-session.md b/docs/examples/1.8.x/server-go/examples/account/update-session.md index 4984b9ef85..b45210e699 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := account.New(client) response, error := service.UpdateSession( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-status.md b/docs/examples/1.8.x/server-go/examples/account/update-status.md index e3c5d66a1d..8107339790 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-status.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := account.New(client) response, error := service.UpdateStatus()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/account/update-verification.md b/docs/examples/1.8.x/server-go/examples/account/update-verification.md index b31751746a..74039aefc8 100644 --- a/docs/examples/1.8.x/server-go/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-go/examples/account/update-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateVerification( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-go/examples/avatars/get-browser.md index 6b238c9f1f..5d4142e135 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-browser.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.GetBrowser( avatars.WithGetBrowserHeight(0), avatars.WithGetBrowserQuality(-1), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-go/examples/avatars/get-credit-card.md index 4ca6feb2d9..62a7bdd41d 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-credit-card.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.GetCreditCard( avatars.WithGetCreditCardHeight(0), avatars.WithGetCreditCardQuality(-1), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-go/examples/avatars/get-favicon.md index dafc8dd7e9..492c99d7f9 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-favicon.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := avatars.New(client) response, error := service.GetFavicon( "https://example.com", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-go/examples/avatars/get-flag.md index ad46317c2c..2be156a041 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-flag.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.GetFlag( avatars.WithGetFlagHeight(0), avatars.WithGetFlagQuality(-1), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-image.md b/docs/examples/1.8.x/server-go/examples/avatars/get-image.md index 7e9a20f2f7..723a0ceabc 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-image.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetImage( avatars.WithGetImageWidth(0), avatars.WithGetImageHeight(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-go/examples/avatars/get-initials.md index 84ddfc080a..5f320237cd 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-initials.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.GetInitials( avatars.WithGetInitialsHeight(0), avatars.WithGetInitialsBackground(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-go/examples/avatars/get-qr.md index 97efa7400e..e45577534c 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-qr.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.GetQR( avatars.WithGetQRMargin(0), avatars.WithGetQRDownload(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-go/examples/avatars/get-screenshot.md index b08534669e..af0f2c4962 100644 --- a/docs/examples/1.8.x/server-go/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-go/examples/avatars/get-screenshot.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -39,3 +39,4 @@ response, error := service.GetScreenshot( avatars.WithGetScreenshotQuality(85), avatars.WithGetScreenshotOutput("jpeg"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-boolean-attribute.md index db87ed2d2d..65398b50f8 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-boolean-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateBooleanAttribute( databases.WithCreateBooleanAttributeDefault(false), databases.WithCreateBooleanAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-collection.md b/docs/examples/1.8.x/server-go/examples/databases/create-collection.md index 5cad00a6a5..9cd6c9780e 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-collection.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateCollection( databases.WithCreateCollectionAttributes([]interface{}{}), databases.WithCreateCollectionIndexes([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-datetime-attribute.md index d1b5785b2e..ea8eb5285a 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-datetime-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateDatetimeAttribute( databases.WithCreateDatetimeAttributeDefault(""), databases.WithCreateDatetimeAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-document.md b/docs/examples/1.8.x/server-go/examples/databases/create-document.md index 1c7a489129..1e19aa2133 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-document.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.CreateDocument( databases.WithCreateDocumentPermissions(interface{}{"read("any")"}), databases.WithCreateDocumentTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-documents.md b/docs/examples/1.8.x/server-go/examples/databases/create-documents.md index ae08b2e7d8..c5993916d2 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-documents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateDocuments( []interface{}{}, databases.WithCreateDocumentsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-email-attribute.md index 24ceeab4ad..300f590f23 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-email-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateEmailAttribute( databases.WithCreateEmailAttributeDefault("email@example.com"), databases.WithCreateEmailAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-enum-attribute.md index 49c576a62d..95783a1365 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-enum-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateEnumAttribute( databases.WithCreateEnumAttributeDefault(""), databases.WithCreateEnumAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-float-attribute.md index 2a039e802e..c638236b94 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-float-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateFloatAttribute( databases.WithCreateFloatAttributeDefault(0), databases.WithCreateFloatAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-index.md b/docs/examples/1.8.x/server-go/examples/databases/create-index.md index e2b11982d4..2cf2c7b384 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateIndex( databases.WithCreateIndexOrders([]interface{}{}), databases.WithCreateIndexLengths([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-integer-attribute.md index ad93ff053c..3c90b5c3c0 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-integer-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateIntegerAttribute( databases.WithCreateIntegerAttributeDefault(0), databases.WithCreateIntegerAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-ip-attribute.md index 47df16ced4..62ff98e678 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-ip-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateIpAttribute( databases.WithCreateIpAttributeDefault(""), databases.WithCreateIpAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-line-attribute.md index 4993176457..960e3274dd 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-line-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreateLineAttribute( false, databases.WithCreateLineAttributeDefault(interface{}{[1, 2], [3, 4], [5, 6]}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-longtext-attribute.md index 630412d091..4e3e2274b1 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-longtext-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateLongtextAttribute( databases.WithCreateLongtextAttributeDefault(""), databases.WithCreateLongtextAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-mediumtext-attribute.md index 0b6c21bcdb..fc31a2f391 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-mediumtext-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateMediumtextAttribute( databases.WithCreateMediumtextAttributeDefault(""), databases.WithCreateMediumtextAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-operations.md b/docs/examples/1.8.x/server-go/examples/databases/create-operations.md index c73ad57738..a11a9b39f8 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-operations.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.CreateOperations( } }), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-point-attribute.md index 75d5e7908d..223b80effd 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-point-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreatePointAttribute( false, databases.WithCreatePointAttributeDefault(interface{}{1, 2}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-polygon-attribute.md index 0f89b4237d..9b3aeea916 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-polygon-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreatePolygonAttribute( false, databases.WithCreatePolygonAttributeDefault(interface{}{[[1, 2], [3, 4], [5, 6], [1, 2]]}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-relationship-attribute.md index f63779ff75..90dfcf7959 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-relationship-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateRelationshipAttribute( databases.WithCreateRelationshipAttributeTwoWayKey(""), databases.WithCreateRelationshipAttributeOnDelete("cascade"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-string-attribute.md index 4082041aaf..243b7bd50d 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-string-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateStringAttribute( databases.WithCreateStringAttributeArray(false), databases.WithCreateStringAttributeEncrypt(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-text-attribute.md index 40bde804b4..86347766f4 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-text-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTextAttribute( databases.WithCreateTextAttributeDefault(""), databases.WithCreateTextAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-go/examples/databases/create-transaction.md index f74b9152c1..48df66e8c7 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.CreateTransaction( databases.WithCreateTransactionTtl(60), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-url-attribute.md index 5b367e0cac..2fb2c08494 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-url-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateUrlAttribute( databases.WithCreateUrlAttributeDefault("https://example.com"), databases.WithCreateUrlAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/create-varchar-attribute.md index 53a8099095..b4ebbdfd69 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create-varchar-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateVarcharAttribute( databases.WithCreateVarcharAttributeDefault(""), databases.WithCreateVarcharAttributeArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/create.md b/docs/examples/1.8.x/server-go/examples/databases/create.md index 57c8e106ed..e360cc9d16 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/create.md +++ b/docs/examples/1.8.x/server-go/examples/databases/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.Create( "", databases.WithCreateEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/decrement-document-attribute.md index 7cb2c1c3c3..dab7393ae8 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/decrement-document-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.DecrementDocumentAttribute( databases.WithDecrementDocumentAttributeMin(0), databases.WithDecrementDocumentAttributeTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/delete-attribute.md index 9640983294..16cf2d971b 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.DeleteAttribute( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-go/examples/databases/delete-collection.md index df3031640b..651568ad20 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-collection.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteCollection( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-document.md b/docs/examples/1.8.x/server-go/examples/databases/delete-document.md index 80e44b89eb..ef53243bb2 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-document.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.DeleteDocument( "", databases.WithDeleteDocumentTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-go/examples/databases/delete-documents.md index 5c070a0dc4..9dbfacb09b 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-documents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.DeleteDocuments( databases.WithDeleteDocumentsQueries([]interface{}{}), databases.WithDeleteDocumentsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-index.md b/docs/examples/1.8.x/server-go/examples/databases/delete-index.md index 229c50ca36..f66f0c5d3d 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.DeleteIndex( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-go/examples/databases/delete-transaction.md index b06f8bf6f3..29b3874f35 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.DeleteTransaction( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/delete.md b/docs/examples/1.8.x/server-go/examples/databases/delete.md index eb7999ccb2..7e98dd2474 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-go/examples/databases/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/get-attribute.md index e1c5d10d3c..fefe010f24 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetAttribute( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get-collection.md b/docs/examples/1.8.x/server-go/examples/databases/get-collection.md index 2827eec74d..c0d0a51274 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get-collection.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetCollection( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get-document.md b/docs/examples/1.8.x/server-go/examples/databases/get-document.md index e075084f61..e81e98dd65 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get-document.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.GetDocument( databases.WithGetDocumentQueries([]interface{}{}), databases.WithGetDocumentTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get-index.md b/docs/examples/1.8.x/server-go/examples/databases/get-index.md index 54d5705211..05936c47f9 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetIndex( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-go/examples/databases/get-transaction.md index 4c15d73231..a8d0ddc724 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.GetTransaction( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/get.md b/docs/examples/1.8.x/server-go/examples/databases/get.md index c92506cf57..c32db0a1fc 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/get.md +++ b/docs/examples/1.8.x/server-go/examples/databases/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/increment-document-attribute.md index 510d6486b8..58413aabf8 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/increment-document-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.IncrementDocumentAttribute( databases.WithIncrementDocumentAttributeMax(0), databases.WithIncrementDocumentAttributeTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-go/examples/databases/list-attributes.md index 27861ed656..85ef9d2dfa 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list-attributes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListAttributes( databases.WithListAttributesQueries([]interface{}{}), databases.WithListAttributesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list-collections.md b/docs/examples/1.8.x/server-go/examples/databases/list-collections.md index 52f0da90b2..6272c38028 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list-collections.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListCollections( databases.WithListCollectionsSearch(""), databases.WithListCollectionsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list-documents.md b/docs/examples/1.8.x/server-go/examples/databases/list-documents.md index d5c0c029f4..4232df69f7 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list-documents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.ListDocuments( databases.WithListDocumentsTransactionId(""), databases.WithListDocumentsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-go/examples/databases/list-indexes.md index 9d9bb0b034..1751e9b1a1 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list-indexes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListIndexes( databases.WithListIndexesQueries([]interface{}{}), databases.WithListIndexesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-go/examples/databases/list-transactions.md index 662874bb8c..4ffcf30189 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list-transactions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := databases.New(client) response, error := service.ListTransactions( databases.WithListTransactionsQueries([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/list.md b/docs/examples/1.8.x/server-go/examples/databases/list.md index 9b7d2f76b9..30d38325a1 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/list.md +++ b/docs/examples/1.8.x/server-go/examples/databases/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( databases.WithListSearch(""), databases.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-boolean-attribute.md index bf854b0440..6424d2b652 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-boolean-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateBooleanAttribute( false, databases.WithUpdateBooleanAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-collection.md b/docs/examples/1.8.x/server-go/examples/databases/update-collection.md index 7470d5a121..18de9ff094 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-collection.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateCollection( databases.WithUpdateCollectionDocumentSecurity(false), databases.WithUpdateCollectionEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-datetime-attribute.md index d78d1b879c..d827883676 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-datetime-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateDatetimeAttribute( "", databases.WithUpdateDatetimeAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-document.md b/docs/examples/1.8.x/server-go/examples/databases/update-document.md index 51359e88d8..2c01ff3b7e 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-document.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.UpdateDocument( databases.WithUpdateDocumentPermissions(interface{}{"read("any")"}), databases.WithUpdateDocumentTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-documents.md b/docs/examples/1.8.x/server-go/examples/databases/update-documents.md index 1e1043c67d..91752020ba 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-documents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -27,3 +27,4 @@ response, error := service.UpdateDocuments( databases.WithUpdateDocumentsQueries([]interface{}{}), databases.WithUpdateDocumentsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-email-attribute.md index 728bbd7ac9..d988c2a7f7 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-email-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateEmailAttribute( "email@example.com", databases.WithUpdateEmailAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-enum-attribute.md index 86a5ea087e..4fcbc69250 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-enum-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateEnumAttribute( "", databases.WithUpdateEnumAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-float-attribute.md index 9dd04e7731..52d448dd51 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-float-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateFloatAttribute( databases.WithUpdateFloatAttributeMax(0), databases.WithUpdateFloatAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-integer-attribute.md index b9d8bf162d..d628378147 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-integer-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateIntegerAttribute( databases.WithUpdateIntegerAttributeMax(0), databases.WithUpdateIntegerAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-ip-attribute.md index fd1cfcc52d..83e0e004da 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-ip-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateIpAttribute( "", databases.WithUpdateIpAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-line-attribute.md index 209044158f..bd6f2731a5 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-line-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateLineAttribute( databases.WithUpdateLineAttributeDefault(interface{}{[1, 2], [3, 4], [5, 6]}), databases.WithUpdateLineAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-longtext-attribute.md index c6898226f6..1cdba64cae 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-longtext-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateLongtextAttribute( "", databases.WithUpdateLongtextAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-mediumtext-attribute.md index 6519c6ff6d..f84948cfed 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-mediumtext-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateMediumtextAttribute( "", databases.WithUpdateMediumtextAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-point-attribute.md index 735b4d8c64..633766d18e 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-point-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdatePointAttribute( databases.WithUpdatePointAttributeDefault(interface{}{1, 2}), databases.WithUpdatePointAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-polygon-attribute.md index 6499f3640f..d58127e1b3 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-polygon-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdatePolygonAttribute( databases.WithUpdatePolygonAttributeDefault(interface{}{[[1, 2], [3, 4], [5, 6], [1, 2]]}), databases.WithUpdatePolygonAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-relationship-attribute.md index 0c9ee73f8b..4b150eb3a9 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-relationship-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdateRelationshipAttribute( databases.WithUpdateRelationshipAttributeOnDelete("cascade"), databases.WithUpdateRelationshipAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-string-attribute.md index 0d131001fc..49231f2530 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-string-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateStringAttribute( databases.WithUpdateStringAttributeSize(1), databases.WithUpdateStringAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-text-attribute.md index ab2148b303..ca33c4f84b 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-text-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTextAttribute( "", databases.WithUpdateTextAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-go/examples/databases/update-transaction.md index 76ef4acb72..bf2cd17af2 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.UpdateTransaction( databases.WithUpdateTransactionCommit(false), databases.WithUpdateTransactionRollback(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-url-attribute.md index 56dfbf03e3..2a8ba816f0 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-url-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateUrlAttribute( "https://example.com", databases.WithUpdateUrlAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-go/examples/databases/update-varchar-attribute.md index 18ba57dc78..b3de02d62e 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update-varchar-attribute.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateVarcharAttribute( databases.WithUpdateVarcharAttributeSize(1), databases.WithUpdateVarcharAttributeNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/update.md b/docs/examples/1.8.x/server-go/examples/databases/update.md index 4aa4a4d703..ad78a8906e 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/update.md +++ b/docs/examples/1.8.x/server-go/examples/databases/update.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.Update( databases.WithUpdateName(""), databases.WithUpdateEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-go/examples/databases/upsert-document.md index 95f1c4b6ec..7f34ba2b56 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-go/examples/databases/upsert-document.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.UpsertDocument( databases.WithUpsertDocumentPermissions(interface{}{"read("any")"}), databases.WithUpsertDocumentTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-go/examples/databases/upsert-documents.md index 9088883b1f..98f0f0a7cc 100644 --- a/docs/examples/1.8.x/server-go/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-go/examples/databases/upsert-documents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.UpsertDocuments( []interface{}{}, databases.WithUpsertDocumentsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/create-deployment.md index 86eda6f07b..55ce0cef35 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreateDeployment( functions.WithCreateDeploymentEntrypoint(""), functions.WithCreateDeploymentCommands(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/create-duplicate-deployment.md index 8c01a9e305..02569d3007 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-duplicate-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateDuplicateDeployment( "", functions.WithCreateDuplicateDeploymentBuildId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-execution.md b/docs/examples/1.8.x/server-go/examples/functions/create-execution.md index 1f723b8027..1135295ddf 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-execution.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateExecution( functions.WithCreateExecutionHeaders(map[string]interface{}{}), functions.WithCreateExecutionScheduledAt(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/create-template-deployment.md index df9591f461..a6af95821f 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-template-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateTemplateDeployment( "", functions.WithCreateTemplateDeploymentActivate(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-variable.md b/docs/examples/1.8.x/server-go/examples/functions/create-variable.md index 84b68b834e..46e2f706bb 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateVariable( "", functions.WithCreateVariableSecret(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/create-vcs-deployment.md index 5ccb045569..15f4ad5bdd 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create-vcs-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateVcsDeployment( "", functions.WithCreateVcsDeploymentActivate(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/create.md b/docs/examples/1.8.x/server-go/examples/functions/create.md index 5bacf3ce34..109a7bb323 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/create.md +++ b/docs/examples/1.8.x/server-go/examples/functions/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -34,3 +34,4 @@ response, error := service.Create( functions.WithCreateProviderRootDirectory(""), functions.WithCreateSpecification(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/delete-deployment.md index 297c433652..ea8036e1f7 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/delete-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-go/examples/functions/delete-execution.md index 493488cfbc..14785b48f7 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-go/examples/functions/delete-execution.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteExecution( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-go/examples/functions/delete-variable.md index 049afed8a2..5f038ecf9c 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-go/examples/functions/delete-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteVariable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/delete.md b/docs/examples/1.8.x/server-go/examples/functions/delete.md index fe2a02d87c..5fc7bda9e1 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-go/examples/functions/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := functions.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-go/examples/functions/get-deployment-download.md index 26f14512b3..fb38995628 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-go/examples/functions/get-deployment-download.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetDeploymentDownload( "", functions.WithGetDeploymentDownloadType("source"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/get-deployment.md index f05bfd737a..f4486da18b 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/get-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/get-execution.md b/docs/examples/1.8.x/server-go/examples/functions/get-execution.md index 5fa2a32edf..6874411d6f 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-go/examples/functions/get-execution.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetExecution( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/get-variable.md b/docs/examples/1.8.x/server-go/examples/functions/get-variable.md index 78916740aa..42ac0f950d 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-go/examples/functions/get-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetVariable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/get.md b/docs/examples/1.8.x/server-go/examples/functions/get.md index 91e21e4eec..8b2f5ff682 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/get.md +++ b/docs/examples/1.8.x/server-go/examples/functions/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := functions.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-go/examples/functions/list-deployments.md index 5716984814..9a7b67ef75 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list-deployments.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListDeployments( functions.WithListDeploymentsSearch(""), functions.WithListDeploymentsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list-executions.md b/docs/examples/1.8.x/server-go/examples/functions/list-executions.md index 498d103e5e..26c945f3d9 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list-executions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListExecutions( functions.WithListExecutionsQueries([]interface{}{}), functions.WithListExecutionsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-go/examples/functions/list-runtimes.md index c40a08f149..6886aac0fb 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list-runtimes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := functions.New(client) response, error := service.ListRuntimes()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-go/examples/functions/list-specifications.md index c0a29fc3ea..9f3625b884 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list-specifications.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := functions.New(client) response, error := service.ListSpecifications()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list-variables.md b/docs/examples/1.8.x/server-go/examples/functions/list-variables.md index e71f01704b..97acd3be56 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list-variables.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := functions.New(client) response, error := service.ListVariables( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/list.md b/docs/examples/1.8.x/server-go/examples/functions/list.md index f152c15676..8c7ef658ed 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/list.md +++ b/docs/examples/1.8.x/server-go/examples/functions/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( functions.WithListSearch(""), functions.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-go/examples/functions/update-deployment-status.md index f29be75500..2d1ace6b8d 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-go/examples/functions/update-deployment-status.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateDeploymentStatus( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-go/examples/functions/update-function-deployment.md index 9e85be96b4..d733be4808 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/functions/update-function-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateFunctionDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/update-variable.md b/docs/examples/1.8.x/server-go/examples/functions/update-variable.md index aad017d81c..da009f40fe 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-go/examples/functions/update-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdateVariable( functions.WithUpdateVariableValue(""), functions.WithUpdateVariableSecret(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/functions/update.md b/docs/examples/1.8.x/server-go/examples/functions/update.md index 1e652489f0..fd3c54da14 100644 --- a/docs/examples/1.8.x/server-go/examples/functions/update.md +++ b/docs/examples/1.8.x/server-go/examples/functions/update.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -34,3 +34,4 @@ response, error := service.Update( functions.WithUpdateProviderRootDirectory(""), functions.WithUpdateSpecification(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/graphql/mutation.md b/docs/examples/1.8.x/server-go/examples/graphql/mutation.md index 04d9d58fe7..81dcfebe0f 100644 --- a/docs/examples/1.8.x/server-go/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-go/examples/graphql/mutation.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := graphql.New(client) response, error := service.Mutation( map[string]interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/graphql/query.md b/docs/examples/1.8.x/server-go/examples/graphql/query.md index 05699ad881..6ac4145ffa 100644 --- a/docs/examples/1.8.x/server-go/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-go/examples/graphql/query.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := graphql.New(client) response, error := service.Query( map[string]interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-go/examples/health/get-antivirus.md index 0d7ffcecb5..090214a1a3 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-antivirus.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetAntivirus()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-cache.md b/docs/examples/1.8.x/server-go/examples/health/get-cache.md index 1d4dd1aa68..77426d1954 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-cache.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetCache()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-certificate.md b/docs/examples/1.8.x/server-go/examples/health/get-certificate.md index 3590e97c0e..510c7e8078 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-certificate.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetCertificate( health.WithGetCertificateDomain(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-db.md b/docs/examples/1.8.x/server-go/examples/health/get-db.md index 293e8666cd..7fe0c48d88 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-db.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetDB()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-go/examples/health/get-failed-jobs.md index 7dfcc5edc8..c4f6094ea7 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-failed-jobs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetFailedJobs( "v1-database", health.WithGetFailedJobsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-go/examples/health/get-pub-sub.md index 998de3891a..f8496f1d01 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-pub-sub.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetPubSub()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-audits.md index 413a7e6cfb..4cf6d110b2 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-audits.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueAudits( health.WithGetQueueAuditsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-builds.md index 4f41ee574b..5d4c52dbdd 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-builds.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueBuilds( health.WithGetQueueBuildsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-certificates.md index 1cb06f49e6..6cb10c0b16 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-certificates.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueCertificates( health.WithGetQueueCertificatesThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-databases.md index 51ad2d8e0f..0a94e85951 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-databases.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetQueueDatabases( health.WithGetQueueDatabasesName(""), health.WithGetQueueDatabasesThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-deletes.md index 97ac4d2a0b..facce4f567 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-deletes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueDeletes( health.WithGetQueueDeletesThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-functions.md index 56c7517b44..1872334200 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-functions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueFunctions( health.WithGetQueueFunctionsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-logs.md index 76952a3167..ad6612c595 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueLogs( health.WithGetQueueLogsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-mails.md index 3d85dda4f3..3f774eeb76 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-mails.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueMails( health.WithGetQueueMailsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-messaging.md index db8a90345d..43fd08705b 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-messaging.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueMessaging( health.WithGetQueueMessagingThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-migrations.md index ae5c524662..988367c257 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-migrations.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueMigrations( health.WithGetQueueMigrationsThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-stats-resources.md index 28de62a3e1..c16e6b527d 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-stats-resources.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueStatsResources( health.WithGetQueueStatsResourcesThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-usage.md index e081c077a6..33b673d47b 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-usage.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueUsage( health.WithGetQueueUsageThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-go/examples/health/get-queue-webhooks.md index 85acb5207d..769eb1e0a9 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-queue-webhooks.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := health.New(client) response, error := service.GetQueueWebhooks( health.WithGetQueueWebhooksThreshold(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-go/examples/health/get-storage-local.md index 41b5dfaab0..13371ce0a1 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-storage-local.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetStorageLocal()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-storage.md b/docs/examples/1.8.x/server-go/examples/health/get-storage.md index 33ad742e2c..0f13f86970 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-storage.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetStorage()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get-time.md b/docs/examples/1.8.x/server-go/examples/health/get-time.md index f995ad9ddc..0c23cb5aba 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-go/examples/health/get-time.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.GetTime()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/health/get.md b/docs/examples/1.8.x/server-go/examples/health/get.md index da7e86a80d..79badcc366 100644 --- a/docs/examples/1.8.x/server-go/examples/health/get.md +++ b/docs/examples/1.8.x/server-go/examples/health/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := health.New(client) response, error := service.Get()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/get.md b/docs/examples/1.8.x/server-go/examples/locale/get.md index 87a4513d51..53e900d257 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/get.md +++ b/docs/examples/1.8.x/server-go/examples/locale/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.Get()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-codes.md b/docs/examples/1.8.x/server-go/examples/locale/list-codes.md index b204a13b07..52e0fa548d 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListCodes()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-continents.md b/docs/examples/1.8.x/server-go/examples/locale/list-continents.md index 4db9555f5e..8e80d4dd0a 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-continents.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListContinents()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-go/examples/locale/list-countries-eu.md index e46c9235c9..2766d0adfd 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-countries-eu.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListCountriesEU()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-go/examples/locale/list-countries-phones.md index 301d94db2a..5e6780726c 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-countries-phones.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListCountriesPhones()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-countries.md b/docs/examples/1.8.x/server-go/examples/locale/list-countries.md index b598adbbe0..53d68e9cec 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-countries.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListCountries()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-go/examples/locale/list-currencies.md index 5046497987..19fa31dd0d 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-currencies.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListCurrencies()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/locale/list-languages.md b/docs/examples/1.8.x/server-go/examples/locale/list-languages.md index 2737401b59..2c87f729b0 100644 --- a/docs/examples/1.8.x/server-go/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-go/examples/locale/list-languages.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := locale.New(client) response, error := service.ListLanguages()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-apns-provider.md index ae9a95eba4..3d4f560a9b 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-apns-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateAPNSProvider( messaging.WithCreateAPNSProviderSandbox(false), messaging.WithCreateAPNSProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-email.md b/docs/examples/1.8.x/server-go/examples/messaging/create-email.md index 2c9a09a396..4132185c9f 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-email.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.CreateEmail( messaging.WithCreateEmailHtml(false), messaging.WithCreateEmailScheduledAt(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-fcm-provider.md index dd6733bc0d..78c61a57a8 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-fcm-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateFCMProvider( messaging.WithCreateFCMProviderServiceAccountJSON(map[string]interface{}{}), messaging.WithCreateFCMProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-mailgun-provider.md index cbeefd4ebf..c899308f6b 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-mailgun-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -26,3 +26,4 @@ response, error := service.CreateMailgunProvider( messaging.WithCreateMailgunProviderReplyToEmail("email@example.com"), messaging.WithCreateMailgunProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-msg-91-provider.md index 3cc3f90cdf..986f6e8267 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-msg-91-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateMsg91Provider( messaging.WithCreateMsg91ProviderAuthKey(""), messaging.WithCreateMsg91ProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-push.md b/docs/examples/1.8.x/server-go/examples/messaging/create-push.md index a607f4391b..f143c53ddc 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-push.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -35,3 +35,4 @@ response, error := service.CreatePush( messaging.WithCreatePushCritical(false), messaging.WithCreatePushPriority("normal"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-resend-provider.md index a8ec0ad31e..484b1b84a2 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-resend-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateResendProvider( messaging.WithCreateResendProviderReplyToEmail("email@example.com"), messaging.WithCreateResendProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-sendgrid-provider.md index c2a6787711..4a2b1eb6f8 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-sendgrid-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateSendgridProvider( messaging.WithCreateSendgridProviderReplyToEmail("email@example.com"), messaging.WithCreateSendgridProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-go/examples/messaging/create-sms.md index cb7d62e49c..4377bdbd83 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-sms.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateSMS( messaging.WithCreateSMSDraft(false), messaging.WithCreateSMSScheduledAt(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-smtp-provider.md index c469aa57e8..3eab9c7484 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-smtp-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -30,3 +30,4 @@ response, error := service.CreateSMTPProvider( messaging.WithCreateSMTPProviderReplyToEmail("email@example.com"), messaging.WithCreateSMTPProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-go/examples/messaging/create-subscriber.md index ebc0f6bb39..1a7eff5fd5 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-subscriber.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateSubscriber( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-telesign-provider.md index 4605ad3713..b58d69eef4 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-telesign-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTelesignProvider( messaging.WithCreateTelesignProviderApiKey(""), messaging.WithCreateTelesignProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-textmagic-provider.md index 2101fab661..44c9ad70fe 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-textmagic-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTextmagicProvider( messaging.WithCreateTextmagicProviderApiKey(""), messaging.WithCreateTextmagicProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-go/examples/messaging/create-topic.md index 71814b8d86..814d0c60c0 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-topic.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateTopic( "", messaging.WithCreateTopicSubscribe(interface{}{"any"}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-twilio-provider.md index 931a2538fa..44efd6f2ef 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-twilio-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTwilioProvider( messaging.WithCreateTwilioProviderAuthToken(""), messaging.WithCreateTwilioProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/create-vonage-provider.md index 6ef3576137..6b8b9273d9 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/create-vonage-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateVonageProvider( messaging.WithCreateVonageProviderApiSecret(""), messaging.WithCreateVonageProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/delete-provider.md index f2a07bbb3c..380af9522a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/delete-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.DeleteProvider( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-go/examples/messaging/delete-subscriber.md index dd8b9889ae..4c43bd6e2a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/delete-subscriber.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteSubscriber( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-go/examples/messaging/delete-topic.md index 7ebf870539..0b7a41ac44 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/delete-topic.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.DeleteTopic( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/delete.md b/docs/examples/1.8.x/server-go/examples/messaging/delete.md index f8400c6993..ae083ae418 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/get-message.md b/docs/examples/1.8.x/server-go/examples/messaging/get-message.md index ff1b8fa05b..1de4e42e63 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/get-message.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.GetMessage( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/get-provider.md index 34781802bf..b043da7a8a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/get-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.GetProvider( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-go/examples/messaging/get-subscriber.md index 7774204ca6..dd11117ab4 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/get-subscriber.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetSubscriber( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-go/examples/messaging/get-topic.md index 2f258be446..5e03fa4845 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/get-topic.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := messaging.New(client) response, error := service.GetTopic( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-go/examples/messaging/list-message-logs.md index b633f8ae73..d74027c0ca 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-message-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListMessageLogs( messaging.WithListMessageLogsQueries([]interface{}{}), messaging.WithListMessageLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-go/examples/messaging/list-messages.md index 6eb2284f1a..cd16ed42ce 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-messages.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListMessages( messaging.WithListMessagesSearch(""), messaging.WithListMessagesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-go/examples/messaging/list-provider-logs.md index ba42f32d73..9df76276ef 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-provider-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListProviderLogs( messaging.WithListProviderLogsQueries([]interface{}{}), messaging.WithListProviderLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-go/examples/messaging/list-providers.md index 27df6f1cbe..f8cb65a83d 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-providers.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListProviders( messaging.WithListProvidersSearch(""), messaging.WithListProvidersTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-go/examples/messaging/list-subscriber-logs.md index 82aadb5d06..101b8e64b6 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-subscriber-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListSubscriberLogs( messaging.WithListSubscriberLogsQueries([]interface{}{}), messaging.WithListSubscriberLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-go/examples/messaging/list-subscribers.md index fbdb03633e..cef28f57ac 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-subscribers.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListSubscribers( messaging.WithListSubscribersSearch(""), messaging.WithListSubscribersTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-go/examples/messaging/list-targets.md index c268993ba7..a6eb01e38a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-targets.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListTargets( messaging.WithListTargetsQueries([]interface{}{}), messaging.WithListTargetsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-go/examples/messaging/list-topic-logs.md index 3777f61f3f..b5382cf60a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-topic-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListTopicLogs( messaging.WithListTopicLogsQueries([]interface{}{}), messaging.WithListTopicLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-go/examples/messaging/list-topics.md index d4198f4818..dd0a267580 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/list-topics.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListTopics( messaging.WithListTopicsSearch(""), messaging.WithListTopicsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-apns-provider.md index f8c12e88ad..35c14a1ad6 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-apns-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateAPNSProvider( messaging.WithUpdateAPNSProviderBundleId(""), messaging.WithUpdateAPNSProviderSandbox(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-email.md b/docs/examples/1.8.x/server-go/examples/messaging/update-email.md index 91d6ad900f..c2af766b7c 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-email.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.UpdateEmail( messaging.WithUpdateEmailScheduledAt(""), messaging.WithUpdateEmailAttachments([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-fcm-provider.md index 28fd91534b..9dad736b85 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-fcm-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.UpdateFCMProvider( messaging.WithUpdateFCMProviderEnabled(false), messaging.WithUpdateFCMProviderServiceAccountJSON(map[string]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-mailgun-provider.md index d5f17b3d25..cfc39cf0c2 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-mailgun-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -26,3 +26,4 @@ response, error := service.UpdateMailgunProvider( messaging.WithUpdateMailgunProviderReplyToName(""), messaging.WithUpdateMailgunProviderReplyToEmail(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-msg-91-provider.md index 825d2d4940..a4ef402bbd 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-msg-91-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateMsg91Provider( messaging.WithUpdateMsg91ProviderSenderId(""), messaging.WithUpdateMsg91ProviderAuthKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-push.md b/docs/examples/1.8.x/server-go/examples/messaging/update-push.md index d364159e35..408c4499f7 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-push.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -35,3 +35,4 @@ response, error := service.UpdatePush( messaging.WithUpdatePushCritical(false), messaging.WithUpdatePushPriority("normal"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-resend-provider.md index d67320f478..a789f94c79 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-resend-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateResendProvider( messaging.WithUpdateResendProviderReplyToName(""), messaging.WithUpdateResendProviderReplyToEmail(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-sendgrid-provider.md index 4a9f822c58..a4e2ccbb37 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-sendgrid-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateSendgridProvider( messaging.WithUpdateSendgridProviderReplyToName(""), messaging.WithUpdateSendgridProviderReplyToEmail(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-go/examples/messaging/update-sms.md index 988de20082..6e2a1c4fc0 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-sms.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateSMS( messaging.WithUpdateSMSDraft(false), messaging.WithUpdateSMSScheduledAt(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-smtp-provider.md index 1519750183..134e179a1a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-smtp-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -30,3 +30,4 @@ response, error := service.UpdateSMTPProvider( messaging.WithUpdateSMTPProviderReplyToEmail(""), messaging.WithUpdateSMTPProviderEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-telesign-provider.md index d00c6b6eb1..17754740da 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-telesign-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTelesignProvider( messaging.WithUpdateTelesignProviderApiKey(""), messaging.WithUpdateTelesignProviderFrom(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-textmagic-provider.md index 38e1bed245..fc6a2bad3a 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-textmagic-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTextmagicProvider( messaging.WithUpdateTextmagicProviderApiKey(""), messaging.WithUpdateTextmagicProviderFrom(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-go/examples/messaging/update-topic.md index f7c0044bc3..b99be27fc3 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-topic.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.UpdateTopic( messaging.WithUpdateTopicName(""), messaging.WithUpdateTopicSubscribe(interface{}{"any"}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-twilio-provider.md index 644d6d87d5..3593e3f8f5 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-twilio-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTwilioProvider( messaging.WithUpdateTwilioProviderAuthToken(""), messaging.WithUpdateTwilioProviderFrom(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-go/examples/messaging/update-vonage-provider.md index 01ebeb3334..55fd89353b 100644 --- a/docs/examples/1.8.x/server-go/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-go/examples/messaging/update-vonage-provider.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateVonageProvider( messaging.WithUpdateVonageProviderApiSecret(""), messaging.WithUpdateVonageProviderFrom(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/create-deployment.md index 1c85372388..0812343efc 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateDeployment( sites.WithCreateDeploymentBuildCommand(""), sites.WithCreateDeploymentOutputDirectory(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/create-duplicate-deployment.md index 177dc48b57..91991a8cf6 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create-duplicate-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.CreateDuplicateDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/create-template-deployment.md index 85bf2a3cf6..ba25052130 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create-template-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateTemplateDeployment( "", sites.WithCreateTemplateDeploymentActivate(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create-variable.md b/docs/examples/1.8.x/server-go/examples/sites/create-variable.md index 7681f0d561..89e901db09 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateVariable( "", sites.WithCreateVariableSecret(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/create-vcs-deployment.md index 2e39147d6b..e864a4af80 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create-vcs-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateVcsDeployment( "", sites.WithCreateVcsDeploymentActivate(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/create.md b/docs/examples/1.8.x/server-go/examples/sites/create.md index e011baf92c..0f96d3bd7f 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/create.md +++ b/docs/examples/1.8.x/server-go/examples/sites/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -34,3 +34,4 @@ response, error := service.Create( sites.WithCreateProviderRootDirectory(""), sites.WithCreateSpecification(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/delete-deployment.md index 36d313344a..54fb88bd82 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/delete-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/delete-log.md b/docs/examples/1.8.x/server-go/examples/sites/delete-log.md index 34a77611f2..d1c4214c2c 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-go/examples/sites/delete-log.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteLog( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-go/examples/sites/delete-variable.md index 00e6c5c4f7..5bd7eb6f48 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-go/examples/sites/delete-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteVariable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/delete.md b/docs/examples/1.8.x/server-go/examples/sites/delete.md index 4a93cdb12c..3b91edb2b3 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-go/examples/sites/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := sites.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-go/examples/sites/get-deployment-download.md index b3f1101bc0..e035f95ad4 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-go/examples/sites/get-deployment-download.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetDeploymentDownload( "", sites.WithGetDeploymentDownloadType("source"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/get-deployment.md index 28f4917467..adfd543260 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/get-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/get-log.md b/docs/examples/1.8.x/server-go/examples/sites/get-log.md index 1d5aacb2f0..bd2615a047 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-go/examples/sites/get-log.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetLog( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/get-variable.md b/docs/examples/1.8.x/server-go/examples/sites/get-variable.md index 91f1a0d1ea..b6e4cf4c7a 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-go/examples/sites/get-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetVariable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/get.md b/docs/examples/1.8.x/server-go/examples/sites/get.md index 9c1f38da3d..4f64875040 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/get.md +++ b/docs/examples/1.8.x/server-go/examples/sites/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := sites.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-go/examples/sites/list-deployments.md index 626e89c84e..64bfb4e1a0 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list-deployments.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListDeployments( sites.WithListDeploymentsSearch(""), sites.WithListDeploymentsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-go/examples/sites/list-frameworks.md index d876ac1acf..1432172f31 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list-frameworks.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := sites.New(client) response, error := service.ListFrameworks()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list-logs.md b/docs/examples/1.8.x/server-go/examples/sites/list-logs.md index 969c766071..764e3f5272 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListLogs( sites.WithListLogsQueries([]interface{}{}), sites.WithListLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-go/examples/sites/list-specifications.md index f3a46b225f..50e65c982c 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list-specifications.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -15,3 +15,4 @@ client := client.New( service := sites.New(client) response, error := service.ListSpecifications()) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list-variables.md b/docs/examples/1.8.x/server-go/examples/sites/list-variables.md index 18d1e48033..c6f2d5256c 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list-variables.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := sites.New(client) response, error := service.ListVariables( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/list.md b/docs/examples/1.8.x/server-go/examples/sites/list.md index b6b39ebf06..1be9a3fef6 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/list.md +++ b/docs/examples/1.8.x/server-go/examples/sites/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( sites.WithListSearch(""), sites.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-go/examples/sites/update-deployment-status.md index 29dad9b1f6..a903b10449 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-go/examples/sites/update-deployment-status.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateDeploymentStatus( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-go/examples/sites/update-site-deployment.md index 176d641073..0da851cc1e 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-go/examples/sites/update-site-deployment.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateSiteDeployment( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/update-variable.md b/docs/examples/1.8.x/server-go/examples/sites/update-variable.md index 99879be702..65eb96c733 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-go/examples/sites/update-variable.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdateVariable( sites.WithUpdateVariableValue(""), sites.WithUpdateVariableSecret(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/sites/update.md b/docs/examples/1.8.x/server-go/examples/sites/update.md index fee0eb8bf6..c4b51a5410 100644 --- a/docs/examples/1.8.x/server-go/examples/sites/update.md +++ b/docs/examples/1.8.x/server-go/examples/sites/update.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -34,3 +34,4 @@ response, error := service.Update( sites.WithUpdateProviderRootDirectory(""), sites.WithUpdateSpecification(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-go/examples/storage/create-bucket.md index 7bec2acb68..ab2e7585a4 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-go/examples/storage/create-bucket.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -27,3 +27,4 @@ response, error := service.CreateBucket( storage.WithCreateBucketAntivirus(false), storage.WithCreateBucketTransformations(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/create-file.md b/docs/examples/1.8.x/server-go/examples/storage/create-file.md index b195c66a8f..6ef78081ca 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-go/examples/storage/create-file.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateFile( file.NewInputFile("/path/to/file.png", "file.png"), storage.WithCreateFilePermissions(interface{}{"read("any")"}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-go/examples/storage/delete-bucket.md index 8142212a9f..78b1130f6c 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-go/examples/storage/delete-bucket.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := storage.New(client) response, error := service.DeleteBucket( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/delete-file.md b/docs/examples/1.8.x/server-go/examples/storage/delete-file.md index af3f921c56..f096b8d503 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-go/examples/storage/delete-file.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteFile( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-go/examples/storage/get-bucket.md index c52ebbe004..a694eb2c8e 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-go/examples/storage/get-bucket.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := storage.New(client) response, error := service.GetBucket( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-go/examples/storage/get-file-download.md index bc1d7333be..a8ebc8f4e1 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-go/examples/storage/get-file-download.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetFileDownload( "", storage.WithGetFileDownloadToken(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-go/examples/storage/get-file-preview.md index 956fbd191d..50606e7b70 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-go/examples/storage/get-file-preview.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -30,3 +30,4 @@ response, error := service.GetFilePreview( storage.WithGetFilePreviewOutput("jpg"), storage.WithGetFilePreviewToken(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-go/examples/storage/get-file-view.md index a2189750be..9863f3253a 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-go/examples/storage/get-file-view.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetFileView( "", storage.WithGetFileViewToken(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/get-file.md b/docs/examples/1.8.x/server-go/examples/storage/get-file.md index 383d4052da..6c971a39b2 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-go/examples/storage/get-file.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetFile( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-go/examples/storage/list-buckets.md index 34b7ee789f..2b8e0e56e8 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-go/examples/storage/list-buckets.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListBuckets( storage.WithListBucketsSearch(""), storage.WithListBucketsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/list-files.md b/docs/examples/1.8.x/server-go/examples/storage/list-files.md index d764f53a2d..98c2870e69 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-go/examples/storage/list-files.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListFiles( storage.WithListFilesSearch(""), storage.WithListFilesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-go/examples/storage/update-bucket.md index 7092c688b1..4400ac7a9d 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-go/examples/storage/update-bucket.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -27,3 +27,4 @@ response, error := service.UpdateBucket( storage.WithUpdateBucketAntivirus(false), storage.WithUpdateBucketTransformations(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/storage/update-file.md b/docs/examples/1.8.x/server-go/examples/storage/update-file.md index 79a75bab4c..832b516908 100644 --- a/docs/examples/1.8.x/server-go/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-go/examples/storage/update-file.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.UpdateFile( storage.WithUpdateFileName(""), storage.WithUpdateFilePermissions(interface{}{"read("any")"}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-boolean-column.md index 6b35615487..8cbb0bcb4f 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-boolean-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateBooleanColumn( tablesdb.WithCreateBooleanColumnDefault(false), tablesdb.WithCreateBooleanColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-datetime-column.md index 24a8aa7567..9aeb34d1ce 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-datetime-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateDatetimeColumn( tablesdb.WithCreateDatetimeColumnDefault(""), tablesdb.WithCreateDatetimeColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-email-column.md index 918b3785c4..4be8468d32 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-email-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateEmailColumn( tablesdb.WithCreateEmailColumnDefault("email@example.com"), tablesdb.WithCreateEmailColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-enum-column.md index 9eaef4be4c..ba2ea3e40f 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-enum-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateEnumColumn( tablesdb.WithCreateEnumColumnDefault(""), tablesdb.WithCreateEnumColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-float-column.md index f630565e39..5b49596be1 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-float-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateFloatColumn( tablesdb.WithCreateFloatColumnDefault(0), tablesdb.WithCreateFloatColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-index.md index fb292b9914..17fb5a6b4d 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateIndex( tablesdb.WithCreateIndexOrders([]interface{}{}), tablesdb.WithCreateIndexLengths([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-integer-column.md index a56f5eec8b..cde5a199d7 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-integer-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateIntegerColumn( tablesdb.WithCreateIntegerColumnDefault(0), tablesdb.WithCreateIntegerColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-ip-column.md index 358b4cfa4b..1c3a85ca7b 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-ip-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateIpColumn( tablesdb.WithCreateIpColumnDefault(""), tablesdb.WithCreateIpColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-line-column.md index 77b23f872c..2b9c936a64 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-line-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreateLineColumn( false, tablesdb.WithCreateLineColumnDefault(interface{}{[1, 2], [3, 4], [5, 6]}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-longtext-column.md index 910816db82..e70c5f8293 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-longtext-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateLongtextColumn( tablesdb.WithCreateLongtextColumnDefault(""), tablesdb.WithCreateLongtextColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-mediumtext-column.md index caed197595..d0be55dde4 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-mediumtext-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateMediumtextColumn( tablesdb.WithCreateMediumtextColumnDefault(""), tablesdb.WithCreateMediumtextColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-operations.md index 330ece2bb9..cfa6af89f3 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-operations.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.CreateOperations( } }), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-point-column.md index 7faaf786f8..4cc55ca2ef 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-point-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreatePointColumn( false, tablesdb.WithCreatePointColumnDefault(interface{}{1, 2}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-polygon-column.md index 10946ef0fd..cbe41a69e5 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-polygon-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreatePolygonColumn( false, tablesdb.WithCreatePolygonColumnDefault(interface{}{[[1, 2], [3, 4], [5, 6], [1, 2]]}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-relationship-column.md index 0423509787..54234cde72 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-relationship-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateRelationshipColumn( tablesdb.WithCreateRelationshipColumnTwoWayKey(""), tablesdb.WithCreateRelationshipColumnOnDelete("cascade"), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-row.md index 24054ace1d..8b80923c0f 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-row.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.CreateRow( tablesdb.WithCreateRowPermissions(interface{}{"read("any")"}), tablesdb.WithCreateRowTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-rows.md index 6ddeb067db..5e21ac3921 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-rows.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateRows( []interface{}{}, tablesdb.WithCreateRowsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-string-column.md index b31f583806..d216f31573 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-string-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateStringColumn( tablesdb.WithCreateStringColumnArray(false), tablesdb.WithCreateStringColumnEncrypt(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-table.md index c5e1826fe6..d0f641d543 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-table.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.CreateTable( tablesdb.WithCreateTableColumns([]interface{}{}), tablesdb.WithCreateTableIndexes([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-text-column.md index 2b989d4a87..ac0bdebf32 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-text-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTextColumn( tablesdb.WithCreateTextColumnDefault(""), tablesdb.WithCreateTextColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-transaction.md index 165f897cf8..329f383273 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.CreateTransaction( tablesdb.WithCreateTransactionTtl(60), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-url-column.md index 55abd16818..6ef9358258 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-url-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateUrlColumn( tablesdb.WithCreateUrlColumnDefault("https://example.com"), tablesdb.WithCreateUrlColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create-varchar-column.md index 99cce5dcc5..a7fb0b8d56 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create-varchar-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateVarcharColumn( tablesdb.WithCreateVarcharColumnDefault(""), tablesdb.WithCreateVarcharColumnArray(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/create.md b/docs/examples/1.8.x/server-go/examples/tablesdb/create.md index d09b6aeab8..0e166483f8 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.Create( "", tablesdb.WithCreateEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/decrement-row-column.md index a74bdda219..3e8c07fa2c 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/decrement-row-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.DecrementRowColumn( tablesdb.WithDecrementRowColumnMin(0), tablesdb.WithDecrementRowColumnTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-column.md index 475f4a4e8c..7f2d05e2da 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.DeleteColumn( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-index.md index 2c3b7759af..aa39c4f8e9 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.DeleteIndex( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-row.md index 39338452bc..25ef2f4d40 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-row.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.DeleteRow( "", tablesdb.WithDeleteRowTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-rows.md index b9fa49b5fb..0b6a8f8421 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-rows.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.DeleteRows( tablesdb.WithDeleteRowsQueries([]interface{}{}), tablesdb.WithDeleteRowsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-table.md index 9274fc61b5..3e727d91e5 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-table.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteTable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-transaction.md index 16ee050534..bb3227cda3 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.DeleteTransaction( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-go/examples/tablesdb/delete.md index fb00bf0666..d25cf1dea4 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get-column.md index 2cb626f921..8af6ece61c 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetColumn( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get-index.md index a289d5efeb..eca7875c36 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get-index.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.GetIndex( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get-row.md index 025c6b55a1..e979dd0bd6 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get-row.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.GetRow( tablesdb.WithGetRowQueries([]interface{}{}), tablesdb.WithGetRowTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get-table.md index eb42f82c16..b966971957 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get-table.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetTable( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get-transaction.md index d478007b62..3e61d85be2 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.GetTransaction( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/get.md b/docs/examples/1.8.x/server-go/examples/tablesdb/get.md index 9bf18901b6..76ce9ee33e 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/increment-row-column.md index 4548f3cbb1..7f70d12d96 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/increment-row-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.IncrementRowColumn( tablesdb.WithIncrementRowColumnMax(0), tablesdb.WithIncrementRowColumnTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list-columns.md index 9a7f4099cb..85808790fd 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list-columns.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListColumns( tablesdb.WithListColumnsQueries([]interface{}{}), tablesdb.WithListColumnsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list-indexes.md index 826c55dcf2..95902ea19a 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list-indexes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListIndexes( tablesdb.WithListIndexesQueries([]interface{}{}), tablesdb.WithListIndexesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list-rows.md index 5a421ef675..3d1bc88b86 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list-rows.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.ListRows( tablesdb.WithListRowsTransactionId(""), tablesdb.WithListRowsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list-tables.md index b9f7714514..51b87c7844 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list-tables.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListTables( tablesdb.WithListTablesSearch(""), tablesdb.WithListTablesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list-transactions.md index 7379d8555e..c3d1138ff7 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list-transactions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tablesdb.New(client) response, error := service.ListTransactions( tablesdb.WithListTransactionsQueries([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/list.md b/docs/examples/1.8.x/server-go/examples/tablesdb/list.md index aba33d9ca7..493342fa18 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( tablesdb.WithListSearch(""), tablesdb.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-boolean-column.md index 9b0bdd302e..c6f8c6a949 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-boolean-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateBooleanColumn( false, tablesdb.WithUpdateBooleanColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-datetime-column.md index 9c406cae6c..955ba1fa38 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-datetime-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateDatetimeColumn( "", tablesdb.WithUpdateDatetimeColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-email-column.md index 74483f31e3..920b035df8 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-email-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateEmailColumn( "email@example.com", tablesdb.WithUpdateEmailColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-enum-column.md index f215172565..c2d6c278e4 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-enum-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateEnumColumn( "", tablesdb.WithUpdateEnumColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-float-column.md index 9daf2c2236..3f440fa4a9 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-float-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateFloatColumn( tablesdb.WithUpdateFloatColumnMax(0), tablesdb.WithUpdateFloatColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-integer-column.md index 86a113522c..a8bfcd5256 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-integer-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -24,3 +24,4 @@ response, error := service.UpdateIntegerColumn( tablesdb.WithUpdateIntegerColumnMax(0), tablesdb.WithUpdateIntegerColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-ip-column.md index 1c4bdb4f96..7ff8880e55 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-ip-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateIpColumn( "", tablesdb.WithUpdateIpColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-line-column.md index 397e0b735a..1cc52e180d 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-line-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateLineColumn( tablesdb.WithUpdateLineColumnDefault(interface{}{[1, 2], [3, 4], [5, 6]}), tablesdb.WithUpdateLineColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-longtext-column.md index 604e35c06f..0c6884f26a 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-longtext-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateLongtextColumn( "", tablesdb.WithUpdateLongtextColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-mediumtext-column.md index 144cd74457..4cea1945f0 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-mediumtext-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateMediumtextColumn( "", tablesdb.WithUpdateMediumtextColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-point-column.md index 970536a6af..2bc417a615 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-point-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdatePointColumn( tablesdb.WithUpdatePointColumnDefault(interface{}{1, 2}), tablesdb.WithUpdatePointColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-polygon-column.md index 8e627d178d..3fa00d8642 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-polygon-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdatePolygonColumn( tablesdb.WithUpdatePolygonColumnDefault(interface{}{[[1, 2], [3, 4], [5, 6], [1, 2]]}), tablesdb.WithUpdatePolygonColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-relationship-column.md index ed923a2d33..52614c99c8 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-relationship-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdateRelationshipColumn( tablesdb.WithUpdateRelationshipColumnOnDelete("cascade"), tablesdb.WithUpdateRelationshipColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-row.md index 212be5b298..43f7bb4983 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-row.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.UpdateRow( tablesdb.WithUpdateRowPermissions(interface{}{"read("any")"}), tablesdb.WithUpdateRowTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-rows.md index 706abaeee4..57043152c5 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-rows.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -27,3 +27,4 @@ response, error := service.UpdateRows( tablesdb.WithUpdateRowsQueries([]interface{}{}), tablesdb.WithUpdateRowsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-string-column.md index 4366602bd8..f312df089e 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-string-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateStringColumn( tablesdb.WithUpdateStringColumnSize(1), tablesdb.WithUpdateStringColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-table.md index a40cd59794..22406bd72a 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-table.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTable( tablesdb.WithUpdateTableRowSecurity(false), tablesdb.WithUpdateTableEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-text-column.md index dc41787252..68228aa7db 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-text-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateTextColumn( "", tablesdb.WithUpdateTextColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-transaction.md index 9842a4555c..97f314269b 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-transaction.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.UpdateTransaction( tablesdb.WithUpdateTransactionCommit(false), tablesdb.WithUpdateTransactionRollback(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-url-column.md index 998d0e773f..8e47006750 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-url-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.UpdateUrlColumn( "https://example.com", tablesdb.WithUpdateUrlColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update-varchar-column.md index 97dfb74489..b43f4a6539 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update-varchar-column.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.UpdateVarcharColumn( tablesdb.WithUpdateVarcharColumnSize(1), tablesdb.WithUpdateVarcharColumnNewKey(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/update.md b/docs/examples/1.8.x/server-go/examples/tablesdb/update.md index 47641efc9c..36aab8eddf 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/update.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.Update( tablesdb.WithUpdateName(""), tablesdb.WithUpdateEnabled(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-row.md index 097b355083..6c225ed71d 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-row.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -28,3 +28,4 @@ response, error := service.UpsertRow( tablesdb.WithUpsertRowPermissions(interface{}{"read("any")"}), tablesdb.WithUpsertRowTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-rows.md index a74d6ee9b1..2fa6772cbd 100644 --- a/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-go/examples/tablesdb/upsert-rows.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.UpsertRows( []interface{}{}, tablesdb.WithUpsertRowsTransactionId(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/create-membership.md b/docs/examples/1.8.x/server-go/examples/teams/create-membership.md index b8a71c188e..39838c7d94 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-go/examples/teams/create-membership.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateMembership( teams.WithCreateMembershipUrl("https://example.com"), teams.WithCreateMembershipName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/create.md b/docs/examples/1.8.x/server-go/examples/teams/create.md index 0a0fa5aae6..c8287a15bf 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/create.md +++ b/docs/examples/1.8.x/server-go/examples/teams/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.Create( "", teams.WithCreateRoles([]interface{}{}), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-go/examples/teams/delete-membership.md index 1d9e19832d..3f5d08644d 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-go/examples/teams/delete-membership.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteMembership( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/delete.md b/docs/examples/1.8.x/server-go/examples/teams/delete.md index 8cf9892daa..3500cd3da1 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-go/examples/teams/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := teams.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/get-membership.md b/docs/examples/1.8.x/server-go/examples/teams/get-membership.md index 47d63bbb2b..9d4bce877e 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-go/examples/teams/get-membership.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetMembership( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-go/examples/teams/get-prefs.md index fd487d2c79..10dc2e2924 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/teams/get-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := teams.New(client) response, error := service.GetPrefs( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/get.md b/docs/examples/1.8.x/server-go/examples/teams/get.md index 64dfb9b633..c68d5602f4 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/get.md +++ b/docs/examples/1.8.x/server-go/examples/teams/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := teams.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-go/examples/teams/list-memberships.md index 8b71afe738..38c3a98b9a 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-go/examples/teams/list-memberships.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListMemberships( teams.WithListMembershipsSearch(""), teams.WithListMembershipsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/list.md b/docs/examples/1.8.x/server-go/examples/teams/list.md index 177763727c..8cb1935ea3 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/list.md +++ b/docs/examples/1.8.x/server-go/examples/teams/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( teams.WithListSearch(""), teams.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-go/examples/teams/update-membership-status.md index 72bb53e065..48a56a9a07 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-go/examples/teams/update-membership-status.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.UpdateMembershipStatus( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/update-membership.md b/docs/examples/1.8.x/server-go/examples/teams/update-membership.md index 4bfde07218..60c98abb6c 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-go/examples/teams/update-membership.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.UpdateMembership( "", []interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/update-name.md b/docs/examples/1.8.x/server-go/examples/teams/update-name.md index 02fba6b4bd..b1c8a105d7 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-go/examples/teams/update-name.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateName( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-go/examples/teams/update-prefs.md index a5f44c079f..a7a0898411 100644 --- a/docs/examples/1.8.x/server-go/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/teams/update-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePrefs( "", map[string]interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-go/examples/tokens/create-file-token.md index b05e5f7e4d..1a91211f96 100644 --- a/docs/examples/1.8.x/server-go/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-go/examples/tokens/create-file-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateFileToken( "", tokens.WithCreateFileTokenExpire(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tokens/delete.md b/docs/examples/1.8.x/server-go/examples/tokens/delete.md index 807ba41025..dd9ec5cad9 100644 --- a/docs/examples/1.8.x/server-go/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-go/examples/tokens/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tokens.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tokens/get.md b/docs/examples/1.8.x/server-go/examples/tokens/get.md index 277e46210a..a1da068ce9 100644 --- a/docs/examples/1.8.x/server-go/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-go/examples/tokens/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := tokens.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tokens/list.md b/docs/examples/1.8.x/server-go/examples/tokens/list.md index e84ee1e335..dd97e7b9c5 100644 --- a/docs/examples/1.8.x/server-go/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-go/examples/tokens/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.List( tokens.WithListQueries([]interface{}{}), tokens.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/tokens/update.md b/docs/examples/1.8.x/server-go/examples/tokens/update.md index b4bbc5476f..06fd47bb45 100644 --- a/docs/examples/1.8.x/server-go/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-go/examples/tokens/update.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.Update( "", tokens.WithUpdateExpire(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-go/examples/users/create-argon-2-user.md index f5b651a1e8..53fd9df731 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-argon-2-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateArgon2User( "password", users.WithCreateArgon2UserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-go/examples/users/create-bcrypt-user.md index b021f96ff5..d1b70a3bc4 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-bcrypt-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateBcryptUser( "password", users.WithCreateBcryptUserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-jwt.md b/docs/examples/1.8.x/server-go/examples/users/create-jwt.md index 426f832ba0..16fc507feb 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-jwt.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateJWT( users.WithCreateJWTSessionId(""), users.WithCreateJWTDuration(0), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-go/examples/users/create-md-5-user.md index 0da3f6877e..d700ca0162 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-md-5-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreateMD5User( "password", users.WithCreateMD5UserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/users/create-mfa-recovery-codes.md index 4808f63329..56a886d68c 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.CreateMFARecoveryCodes( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-go/examples/users/create-ph-pass-user.md index 28e77e3749..635fa95e11 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-ph-pass-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.CreatePHPassUser( "password", users.WithCreatePHPassUserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-go/examples/users/create-scrypt-modified-user.md index 51cc11bfa3..a729da2e01 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-scrypt-modified-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -23,3 +23,4 @@ response, error := service.CreateScryptModifiedUser( "", users.WithCreateScryptModifiedUserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-go/examples/users/create-scrypt-user.md index a64fcfbb29..9bbad82f27 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-scrypt-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -25,3 +25,4 @@ response, error := service.CreateScryptUser( 0, users.WithCreateScryptUserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-session.md b/docs/examples/1.8.x/server-go/examples/users/create-session.md index 7bbd39de91..ce2274d168 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.CreateSession( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-go/examples/users/create-sha-user.md index 721159851b..c86ef43dfa 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-sha-user.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.CreateSHAUser( users.WithCreateSHAUserPasswordVersion("sha1"), users.WithCreateSHAUserName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-target.md b/docs/examples/1.8.x/server-go/examples/users/create-target.md index 8d4f2841b1..b2fcfa3ce8 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-target.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -22,3 +22,4 @@ response, error := service.CreateTarget( users.WithCreateTargetProviderId(""), users.WithCreateTargetName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create-token.md b/docs/examples/1.8.x/server-go/examples/users/create-token.md index 44d96c1f70..24819206cc 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-go/examples/users/create-token.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.CreateToken( users.WithCreateTokenLength(4), users.WithCreateTokenExpire(60), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/create.md b/docs/examples/1.8.x/server-go/examples/users/create.md index b4d1afca6b..67efc1f505 100644 --- a/docs/examples/1.8.x/server-go/examples/users/create.md +++ b/docs/examples/1.8.x/server-go/examples/users/create.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.Create( users.WithCreatePassword(""), users.WithCreateName(""), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete-identity.md b/docs/examples/1.8.x/server-go/examples/users/delete-identity.md index 14baa6607d..d30bd7b5c3 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete-identity.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.DeleteIdentity( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-go/examples/users/delete-mfa-authenticator.md index d32a5c3e31..70032f0c71 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete-mfa-authenticator.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteMFAAuthenticator( "", "totp", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete-session.md b/docs/examples/1.8.x/server-go/examples/users/delete-session.md index 3162ae92b4..739e68f87c 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete-session.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteSession( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-go/examples/users/delete-sessions.md index 8d0bbfc155..a34165e7bf 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete-sessions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.DeleteSessions( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete-target.md b/docs/examples/1.8.x/server-go/examples/users/delete-target.md index 2fa4ae910a..f5f4652ae1 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete-target.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.DeleteTarget( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/delete.md b/docs/examples/1.8.x/server-go/examples/users/delete.md index 72a4122b0f..275ed29191 100644 --- a/docs/examples/1.8.x/server-go/examples/users/delete.md +++ b/docs/examples/1.8.x/server-go/examples/users/delete.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.Delete( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/users/get-mfa-recovery-codes.md index ff24b6ff9c..c715a5e93c 100644 --- a/docs/examples/1.8.x/server-go/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/users/get-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.GetMFARecoveryCodes( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/get-prefs.md b/docs/examples/1.8.x/server-go/examples/users/get-prefs.md index e4a05d1ce3..baefd16575 100644 --- a/docs/examples/1.8.x/server-go/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/users/get-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.GetPrefs( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/get-target.md b/docs/examples/1.8.x/server-go/examples/users/get-target.md index b4b99c7ef7..3bbb9ced2d 100644 --- a/docs/examples/1.8.x/server-go/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-go/examples/users/get-target.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.GetTarget( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/get.md b/docs/examples/1.8.x/server-go/examples/users/get.md index 85a8440dee..027de175f3 100644 --- a/docs/examples/1.8.x/server-go/examples/users/get.md +++ b/docs/examples/1.8.x/server-go/examples/users/get.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.Get( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-identities.md b/docs/examples/1.8.x/server-go/examples/users/list-identities.md index 9858a2a288..a90722fdda 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-identities.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListIdentities( users.WithListIdentitiesSearch(""), users.WithListIdentitiesTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-logs.md b/docs/examples/1.8.x/server-go/examples/users/list-logs.md index d3b2840bdb..b0d43f9add 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-logs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListLogs( users.WithListLogsQueries([]interface{}{}), users.WithListLogsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-memberships.md b/docs/examples/1.8.x/server-go/examples/users/list-memberships.md index 28b96dae89..e549b80697 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-memberships.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -20,3 +20,4 @@ response, error := service.ListMemberships( users.WithListMembershipsSearch(""), users.WithListMembershipsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-go/examples/users/list-mfa-factors.md index 9a3c32631d..73eb2ae0eb 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-mfa-factors.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.ListMFAFactors( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-sessions.md b/docs/examples/1.8.x/server-go/examples/users/list-sessions.md index 60ccd7880a..cc1be95262 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-sessions.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.ListSessions( "", users.WithListSessionsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list-targets.md b/docs/examples/1.8.x/server-go/examples/users/list-targets.md index 1e73882553..668b4aa78f 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-go/examples/users/list-targets.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.ListTargets( users.WithListTargetsQueries([]interface{}{}), users.WithListTargetsTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/list.md b/docs/examples/1.8.x/server-go/examples/users/list.md index b50a818f5b..d8e10dd6a8 100644 --- a/docs/examples/1.8.x/server-go/examples/users/list.md +++ b/docs/examples/1.8.x/server-go/examples/users/list.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -19,3 +19,4 @@ response, error := service.List( users.WithListSearch(""), users.WithListTotal(false), ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-go/examples/users/update-email-verification.md index c2326b4c91..16471be50f 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-email-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateEmailVerification( "", false, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-email.md b/docs/examples/1.8.x/server-go/examples/users/update-email.md index ac3938a637..3e88c9d0e2 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-email.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateEmail( "", "email@example.com", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-labels.md b/docs/examples/1.8.x/server-go/examples/users/update-labels.md index 01c37f53ac..96e56c2b69 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-labels.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateLabels( "", []interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-go/examples/users/update-mfa-recovery-codes.md index f79ac5c575..60d3598270 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-mfa-recovery-codes.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -17,3 +17,4 @@ service := users.New(client) response, error := service.UpdateMFARecoveryCodes( "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-mfa.md b/docs/examples/1.8.x/server-go/examples/users/update-mfa.md index 9cff007fe0..92042ee93b 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-mfa.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateMFA( "", false, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-name.md b/docs/examples/1.8.x/server-go/examples/users/update-name.md index 73255e25bc..af06cc5513 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-name.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateName( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-password.md b/docs/examples/1.8.x/server-go/examples/users/update-password.md index 5aa6e9ef6e..64e838d9fe 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-password.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePassword( "", "", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-go/examples/users/update-phone-verification.md index e90febf7d6..60727a4337 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-phone-verification.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePhoneVerification( "", false, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-phone.md b/docs/examples/1.8.x/server-go/examples/users/update-phone.md index 602a012a2d..98750707a1 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-phone.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePhone( "", "+12065550100", ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-prefs.md b/docs/examples/1.8.x/server-go/examples/users/update-prefs.md index dd607f3c42..3f4926fcfe 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-prefs.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdatePrefs( "", map[string]interface{}{}, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-status.md b/docs/examples/1.8.x/server-go/examples/users/update-status.md index f93dde9c39..391bb1b2e3 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-status.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -18,3 +18,4 @@ response, error := service.UpdateStatus( "", false, ) +``` diff --git a/docs/examples/1.8.x/server-go/examples/users/update-target.md b/docs/examples/1.8.x/server-go/examples/users/update-target.md index 82f3d65de4..3529b117e3 100644 --- a/docs/examples/1.8.x/server-go/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-go/examples/users/update-target.md @@ -1,4 +1,4 @@ -package main +```gopackage main import ( "fmt" @@ -21,3 +21,4 @@ response, error := service.UpdateTarget( users.WithUpdateTargetProviderId(""), users.WithUpdateTargetName(""), ) +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-graphql/examples/account/create-anonymous-session.md index 92c12acee5..c040efb8c6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateAnonymousSession { _id @@ -31,3 +32,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-graphql/examples/account/create-email-password-session.md index 931bb4add0..c68a4feb24 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailPasswordSession( email: "email@example.com", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-email-token.md b/docs/examples/1.8.x/server-graphql/examples/account/create-email-token.md index de320b45ed..f9db2e2cce 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailToken( userId: "", @@ -12,3 +13,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/create-email-verification.md index 1781188527..3a4c559b2a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateEmailVerification( url: "https://example.com" @@ -10,3 +11,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-jwt.md b/docs/examples/1.8.x/server-graphql/examples/account/create-jwt.md index 364b6c309a..8bc8f9acdc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateJWT( duration: 0 @@ -5,3 +6,4 @@ mutation { jwt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-graphql/examples/account/create-magic-url-token.md index 4024a5b3a9..59b2c94f20 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMagicURLToken( userId: "", @@ -13,3 +14,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-authenticator.md index 8605340168..a3920a1972 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMFAAuthenticator( type: "totp" @@ -6,3 +7,4 @@ mutation { uri } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-challenge.md index aff5a10123..3da400f67c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateMFAChallenge( factor: "email" @@ -8,3 +9,4 @@ mutation { expire } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-recovery-codes.md index 4cb6d36d42..9f1c3596eb 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-mfa-recovery-codes.md @@ -1,5 +1,7 @@ +```graphql mutation { accountCreateMFARecoveryCodes { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-graphql/examples/account/create-phone-token.md index b56c4eb4e4..e382df55c3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreatePhoneToken( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/create-phone-verification.md index a4cad59b1a..88ce51a147 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreatePhoneVerification { _id @@ -8,3 +9,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-recovery.md b/docs/examples/1.8.x/server-graphql/examples/account/create-recovery.md index ad31fd82d7..f72f5a6532 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateRecovery( email: "email@example.com", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-session.md b/docs/examples/1.8.x/server-graphql/examples/account/create-session.md index f473d14207..b5dda77e1a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/create-verification.md index df50dda529..818efe4dd5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreateVerification( url: "https://example.com" @@ -10,3 +11,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/create.md b/docs/examples/1.8.x/server-graphql/examples/account/create.md index 0d39394a3d..e61fc41587 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/create.md @@ -1,3 +1,4 @@ +```graphql mutation { accountCreate( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/delete-identity.md b/docs/examples/1.8.x/server-graphql/examples/account/delete-identity.md index f3c2e2e7b9..d984a934bc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteIdentity( identityId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-graphql/examples/account/delete-mfa-authenticator.md index 03e876e3f9..7c78bc3177 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteMFAAuthenticator( type: "totp" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/delete-session.md b/docs/examples/1.8.x/server-graphql/examples/account/delete-session.md index 09aff38fdd..36c3de994e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountDeleteSession( sessionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-graphql/examples/account/delete-sessions.md index b0d61daa81..65f6900e55 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/delete-sessions.md @@ -1,5 +1,7 @@ +```graphql mutation { accountDeleteSessions { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/account/get-mfa-recovery-codes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/get-mfa-recovery-codes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/get-prefs.md b/docs/examples/1.8.x/server-graphql/examples/account/get-prefs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/get-prefs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/get-session.md b/docs/examples/1.8.x/server-graphql/examples/account/get-session.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/get-session.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/get.md b/docs/examples/1.8.x/server-graphql/examples/account/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/list-identities.md b/docs/examples/1.8.x/server-graphql/examples/account/list-identities.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/list-identities.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/list-logs.md b/docs/examples/1.8.x/server-graphql/examples/account/list-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/list-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-graphql/examples/account/list-mfa-factors.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/list-mfa-factors.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/list-sessions.md b/docs/examples/1.8.x/server-graphql/examples/account/list-sessions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/list-sessions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/update-email-verification.md index 6386d34bfa..9a045dd80e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateEmailVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-email.md b/docs/examples/1.8.x/server-graphql/examples/account/update-email.md index c879e24a43..d9c9bb1e02 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-email.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateEmail( email: "email@example.com", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-graphql/examples/account/update-magic-url-session.md index 075bc91d17..92ad9693de 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMagicURLSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-authenticator.md index b3021b70b8..95ff9024a0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFAAuthenticator( type: "totp", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-challenge.md index bf389f1eff..d3a438cf0e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFAChallenge( challengeId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-recovery-codes.md index dc46be71ad..5f0c5c2d69 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa-recovery-codes.md @@ -1,5 +1,7 @@ +```graphql mutation { accountUpdateMFARecoveryCodes { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa.md b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa.md index 787c2e0860..d94c8790e6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateMFA( mfa: false @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-name.md b/docs/examples/1.8.x/server-graphql/examples/account/update-name.md index 8ba2c99d9c..172eecefa3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-name.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateName( name: "" @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-password.md b/docs/examples/1.8.x/server-graphql/examples/account/update-password.md index f3619a10d2..c3213c500f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-password.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePassword( password: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-graphql/examples/account/update-phone-session.md index 199e774ab0..aa054709d2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhoneSession( userId: "", @@ -34,3 +35,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/update-phone-verification.md index dd62298bb9..2122d41bef 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhoneVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-phone.md b/docs/examples/1.8.x/server-graphql/examples/account/update-phone.md index adecb71168..6ae27cad43 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePhone( phone: "+12065550100", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-prefs.md b/docs/examples/1.8.x/server-graphql/examples/account/update-prefs.md index 8138cf0227..c1a5669d64 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdatePrefs( prefs: "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}" @@ -35,3 +36,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-recovery.md b/docs/examples/1.8.x/server-graphql/examples/account/update-recovery.md index 2d15fdcaa1..90933c1658 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateRecovery( userId: "", @@ -12,3 +13,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-session.md b/docs/examples/1.8.x/server-graphql/examples/account/update-session.md index 29a8979872..c045df3c14 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-session.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateSession( sessionId: "" @@ -33,3 +34,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-status.md b/docs/examples/1.8.x/server-graphql/examples/account/update-status.md index c17f556842..6e46018101 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-status.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateStatus { _id @@ -33,3 +34,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/account/update-verification.md b/docs/examples/1.8.x/server-graphql/examples/account/update-verification.md index 11e63c7da3..927ce49530 100644 --- a/docs/examples/1.8.x/server-graphql/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { accountUpdateVerification( userId: "", @@ -11,3 +12,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-browser.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-browser.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-credit-card.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-credit-card.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-favicon.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-favicon.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-flag.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-flag.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-image.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-image.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-image.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-initials.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-initials.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-qr.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-qr.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-graphql/examples/avatars/get-screenshot.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-graphql/examples/avatars/get-screenshot.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-boolean-attribute.md index aa0bfa832e..a75e61bc17 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateBooleanAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-collection.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-collection.md index 429c25cd4a..ef34307975 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateCollection( databaseId: "", @@ -32,3 +33,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-datetime-attribute.md index 47601df0d8..434dc76fda 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateDatetimeAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-document.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-document.md index 411615f7a7..a4a363b975 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-documents.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-documents.md index 01a8914d0e..67d038e934 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateDocuments( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-email-attribute.md index e5845ccd47..12586b17ad 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateEmailAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-enum-attribute.md index d13c080e4a..cc0dda3bea 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateEnumAttribute( databaseId: "", @@ -21,3 +22,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-float-attribute.md index 2a270c3aff..062eaacb62 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateFloatAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-index.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-index.md index 38e64980b2..78bb8ac691 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateIndex( databaseId: "", @@ -20,3 +21,4 @@ mutation { orders } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-integer-attribute.md index 8c79706817..9782ca0442 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateIntegerAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-ip-attribute.md index 0f4ad9e139..330f4cb06d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateIpAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-line-attribute.md index 3ecff7a87d..8a5acc52bd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateLineAttribute( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-longtext-attribute.md index 6678df3df2..825896d33f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateLongtextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-mediumtext-attribute.md index 422cb6c4ec..1e05444f45 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateMediumtextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-operations.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-operations.md index 1be3b39ee1..7fa29cf3f8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateOperations( transactionId: "", @@ -21,3 +22,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-point-attribute.md index f3ba5285d4..72cd57c90c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreatePointAttribute( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-polygon-attribute.md index 19caa389a5..620002d4bf 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreatePolygonAttribute( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-relationship-attribute.md index f66b87d6af..6e9dbaf322 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateRelationshipAttribute( databaseId: "", @@ -25,3 +26,4 @@ mutation { side } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-string-attribute.md index 489f9ce015..53d5225e74 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateStringAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { encrypt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-text-attribute.md index 200ac0a5f6..767836d672 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateTextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-transaction.md index 7fea034ab6..d28f2eadce 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateTransaction( ttl: 60 @@ -10,3 +11,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-url-attribute.md index 89ad873e52..84d9143788 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateUrlAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/create-varchar-attribute.md index 8e0ee11f34..42e8e1a701 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreateVarcharAttribute( databaseId: "", @@ -20,3 +21,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/create.md b/docs/examples/1.8.x/server-graphql/examples/databases/create.md index 6058ddc8be..6ffb9e3847 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/create.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesCreate( databaseId: "", @@ -12,3 +13,4 @@ mutation { type } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/decrement-document-attribute.md index e6032fd0e7..4db00c0ae1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDecrementDocumentAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-attribute.md index af0f9d6615..fee0e65902 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteAttribute( databaseId: "", @@ -7,3 +8,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-collection.md index 8683bd87a4..6d6db5b1a3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteCollection( databaseId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-document.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-document.md index 2e172aa5dd..f6d166b0c2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteDocument( databaseId: "", @@ -8,3 +9,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-documents.md index aed5f6333f..6cf4405ca6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteDocuments( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-index.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-index.md index a2389cf9d4..faff680db0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteIndex( databaseId: "", @@ -7,3 +8,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete-transaction.md index cd29a0b8a6..9230d0c853 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDeleteTransaction( transactionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/delete.md b/docs/examples/1.8.x/server-graphql/examples/databases/delete.md index 7cd4c92341..a5fc46409b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesDelete( databaseId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/get-attribute.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get-attribute.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get-collection.md b/docs/examples/1.8.x/server-graphql/examples/databases/get-collection.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get-collection.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get-document.md b/docs/examples/1.8.x/server-graphql/examples/databases/get-document.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get-document.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get-index.md b/docs/examples/1.8.x/server-graphql/examples/databases/get-index.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get-index.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-graphql/examples/databases/get-transaction.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get-transaction.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/get.md b/docs/examples/1.8.x/server-graphql/examples/databases/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/increment-document-attribute.md index 3518ff1583..58e462f582 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesIncrementDocumentAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-graphql/examples/databases/list-attributes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list-attributes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list-collections.md b/docs/examples/1.8.x/server-graphql/examples/databases/list-collections.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list-collections.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list-documents.md b/docs/examples/1.8.x/server-graphql/examples/databases/list-documents.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list-documents.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-graphql/examples/databases/list-indexes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list-indexes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-graphql/examples/databases/list-transactions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list-transactions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/list.md b/docs/examples/1.8.x/server-graphql/examples/databases/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-boolean-attribute.md index d508e62139..7992c1b401 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateBooleanAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-collection.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-collection.md index ad43b879d2..aee04931c7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateCollection( databaseId: "", @@ -30,3 +31,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-datetime-attribute.md index a21b910edc..25c4870ce9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateDatetimeAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-document.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-document.md index 056a5bed4e..fc1ce5cb12 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-documents.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-documents.md index 45913eb005..b9773fce20 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateDocuments( databaseId: "", @@ -19,3 +20,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-email-attribute.md index 6c83d80e16..8c4c012a44 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateEmailAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-enum-attribute.md index 378e32f9b8..ed85916ab0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateEnumAttribute( databaseId: "", @@ -21,3 +22,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-float-attribute.md index c70232e749..58a159664a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateFloatAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-integer-attribute.md index b24af5f260..fb4fe9c451 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateIntegerAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-ip-attribute.md index 7a26224200..e479611031 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateIpAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-line-attribute.md index 2f96ecf958..9553f8e288 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateLineAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-longtext-attribute.md index 51ba97a3e0..88e09c4220 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateLongtextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-mediumtext-attribute.md index f62e29e7b6..080943da9c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateMediumtextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-point-attribute.md index b031c3a6ea..c1cda34f5d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdatePointAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-polygon-attribute.md index 59498299c6..eecd7d3a52 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdatePolygonAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-relationship-attribute.md index 6694540d93..9a85150298 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateRelationshipAttribute( databaseId: "", @@ -22,3 +23,4 @@ mutation { side } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-string-attribute.md index f9398c9ca1..ff3151f9c5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateStringAttribute( databaseId: "", @@ -21,3 +22,4 @@ mutation { encrypt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-text-attribute.md index c1b7a8aab3..acdad41d17 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateTextAttribute( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-transaction.md index b56c7139ac..a2d8cb145b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateTransaction( transactionId: "", @@ -12,3 +13,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-url-attribute.md index f9f14a04f6..7b8c470921 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateUrlAttribute( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-graphql/examples/databases/update-varchar-attribute.md index bf75a8263d..af0141ff2a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdateVarcharAttribute( databaseId: "", @@ -20,3 +21,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/update.md b/docs/examples/1.8.x/server-graphql/examples/databases/update.md index bbb7bc6156..446029196e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/update.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpdate( databaseId: "", @@ -12,3 +13,4 @@ mutation { type } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-graphql/examples/databases/upsert-document.md index 6d54d7ad10..5d095baa9b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpsertDocument( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-graphql/examples/databases/upsert-documents.md index 7852ba93f8..eb05735458 100644 --- a/docs/examples/1.8.x/server-graphql/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-graphql/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```graphql mutation { databasesUpsertDocuments( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-deployment.md index 3751448e57..3655e29ae1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```graphql POST /v1/functions/{functionId}/deployments HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -22,3 +23,4 @@ Content-Disposition: form-data; name="0"; filename="code.ext" File contents --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-duplicate-deployment.md index bc3587fcec..4838d04038 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateDuplicateDeployment( functionId: "", @@ -33,3 +34,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-execution.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-execution.md index ff0ecbe739..88a157599d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateExecution( functionId: "", @@ -34,3 +35,4 @@ mutation { scheduledAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-template-deployment.md index 9b0da7ec47..57a0cf475a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateTemplateDeployment( functionId: "", @@ -37,3 +38,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-variable.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-variable.md index 6c64922320..c0332cee68 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateVariable( functionId: "", @@ -15,3 +16,4 @@ mutation { resourceId } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/create-vcs-deployment.md index 60a78c41ca..3bedd7a85a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreateVcsDeployment( functionId: "", @@ -34,3 +35,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/create.md b/docs/examples/1.8.x/server-graphql/examples/functions/create.md index 2df77be8ec..116810259c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/create.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsCreate( functionId: "", @@ -58,3 +59,4 @@ mutation { specification } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/delete-deployment.md index 8d83f28d4f..7ea06f5dd2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsDeleteDeployment( functionId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-graphql/examples/functions/delete-execution.md index c6e950afc9..f0d5160756 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsDeleteExecution( functionId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-graphql/examples/functions/delete-variable.md index 9bc2d9b6e6..b0c4110ef3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsDeleteVariable( functionId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/delete.md b/docs/examples/1.8.x/server-graphql/examples/functions/delete.md index db019bf376..b941489afb 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsDelete( functionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment-download.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment-download.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/get-deployment.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/get-execution.md b/docs/examples/1.8.x/server-graphql/examples/functions/get-execution.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/get-execution.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/get-variable.md b/docs/examples/1.8.x/server-graphql/examples/functions/get-variable.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/get-variable.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/get.md b/docs/examples/1.8.x/server-graphql/examples/functions/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-graphql/examples/functions/list-deployments.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list-deployments.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list-executions.md b/docs/examples/1.8.x/server-graphql/examples/functions/list-executions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list-executions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-graphql/examples/functions/list-runtimes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list-runtimes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-graphql/examples/functions/list-specifications.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list-specifications.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list-variables.md b/docs/examples/1.8.x/server-graphql/examples/functions/list-variables.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list-variables.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/list.md b/docs/examples/1.8.x/server-graphql/examples/functions/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-graphql/examples/functions/update-deployment-status.md index 68735b35ca..2097e12019 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsUpdateDeploymentStatus( functionId: "", @@ -32,3 +33,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-graphql/examples/functions/update-function-deployment.md index 3ff2220fda..b401f73dd6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsUpdateFunctionDeployment( functionId: "", @@ -42,3 +43,4 @@ mutation { specification } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/update-variable.md b/docs/examples/1.8.x/server-graphql/examples/functions/update-variable.md index 15c8e3bdf3..a1eededb93 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsUpdateVariable( functionId: "", @@ -16,3 +17,4 @@ mutation { resourceId } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/functions/update.md b/docs/examples/1.8.x/server-graphql/examples/functions/update.md index 7510cdc50d..7ca5c1b098 100644 --- a/docs/examples/1.8.x/server-graphql/examples/functions/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/functions/update.md @@ -1,3 +1,4 @@ +```graphql mutation { functionsUpdate( functionId: "", @@ -58,3 +59,4 @@ mutation { specification } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-graphql/examples/health/get-antivirus.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-antivirus.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-cache.md b/docs/examples/1.8.x/server-graphql/examples/health/get-cache.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-cache.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-certificate.md b/docs/examples/1.8.x/server-graphql/examples/health/get-certificate.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-certificate.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-db.md b/docs/examples/1.8.x/server-graphql/examples/health/get-db.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-db.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-graphql/examples/health/get-failed-jobs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-failed-jobs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-graphql/examples/health/get-pub-sub.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-pub-sub.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-audits.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-audits.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-builds.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-builds.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-certificates.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-certificates.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-databases.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-databases.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-deletes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-deletes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-functions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-functions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-mails.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-mails.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-messaging.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-messaging.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-migrations.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-migrations.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-stats-resources.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-stats-resources.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-usage.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-usage.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-webhooks.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-queue-webhooks.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-graphql/examples/health/get-storage-local.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-storage-local.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-storage.md b/docs/examples/1.8.x/server-graphql/examples/health/get-storage.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-storage.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get-time.md b/docs/examples/1.8.x/server-graphql/examples/health/get-time.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get-time.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/health/get.md b/docs/examples/1.8.x/server-graphql/examples/health/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/health/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/health/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/get.md b/docs/examples/1.8.x/server-graphql/examples/locale/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-codes.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-codes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-codes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-continents.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-continents.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-continents.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-eu.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-eu.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-phones.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries-phones.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-countries.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-currencies.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-currencies.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/locale/list-languages.md b/docs/examples/1.8.x/server-graphql/examples/locale/list-languages.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-graphql/examples/locale/list-languages.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-apns-provider.md index 7e2f1480e9..851a801544 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateAPNSProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-email.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-email.md index a1e35aad19..3d1eda0f94 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateEmail( messageId: "", @@ -28,3 +29,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-fcm-provider.md index b2e524536f..d531a2d6d3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateFCMProvider( providerId: "", @@ -16,3 +17,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-mailgun-provider.md index 9da1e23847..7bed67d7ef 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateMailgunProvider( providerId: "", @@ -22,3 +23,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-msg-91-provider.md index ddaf2d4c2b..130aa6e6fb 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateMsg91Provider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-push.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-push.md index dc924dfd32..1bf5847afb 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreatePush( messageId: "", @@ -35,3 +36,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-resend-provider.md index 799cd19f96..afb9a56b9e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateResendProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-sendgrid-provider.md index cda0652d67..709e17e696 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateSendgridProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-sms.md index 1adeff586f..7cd514c27b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateSMS( messageId: "", @@ -23,3 +24,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-smtp-provider.md index ea16765677..f8f944ccfc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateSMTPProvider( providerId: "", @@ -26,3 +27,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-subscriber.md index bab53612b7..50d67e14f9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateSubscriber( topicId: "", @@ -25,3 +26,4 @@ mutation { providerType } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-telesign-provider.md index 7960a8427f..cffc2d92a4 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateTelesignProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-textmagic-provider.md index e082097b70..5456ed54cd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateTextmagicProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-topic.md index 6216c4cda5..cb4c07fb29 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateTopic( topicId: "", @@ -14,3 +15,4 @@ mutation { subscribe } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-twilio-provider.md index ac14d1d32b..ee0dee81a0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateTwilioProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/create-vonage-provider.md index ca7a710896..73604b7374 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingCreateVonageProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-provider.md index 8d9ac35953..5c8e46cd8c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingDeleteProvider( providerId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-subscriber.md index ededffcaac..81c5558adc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingDeleteSubscriber( topicId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-topic.md index e49cd1ed91..c25fe8deaf 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingDeleteTopic( topicId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/delete.md b/docs/examples/1.8.x/server-graphql/examples/messaging/delete.md index 495557ef18..c7a525be96 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingDelete( messageId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/get-message.md b/docs/examples/1.8.x/server-graphql/examples/messaging/get-message.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/get-message.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/get-provider.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/get-provider.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-graphql/examples/messaging/get-subscriber.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/get-subscriber.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-graphql/examples/messaging/get-topic.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/get-topic.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-message-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-message-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-messages.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-messages.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-provider-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-provider-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-providers.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-providers.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscriber-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscriber-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscribers.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-subscribers.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-targets.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-targets.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-topic-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-topic-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-graphql/examples/messaging/list-topics.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/list-topics.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-apns-provider.md index c1eb27aaeb..7659ce2bc9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateAPNSProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-email.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-email.md index 1d1302efc4..ff005c77d9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateEmail( messageId: "", @@ -28,3 +29,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-fcm-provider.md index db3be401ee..a2f6407170 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateFCMProvider( providerId: "", @@ -16,3 +17,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-mailgun-provider.md index 6c26d52ff2..a7842eb817 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateMailgunProvider( providerId: "", @@ -22,3 +23,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-msg-91-provider.md index a6552a4734..433051f585 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateMsg91Provider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-push.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-push.md index 3436e0cf2f..8f0343bf08 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdatePush( messageId: "", @@ -35,3 +36,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-resend-provider.md index a66316d805..153c0239c7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateResendProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-sendgrid-provider.md index 319dcea461..79b4a5c6fa 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateSendgridProvider( providerId: "", @@ -20,3 +21,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-sms.md index e056cd6d8a..60d7eff540 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateSMS( messageId: "", @@ -23,3 +24,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-smtp-provider.md index dada7d3fb3..c56c012b33 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateSMTPProvider( providerId: "", @@ -26,3 +27,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-telesign-provider.md index c9c96c0d5d..d442b62801 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateTelesignProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-textmagic-provider.md index 3fd68ed8e9..7754889bbd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateTextmagicProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-topic.md index 8d3dc84c72..8a9121399f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateTopic( topicId: "", @@ -14,3 +15,4 @@ mutation { subscribe } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-twilio-provider.md index 6f10839567..3069e78bc0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateTwilioProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-graphql/examples/messaging/update-vonage-provider.md index f42670a428..0dce8721b8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-graphql/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```graphql mutation { messagingUpdateVonageProvider( providerId: "", @@ -18,3 +19,4 @@ mutation { options } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/create-deployment.md index 26970a18a8..70745d66fc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```graphql POST /v1/sites/{siteId}/deployments HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -22,3 +23,4 @@ Content-Disposition: form-data; name="0"; filename="code.ext" File contents --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/create-duplicate-deployment.md index 1b2d3dc131..598ed8c4ac 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesCreateDuplicateDeployment( siteId: "", @@ -32,3 +33,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/create-template-deployment.md index f528811cc3..8c449e086c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesCreateTemplateDeployment( siteId: "", @@ -37,3 +38,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create-variable.md b/docs/examples/1.8.x/server-graphql/examples/sites/create-variable.md index 6bc92de43a..8aff775d86 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesCreateVariable( siteId: "", @@ -15,3 +16,4 @@ mutation { resourceId } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/create-vcs-deployment.md index 6c5241e734..ef9b8aeb28 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesCreateVcsDeployment( siteId: "", @@ -34,3 +35,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/create.md b/docs/examples/1.8.x/server-graphql/examples/sites/create.md index bb89ac9344..ed9e172659 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/create.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesCreate( siteId: "", @@ -59,3 +60,4 @@ mutation { fallbackFile } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/delete-deployment.md index 443a951cee..cc7ed0d0dd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesDeleteDeployment( siteId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/delete-log.md b/docs/examples/1.8.x/server-graphql/examples/sites/delete-log.md index 60f27218c0..b10099edc3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesDeleteLog( siteId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-graphql/examples/sites/delete-variable.md index 2f86eddff1..39d44d8717 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesDeleteVariable( siteId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/delete.md b/docs/examples/1.8.x/server-graphql/examples/sites/delete.md index 35138f6d4f..3be9a17ba6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesDelete( siteId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment-download.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment-download.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/get-deployment.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/get-log.md b/docs/examples/1.8.x/server-graphql/examples/sites/get-log.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/get-log.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/get-variable.md b/docs/examples/1.8.x/server-graphql/examples/sites/get-variable.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/get-variable.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/get.md b/docs/examples/1.8.x/server-graphql/examples/sites/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-graphql/examples/sites/list-deployments.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list-deployments.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-graphql/examples/sites/list-frameworks.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list-frameworks.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list-logs.md b/docs/examples/1.8.x/server-graphql/examples/sites/list-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-graphql/examples/sites/list-specifications.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list-specifications.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list-variables.md b/docs/examples/1.8.x/server-graphql/examples/sites/list-variables.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list-variables.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/list.md b/docs/examples/1.8.x/server-graphql/examples/sites/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-graphql/examples/sites/update-deployment-status.md index 24064428e2..4bb5c59778 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesUpdateDeploymentStatus( siteId: "", @@ -32,3 +33,4 @@ mutation { providerBranchUrl } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-graphql/examples/sites/update-site-deployment.md index 6c09c03735..fb42f305b4 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesUpdateSiteDeployment( siteId: "", @@ -43,3 +44,4 @@ mutation { fallbackFile } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/update-variable.md b/docs/examples/1.8.x/server-graphql/examples/sites/update-variable.md index 240dca60f3..05a8a186c2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesUpdateVariable( siteId: "", @@ -16,3 +17,4 @@ mutation { resourceId } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/sites/update.md b/docs/examples/1.8.x/server-graphql/examples/sites/update.md index 801eca3161..18a99c8fac 100644 --- a/docs/examples/1.8.x/server-graphql/examples/sites/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/sites/update.md @@ -1,3 +1,4 @@ +```graphql mutation { sitesUpdate( siteId: "", @@ -59,3 +60,4 @@ mutation { fallbackFile } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-graphql/examples/storage/create-bucket.md index dfee4096fa..ef644aebd2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```graphql mutation { storageCreateBucket( bucketId: "", @@ -28,3 +29,4 @@ mutation { totalSize } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/create-file.md b/docs/examples/1.8.x/server-graphql/examples/storage/create-file.md index 70bf6cbb1f..6be388e2be 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```graphql POST /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -24,3 +25,4 @@ Content-Disposition: form-data; name="0"; filename="file.ext" File contents --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-graphql/examples/storage/delete-bucket.md index 3dadd1f072..ac2022e96e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```graphql mutation { storageDeleteBucket( bucketId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/delete-file.md b/docs/examples/1.8.x/server-graphql/examples/storage/delete-file.md index 17ec89931a..c36fa0e94c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```graphql mutation { storageDeleteFile( bucketId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-graphql/examples/storage/get-bucket.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/get-bucket.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-download.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-download.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-preview.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-preview.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-view.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/get-file-view.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/get-file.md b/docs/examples/1.8.x/server-graphql/examples/storage/get-file.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/get-file.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-graphql/examples/storage/list-buckets.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/list-buckets.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/list-files.md b/docs/examples/1.8.x/server-graphql/examples/storage/list-files.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/list-files.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-graphql/examples/storage/update-bucket.md index ed4dc7a663..471b3a80b7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```graphql mutation { storageUpdateBucket( bucketId: "", @@ -28,3 +29,4 @@ mutation { totalSize } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/storage/update-file.md b/docs/examples/1.8.x/server-graphql/examples/storage/update-file.md index 492f1e979a..422596fe94 100644 --- a/docs/examples/1.8.x/server-graphql/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-graphql/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```graphql mutation { storageUpdateFile( bucketId: "", @@ -20,3 +21,4 @@ mutation { compression } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md index e137c6bd3d..1a213224c6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateBooleanColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md index bad8c08bd4..84b6d454e7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateDatetimeColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md index 76d286f934..bef3c65ba2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateEmailColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md index 7a7b2d3950..99e1c261d9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateEnumColumn( databaseId: "", @@ -21,3 +22,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md index 46cb266032..fa997684f9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateFloatColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md index 530ac45773..3762cec57c 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateIndex( databaseId: "", @@ -20,3 +21,4 @@ mutation { orders } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md index 96e232a16d..15b00e0d69 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateIntegerColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md index 5e48bbe805..4687ab38c0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateIpColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-line-column.md index 67fed4416c..8946781cbc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateLineColumn( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-longtext-column.md index a09deeefee..ecf8dda657 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateLongtextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-mediumtext-column.md index 55c5389caf..f44c58e9a6 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateMediumtextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-operations.md index bb2be8085a..f5721ece9e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateOperations( transactionId: "", @@ -21,3 +22,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-point-column.md index 20f31dc9c1..c735aa6eb1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreatePointColumn( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-polygon-column.md index 7f349c03b9..1ace48d212 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreatePolygonColumn( databaseId: "", @@ -17,3 +18,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md index 9ecd70ab55..4dcc341203 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateRelationshipColumn( databaseId: "", @@ -25,3 +26,4 @@ mutation { side } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md index 109bc008d6..2de9bda395 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md index 9364b5676d..9a93b02fac 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateRows( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md index 453e692aae..a5f21275dd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateStringColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { encrypt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md index 1fb339f0d3..382d3ff024 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateTable( databaseId: "", @@ -32,3 +33,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-text-column.md index dc9a3c53bb..2c62a203a7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateTextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-transaction.md index 0e874f0c78..2ecb303104 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateTransaction( ttl: 60 @@ -10,3 +11,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md index 0fdbba66c2..96e24f2944 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateUrlColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-varchar-column.md index d53f7efa2a..a70005e5cc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreateVarcharColumn( databaseId: "", @@ -20,3 +21,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md index 5e3490229b..8f5fe1a706 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBCreate( databaseId: "", @@ -12,3 +13,4 @@ mutation { type } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md index 1d57d79b54..981013c72f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDecrementRowColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md index 5e7011bc6a..d0b4efe4e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteColumn( databaseId: "", @@ -7,3 +8,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md index 3d58300005..e3332158f2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteIndex( databaseId: "", @@ -7,3 +8,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md index 3b44913049..0acff213ec 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteRow( databaseId: "", @@ -8,3 +9,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md index 9dae8fc679..6fa0a40fd9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteRows( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md index 9894ba4cc5..a377f661e5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteTable( databaseId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-transaction.md index 4a2d6f15a2..e12bd209a0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDeleteTransaction( transactionId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md index 4c6bd3e645..066f034a52 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBDelete( databaseId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-column.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-column.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-index.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-index.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-row.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-row.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-table.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-table.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-transaction.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get-transaction.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md index 3ae008e718..6d2b7e47a5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBIncrementRowColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-columns.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-columns.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-indexes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-indexes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-rows.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-rows.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-tables.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-tables.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-transactions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list-transactions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md index 11fb782eeb..1f6350d5b5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateBooleanColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md index 5e7cf0b761..de4ce44b3e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateDatetimeColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md index 16274b798d..a582cacba1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateEmailColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md index a14745bad9..d6b433f826 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateEnumColumn( databaseId: "", @@ -21,3 +22,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md index 6320721bd0..85f31aa701 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateFloatColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md index 57d7b27fec..93e10604ef 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateIntegerColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md index c14f286718..1db9349f56 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateIpColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-line-column.md index ebb7bb1749..4e02852184 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateLineColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-longtext-column.md index 11cb0f3d47..4cb7c31542 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateLongtextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-mediumtext-column.md index 57484ecb26..71f9ec2d14 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateMediumtextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-point-column.md index 81d75c3b19..937342dd67 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdatePointColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-polygon-column.md index 3b291a452c..f0994a8e8f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdatePolygonColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md index 95ebb86fdd..3a99c8932b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateRelationshipColumn( databaseId: "", @@ -22,3 +23,4 @@ mutation { side } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md index a0fd284f95..5210f16e3a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md index 1b77bda3fd..7fcae06204 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateRows( databaseId: "", @@ -19,3 +20,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md index cbbebf632a..bf081cf7a9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateStringColumn( databaseId: "", @@ -21,3 +22,4 @@ mutation { encrypt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md index b19a3603b2..5fad43ef31 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateTable( databaseId: "", @@ -30,3 +31,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-text-column.md index 1939abe03d..b939561a67 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateTextColumn( databaseId: "", @@ -18,3 +19,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-transaction.md index 2094877303..0d0986b85b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateTransaction( transactionId: "", @@ -12,3 +13,4 @@ mutation { expiresAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md index a823846347..93fca77d59 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateUrlColumn( databaseId: "", @@ -19,3 +20,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-varchar-column.md index 2ddc608e7c..1e75a80754 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdateVarcharColumn( databaseId: "", @@ -20,3 +21,4 @@ mutation { default } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md index 9c77c69735..3b7a43e449 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpdate( databaseId: "", @@ -12,3 +13,4 @@ mutation { type } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md index ed5309cab8..8b085a9759 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpsertRow( databaseId: "", @@ -17,3 +18,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md index bbfc09c763..fe106a6d57 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```graphql mutation { tablesDBUpsertRows( databaseId: "", @@ -18,3 +19,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/create-membership.md b/docs/examples/1.8.x/server-graphql/examples/teams/create-membership.md index fe741f080d..edea065a78 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsCreateMembership( teamId: "", @@ -23,3 +24,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/create.md b/docs/examples/1.8.x/server-graphql/examples/teams/create.md index 1f2a7ab3f2..c31af8335d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/create.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsCreate( teamId: "", @@ -14,3 +15,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-graphql/examples/teams/delete-membership.md index e391b6f6fa..297d486894 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsDeleteMembership( teamId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/delete.md b/docs/examples/1.8.x/server-graphql/examples/teams/delete.md index df0d36c5b5..924ab91c96 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsDelete( teamId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/get-membership.md b/docs/examples/1.8.x/server-graphql/examples/teams/get-membership.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/get-membership.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-graphql/examples/teams/get-prefs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/get-prefs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/get.md b/docs/examples/1.8.x/server-graphql/examples/teams/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-graphql/examples/teams/list-memberships.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/list-memberships.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/list.md b/docs/examples/1.8.x/server-graphql/examples/teams/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-graphql/examples/teams/update-membership-status.md index 9b24450a86..1791a65e75 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateMembershipStatus( teamId: "", @@ -20,3 +21,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/update-membership.md b/docs/examples/1.8.x/server-graphql/examples/teams/update-membership.md index 1c6a04f078..acaa6136ad 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateMembership( teamId: "", @@ -19,3 +20,4 @@ mutation { roles } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/update-name.md b/docs/examples/1.8.x/server-graphql/examples/teams/update-name.md index c40543b5cd..a3ce2bd1f3 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdateName( teamId: "", @@ -13,3 +14,4 @@ mutation { } } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-graphql/examples/teams/update-prefs.md index 95737e33f9..411431a122 100644 --- a/docs/examples/1.8.x/server-graphql/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```graphql mutation { teamsUpdatePrefs( teamId: "", @@ -6,3 +7,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-graphql/examples/tokens/create-file-token.md index 22cff062fa..7f37880dff 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-graphql/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```graphql mutation { tokensCreateFileToken( bucketId: "", @@ -13,3 +14,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tokens/delete.md b/docs/examples/1.8.x/server-graphql/examples/tokens/delete.md index b13ad72f6b..d29249a40f 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { tokensDelete( tokenId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tokens/get.md b/docs/examples/1.8.x/server-graphql/examples/tokens/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/tokens/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tokens/list.md b/docs/examples/1.8.x/server-graphql/examples/tokens/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/tokens/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/tokens/update.md b/docs/examples/1.8.x/server-graphql/examples/tokens/update.md index 2f7324fd04..cd1ca5f194 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/tokens/update.md @@ -1,3 +1,4 @@ +```graphql mutation { tokensUpdate( tokenId: "", @@ -12,3 +13,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-argon-2-user.md index 7f99622e52..77f7e14573 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateArgon2User( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-bcrypt-user.md index 26659176eb..7db429c5f0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateBcryptUser( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-jwt.md b/docs/examples/1.8.x/server-graphql/examples/users/create-jwt.md index bf0b1bd638..c7d3741104 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateJWT( userId: "", @@ -7,3 +8,4 @@ mutation { jwt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-md-5-user.md index 7e642b8233..58f1eb1998 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateMD5User( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/users/create-mfa-recovery-codes.md index 5c329f5e0b..787528eb06 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateMFARecoveryCodes( userId: "" @@ -5,3 +6,4 @@ mutation { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-ph-pass-user.md index 4c06b007a2..ef177e03a9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreatePHPassUser( userId: "", @@ -38,3 +39,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-modified-user.md index 624ffcdd38..9daf66bda1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateScryptModifiedUser( userId: "", @@ -41,3 +42,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-user.md index 68a5f4c75f..2fa19a14f5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateScryptUser( userId: "", @@ -43,3 +44,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-session.md b/docs/examples/1.8.x/server-graphql/examples/users/create-session.md index 701ddf501f..5e806de2c4 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-session.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateSession( userId: "" @@ -33,3 +34,4 @@ mutation { mfaUpdatedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-graphql/examples/users/create-sha-user.md index f99da2752d..ef00ee567d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateSHAUser( userId: "", @@ -39,3 +40,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-target.md b/docs/examples/1.8.x/server-graphql/examples/users/create-target.md index 7068c21aba..b25a469dc2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-target.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateTarget( userId: "", @@ -18,3 +19,4 @@ mutation { expired } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create-token.md b/docs/examples/1.8.x/server-graphql/examples/users/create-token.md index 78255f7676..6d4ea54fe5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create-token.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreateToken( userId: "", @@ -12,3 +13,4 @@ mutation { phrase } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/create.md b/docs/examples/1.8.x/server-graphql/examples/users/create.md index 465da80432..c0848f80dc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/create.md @@ -1,3 +1,4 @@ +```graphql mutation { usersCreate( userId: "", @@ -39,3 +40,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete-identity.md b/docs/examples/1.8.x/server-graphql/examples/users/delete-identity.md index 1ea0d990b1..9965b492fc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDeleteIdentity( identityId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-graphql/examples/users/delete-mfa-authenticator.md index 2e7ea73733..095d5f13c2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDeleteMFAAuthenticator( userId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete-session.md b/docs/examples/1.8.x/server-graphql/examples/users/delete-session.md index 7e6538b34a..fd8363b660 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDeleteSession( userId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-graphql/examples/users/delete-sessions.md index d1ccaa26f4..8d445f8e41 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDeleteSessions( userId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete-target.md b/docs/examples/1.8.x/server-graphql/examples/users/delete-target.md index 92d0a16ac5..0e630003df 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDeleteTarget( userId: "", @@ -6,3 +7,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/delete.md b/docs/examples/1.8.x/server-graphql/examples/users/delete.md index 2cf392b7f1..8bdf41f88a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/delete.md @@ -1,3 +1,4 @@ +```graphql mutation { usersDelete( userId: "" @@ -5,3 +6,4 @@ mutation { status } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/users/get-mfa-recovery-codes.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/get-mfa-recovery-codes.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/get-prefs.md b/docs/examples/1.8.x/server-graphql/examples/users/get-prefs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/get-prefs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/get-target.md b/docs/examples/1.8.x/server-graphql/examples/users/get-target.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/get-target.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/get.md b/docs/examples/1.8.x/server-graphql/examples/users/get.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/get.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/get.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-identities.md b/docs/examples/1.8.x/server-graphql/examples/users/list-identities.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-identities.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-logs.md b/docs/examples/1.8.x/server-graphql/examples/users/list-logs.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-logs.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-memberships.md b/docs/examples/1.8.x/server-graphql/examples/users/list-memberships.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-memberships.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-graphql/examples/users/list-mfa-factors.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-mfa-factors.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-sessions.md b/docs/examples/1.8.x/server-graphql/examples/users/list-sessions.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-sessions.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list-targets.md b/docs/examples/1.8.x/server-graphql/examples/users/list-targets.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list-targets.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/list.md b/docs/examples/1.8.x/server-graphql/examples/users/list.md index e69de29bb2..d7962b96e8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/list.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/list.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-graphql/examples/users/update-email-verification.md index cda7278ac0..e658231cfc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateEmailVerification( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-email.md b/docs/examples/1.8.x/server-graphql/examples/users/update-email.md index 408a74972b..718a5b72d4 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-email.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateEmail( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-labels.md b/docs/examples/1.8.x/server-graphql/examples/users/update-labels.md index cb3c5b6483..b34dfbe3bc 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateLabels( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-graphql/examples/users/update-mfa-recovery-codes.md index 8881b1ad96..f49db0ed5b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateMFARecoveryCodes( userId: "" @@ -5,3 +6,4 @@ mutation { recoveryCodes } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-mfa.md b/docs/examples/1.8.x/server-graphql/examples/users/update-mfa.md index 8c8f0a3787..d1ff8307a1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateMFA( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-name.md b/docs/examples/1.8.x/server-graphql/examples/users/update-name.md index ec7e3dc27c..b4c3ebb640 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-name.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateName( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-password.md b/docs/examples/1.8.x/server-graphql/examples/users/update-password.md index 95ef74c83d..7dfad87c9a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-password.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdatePassword( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-graphql/examples/users/update-phone-verification.md index c6afa54ba4..b96480e493 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdatePhoneVerification( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-phone.md b/docs/examples/1.8.x/server-graphql/examples/users/update-phone.md index d3fc7d5f37..06ff7dfb9b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdatePhone( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-prefs.md b/docs/examples/1.8.x/server-graphql/examples/users/update-prefs.md index 431664c2a1..f636b511e1 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdatePrefs( userId: "", @@ -6,3 +7,4 @@ mutation { data } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-status.md b/docs/examples/1.8.x/server-graphql/examples/users/update-status.md index 2499c1c258..091192fa06 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-status.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateStatus( userId: "", @@ -36,3 +37,4 @@ mutation { accessedAt } } +``` diff --git a/docs/examples/1.8.x/server-graphql/examples/users/update-target.md b/docs/examples/1.8.x/server-graphql/examples/users/update-target.md index 1f7cc1147a..df1556e265 100644 --- a/docs/examples/1.8.x/server-graphql/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-graphql/examples/users/update-target.md @@ -1,3 +1,4 @@ +```graphql mutation { usersUpdateTarget( userId: "", @@ -17,3 +18,4 @@ mutation { expired } } +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-anonymous-session.md b/docs/examples/1.8.x/server-kotlin/java/account/create-anonymous-session.md index 07e4f387f8..e6e2e43987 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.createAnonymousSession(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-email-password-session.md b/docs/examples/1.8.x/server-kotlin/java/account/create-email-password-session.md index aaf282ebc3..c6c08c959f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createEmailPasswordSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-email-token.md b/docs/examples/1.8.x/server-kotlin/java/account/create-email-token.md index 940f8d60e4..a718e2d5e0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-email-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-email-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -23,3 +24,4 @@ account.createEmailToken( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-email-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/create-email-verification.md index de80353b29..109ae076c7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-email-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createEmailVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-jwt.md b/docs/examples/1.8.x/server-kotlin/java/account/create-jwt.md index 16257306c0..569c5758a5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-jwt.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-jwt.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createJWT( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-magic-url-token.md b/docs/examples/1.8.x/server-kotlin/java/account/create-magic-url-token.md index bb4cc7a09f..2f6e83ec81 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -24,3 +25,4 @@ account.createMagicURLToken( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-authenticator.md index d38ddd3b44..123866a911 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-challenge.md index 0463633669..4589363981 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createMFAChallenge( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-recovery-codes.md index 6a47a17729..090c61d1e6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.createMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-kotlin/java/account/create-o-auth-2-token.md index 3af15e0689..3f74727040 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -25,3 +26,4 @@ account.createOAuth2Token( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-phone-token.md b/docs/examples/1.8.x/server-kotlin/java/account/create-phone-token.md index cdec5d54ac..45bc0ccb6d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-phone-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createPhoneToken( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-phone-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/create-phone-verification.md index 9e49c62880..6ed21235c8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.createPhoneVerification(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-recovery.md b/docs/examples/1.8.x/server-kotlin/java/account/create-recovery.md index f529ea4cb7..64951b2576 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-recovery.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-recovery.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createRecovery( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-session.md b/docs/examples/1.8.x/server-kotlin/java/account/create-session.md index 295016494a..3376cb85da 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.createSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/create-verification.md index 65c8e8be49..f0f221b456 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.createVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/create.md b/docs/examples/1.8.x/server-kotlin/java/account/create.md index b7bd821681..9acef5599f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -24,3 +25,4 @@ account.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/delete-identity.md b/docs/examples/1.8.x/server-kotlin/java/account/delete-identity.md index 0d6f860a63..5bb897f5db 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/delete-identity.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/delete-identity.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.deleteIdentity( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/java/account/delete-mfa-authenticator.md index 20a6acda53..4ce42b4e43 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.deleteMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/delete-session.md b/docs/examples/1.8.x/server-kotlin/java/account/delete-session.md index fd27d746b1..781161c747 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/delete-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/delete-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.deleteSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/delete-sessions.md b/docs/examples/1.8.x/server-kotlin/java/account/delete-sessions.md index 11076e72d2..ef087fd4a5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/delete-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.deleteSessions(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/account/get-mfa-recovery-codes.md index 813a0a62c0..6d59890b3f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.getMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/get-prefs.md b/docs/examples/1.8.x/server-kotlin/java/account/get-prefs.md index 6614f92aaa..eb6c6e56b7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/get-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.getPrefs(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/get-session.md b/docs/examples/1.8.x/server-kotlin/java/account/get-session.md index 3f30d90256..e5d96a82a2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/get-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/get-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.getSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/get.md b/docs/examples/1.8.x/server-kotlin/java/account/get.md index 70e2dfb97f..83caeaffa5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.get(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/list-identities.md b/docs/examples/1.8.x/server-kotlin/java/account/list-identities.md index 97cdf99b62..4c439111c7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/list-identities.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/list-identities.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.listIdentities( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/list-logs.md b/docs/examples/1.8.x/server-kotlin/java/account/list-logs.md index 6c41c7f073..e82f686834 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/list-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.listLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/list-mfa-factors.md b/docs/examples/1.8.x/server-kotlin/java/account/list-mfa-factors.md index 0bdc378b08..d69f23e136 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.listMFAFactors(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/list-sessions.md b/docs/examples/1.8.x/server-kotlin/java/account/list-sessions.md index 557832df82..bb25cff16a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/list-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/list-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.listSessions(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-email-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/update-email-verification.md index 92dfd8d00c..dd13e6fe6e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-email-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateEmailVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-email.md b/docs/examples/1.8.x/server-kotlin/java/account/update-email.md index 8529ba6a26..06baceaef6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-email.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateEmail( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-magic-url-session.md b/docs/examples/1.8.x/server-kotlin/java/account/update-magic-url-session.md index 3e236342cf..8ed558d110 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateMagicURLSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-authenticator.md index 87e3852ccd..aaceb29714 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -23,3 +24,4 @@ account.updateMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-challenge.md index 5e1bebe629..a80179951a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateMFAChallenge( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-recovery-codes.md index 7c303ddc64..7062704b69 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.updateMFARecoveryCodes(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa.md b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa.md index d1b60c5473..f63ee870c4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-mfa.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-mfa.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateMFA( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-name.md b/docs/examples/1.8.x/server-kotlin/java/account/update-name.md index 749fe268af..fe63d7e4ad 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-name.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateName( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-password.md b/docs/examples/1.8.x/server-kotlin/java/account/update-password.md index 8eaa08b460..44a4ea09a1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-password.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-password.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updatePassword( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-phone-session.md b/docs/examples/1.8.x/server-kotlin/java/account/update-phone-session.md index 97d7cd3693..33e701c8db 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-phone-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updatePhoneSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-phone-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/update-phone-verification.md index 998826544a..7b692cb473 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updatePhoneVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-phone.md b/docs/examples/1.8.x/server-kotlin/java/account/update-phone.md index d54aa9cfb2..2ffdc2349b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-phone.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-phone.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updatePhone( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-prefs.md b/docs/examples/1.8.x/server-kotlin/java/account/update-prefs.md index 4fc1cb5439..a3f58f5f60 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -25,3 +26,4 @@ account.updatePrefs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-recovery.md b/docs/examples/1.8.x/server-kotlin/java/account/update-recovery.md index 8ab16e18ce..dc1b83c5eb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-recovery.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-recovery.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -23,3 +24,4 @@ account.updateRecovery( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-session.md b/docs/examples/1.8.x/server-kotlin/java/account/update-session.md index 8233c054f5..a33ee5cf84 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -21,3 +22,4 @@ account.updateSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-status.md b/docs/examples/1.8.x/server-kotlin/java/account/update-status.md index d5f4f79476..777ff6b55d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-status.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -17,3 +18,4 @@ account.updateStatus(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/account/update-verification.md b/docs/examples/1.8.x/server-kotlin/java/account/update-verification.md index dafe6db457..3c19f4f1ca 100644 --- a/docs/examples/1.8.x/server-kotlin/java/account/update-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/account/update-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; @@ -22,3 +23,4 @@ account.updateVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-browser.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-browser.md index 9c3433eef5..72748afcb3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-browser.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -25,3 +26,4 @@ avatars.getBrowser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-credit-card.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-credit-card.md index 6904638106..8f93da91af 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -25,3 +26,4 @@ avatars.getCreditCard( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-favicon.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-favicon.md index f4e89cfadc..6df13f5e83 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -21,3 +22,4 @@ avatars.getFavicon( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-flag.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-flag.md index 159dcdcde6..f66a872d32 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-flag.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -25,3 +26,4 @@ avatars.getFlag( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-image.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-image.md index afad760c38..7f93b9f9f4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-image.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-image.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -23,3 +24,4 @@ avatars.getImage( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-initials.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-initials.md index 171b636f02..31792b91fd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-initials.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -24,3 +25,4 @@ avatars.getInitials( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-qr.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-qr.md index 113fd1fceb..0e22f63f1b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-qr.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -24,3 +25,4 @@ avatars.getQR( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/avatars/get-screenshot.md b/docs/examples/1.8.x/server-kotlin/java/avatars/get-screenshot.md index a13b92ff8d..368e792d66 100644 --- a/docs/examples/1.8.x/server-kotlin/java/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-kotlin/java/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; @@ -47,3 +48,4 @@ avatars.getScreenshot( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-boolean-attribute.md index 7585471443..7daed5639d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createBooleanAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-collection.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-collection.md index 083e37001a..32d9cd54e1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-collection.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-collection.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -30,3 +31,4 @@ databases.createCollection( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-datetime-attribute.md index d95e048b09..e00a6d537b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createDatetimeAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-document.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-document.md index 7ff195f613..34206c2d47 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-document.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ databases.createDocument( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-documents.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-documents.md index be695fe80b..5a158bf59a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-documents.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.createDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-email-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-email-attribute.md index b2ecc99a17..c556ea4bdd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createEmailAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-enum-attribute.md index b8666666da..fe94c4be41 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.createEnumAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-float-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-float-attribute.md index 2263cdb5c6..16d057bb12 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -28,3 +29,4 @@ databases.createFloatAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-index.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-index.md index d6bb380110..5dc22225e9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -29,3 +30,4 @@ databases.createIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-integer-attribute.md index b084e7c974..5716f44e9a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -28,3 +29,4 @@ databases.createIntegerAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-ip-attribute.md index ba62dba1d7..34569a9be7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createIpAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-line-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-line-attribute.md index c0daeac6c3..4bcb1fe834 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -25,3 +26,4 @@ databases.createLineAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-longtext-attribute.md index 20357dfbb5..abbf4644af 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createLongtextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-mediumtext-attribute.md index 64ebbe57a9..7c6608b497 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createMediumtextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-operations.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-operations.md index c935f82a9a..29f1efbde2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-operations.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-operations.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -30,3 +31,4 @@ databases.createOperations( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-point-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-point-attribute.md index c3b5d503b2..98e14113f7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -25,3 +26,4 @@ databases.createPointAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-polygon-attribute.md index 4f8fe0369e..184258f5cd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -25,3 +26,4 @@ databases.createPolygonAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-relationship-attribute.md index 580be890ba..307b948b47 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -30,3 +31,4 @@ databases.createRelationshipAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-string-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-string-attribute.md index 3286c7aa01..6c13a029f5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -28,3 +29,4 @@ databases.createStringAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-text-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-text-attribute.md index 0d196f0353..92e7003efe 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createTextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-transaction.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-transaction.md index 5fb7c5936a..4cbee4edbc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.createTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-url-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-url-attribute.md index d445d67e33..c5d670ef89 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.createUrlAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/create-varchar-attribute.md index 4794cd5d00..6d2ea625b4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.createVarcharAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/create.md b/docs/examples/1.8.x/server-kotlin/java/databases/create.md index 31cd37e169..8806db37da 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/decrement-document-attribute.md index a852083bce..96f921c062 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.decrementDocumentAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-attribute.md index 236d492adb..d97d5a56c0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.deleteAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-collection.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-collection.md index 5da2a3d684..c2849bb78f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-collection.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -22,3 +23,4 @@ databases.deleteCollection( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-document.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-document.md index 2f7003b234..cd67c320c0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-document.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.deleteDocument( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-documents.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-documents.md index f535ae7780..5c43923096 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.deleteDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-index.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-index.md index 6f68435779..b427675866 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.deleteIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete-transaction.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete-transaction.md index 200bbbdc26..1175643fa3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.deleteTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/delete.md b/docs/examples/1.8.x/server-kotlin/java/databases/delete.md index b082491383..2993d79807 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/get-attribute.md index 672f0b062e..fe826ab2c9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.getAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get-collection.md b/docs/examples/1.8.x/server-kotlin/java/databases/get-collection.md index 59401be370..0584c0edfe 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get-collection.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get-collection.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -22,3 +23,4 @@ databases.getCollection( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get-document.md b/docs/examples/1.8.x/server-kotlin/java/databases/get-document.md index d3e8b8b3d4..80d63bb266 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get-document.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -25,3 +26,4 @@ databases.getDocument( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get-index.md b/docs/examples/1.8.x/server-kotlin/java/databases/get-index.md index 61cfe84ee4..d32a163d82 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.getIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get-transaction.md b/docs/examples/1.8.x/server-kotlin/java/databases/get-transaction.md index d896ca0751..48f44db7a8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.getTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/get.md b/docs/examples/1.8.x/server-kotlin/java/databases/get.md index b0e3742149..aafe37981c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/increment-document-attribute.md index be837d00f8..dbf0685aea 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.incrementDocumentAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list-attributes.md b/docs/examples/1.8.x/server-kotlin/java/databases/list-attributes.md index dd883e232f..43019a15de 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list-attributes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.listAttributes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list-collections.md b/docs/examples/1.8.x/server-kotlin/java/databases/list-collections.md index ddb47c9989..53684f0908 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list-collections.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list-collections.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.listCollections( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list-documents.md b/docs/examples/1.8.x/server-kotlin/java/databases/list-documents.md index b8ef0717ea..415d880eca 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list-documents.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -25,3 +26,4 @@ databases.listDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list-indexes.md b/docs/examples/1.8.x/server-kotlin/java/databases/list-indexes.md index c701904157..e483c5e7e3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list-indexes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.listIndexes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list-transactions.md b/docs/examples/1.8.x/server-kotlin/java/databases/list-transactions.md index 8a6f60544f..27fe4e936d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list-transactions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -21,3 +22,4 @@ databases.listTransactions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/list.md b/docs/examples/1.8.x/server-kotlin/java/databases/list.md index 32ef454a73..aa4d2d7b0c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-boolean-attribute.md index 3c95851027..691eb61f09 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateBooleanAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-collection.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-collection.md index 11d6b66c29..4e10b59210 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-collection.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-collection.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -28,3 +29,4 @@ databases.updateCollection( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-datetime-attribute.md index 3f451b83f2..5d74973ff6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateDatetimeAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-document.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-document.md index 2cd48d1e4a..cb47ac15a2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-document.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ databases.updateDocument( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-documents.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-documents.md index 9f2d73bda4..641a69c8c4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-documents.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -31,3 +32,4 @@ databases.updateDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-email-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-email-attribute.md index 1ff12217ba..c1a63da7da 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateEmailAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-enum-attribute.md index 8870e372a6..7d5f939d01 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.updateEnumAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-float-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-float-attribute.md index 0076987f85..54609f3939 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -28,3 +29,4 @@ databases.updateFloatAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-integer-attribute.md index c39af22b36..08f87fe93c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -28,3 +29,4 @@ databases.updateIntegerAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-ip-attribute.md index 44b4da2abc..bcc9f22c55 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateIpAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-line-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-line-attribute.md index 14d83eeee5..ccd348da14 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateLineAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-longtext-attribute.md index a59ada5a77..ad0e83cb07 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateLongtextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-mediumtext-attribute.md index 44f1964323..778948002f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateMediumtextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-point-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-point-attribute.md index 5d44d7a190..fdfdada1b0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updatePointAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-polygon-attribute.md index 2c530b9aae..640f3ee236 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updatePolygonAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-relationship-attribute.md index 998f0beb16..9024a4096d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateRelationshipAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-string-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-string-attribute.md index 1f156f3dbb..e0b440c1b4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.updateStringAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-text-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-text-attribute.md index 83a293f213..72edaf1cae 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateTextAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-transaction.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-transaction.md index 8479ed31aa..7f19182685 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.updateTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-url-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-url-attribute.md index 959054ab48..94f6b997f4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -26,3 +27,4 @@ databases.updateUrlAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-kotlin/java/databases/update-varchar-attribute.md index 2011010b3d..3070aa39ea 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -27,3 +28,4 @@ databases.updateVarcharAttribute( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/update.md b/docs/examples/1.8.x/server-kotlin/java/databases/update.md index 138ca61b9d..f8ad19f033 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/update.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -23,3 +24,4 @@ databases.update( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/upsert-document.md b/docs/examples/1.8.x/server-kotlin/java/databases/upsert-document.md index a170342035..3f8105210b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/upsert-document.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ databases.upsertDocument( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/databases/upsert-documents.md b/docs/examples/1.8.x/server-kotlin/java/databases/upsert-documents.md index ee4450fc29..80e3862e1e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-kotlin/java/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; @@ -24,3 +25,4 @@ databases.upsertDocuments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-deployment.md index 6e435f41fa..9a56935a87 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.models.InputFile; @@ -26,3 +27,4 @@ functions.createDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-duplicate-deployment.md index 6b9d9a131a..afb33a9080 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -23,3 +24,4 @@ functions.createDuplicateDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-execution.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-execution.md index 98a4d1b572..222761eb62 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-execution.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-execution.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -28,3 +29,4 @@ functions.createExecution( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-template-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-template-deployment.md index 59c105dfb1..1059cd5e3d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -28,3 +29,4 @@ functions.createTemplateDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-variable.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-variable.md index 70764fbdc8..ae5b6cb8d8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -24,3 +25,4 @@ functions.createVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/create-vcs-deployment.md index 25f2f28485..94bf9dfd05 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -25,3 +26,4 @@ functions.createVcsDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/create.md b/docs/examples/1.8.x/server-kotlin/java/functions/create.md index 04cbcd4927..47015f3690 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -40,3 +41,4 @@ functions.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/delete-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/delete-deployment.md index 1a6279ff3f..a7244cdbc9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.deleteDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/delete-execution.md b/docs/examples/1.8.x/server-kotlin/java/functions/delete-execution.md index 68f81e8ee4..43b556a93a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/delete-execution.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.deleteExecution( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/delete-variable.md b/docs/examples/1.8.x/server-kotlin/java/functions/delete-variable.md index c881bdc800..7298bb1a32 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/delete-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.deleteVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/delete.md b/docs/examples/1.8.x/server-kotlin/java/functions/delete.md index 255fc002fa..fabcb1a7ee 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -21,3 +22,4 @@ functions.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment-download.md b/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment-download.md index 2b6d38a787..59de9f04c6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -24,3 +25,4 @@ functions.getDeploymentDownload( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment.md index b3000272b4..a6a96d142f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/get-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.getDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/get-execution.md b/docs/examples/1.8.x/server-kotlin/java/functions/get-execution.md index 76e302fa82..bfaabe7aa0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/get-execution.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/get-execution.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.getExecution( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/get-variable.md b/docs/examples/1.8.x/server-kotlin/java/functions/get-variable.md index d54882b293..e2ff42ee54 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/get-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/get-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.getVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/get.md b/docs/examples/1.8.x/server-kotlin/java/functions/get.md index aa55b93e07..fb3dc8d2df 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -21,3 +22,4 @@ functions.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list-deployments.md b/docs/examples/1.8.x/server-kotlin/java/functions/list-deployments.md index a92cf0792a..4e0de978b9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list-deployments.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -24,3 +25,4 @@ functions.listDeployments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list-executions.md b/docs/examples/1.8.x/server-kotlin/java/functions/list-executions.md index 2b97ab3be6..b7ab9efb02 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list-executions.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list-executions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -23,3 +24,4 @@ functions.listExecutions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list-runtimes.md b/docs/examples/1.8.x/server-kotlin/java/functions/list-runtimes.md index 304a90d0da..0a4a240c85 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -17,3 +18,4 @@ functions.listRuntimes(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list-specifications.md b/docs/examples/1.8.x/server-kotlin/java/functions/list-specifications.md index e6c9c091d7..a6a245a7ef 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list-specifications.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -17,3 +18,4 @@ functions.listSpecifications(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list-variables.md b/docs/examples/1.8.x/server-kotlin/java/functions/list-variables.md index 98c9ff4527..2d903ee5cd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list-variables.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list-variables.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -21,3 +22,4 @@ functions.listVariables( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/list.md b/docs/examples/1.8.x/server-kotlin/java/functions/list.md index 712510db4c..b7eab3e2f9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -23,3 +24,4 @@ functions.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/update-deployment-status.md b/docs/examples/1.8.x/server-kotlin/java/functions/update-deployment-status.md index 8755fd9305..920ce4a0fa 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.updateDeploymentStatus( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/update-function-deployment.md b/docs/examples/1.8.x/server-kotlin/java/functions/update-function-deployment.md index b88e87c1b9..363c23ab85 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -22,3 +23,4 @@ functions.updateFunctionDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/update-variable.md b/docs/examples/1.8.x/server-kotlin/java/functions/update-variable.md index 3a2b281332..a32344839e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/update-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/update-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -25,3 +26,4 @@ functions.updateVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/functions/update.md b/docs/examples/1.8.x/server-kotlin/java/functions/update.md index 010f56df28..7ab2402004 100644 --- a/docs/examples/1.8.x/server-kotlin/java/functions/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/functions/update.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; @@ -40,3 +41,4 @@ functions.update( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/graphql/mutation.md b/docs/examples/1.8.x/server-kotlin/java/graphql/mutation.md index baf41a8a65..1f327de505 100644 --- a/docs/examples/1.8.x/server-kotlin/java/graphql/mutation.md +++ b/docs/examples/1.8.x/server-kotlin/java/graphql/mutation.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; @@ -21,3 +22,4 @@ graphql.mutation( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/graphql/query.md b/docs/examples/1.8.x/server-kotlin/java/graphql/query.md index 381da3fb5a..29ea821d65 100644 --- a/docs/examples/1.8.x/server-kotlin/java/graphql/query.md +++ b/docs/examples/1.8.x/server-kotlin/java/graphql/query.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; @@ -21,3 +22,4 @@ graphql.query( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-antivirus.md b/docs/examples/1.8.x/server-kotlin/java/health/get-antivirus.md index ca3abf7100..ca3836e023 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-antivirus.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getAntivirus(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-cache.md b/docs/examples/1.8.x/server-kotlin/java/health/get-cache.md index 24a584c04b..7dcd6343fc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-cache.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-cache.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getCache(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-certificate.md b/docs/examples/1.8.x/server-kotlin/java/health/get-certificate.md index f4cb5a4e1e..cc9a6c292a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-certificate.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-certificate.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getCertificate( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-db.md b/docs/examples/1.8.x/server-kotlin/java/health/get-db.md index c7a7bef903..9d6c13a323 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-db.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-db.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getDB(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-failed-jobs.md b/docs/examples/1.8.x/server-kotlin/java/health/get-failed-jobs.md index 0495e265e6..0466bbfce9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -23,3 +24,4 @@ health.getFailedJobs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-pub-sub.md b/docs/examples/1.8.x/server-kotlin/java/health/get-pub-sub.md index 70210c4296..00dd258577 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getPubSub(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-audits.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-audits.md index 262fb6e8e9..d5f9cb5018 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueAudits( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-builds.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-builds.md index 2ca5d7f4e4..fdb5f3ff75 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueBuilds( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-certificates.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-certificates.md index 519817ae46..ef747caefc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueCertificates( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-databases.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-databases.md index 2f175668eb..83673a6796 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -22,3 +23,4 @@ health.getQueueDatabases( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-deletes.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-deletes.md index e65aa9a528..e18579ebc8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueDeletes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-functions.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-functions.md index 720f114acb..ef578b8b03 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueFunctions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-logs.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-logs.md index 09b0de4e63..b86690a921 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-mails.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-mails.md index b1ae357aef..5c8d846b18 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueMails( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-messaging.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-messaging.md index 61c0b8cad7..a3c10815c5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueMessaging( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-migrations.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-migrations.md index 0e7d669e7f..69210ef051 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueMigrations( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-stats-resources.md index e2f8062fcc..020f182910 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueStatsResources( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-usage.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-usage.md index bfda61a544..79fa062108 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueUsage( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-webhooks.md index d9aed66db6..94f93eddc7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -21,3 +22,4 @@ health.getQueueWebhooks( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-storage-local.md b/docs/examples/1.8.x/server-kotlin/java/health/get-storage-local.md index 65367cc252..db8f374d0d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-storage-local.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getStorageLocal(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-storage.md b/docs/examples/1.8.x/server-kotlin/java/health/get-storage.md index 3a0f0f8ed3..34f7b63a87 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-storage.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-storage.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getStorage(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get-time.md b/docs/examples/1.8.x/server-kotlin/java/health/get-time.md index f0ba668ab8..925fb801ab 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get-time.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get-time.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.getTime(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/health/get.md b/docs/examples/1.8.x/server-kotlin/java/health/get.md index 87a7c0a32d..96c2a534c5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/health/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/health/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; @@ -17,3 +18,4 @@ health.get(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/get.md b/docs/examples/1.8.x/server-kotlin/java/locale/get.md index 2d5e0ac06d..ce0599ebf6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.get(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-codes.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-codes.md index 9f07d1dbf1..25555499b6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listCodes(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-continents.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-continents.md index 5d9e4b0fdb..f7098f332b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-continents.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-continents.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listContinents(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-eu.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-eu.md index 232a0ef8cf..b312639fca 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listCountriesEU(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-phones.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-phones.md index a4739a5b93..aed72e0ff0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listCountriesPhones(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries.md index 5b8f250f3c..8eef04d63d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-countries.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-countries.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listCountries(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-currencies.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-currencies.md index adf1d787c1..fc4ee4d9d1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-currencies.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listCurrencies(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/locale/list-languages.md b/docs/examples/1.8.x/server-kotlin/java/locale/list-languages.md index c92ea525f7..44d101564b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/locale/list-languages.md +++ b/docs/examples/1.8.x/server-kotlin/java/locale/list-languages.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; @@ -17,3 +18,4 @@ locale.listLanguages(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-apns-provider.md index acae476a17..134c5c96de 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.createAPNSProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-email.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-email.md index ca654e6a08..cefac94511 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-email.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-email.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -32,3 +33,4 @@ messaging.createEmail( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-fcm-provider.md index 554ab3cbcf..6cd9e9ffcc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -24,3 +25,4 @@ messaging.createFCMProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-mailgun-provider.md index 272f9d2356..be7ec13156 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -30,3 +31,4 @@ messaging.createMailgunProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-msg-91-provider.md index 21005293ea..2af08cf053 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.createMsg91Provider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-push.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-push.md index 7ab3541a7d..2b2a67ca29 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-push.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-push.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -40,3 +41,4 @@ messaging.createPush( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-resend-provider.md index 37681f9d33..516ba4e2e0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.createResendProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-sendgrid-provider.md index 84c5bf42f9..ecb1e1bde6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.createSendgridProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-sms.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-sms.md index 5ac95079f7..9a2a766499 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-sms.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -27,3 +28,4 @@ messaging.createSMS( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-smtp-provider.md index 966436e3c1..2259babda0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -35,3 +36,4 @@ messaging.createSMTPProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-subscriber.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-subscriber.md index 1ccb8fe60c..39480c0c09 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.createSubscriber( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-telesign-provider.md index 6b64499419..87b9e1fcde 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.createTelesignProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-textmagic-provider.md index 477d7d8c4b..2599ed5d37 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.createTextmagicProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-topic.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-topic.md index ec55053d42..1c9c56371a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-topic.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.createTopic( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-twilio-provider.md index 8d1b4da970..5078b3dbeb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.createTwilioProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/create-vonage-provider.md index db1e476db2..ac269038c9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.createVonageProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-provider.md index b0fa837feb..0136e9dc13 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.deleteProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-subscriber.md index a3635b9db7..265a70ba79 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -22,3 +23,4 @@ messaging.deleteSubscriber( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-topic.md b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-topic.md index 7b598b25f4..aee64733c2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.deleteTopic( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/delete.md b/docs/examples/1.8.x/server-kotlin/java/messaging/delete.md index 1395a39245..7585a48671 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/get-message.md b/docs/examples/1.8.x/server-kotlin/java/messaging/get-message.md index 3860ff2347..846e881e46 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/get-message.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/get-message.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.getMessage( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/get-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/get-provider.md index 9717b90b7d..4d68108b38 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/get-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.getProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/get-subscriber.md b/docs/examples/1.8.x/server-kotlin/java/messaging/get-subscriber.md index 641a494b5c..01137147bd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -22,3 +23,4 @@ messaging.getSubscriber( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/get-topic.md b/docs/examples/1.8.x/server-kotlin/java/messaging/get-topic.md index c9f2eff74b..d1e9693a6c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/get-topic.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -21,3 +22,4 @@ messaging.getTopic( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-message-logs.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-message-logs.md index 30469ffc09..5c2e97ce61 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listMessageLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-messages.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-messages.md index 8af8085d8e..060d166adb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-messages.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listMessages( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-provider-logs.md index e62dedf89d..f0656be8e5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listProviderLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-providers.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-providers.md index b52408c02d..40abdc4e4b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-providers.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listProviders( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscriber-logs.md index 317db32986..1fef063d30 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listSubscriberLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscribers.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscribers.md index cc552179de..e7eb27c8c3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -24,3 +25,4 @@ messaging.listSubscribers( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-targets.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-targets.md index b123218d22..f40902d328 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-targets.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listTargets( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-topic-logs.md index d2d8809575..28d4df689f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listTopicLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/list-topics.md b/docs/examples/1.8.x/server-kotlin/java/messaging/list-topics.md index ea258c2759..de91ffdba2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/list-topics.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.listTopics( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-apns-provider.md index c5da5ba819..daebea076e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.updateAPNSProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-email.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-email.md index 1bed63b313..7c24d21d3d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-email.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -32,3 +33,4 @@ messaging.updateEmail( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-fcm-provider.md index 2976ff5a53..1b9f694c92 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -24,3 +25,4 @@ messaging.updateFCMProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-mailgun-provider.md index 5547ae8575..53281efaf6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -30,3 +31,4 @@ messaging.updateMailgunProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-msg-91-provider.md index d8e485629b..c25e7e3cee 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.updateMsg91Provider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-push.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-push.md index 80f70130e5..c988199ab2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-push.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-push.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -40,3 +41,4 @@ messaging.updatePush( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-resend-provider.md index 3282e5d26a..16b61b7bc1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.updateResendProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-sendgrid-provider.md index 14a4e99f5b..bb90a433c9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -28,3 +29,4 @@ messaging.updateSendgridProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-sms.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-sms.md index 4df9588f55..68070763d6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-sms.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -27,3 +28,4 @@ messaging.updateSMS( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-smtp-provider.md index c8ab7571ce..e68e2d80d8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -35,3 +36,4 @@ messaging.updateSMTPProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-telesign-provider.md index 8181bf1c82..fef04fe0b7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.updateTelesignProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-textmagic-provider.md index bc156b7a31..0068564cf5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.updateTextmagicProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-topic.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-topic.md index 0d651c7895..b1617441be 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-topic.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -23,3 +24,4 @@ messaging.updateTopic( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-twilio-provider.md index ed58ee9a24..36e44fa22e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.updateTwilioProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-kotlin/java/messaging/update-vonage-provider.md index d5bfe3610c..549bcce2ec 100644 --- a/docs/examples/1.8.x/server-kotlin/java/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-kotlin/java/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; @@ -26,3 +27,4 @@ messaging.updateVonageProvider( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/create-deployment.md index f370f802eb..b0ab42691d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.models.InputFile; @@ -27,3 +28,4 @@ sites.createDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/create-duplicate-deployment.md index 35e43b8943..06d41d2dcc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.createDuplicateDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create-template-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/create-template-deployment.md index e7fee585a7..13077648de 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -28,3 +29,4 @@ sites.createTemplateDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create-variable.md b/docs/examples/1.8.x/server-kotlin/java/sites/create-variable.md index c77bec3796..1d83d6ad61 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -24,3 +25,4 @@ sites.createVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/create-vcs-deployment.md index 8a1dca95cc..529fab34d1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -25,3 +26,4 @@ sites.createVcsDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/create.md b/docs/examples/1.8.x/server-kotlin/java/sites/create.md index 11e0dbba6f..328b39521d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -41,3 +42,4 @@ sites.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/delete-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/delete-deployment.md index 97c08ab159..90d36bf3ec 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.deleteDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/delete-log.md b/docs/examples/1.8.x/server-kotlin/java/sites/delete-log.md index d7189373b0..af696c141e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/delete-log.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/delete-log.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.deleteLog( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/delete-variable.md b/docs/examples/1.8.x/server-kotlin/java/sites/delete-variable.md index 4e2b3ab7d4..b63a81c01f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/delete-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.deleteVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/delete.md b/docs/examples/1.8.x/server-kotlin/java/sites/delete.md index fd07bb23c8..48bfbe2679 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -21,3 +22,4 @@ sites.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment-download.md b/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment-download.md index ce26ba8cca..3df75ba072 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -24,3 +25,4 @@ sites.getDeploymentDownload( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment.md index 6af859ba9a..26565abcea 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/get-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.getDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/get-log.md b/docs/examples/1.8.x/server-kotlin/java/sites/get-log.md index d33f2a658f..290e82251a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/get-log.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/get-log.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.getLog( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/get-variable.md b/docs/examples/1.8.x/server-kotlin/java/sites/get-variable.md index 1c8df0c08a..c5ac3890eb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/get-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/get-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.getVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/get.md b/docs/examples/1.8.x/server-kotlin/java/sites/get.md index 660cad3bdb..55d6ed33e3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -21,3 +22,4 @@ sites.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list-deployments.md b/docs/examples/1.8.x/server-kotlin/java/sites/list-deployments.md index a1953cdf6e..650bd7bb10 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list-deployments.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -24,3 +25,4 @@ sites.listDeployments( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list-frameworks.md b/docs/examples/1.8.x/server-kotlin/java/sites/list-frameworks.md index df597177dd..6192bf29f0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -17,3 +18,4 @@ sites.listFrameworks(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list-logs.md b/docs/examples/1.8.x/server-kotlin/java/sites/list-logs.md index 095f0ae97a..437ebf5e85 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -23,3 +24,4 @@ sites.listLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list-specifications.md b/docs/examples/1.8.x/server-kotlin/java/sites/list-specifications.md index caad7325cf..e97db7da9e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list-specifications.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -17,3 +18,4 @@ sites.listSpecifications(new CoroutineCallback<>((result, error) -> { System.out.println(result); })); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list-variables.md b/docs/examples/1.8.x/server-kotlin/java/sites/list-variables.md index f2a38b7e60..c742e26736 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list-variables.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list-variables.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -21,3 +22,4 @@ sites.listVariables( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/list.md b/docs/examples/1.8.x/server-kotlin/java/sites/list.md index d8c69419fe..5d53afd41b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -23,3 +24,4 @@ sites.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/update-deployment-status.md b/docs/examples/1.8.x/server-kotlin/java/sites/update-deployment-status.md index 8dc3041f76..627cfcc203 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.updateDeploymentStatus( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/update-site-deployment.md b/docs/examples/1.8.x/server-kotlin/java/sites/update-site-deployment.md index edbda7cf93..8c60b7778a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -22,3 +23,4 @@ sites.updateSiteDeployment( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/update-variable.md b/docs/examples/1.8.x/server-kotlin/java/sites/update-variable.md index 9735ae34af..193cde75c7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/update-variable.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/update-variable.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -25,3 +26,4 @@ sites.updateVariable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/sites/update.md b/docs/examples/1.8.x/server-kotlin/java/sites/update.md index 0c4024b841..6f34a38d0e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/sites/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/sites/update.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; @@ -41,3 +42,4 @@ sites.update( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/create-bucket.md b/docs/examples/1.8.x/server-kotlin/java/storage/create-bucket.md index 0af282a0ca..7a15d32643 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/create-bucket.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ storage.createBucket( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/create-file.md b/docs/examples/1.8.x/server-kotlin/java/storage/create-file.md index abaeee3eca..80fff49a10 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/create-file.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/create-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.models.InputFile; @@ -27,3 +28,4 @@ storage.createFile( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/delete-bucket.md b/docs/examples/1.8.x/server-kotlin/java/storage/delete-bucket.md index eb77754f92..175c65ef69 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -21,3 +22,4 @@ storage.deleteBucket( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/delete-file.md b/docs/examples/1.8.x/server-kotlin/java/storage/delete-file.md index 8976fd198f..dc3e279e20 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/delete-file.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/delete-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -22,3 +23,4 @@ storage.deleteFile( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/get-bucket.md b/docs/examples/1.8.x/server-kotlin/java/storage/get-bucket.md index a099f33dd8..fb6c595191 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/get-bucket.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -21,3 +22,4 @@ storage.getBucket( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-download.md b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-download.md index edda2609b5..9fa4df8644 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-download.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -23,3 +24,4 @@ storage.getFileDownload( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-preview.md b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-preview.md index 61f7637256..18093617c3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -36,3 +37,4 @@ storage.getFilePreview( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-view.md b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-view.md index 178e50776c..106884f0d3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/get-file-view.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -23,3 +24,4 @@ storage.getFileView( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/get-file.md b/docs/examples/1.8.x/server-kotlin/java/storage/get-file.md index 7a04c80e9e..85c95162fc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/get-file.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/get-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -22,3 +23,4 @@ storage.getFile( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/list-buckets.md b/docs/examples/1.8.x/server-kotlin/java/storage/list-buckets.md index 3fde32c73c..85ca001a8a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/list-buckets.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -23,3 +24,4 @@ storage.listBuckets( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/list-files.md b/docs/examples/1.8.x/server-kotlin/java/storage/list-files.md index 712c420011..35334b5c12 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/list-files.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/list-files.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; @@ -24,3 +25,4 @@ storage.listFiles( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/update-bucket.md b/docs/examples/1.8.x/server-kotlin/java/storage/update-bucket.md index 47b322e449..7f94346dad 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/update-bucket.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ storage.updateBucket( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/storage/update-file.md b/docs/examples/1.8.x/server-kotlin/java/storage/update-file.md index b394fd5672..7692b1ed63 100644 --- a/docs/examples/1.8.x/server-kotlin/java/storage/update-file.md +++ b/docs/examples/1.8.x/server-kotlin/java/storage/update-file.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -26,3 +27,4 @@ storage.updateFile( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md index 14a96a1489..eee5271b9f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createBooleanColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md index 6dd28b36c8..6fdb11b5b4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createDatetimeColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md index e9f3d36892..864604ddf2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createEmailColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md index ea0452f250..a932605e1f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.createEnumColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md index 51312d037a..5582d51593 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -28,3 +29,4 @@ tablesDB.createFloatColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md index db74aae13b..0ad4055fc1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -29,3 +30,4 @@ tablesDB.createIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md index 1e0a3633a5..04371d853f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -28,3 +29,4 @@ tablesDB.createIntegerColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md index a963cc10a5..eb97261ef7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createIpColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-line-column.md index f8351cac79..7dc67e360c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -25,3 +26,4 @@ tablesDB.createLineColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-longtext-column.md index 6b3826fe91..fa6b258433 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createLongtextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-mediumtext-column.md index 11d6ad5c7a..2e4d0885b8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createMediumtextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-operations.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-operations.md index a7c3a1bcb8..0665904106 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -30,3 +31,4 @@ tablesDB.createOperations( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-point-column.md index 2f6ae0e937..0d01b7ab02 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -25,3 +26,4 @@ tablesDB.createPointColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-polygon-column.md index 58caa8a791..bbf2563a44 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -25,3 +26,4 @@ tablesDB.createPolygonColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md index c7a3a5f288..f72d573d8d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -30,3 +31,4 @@ tablesDB.createRelationshipColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md index 3da8c3248e..c3193a422d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ tablesDB.createRow( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md index e99ea04da4..1e16a4dfd8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.createRows( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md index 3596340004..058d5850b7 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -28,3 +29,4 @@ tablesDB.createStringColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md index 80ae1a3015..079ff5de03 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -30,3 +31,4 @@ tablesDB.createTable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-text-column.md index a13c66d010..293c210390 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createTextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-transaction.md index 3529956c54..d66c220052 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.createTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md index 20c10e6296..0ab5d95ef9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.createUrlColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-varchar-column.md index 5fc30e06f0..c3d3b5ea68 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.createVarcharColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md index 112e8e6d51..ccd99cc2d2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md index 78a811676d..7d35318f97 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.decrementRowColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md index 25d94d2fd0..106bb1190f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.deleteColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md index aa40dd07d8..3185434c1f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.deleteIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md index 5da1ba0cf3..800e4f7991 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.deleteRow( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md index f90789d276..f12aaa3683 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.deleteRows( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md index dcd6daa930..b982908035 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -22,3 +23,4 @@ tablesDB.deleteTable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-transaction.md index 816b6e5dee..8a0a6507a5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.deleteTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md index ea30c34411..e66bb111c6 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md index 42ed7760a9..c342547208 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.getColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md index d14579d24a..3e9d8b059a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.getIndex( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md index 5b18e8f879..c424eb2474 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -25,3 +26,4 @@ tablesDB.getRow( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md index 44862492df..839e7b5af1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -22,3 +23,4 @@ tablesDB.getTable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-transaction.md index dab07dce4e..b4d22183b8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.getTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md index 6480d62d46..1593fce946 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md index 33715721a8..69539c94c9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.incrementRowColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md index f7e37f970b..6a997d81fd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.listColumns( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md index ca792c5470..abe669b52c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.listIndexes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md index 7903da4b32..dfaad7197e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -25,3 +26,4 @@ tablesDB.listRows( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md index 9b4c88bdc0..37c0463186 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.listTables( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-transactions.md index f0b4db05db..38ae582b1c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -21,3 +22,4 @@ tablesDB.listTransactions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md index cf23036591..39ca54429f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md index d31932f235..9cceda436d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateBooleanColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md index b9fb3b23a3..c5e4bd1e6f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateDatetimeColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md index ed6b93b196..50b863961d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateEmailColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md index 0f182b76f0..0141a59ee1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.updateEnumColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md index 0487c06bf5..90b1d507b5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -28,3 +29,4 @@ tablesDB.updateFloatColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md index a9ed33a926..4ba9f1d3ff 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -28,3 +29,4 @@ tablesDB.updateIntegerColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md index 32509547c3..12bc0815c2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateIpColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-line-column.md index 4ef648fbc9..389b99a94f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateLineColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-longtext-column.md index a6d2331b99..0f6ab8b0ac 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateLongtextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-mediumtext-column.md index ed096898e4..08298e65a1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateMediumtextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-point-column.md index 729595dfa6..dc7bf66add 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updatePointColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-polygon-column.md index bc6ccc93b5..6aa7597a62 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updatePolygonColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md index eaf6b1ba52..5acc644208 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateRelationshipColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md index 444cc8d9fb..e22abdfbd5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ tablesDB.updateRow( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md index 4674a10927..cc954291dc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -31,3 +32,4 @@ tablesDB.updateRows( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md index 36a2ed5990..2f83ac1188 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.updateStringColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md index 1f2baa07f6..72bd1127eb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -28,3 +29,4 @@ tablesDB.updateTable( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-text-column.md index 0f8ac656e7..949dd394fc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateTextColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-transaction.md index f043d5dc44..91790210aa 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.updateTransaction( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md index d2273b9ef6..a1aebc18bc 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -26,3 +27,4 @@ tablesDB.updateUrlColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-varchar-column.md index 45451316dc..e9738c6e89 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -27,3 +28,4 @@ tablesDB.updateVarcharColumn( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md index ce269f1ffc..ee0448146b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -23,3 +24,4 @@ tablesDB.update( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md index 3c0bddec58..faa6836940 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.Permission; @@ -34,3 +35,4 @@ tablesDB.upsertRow( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md index e16ecb35c9..1c46abfe7a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; @@ -24,3 +25,4 @@ tablesDB.upsertRows( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/create-membership.md b/docs/examples/1.8.x/server-kotlin/java/teams/create-membership.md index 7834db84c1..b195be5a44 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/create-membership.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/create-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -28,3 +29,4 @@ teams.createMembership( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/create.md b/docs/examples/1.8.x/server-kotlin/java/teams/create.md index bc82cb47e1..d2d921bf85 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -23,3 +24,4 @@ teams.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/delete-membership.md b/docs/examples/1.8.x/server-kotlin/java/teams/delete-membership.md index 3b414be028..9a8d609b82 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/delete-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.deleteMembership( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/delete.md b/docs/examples/1.8.x/server-kotlin/java/teams/delete.md index 07f5c12e4c..a96e78ee74 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/get-membership.md b/docs/examples/1.8.x/server-kotlin/java/teams/get-membership.md index e7c1571af6..0ebfec907e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/get-membership.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/get-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.getMembership( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/get-prefs.md b/docs/examples/1.8.x/server-kotlin/java/teams/get-prefs.md index 6d30814801..8a4846f00e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/get-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.getPrefs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/get.md b/docs/examples/1.8.x/server-kotlin/java/teams/get.md index a479e9aff2..8fc7fc6e16 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -21,3 +22,4 @@ teams.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/list-memberships.md b/docs/examples/1.8.x/server-kotlin/java/teams/list-memberships.md index 5437e6048c..348ffd8346 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/list-memberships.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -24,3 +25,4 @@ teams.listMemberships( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/list.md b/docs/examples/1.8.x/server-kotlin/java/teams/list.md index 06f0034bfe..0f0827d656 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -23,3 +24,4 @@ teams.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/update-membership-status.md b/docs/examples/1.8.x/server-kotlin/java/teams/update-membership-status.md index 461cf4cbc3..bb82703d9f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -24,3 +25,4 @@ teams.updateMembershipStatus( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/update-membership.md b/docs/examples/1.8.x/server-kotlin/java/teams/update-membership.md index a0374c07d9..a9fee5788d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/update-membership.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/update-membership.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -24,3 +25,4 @@ teams.updateMembership( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/update-name.md b/docs/examples/1.8.x/server-kotlin/java/teams/update-name.md index f2f1b02d93..7ee2514875 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/update-name.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.updateName( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/teams/update-prefs.md b/docs/examples/1.8.x/server-kotlin/java/teams/update-prefs.md index 85f18aef1e..7f7be4c771 100644 --- a/docs/examples/1.8.x/server-kotlin/java/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/teams/update-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; @@ -22,3 +23,4 @@ teams.updatePrefs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tokens/create-file-token.md b/docs/examples/1.8.x/server-kotlin/java/tokens/create-file-token.md index 6996641d40..25f6b62f3d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; @@ -23,3 +24,4 @@ tokens.createFileToken( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tokens/delete.md b/docs/examples/1.8.x/server-kotlin/java/tokens/delete.md index bf1874d2f8..06c8478a2c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tokens/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/tokens/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; @@ -21,3 +22,4 @@ tokens.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tokens/get.md b/docs/examples/1.8.x/server-kotlin/java/tokens/get.md index c55563c2e1..584a37e44f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tokens/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/tokens/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; @@ -21,3 +22,4 @@ tokens.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tokens/list.md b/docs/examples/1.8.x/server-kotlin/java/tokens/list.md index 1147f6f536..fdda4490fd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tokens/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/tokens/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; @@ -24,3 +25,4 @@ tokens.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/tokens/update.md b/docs/examples/1.8.x/server-kotlin/java/tokens/update.md index 2a44f2d16e..132fcab22e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tokens/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/tokens/update.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; @@ -22,3 +23,4 @@ tokens.update( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-argon-2-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-argon-2-user.md index c78f236cec..50fbb283cb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -24,3 +25,4 @@ users.createArgon2User( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-bcrypt-user.md index 7b85f96054..0963995e8e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -24,3 +25,4 @@ users.createBcryptUser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-jwt.md b/docs/examples/1.8.x/server-kotlin/java/users/create-jwt.md index 2b4d7e9c50..521c10b2e2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-jwt.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-jwt.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.createJWT( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-md-5-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-md-5-user.md index 666e10792e..840ba29ab9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -24,3 +25,4 @@ users.createMD5User( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/users/create-mfa-recovery-codes.md index 167c92cbbd..5715b9b171 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.createMFARecoveryCodes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-ph-pass-user.md index 048ba39cca..fd9f5f5ba1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -24,3 +25,4 @@ users.createPHPassUser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-modified-user.md index 77a7d5fdb3..892e49ffbf 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -27,3 +28,4 @@ users.createScryptModifiedUser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-user.md index 0e81237ecf..e894f1d28c 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -29,3 +30,4 @@ users.createScryptUser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-session.md b/docs/examples/1.8.x/server-kotlin/java/users/create-session.md index 8d9ce03d8e..e5c77e421a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.createSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-sha-user.md b/docs/examples/1.8.x/server-kotlin/java/users/create-sha-user.md index 3a37ddce95..d60caa7566 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-sha-user.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -26,3 +27,4 @@ users.createSHAUser( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-target.md b/docs/examples/1.8.x/server-kotlin/java/users/create-target.md index 6681b170da..8a953ebb64 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-target.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -27,3 +28,4 @@ users.createTarget( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create-token.md b/docs/examples/1.8.x/server-kotlin/java/users/create-token.md index 330b344b15..fccdf6baef 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create-token.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create-token.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.createToken( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/create.md b/docs/examples/1.8.x/server-kotlin/java/users/create.md index 95a72bf7e0..ddf631a945 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/create.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -25,3 +26,4 @@ users.create( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete-identity.md b/docs/examples/1.8.x/server-kotlin/java/users/delete-identity.md index 40c410db47..f27e3af6c2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete-identity.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete-identity.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.deleteIdentity( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/java/users/delete-mfa-authenticator.md index c27b39ef53..cdf8ec03ee 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.deleteMFAAuthenticator( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete-session.md b/docs/examples/1.8.x/server-kotlin/java/users/delete-session.md index 0e0a52baf8..8b39eb11b0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete-session.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete-session.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.deleteSession( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete-sessions.md b/docs/examples/1.8.x/server-kotlin/java/users/delete-sessions.md index 6a3bbbf46f..01b63b4c6a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.deleteSessions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete-target.md b/docs/examples/1.8.x/server-kotlin/java/users/delete-target.md index e38ee1d57d..f222ec65c8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete-target.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.deleteTarget( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/delete.md b/docs/examples/1.8.x/server-kotlin/java/users/delete.md index d207f9af4b..00dfd2370e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/delete.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.delete( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/users/get-mfa-recovery-codes.md index e617355701..28a433ff88 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.getMFARecoveryCodes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/get-prefs.md b/docs/examples/1.8.x/server-kotlin/java/users/get-prefs.md index 9ff3e4b308..405f033178 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/get-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.getPrefs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/get-target.md b/docs/examples/1.8.x/server-kotlin/java/users/get-target.md index 05c802835d..f103524d16 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/get-target.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/get-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.getTarget( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/get.md b/docs/examples/1.8.x/server-kotlin/java/users/get.md index d8cd707c9c..d72e78caf5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/get.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.get( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-identities.md b/docs/examples/1.8.x/server-kotlin/java/users/list-identities.md index 2dfa297592..505ac56bd2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-identities.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-identities.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.listIdentities( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-logs.md b/docs/examples/1.8.x/server-kotlin/java/users/list-logs.md index ebaa749f56..fa2107b353 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-logs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.listLogs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-memberships.md b/docs/examples/1.8.x/server-kotlin/java/users/list-memberships.md index 3335e18bc7..0beeb6a6d9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-memberships.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-memberships.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -24,3 +25,4 @@ users.listMemberships( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-mfa-factors.md b/docs/examples/1.8.x/server-kotlin/java/users/list-mfa-factors.md index c26f463b68..fc273e134a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.listMFAFactors( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-sessions.md b/docs/examples/1.8.x/server-kotlin/java/users/list-sessions.md index d3b24e53ac..5c9d66c282 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-sessions.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.listSessions( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list-targets.md b/docs/examples/1.8.x/server-kotlin/java/users/list-targets.md index 02fd291cb5..c531484dde 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list-targets.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list-targets.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.listTargets( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/list.md b/docs/examples/1.8.x/server-kotlin/java/users/list.md index 65ed4b00f8..78bd24e615 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/list.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -23,3 +24,4 @@ users.list( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-email-verification.md b/docs/examples/1.8.x/server-kotlin/java/users/update-email-verification.md index a79c87b4d6..c0b3b31496 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-email-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateEmailVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-email.md b/docs/examples/1.8.x/server-kotlin/java/users/update-email.md index 24cdb00dff..8d343ce22f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-email.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateEmail( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-labels.md b/docs/examples/1.8.x/server-kotlin/java/users/update-labels.md index 953f466290..ae52debaa0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-labels.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-labels.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateLabels( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/java/users/update-mfa-recovery-codes.md index 98522b6219..a0b9d1b02a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -21,3 +22,4 @@ users.updateMFARecoveryCodes( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-mfa.md b/docs/examples/1.8.x/server-kotlin/java/users/update-mfa.md index dbcded6d93..b7a5e337d4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-mfa.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-mfa.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateMFA( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-name.md b/docs/examples/1.8.x/server-kotlin/java/users/update-name.md index b4f889cb6d..0de8d5db9d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-name.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateName( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-password.md b/docs/examples/1.8.x/server-kotlin/java/users/update-password.md index 94e24da45d..3e073ecf6a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-password.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-password.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updatePassword( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-phone-verification.md b/docs/examples/1.8.x/server-kotlin/java/users/update-phone-verification.md index 4a1d5a2900..b11e744fc3 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updatePhoneVerification( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-phone.md b/docs/examples/1.8.x/server-kotlin/java/users/update-phone.md index 49477fad43..2eee183349 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-phone.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-phone.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updatePhone( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-prefs.md b/docs/examples/1.8.x/server-kotlin/java/users/update-prefs.md index 5a128aa716..ff2a6c118d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-prefs.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updatePrefs( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-status.md b/docs/examples/1.8.x/server-kotlin/java/users/update-status.md index 6e875b982f..6ff97e1983 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-status.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-status.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -22,3 +23,4 @@ users.updateStatus( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/java/users/update-target.md b/docs/examples/1.8.x/server-kotlin/java/users/update-target.md index 67b90bfbac..c9335828af 100644 --- a/docs/examples/1.8.x/server-kotlin/java/users/update-target.md +++ b/docs/examples/1.8.x/server-kotlin/java/users/update-target.md @@ -1,3 +1,4 @@ +```java import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; @@ -25,3 +26,4 @@ users.updateTarget( }) ); +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-anonymous-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-anonymous-session.md index 8f35c6359e..68a9fd8cb2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.createAnonymousSession() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-password-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-password-session.md index 55add0bbc1..a1cea8ff93 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.createEmailPasswordSession( email = "email@example.com", password = "password" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-token.md index 416163acde..dcca57a7d8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,3 +15,4 @@ val response = account.createEmailToken( email = "email@example.com", phrase = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-verification.md index 4ef178fb9f..1e35db8b24 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-email-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.createEmailVerification( url = "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-jwt.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-jwt.md index 4349cb5b6c..9fdd8c2af6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-jwt.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-jwt.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.createJWT( duration = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-magic-url-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-magic-url-token.md index 185ee6bcce..16a0a9ef49 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -15,3 +16,4 @@ val response = account.createMagicURLToken( url = "https://example.com", // optional phrase = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-authenticator.md index 89c07b3631..51b69b1cb3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val account = Account(client) val response = account.createMFAAuthenticator( type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-challenge.md index a08ade2103..664be4aff7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val account = Account(client) val response = account.createMFAChallenge( factor = AuthenticationFactor.EMAIL ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md index c01499b04b..30dcdb745b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.createMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-o-auth-2-token.md index 71d3d6739a..bc993687da 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -16,3 +17,4 @@ account.createOAuth2Token( failure = "https://example.com", // optional scopes = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-token.md index 1d44bfa107..c4f4075a75 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.createPhoneToken( userId = "", phone = "+12065550100" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-verification.md index 3ae45b3982..991862fa4c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.createPhoneVerification() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-recovery.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-recovery.md index 949219cfca..826fb6363c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-recovery.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-recovery.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.createRecovery( email = "email@example.com", url = "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-session.md index 07a3cd40cc..fac50ff4d5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.createSession( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-verification.md index f3441c9bdd..6b01e27b69 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.createVerification( url = "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/create.md index 1b5742c92c..2b9cd5f4fd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -15,3 +16,4 @@ val response = account.create( password = "", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-identity.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-identity.md index f9a5ce0a12..528a225bd2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-identity.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-identity.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.deleteIdentity( identityId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md index dd7f5b678e..231b312ba6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val account = Account(client) val response = account.deleteMFAAuthenticator( type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-session.md index 31096ccc65..aabb48c1e9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.deleteSession( sessionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-sessions.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-sessions.md index dc29fb8aac..5232e675e5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/delete-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.deleteSessions() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md index 96567f4ca5..04ff7a4ca8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.getMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-prefs.md index 299abbd929..51e682ee8c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.getPrefs() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-session.md index e40297e60c..7311e5c15d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/get-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/get-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.getSession( sessionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/get.md index f65f4fd618..b8d2078fff 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.get() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-identities.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-identities.md index 874ee8f4d2..612e069510 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-identities.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-identities.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.listIdentities( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-logs.md index db0917b5c0..fb39e7376b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.listLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-mfa-factors.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-mfa-factors.md index 0f073df3e9..95c2ffde20 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.listMFAFactors() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-sessions.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-sessions.md index 899260cd5b..1207666379 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/list-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/list-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.listSessions() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email-verification.md index 6eb97bccc2..e36908d2ac 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updateEmailVerification( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email.md index 6ebe5e7ec9..6319d8084a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-email.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updateEmail( email = "email@example.com", password = "password" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-magic-url-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-magic-url-session.md index 33a4b4f65b..7a9524008f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updateMagicURLSession( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-authenticator.md index be143f08ea..cba56459b8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,3 +15,4 @@ val response = account.updateMFAAuthenticator( type = AuthenticatorType.TOTP, otp = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-challenge.md index de90873650..f0d8e6a03b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updateMFAChallenge( challengeId = "", otp = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md index 05f6476e0f..4563b3bbf1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.updateMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa.md index e12e8e00e2..7a1a74d59a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-mfa.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.updateMFA( mfa = false ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-name.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-name.md index ecb7a2bd2f..6fc7f1cd48 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-name.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.updateName( name = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-password.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-password.md index 159aa79aef..33b14a5c67 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-password.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-password.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updatePassword( password = "", oldPassword = "password" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-session.md index 346a25bd96..368d77ab48 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updatePhoneSession( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-verification.md index 36a2d9c73b..22c05c0beb 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updatePhoneVerification( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone.md index 1ee4cbd39b..a3be3c8755 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-phone.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updatePhone( phone = "+12065550100", password = "password" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-prefs.md index 63e66ca44a..87740321cd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -16,3 +17,4 @@ val response = account.updatePrefs( "darkTheme" to true ) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-recovery.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-recovery.md index e56381365d..31387f9da7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-recovery.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-recovery.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -14,3 +15,4 @@ val response = account.updateRecovery( secret = "", password = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-session.md index ab3730af0e..bc85529d44 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -12,3 +13,4 @@ val account = Account(client) val response = account.updateSession( sessionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-status.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-status.md index 021f6143c0..19e6496c08 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-status.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -10,3 +11,4 @@ val client = Client() val account = Account(client) val response = account.updateStatus() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-verification.md index 6402093410..f19aaa6c3f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/account/update-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/account/update-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account @@ -13,3 +14,4 @@ val response = account.updateVerification( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-browser.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-browser.md index be3a323e90..2565bd7cf6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-browser.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -16,3 +17,4 @@ val result = avatars.getBrowser( height = 0, // optional quality = -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-credit-card.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-credit-card.md index 247e111ba1..08ce6f06c3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -16,3 +17,4 @@ val result = avatars.getCreditCard( height = 0, // optional quality = -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-favicon.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-favicon.md index d1f5d9bfe6..b19ad3ffc8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -12,3 +13,4 @@ val avatars = Avatars(client) val result = avatars.getFavicon( url = "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-flag.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-flag.md index 9397696805..3f411c3370 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-flag.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -16,3 +17,4 @@ val result = avatars.getFlag( height = 0, // optional quality = -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-image.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-image.md index 98b9c07e7f..5efffd3286 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-image.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-image.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -14,3 +15,4 @@ val result = avatars.getImage( width = 0, // optional height = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-initials.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-initials.md index 2aa165ccf8..731aaab419 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-initials.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -15,3 +16,4 @@ val result = avatars.getInitials( height = 0, // optional background = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-qr.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-qr.md index abcf488cbb..e9419fef5a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-qr.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -15,3 +16,4 @@ val result = avatars.getQR( margin = 0, // optional download = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-screenshot.md b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-screenshot.md index 16d431befe..7f735d41eb 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars @@ -38,3 +39,4 @@ val result = avatars.getScreenshot( quality = 85, // optional output = ImageFormat.JPEG // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-boolean-attribute.md index b80bd9497a..9b06790a2d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createBooleanAttribute( default = false, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-collection.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-collection.md index 1166e73bcb..9dbc8696f6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-collection.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-collection.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -21,3 +22,4 @@ val response = databases.createCollection( attributes = listOf(), // optional indexes = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-datetime-attribute.md index 2d730562a9..df5cff2911 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createDatetimeAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-document.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-document.md index cbdbcaeb9b..f0cb24e9aa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-document.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -25,3 +26,4 @@ val response = databases.createDocument( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-documents.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-documents.md index 114d5cc707..a0f32b6c36 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-documents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.createDocuments( documents = listOf(), transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-email-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-email-attribute.md index 2a5a9c2a60..ab76182df8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createEmailAttribute( default = "email@example.com", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-enum-attribute.md index d9decdeba9..982ed8bc6d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.createEnumAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-float-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-float-attribute.md index 5ca86a66af..ecf3795f74 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.createFloatAttribute( default = 0, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-index.md index 3d0d26a5b3..85d3729ce1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -20,3 +21,4 @@ val response = databases.createIndex( orders = listOf(OrderBy.ASC), // optional lengths = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-integer-attribute.md index 748d01a849..875fddd69a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.createIntegerAttribute( default = 0, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-ip-attribute.md index bfc610517a..1417b75d5a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createIpAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-line-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-line-attribute.md index 8f1322b3fd..cff25a370b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,3 +17,4 @@ val response = databases.createLineAttribute( required = false, default = listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6)) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-longtext-attribute.md index b10e681019..040b6b0086 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createLongtextAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md index ccd6188960..d859f7596b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createMediumtextAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-operations.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-operations.md index eae10ab609..5c414afd18 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-operations.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-operations.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -21,3 +22,4 @@ val response = databases.createOperations( ) )) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-point-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-point-attribute.md index 04f095ee4e..9ab6eaf027 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,3 +17,4 @@ val response = databases.createPointAttribute( required = false, default = listOf(1, 2) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-polygon-attribute.md index 5a3491c414..2c2f74e1d3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,3 +17,4 @@ val response = databases.createPolygonAttribute( required = false, default = listOf(listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6), listOf(1, 2))) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-relationship-attribute.md index 371e8ce896..6f3604fa56 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -21,3 +22,4 @@ val response = databases.createRelationshipAttribute( twoWayKey = "", // optional onDelete = RelationMutate.CASCADE // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-string-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-string-attribute.md index 333cb76763..94c831600c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.createStringAttribute( array = false, // optional encrypt = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-text-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-text-attribute.md index 7de27ed924..6dd2b1713a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createTextAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-transaction.md index 83ff583038..affea1ade8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.createTransaction( ttl = 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-url-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-url-attribute.md index 06057d4683..cfea13026b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.createUrlAttribute( default = "https://example.com", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-varchar-attribute.md index bb936484bf..3618dc5190 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.createVarcharAttribute( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create.md index 04c64801d2..84b42af29e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.create( name = "", enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/decrement-document-attribute.md index 3ccd662d59..8f72cff78c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.decrementDocumentAttribute( min = 0, // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-attribute.md index 9a25155957..d0da3b2235 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.deleteAttribute( collectionId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-collection.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-collection.md index c46ca086b9..fcb70adf3f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-collection.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -13,3 +14,4 @@ val response = databases.deleteCollection( databaseId = "", collectionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-document.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-document.md index 3be4372987..42e196e05d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-document.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.deleteDocument( documentId = "", transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-documents.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-documents.md index 9b9ea263c4..43baf47bc3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.deleteDocuments( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-index.md index 37c75dcfe5..f96df1c1a4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.deleteIndex( collectionId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-transaction.md index ef11e9fad8..20425d68b0 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.deleteTransaction( transactionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete.md index 07225698e2..bee3ffc188 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.delete( databaseId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-attribute.md index a59facd7db..eb49cb15ca 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.getAttribute( collectionId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-collection.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-collection.md index 7f6e578db1..374a96653c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-collection.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-collection.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -13,3 +14,4 @@ val response = databases.getCollection( databaseId = "", collectionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-document.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-document.md index 98855d0984..b7f492c1f3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-document.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,3 +17,4 @@ val response = databases.getDocument( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-index.md index 39ac7af9fb..8a728b72bd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.getIndex( collectionId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-transaction.md index 1e44376ab7..f4b58289e7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.getTransaction( transactionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get.md index 6ebb0c109c..53f3359c00 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.get( databaseId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/increment-document-attribute.md index fb358868d2..995f61a64a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.incrementDocumentAttribute( max = 0, // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-attributes.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-attributes.md index c2a3e66d7c..51b330a338 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-attributes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.listAttributes( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-collections.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-collections.md index 2a646c7f72..85dd1298ea 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-collections.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-collections.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.listCollections( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-documents.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-documents.md index 61a3729a85..ab55a24cf4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-documents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -16,3 +17,4 @@ val response = databases.listDocuments( transactionId = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-indexes.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-indexes.md index a3242827a2..d91e4b2dbd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-indexes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.listIndexes( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-transactions.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-transactions.md index 0d122b108d..1195069e13 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list-transactions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -12,3 +13,4 @@ val databases = Databases(client) val response = databases.listTransactions( queries = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list.md index a12b54c387..f869a96f9e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-boolean-attribute.md index 4c9fd91d83..cffc7b675c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateBooleanAttribute( default = false, newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-collection.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-collection.md index eff93634fe..da41a126c4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-collection.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-collection.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.updateCollection( documentSecurity = false, // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-datetime-attribute.md index 082ae1c05a..8f2c3c424f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateDatetimeAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-document.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-document.md index ad3ddf04c5..15cebaa2c8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-document.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -25,3 +26,4 @@ val response = databases.updateDocument( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-documents.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-documents.md index f04ae12287..bed5088855 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-documents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -22,3 +23,4 @@ val response = databases.updateDocuments( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-email-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-email-attribute.md index 026bd6447f..0815cda219 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateEmailAttribute( default = "email@example.com", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-enum-attribute.md index e68a29c20a..56fc612bb2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.updateEnumAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-float-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-float-attribute.md index 58b110743e..315815ef5d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.updateFloatAttribute( max = 0, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-integer-attribute.md index a00dcf95a0..75d59ccf18 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -19,3 +20,4 @@ val response = databases.updateIntegerAttribute( max = 0, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-ip-attribute.md index 505e5ea18d..8855307e26 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateIpAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-line-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-line-attribute.md index 0a8b50a332..0951a6ad3a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateLineAttribute( default = listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6)), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-longtext-attribute.md index e054e7360d..df98d40b56 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateLongtextAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md index 1b4fb91950..2200297788 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateMediumtextAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-point-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-point-attribute.md index 68d5311c98..7e5acf486a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updatePointAttribute( default = listOf(1, 2), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-polygon-attribute.md index 37df6acee0..6b3ce7bba5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updatePolygonAttribute( default = listOf(listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6), listOf(1, 2))), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-relationship-attribute.md index 8a98963eb7..5990539dda 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateRelationshipAttribute( onDelete = RelationMutate.CASCADE, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-string-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-string-attribute.md index 364a6b5b7f..c6eff55d33 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.updateStringAttribute( size = 1, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-text-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-text-attribute.md index 54b389fdd2..0766eba1dd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateTextAttribute( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-transaction.md index 834d0dc78d..d59a110578 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.updateTransaction( commit = false, // optional rollback = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-url-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-url-attribute.md index a628cc57f8..84f9911af4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -17,3 +18,4 @@ val response = databases.updateUrlAttribute( default = "https://example.com", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-varchar-attribute.md index cfe193499b..bb285fed09 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -18,3 +19,4 @@ val response = databases.updateVarcharAttribute( size = 1, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update.md index 820216c78f..5adc8a0136 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/update.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -14,3 +15,4 @@ val response = databases.update( name = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-document.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-document.md index c5a2553636..5f1caef259 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-document.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -25,3 +26,4 @@ val response = databases.upsertDocument( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-documents.md b/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-documents.md index db9e2b3e2d..a9e673c20b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases @@ -15,3 +16,4 @@ val response = databases.upsertDocuments( documents = listOf(), transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-deployment.md index ddc6e8b207..3fe1a24f6f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.models.InputFile @@ -17,3 +18,4 @@ val response = functions.createDeployment( entrypoint = "", // optional commands = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md index a3395f118f..4fda762a94 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -14,3 +15,4 @@ val response = functions.createDuplicateDeployment( deploymentId = "", buildId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-execution.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-execution.md index e003b6e2b3..1bae93d374 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-execution.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-execution.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -19,3 +20,4 @@ val response = functions.createExecution( headers = mapOf( "a" to "b" ), // optional scheduledAt = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-template-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-template-deployment.md index 01286090f5..ebc28411b9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -19,3 +20,4 @@ val response = functions.createTemplateDeployment( reference = "", activate = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-variable.md index 061bc20534..456250005d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -15,3 +16,4 @@ val response = functions.createVariable( value = "", secret = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-vcs-deployment.md index 32d33888bf..143083c6c3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -16,3 +17,4 @@ val response = functions.createVcsDeployment( reference = "", activate = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create.md index b2ae44f65c..0ad7f9737d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -31,3 +32,4 @@ val response = functions.create( providerRootDirectory = "", // optional specification = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-deployment.md index 937fc961da..d3129ad60a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.deleteDeployment( functionId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-execution.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-execution.md index 95994f822a..82e132b074 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-execution.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.deleteExecution( functionId = "", executionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-variable.md index e1793675c9..803f5af188 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.deleteVariable( functionId = "", variableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete.md index 9651744767..5970fbb246 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -12,3 +13,4 @@ val functions = Functions(client) val response = functions.delete( functionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment-download.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment-download.md index da9c9af766..d6663d685a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -15,3 +16,4 @@ val result = functions.getDeploymentDownload( deploymentId = "", type = DeploymentDownloadType.SOURCE // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment.md index eba4abb6df..c8fd707661 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.getDeployment( functionId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-execution.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-execution.md index 480dbb76ba..38e3138155 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-execution.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-execution.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.getExecution( functionId = "", executionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-variable.md index 95359ef8fc..09b9fd1fa4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.getVariable( functionId = "", variableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get.md index 162fa22497..035dc3b879 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -12,3 +13,4 @@ val functions = Functions(client) val response = functions.get( functionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-deployments.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-deployments.md index 63f48503d8..950e604802 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-deployments.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -15,3 +16,4 @@ val response = functions.listDeployments( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-executions.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-executions.md index 75fc51ef5b..42b23a2616 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-executions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-executions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -14,3 +15,4 @@ val response = functions.listExecutions( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-runtimes.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-runtimes.md index 5b3673b84d..b32e73bf07 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -10,3 +11,4 @@ val client = Client() val functions = Functions(client) val response = functions.listRuntimes() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-specifications.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-specifications.md index 0b2fb46a4b..452d24fe82 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-specifications.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -10,3 +11,4 @@ val client = Client() val functions = Functions(client) val response = functions.listSpecifications() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-variables.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-variables.md index 7f576e8957..3dbec321e1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-variables.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list-variables.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -12,3 +13,4 @@ val functions = Functions(client) val response = functions.listVariables( functionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list.md index 4cf8518a70..a761432692 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -14,3 +15,4 @@ val response = functions.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-deployment-status.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-deployment-status.md index 0e6e9c0abe..acbb9bcd3f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.updateDeploymentStatus( functionId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-function-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-function-deployment.md index a975e07efe..a943350676 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -13,3 +14,4 @@ val response = functions.updateFunctionDeployment( functionId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-variable.md index 106b340eb5..66bbb797ff 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -16,3 +17,4 @@ val response = functions.updateVariable( value = "", // optional secret = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update.md index 082deaa7ce..c04a3c96ba 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/functions/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/functions/update.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions @@ -31,3 +32,4 @@ val response = functions.update( providerRootDirectory = "", // optional specification = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/graphql/mutation.md b/docs/examples/1.8.x/server-kotlin/kotlin/graphql/mutation.md index 98081ab06b..3ec94a5d42 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/graphql/mutation.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/graphql/mutation.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql @@ -12,3 +13,4 @@ val graphql = Graphql(client) val response = graphql.mutation( query = mapOf( "a" to "b" ) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/graphql/query.md b/docs/examples/1.8.x/server-kotlin/kotlin/graphql/query.md index dec8dd350c..e22d508b35 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/graphql/query.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/graphql/query.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql @@ -12,3 +13,4 @@ val graphql = Graphql(client) val response = graphql.query( query = mapOf( "a" to "b" ) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-antivirus.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-antivirus.md index 869b4c4804..03bd635b1c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-antivirus.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getAntivirus() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-cache.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-cache.md index 8b72ec414f..ef3265d3a5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-cache.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-cache.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getCache() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-certificate.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-certificate.md index 74bf618704..4dd8312c08 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-certificate.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-certificate.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getCertificate( domain = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-db.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-db.md index a55a1146f4..a844d27dcf 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-db.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-db.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getDB() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-failed-jobs.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-failed-jobs.md index 8bb2cadf87..8f27aa34b8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -14,3 +15,4 @@ val response = health.getFailedJobs( name = Name.V1_DATABASE, threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-pub-sub.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-pub-sub.md index 53c3820232..e12911f462 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getPubSub() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-audits.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-audits.md index 588e6ad81c..a0a0218875 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueAudits( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-builds.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-builds.md index 371aad90f8..2a53785827 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueBuilds( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-certificates.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-certificates.md index 5c6adeecb5..2776e5b88e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueCertificates( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-databases.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-databases.md index 3a3405830d..b65359e9f8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -13,3 +14,4 @@ val response = health.getQueueDatabases( name = "", // optional threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-deletes.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-deletes.md index 5d0b8a3381..e99a76bef8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueDeletes( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-functions.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-functions.md index 7a42b61ba5..5e0b45aaf1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueFunctions( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-logs.md index 151025bfb6..b258f31b95 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueLogs( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-mails.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-mails.md index f5a905dd73..ef50752318 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueMails( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-messaging.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-messaging.md index 4a837928eb..a1ccdace9b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueMessaging( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-migrations.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-migrations.md index 853d294ed1..1f5701fba6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueMigrations( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-stats-resources.md index 6a76f528e2..f2359cf0fb 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueStatsResources( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-usage.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-usage.md index e344b9eddc..7dcccb61ec 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueUsage( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-webhooks.md index f5ffc58d8d..1b1831c9a6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -12,3 +13,4 @@ val health = Health(client) val response = health.getQueueWebhooks( threshold = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage-local.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage-local.md index 32a21aea0a..41a01f87c1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage-local.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getStorageLocal() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage.md index 8af609aad9..5c52798d73 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-storage.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getStorage() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-time.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-time.md index 8054ed7c69..acbebfd168 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get-time.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get-time.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.getTime() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/health/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/health/get.md index 0845320bb5..3932ccb14c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/health/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/health/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health @@ -10,3 +11,4 @@ val client = Client() val health = Health(client) val response = health.get() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/get.md index 6840259c27..aa14e45016 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.get() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-codes.md index fd0c4e413e..d7d323e4f9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listCodes() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-continents.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-continents.md index 699d599f56..84fd76bcf8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-continents.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-continents.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listContinents() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-eu.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-eu.md index 13e86f3064..4fbcee6c1e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listCountriesEU() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-phones.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-phones.md index b660ccf433..02c56bbcca 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listCountriesPhones() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries.md index 3457ceb4c5..441e130e58 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-countries.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listCountries() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-currencies.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-currencies.md index 80b2cc7e52..c68d676a5d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-currencies.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listCurrencies() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-languages.md b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-languages.md index b36c1389a5..307d0b796d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-languages.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/locale/list-languages.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale @@ -10,3 +11,4 @@ val client = Client() val locale = Locale(client) val response = locale.listLanguages() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-apns-provider.md index 5104edf3e2..e9d80cad2b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.createAPNSProvider( sandbox = false, // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-email.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-email.md index f0f41e9e53..89460f6612 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-email.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-email.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -23,3 +24,4 @@ val response = messaging.createEmail( html = false, // optional scheduledAt = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-fcm-provider.md index b1a2ef8314..495b9ac676 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -15,3 +16,4 @@ val response = messaging.createFCMProvider( serviceAccountJSON = mapOf( "a" to "b" ), // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md index d205171dfe..7f253330fa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -21,3 +22,4 @@ val response = messaging.createMailgunProvider( replyToEmail = "email@example.com", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md index 5ea3d223e9..a80004b808 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.createMsg91Provider( authKey = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-push.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-push.md index be43581535..607ab779bc 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-push.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-push.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -31,3 +32,4 @@ val response = messaging.createPush( critical = false, // optional priority = MessagePriority.NORMAL // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-resend-provider.md index 2db1dc1b17..313bbb7055 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.createResendProvider( replyToEmail = "email@example.com", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md index e96a052d5a..05b263bbb1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.createSendgridProvider( replyToEmail = "email@example.com", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sms.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sms.md index 54c06eb3e2..506f84fa59 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-sms.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -18,3 +19,4 @@ val response = messaging.createSMS( draft = false, // optional scheduledAt = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-smtp-provider.md index 62a61a5739..64d55ed133 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -26,3 +27,4 @@ val response = messaging.createSMTPProvider( replyToEmail = "email@example.com", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-subscriber.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-subscriber.md index 44e3a72a1d..8b72a81335 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.createSubscriber( subscriberId = "", targetId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-telesign-provider.md index cddd6d801a..585fddeb39 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.createTelesignProvider( apiKey = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md index 12eb62d957..d9290bb271 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.createTextmagicProvider( apiKey = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-topic.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-topic.md index 570be33e41..139dcf6aa7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-topic.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.createTopic( name = "", subscribe = listOf("any") // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-twilio-provider.md index c05b835d52..94556b562e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.createTwilioProvider( authToken = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-vonage-provider.md index 7e049d8313..d4b8b3dccf 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.createVonageProvider( apiSecret = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-provider.md index 4989da8cd3..82875d6741 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.deleteProvider( providerId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-subscriber.md index 0f99f251a3..d475b5b41d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -13,3 +14,4 @@ val response = messaging.deleteSubscriber( topicId = "", subscriberId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-topic.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-topic.md index 8a52c9f9a5..46407e82b8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.deleteTopic( topicId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete.md index 7e4ec51c93..25a5cfb433 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.delete( messageId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-message.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-message.md index 710d356113..9e9254f582 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-message.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-message.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.getMessage( messageId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-provider.md index c678d4d984..a318451d68 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.getProvider( providerId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-subscriber.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-subscriber.md index 59b335a2e6..ef49cf15f2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -13,3 +14,4 @@ val response = messaging.getSubscriber( topicId = "", subscriberId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-topic.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-topic.md index c189898e95..1a5738f8eb 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/get-topic.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -12,3 +13,4 @@ val messaging = Messaging(client) val response = messaging.getTopic( topicId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-message-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-message-logs.md index 2f03870b96..7aedf604ff 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listMessageLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-messages.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-messages.md index 22aae7ebac..cbf689e23c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-messages.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listMessages( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-provider-logs.md index 2f7eb728e5..f395d934ff 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listProviderLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-providers.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-providers.md index 5c200e7b54..27c875d415 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-providers.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listProviders( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md index f7c9324c30..77aa525871 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listSubscriberLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscribers.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscribers.md index 0056974198..8ae76791fa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -15,3 +16,4 @@ val response = messaging.listSubscribers( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-targets.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-targets.md index 2611fc94a2..e6ff5faaaa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-targets.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listTargets( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topic-logs.md index c7e81b273a..ce66475e5e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listTopicLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topics.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topics.md index a2c64e688b..23cae83dd3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/list-topics.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.listTopics( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-apns-provider.md index 29b436e41d..2d8812910f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.updateAPNSProvider( bundleId = "", // optional sandbox = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-email.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-email.md index cd74bb4290..f9f506880b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-email.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -23,3 +24,4 @@ val response = messaging.updateEmail( scheduledAt = "", // optional attachments = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-fcm-provider.md index 84e5635fb2..2d5e525737 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -15,3 +16,4 @@ val response = messaging.updateFCMProvider( enabled = false, // optional serviceAccountJSON = mapOf( "a" to "b" ) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md index 4bec8d2a44..18b652ce38 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -21,3 +22,4 @@ val response = messaging.updateMailgunProvider( replyToName = "", // optional replyToEmail = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md index 3abaca75bb..f4901b70af 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.updateMsg91Provider( senderId = "", // optional authKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-push.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-push.md index f1852bc951..e6092f9821 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-push.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-push.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -31,3 +32,4 @@ val response = messaging.updatePush( critical = false, // optional priority = MessagePriority.NORMAL // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-resend-provider.md index 26d6f12a17..c16fa845e1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.updateResendProvider( replyToName = "", // optional replyToEmail = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md index 962aa694e6..2d82d6a865 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -19,3 +20,4 @@ val response = messaging.updateSendgridProvider( replyToName = "", // optional replyToEmail = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sms.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sms.md index 534e9addfc..370877cae0 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-sms.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -18,3 +19,4 @@ val response = messaging.updateSMS( draft = false, // optional scheduledAt = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-smtp-provider.md index 90c8b26bca..ff8ed34ea9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -26,3 +27,4 @@ val response = messaging.updateSMTPProvider( replyToEmail = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-telesign-provider.md index 83fb11a856..f2cb5b2511 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.updateTelesignProvider( apiKey = "", // optional from = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md index 1e2ee1e2c8..1640c79d50 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.updateTextmagicProvider( apiKey = "", // optional from = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-topic.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-topic.md index 0991fd0ee4..d9a6a78c2e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-topic.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -14,3 +15,4 @@ val response = messaging.updateTopic( name = "", // optional subscribe = listOf("any") // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-twilio-provider.md index 1c86f9e853..b60901a90b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.updateTwilioProvider( authToken = "", // optional from = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-vonage-provider.md index bf0ee2b75c..8458a7b43e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging @@ -17,3 +18,4 @@ val response = messaging.updateVonageProvider( apiSecret = "", // optional from = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-deployment.md index ba2c24dd6b..0c1027f698 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.models.InputFile @@ -18,3 +19,4 @@ val response = sites.createDeployment( buildCommand = "", // optional outputDirectory = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md index 06a3ce8467..0bbc1c117d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.createDuplicateDeployment( siteId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-template-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-template-deployment.md index f32131ed35..65515cc8ca 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -19,3 +20,4 @@ val response = sites.createTemplateDeployment( reference = "", activate = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-variable.md index 6eb466682f..859a759b5b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -15,3 +16,4 @@ val response = sites.createVariable( value = "", secret = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-vcs-deployment.md index 44f88d8cc0..9e7cd91eec 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -16,3 +17,4 @@ val response = sites.createVcsDeployment( reference = "", activate = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create.md index 1dcd9580af..a0a0205684 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -32,3 +33,4 @@ val response = sites.create( providerRootDirectory = "", // optional specification = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-deployment.md index 6d739183f1..76400fc5db 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.deleteDeployment( siteId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-log.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-log.md index c7d7b77824..5a3714107f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-log.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-log.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.deleteLog( siteId = "", logId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-variable.md index 7859a8a852..4df5d29042 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.deleteVariable( siteId = "", variableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete.md index 369b6144c3..d1c5bbe44b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -12,3 +13,4 @@ val sites = Sites(client) val response = sites.delete( siteId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment-download.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment-download.md index 65450f8949..e86ef015c8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -15,3 +16,4 @@ val result = sites.getDeploymentDownload( deploymentId = "", type = DeploymentDownloadType.SOURCE // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment.md index f2a33a409e..f20cd5e70c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.getDeployment( siteId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-log.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-log.md index ff46f77d12..57f3520250 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-log.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-log.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.getLog( siteId = "", logId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-variable.md index ccab666607..691e919f4a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.getVariable( siteId = "", variableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get.md index 7ced974ede..735b51967e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -12,3 +13,4 @@ val sites = Sites(client) val response = sites.get( siteId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-deployments.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-deployments.md index 51152978ee..cf092dbc26 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-deployments.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -15,3 +16,4 @@ val response = sites.listDeployments( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-frameworks.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-frameworks.md index cf02b75bc2..6c7aa92dee 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -10,3 +11,4 @@ val client = Client() val sites = Sites(client) val response = sites.listFrameworks() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-logs.md index 95848b258b..bfb8556b95 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -14,3 +15,4 @@ val response = sites.listLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-specifications.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-specifications.md index 56e864059a..5ebef60143 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-specifications.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -10,3 +11,4 @@ val client = Client() val sites = Sites(client) val response = sites.listSpecifications() +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-variables.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-variables.md index 70ec49799b..094865089d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-variables.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list-variables.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -12,3 +13,4 @@ val sites = Sites(client) val response = sites.listVariables( siteId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list.md index 844823db08..3b064979f2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -14,3 +15,4 @@ val response = sites.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-deployment-status.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-deployment-status.md index 585fc324ed..c9727b3744 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.updateDeploymentStatus( siteId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-site-deployment.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-site-deployment.md index fb9bb726f8..7f3da4237c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -13,3 +14,4 @@ val response = sites.updateSiteDeployment( siteId = "", deploymentId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-variable.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-variable.md index b32c27809a..fe87cc3fe4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-variable.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update-variable.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -16,3 +17,4 @@ val response = sites.updateVariable( value = "", // optional secret = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update.md index 94f8884dbd..e3b1ecb61b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/sites/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/sites/update.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites @@ -32,3 +33,4 @@ val response = sites.update( providerRootDirectory = "", // optional specification = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-bucket.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-bucket.md index be114e2221..a2f2be7afa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-bucket.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -25,3 +26,4 @@ val response = storage.createBucket( antivirus = false, // optional transformations = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-file.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-file.md index e9e986cd26..e17edbd894 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-file.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/create-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.models.InputFile @@ -18,3 +19,4 @@ val response = storage.createFile( file = InputFile.fromPath("file.png"), permissions = listOf(Permission.read(Role.any())) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-bucket.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-bucket.md index 4a0904ec63..a5f681c67e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -12,3 +13,4 @@ val storage = Storage(client) val response = storage.deleteBucket( bucketId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-file.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-file.md index cf5e285db3..8ba5a38cb1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-file.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/delete-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -13,3 +14,4 @@ val response = storage.deleteFile( bucketId = "", fileId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-bucket.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-bucket.md index e2a6a8f527..b243bc3f7a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-bucket.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -12,3 +13,4 @@ val storage = Storage(client) val response = storage.getBucket( bucketId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-download.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-download.md index c14c966b8b..ed3198ddef 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-download.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -14,3 +15,4 @@ val result = storage.getFileDownload( fileId = "", token = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-preview.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-preview.md index c740da36b7..9f7f29240b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -27,3 +28,4 @@ val result = storage.getFilePreview( output = ImageFormat.JPG, // optional token = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-view.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-view.md index fec1ec7162..141a8cd4f4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file-view.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -14,3 +15,4 @@ val result = storage.getFileView( fileId = "", token = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file.md index a807177dce..223075939b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/get-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -13,3 +14,4 @@ val response = storage.getFile( bucketId = "", fileId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-buckets.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-buckets.md index b502367c94..94c0bb6a1b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-buckets.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -14,3 +15,4 @@ val response = storage.listBuckets( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-files.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-files.md index 648d37dca4..bc1e60aae2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-files.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/list-files.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -15,3 +16,4 @@ val response = storage.listFiles( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-bucket.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-bucket.md index 25fed3cf13..99e928c6c3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-bucket.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -25,3 +26,4 @@ val response = storage.updateBucket( antivirus = false, // optional transformations = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-file.md b/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-file.md index b019f567a9..8bcebadd78 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-file.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/storage/update-file.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage @@ -17,3 +18,4 @@ val response = storage.updateFile( name = "", // optional permissions = listOf(Permission.read(Role.any())) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md index fac14d916f..1b386bcf05 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createBooleanColumn( default = false, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md index e40d8e4729..bd19dee84c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createDatetimeColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md index e93e0b8907..8132436ba7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createEmailColumn( default = "email@example.com", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md index 1d19a589e0..9a33d4c423 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.createEnumColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md index 3c24b0d9fa..26345ea98c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.createFloatColumn( default = 0, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md index 9583499be3..b3c09ee07c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -20,3 +21,4 @@ val response = tablesDB.createIndex( orders = listOf(OrderBy.ASC), // optional lengths = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md index 90c558c4dd..fd10f1ceed 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.createIntegerColumn( default = 0, // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md index 81412c7ac0..8541b5849d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createIpColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-line-column.md index cede289439..f976c98598 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,3 +17,4 @@ val response = tablesDB.createLineColumn( required = false, default = listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6)) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md index 784171b83e..97c43d16c7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createLongtextColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md index 4a4df44776..466bf61006 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createMediumtextColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-operations.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-operations.md index 5b05949715..d2c6f7a020 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -21,3 +22,4 @@ val response = tablesDB.createOperations( ) )) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-point-column.md index 7fd6ad7504..891f19128f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,3 +17,4 @@ val response = tablesDB.createPointColumn( required = false, default = listOf(1, 2) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md index c4282d1b67..e31813fb1a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,3 +17,4 @@ val response = tablesDB.createPolygonColumn( required = false, default = listOf(listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6), listOf(1, 2))) // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md index 7283d05be9..b9884fd68f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -21,3 +22,4 @@ val response = tablesDB.createRelationshipColumn( twoWayKey = "", // optional onDelete = RelationMutate.CASCADE // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md index e74c07a1ef..4cd0dd06f3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -25,3 +26,4 @@ val response = tablesDB.createRow( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md index 8cef6028a2..5cb02b7802 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.createRows( rows = listOf(), transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md index 5b5d88db3c..de14c37327 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.createStringColumn( array = false, // optional encrypt = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md index 81e4830e39..cdc00e2044 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -21,3 +22,4 @@ val response = tablesDB.createTable( columns = listOf(), // optional indexes = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-text-column.md index f85c7c8bca..ffdc4070ab 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createTextColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-transaction.md index 31385700c5..c7594185b8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.createTransaction( ttl = 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md index a0351e4f37..b142ae8db7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.createUrlColumn( default = "https://example.com", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md index de884df57a..319cb9a0c6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.createVarcharColumn( default = "", // optional array = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md index 4b025b853e..622f66e2a1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.create( name = "", enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md index 30a8d54b1a..d09bdbb104 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.decrementRowColumn( min = 0, // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md index 05d341d1b3..738d6f785d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.deleteColumn( tableId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md index b5f2330d60..139eaf36c6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.deleteIndex( tableId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md index 6ba7d6057c..e332db02fe 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.deleteRow( rowId = "", transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md index da2b709f8a..00cd5abe07 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.deleteRows( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md index dce8e583ab..d83d92701e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -13,3 +14,4 @@ val response = tablesDB.deleteTable( databaseId = "", tableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-transaction.md index 2ef1f27a25..8e8641bf75 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.deleteTransaction( transactionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md index 3e335fa264..15035253a7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.delete( databaseId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md index c4cf24dd1f..6382da218b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.getColumn( tableId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md index 4db254740a..9be2100a3d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.getIndex( tableId = "", key = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md index f92a1ccf27..18845e2a3e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,3 +17,4 @@ val response = tablesDB.getRow( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md index 65afae84b3..6595254a2e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -13,3 +14,4 @@ val response = tablesDB.getTable( databaseId = "", tableId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-transaction.md index f4467dc914..c478eb8e51 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.getTransaction( transactionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md index e58da26fdb..9d9de009f2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.get( databaseId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md index af3676e75b..6c37b6b420 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.incrementRowColumn( max = 0, // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md index 663da3cb91..7867737494 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.listColumns( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md index 59a64a40a7..edd5cbd2b4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.listIndexes( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md index ba6e1fe285..1f50588b5c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -16,3 +17,4 @@ val response = tablesDB.listRows( transactionId = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md index c504d732c2..a60bbfe933 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.listTables( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-transactions.md index a060b9fac3..52ebbefbb2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -12,3 +13,4 @@ val tablesDB = TablesDB(client) val response = tablesDB.listTransactions( queries = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md index 942880cd58..a5b2d10378 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md index 43ab43bfea..1e8532ac46 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateBooleanColumn( default = false, newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md index 077cff7169..4bdb389eb5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateDatetimeColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md index 5becaa681d..5285000af7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateEmailColumn( default = "email@example.com", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md index 4351703edb..a1240662ff 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.updateEnumColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md index 6d40c3f3a1..6dc50660d4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.updateFloatColumn( max = 0, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md index 9d6bfaa635..746107f0fd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.updateIntegerColumn( max = 0, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md index fd04b98a13..62a86fcb33 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateIpColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-line-column.md index 4b975c0ee0..adb1de98de 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateLineColumn( default = listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6)), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md index 8a4794f71a..e4f89c338b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateLongtextColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md index 1eb2b4610a..3fb82c709f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateMediumtextColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-point-column.md index 2230e59f8e..1374e0cb8a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updatePointColumn( default = listOf(1, 2), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md index 4042847176..534897a201 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updatePolygonColumn( default = listOf(listOf(listOf(1, 2), listOf(3, 4), listOf(5, 6), listOf(1, 2))), // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md index de623e7648..590261e3ce 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateRelationshipColumn( onDelete = RelationMutate.CASCADE, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md index 19460e9b92..1ef3553536 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -25,3 +26,4 @@ val response = tablesDB.updateRow( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md index f1ced7b12f..89eba7dfaa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -22,3 +23,4 @@ val response = tablesDB.updateRows( queries = listOf(), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md index acdd3ad5f9..da44be7c16 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.updateStringColumn( size = 1, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md index 5c0af5cdaa..994332d449 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -19,3 +20,4 @@ val response = tablesDB.updateTable( rowSecurity = false, // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-text-column.md index 4949bea8f5..95262cadc4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateTextColumn( default = "", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-transaction.md index a3797ca5ca..1e452f4b3c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.updateTransaction( commit = false, // optional rollback = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md index fbe68c9a62..885ef717ec 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -17,3 +18,4 @@ val response = tablesDB.updateUrlColumn( default = "https://example.com", newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md index c563455b1a..c190bb984f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -18,3 +19,4 @@ val response = tablesDB.updateVarcharColumn( size = 1, // optional newKey = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md index 44c83a02b9..becb2b9f68 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -14,3 +15,4 @@ val response = tablesDB.update( name = "", // optional enabled = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md index dc067352f0..7ae1397e4e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -25,3 +26,4 @@ val response = tablesDB.upsertRow( permissions = listOf(Permission.read(Role.any())), // optional transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md index 2f08375c4a..5ee9beb6c0 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB @@ -15,3 +16,4 @@ val response = tablesDB.upsertRows( rows = listOf(), transactionId = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/create-membership.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/create-membership.md index dc18f049ff..fca5b5e5f4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/create-membership.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/create-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -19,3 +20,4 @@ val response = teams.createMembership( url = "https://example.com", // optional name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/create.md index 6ec7e533d2..f14fb19d43 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -14,3 +15,4 @@ val response = teams.create( name = "", roles = listOf() // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete-membership.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete-membership.md index 48c924f37b..1291b5ddc6 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,3 +14,4 @@ val response = teams.deleteMembership( teamId = "", membershipId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete.md index 4b70ff2f18..d6b5389db1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -12,3 +13,4 @@ val teams = Teams(client) val response = teams.delete( teamId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-membership.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-membership.md index a636c217da..e35179ee9d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-membership.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,3 +14,4 @@ val response = teams.getMembership( teamId = "", membershipId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-prefs.md index 2b73432d6c..615a59d07c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -12,3 +13,4 @@ val teams = Teams(client) val response = teams.getPrefs( teamId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get.md index 72b667776f..d5dc888aef 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -12,3 +13,4 @@ val teams = Teams(client) val response = teams.get( teamId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/list-memberships.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/list-memberships.md index edcbd0d0bd..762336d109 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/list-memberships.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -15,3 +16,4 @@ val response = teams.listMemberships( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/list.md index 591efa4fb1..bcb4c83a1d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -14,3 +15,4 @@ val response = teams.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership-status.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership-status.md index b7a0d51ec5..082004b8a2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -15,3 +16,4 @@ val response = teams.updateMembershipStatus( userId = "", secret = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership.md index 5e5de79e8f..3f6122ea20 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-membership.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -15,3 +16,4 @@ val response = teams.updateMembership( membershipId = "", roles = listOf(Roles.ADMIN) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-name.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-name.md index 2f13d7c460..229bea6c89 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-name.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,3 +14,4 @@ val response = teams.updateName( teamId = "", name = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-prefs.md index 62c7f01ca5..d9e68fa2c5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/teams/update-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams @@ -13,3 +14,4 @@ val response = teams.updatePrefs( teamId = "", prefs = mapOf( "a" to "b" ) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/create-file-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/create-file-token.md index 63d8fc301b..9ae5fdac25 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens @@ -14,3 +15,4 @@ val response = tokens.createFileToken( fileId = "", expire = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/delete.md index 1831bc6a87..25e4b19fa5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens @@ -12,3 +13,4 @@ val tokens = Tokens(client) val response = tokens.delete( tokenId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/get.md index 70a47c2349..803030987c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens @@ -12,3 +13,4 @@ val tokens = Tokens(client) val response = tokens.get( tokenId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/list.md index 01f369de09..39ffb76189 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens @@ -15,3 +16,4 @@ val response = tokens.list( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/update.md index 045ddaae4a..fd02899d03 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tokens/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tokens/update.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens @@ -13,3 +14,4 @@ val response = tokens.update( tokenId = "", expire = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-argon-2-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-argon-2-user.md index 27008a0415..ba0c2d0cb1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -15,3 +16,4 @@ val response = users.createArgon2User( password = "password", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-bcrypt-user.md index c7231307cf..3a563f7266 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -15,3 +16,4 @@ val response = users.createBcryptUser( password = "password", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-jwt.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-jwt.md index a556a901c5..34cc8392c8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-jwt.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-jwt.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.createJWT( sessionId = "", // optional duration = 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-md-5-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-md-5-user.md index 27b985920c..04e30b452f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -15,3 +16,4 @@ val response = users.createMD5User( password = "password", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md index 7a0b1c61da..385bb2ca27 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.createMFARecoveryCodes( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-ph-pass-user.md index 5441e49e6c..a62814dbca 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -15,3 +16,4 @@ val response = users.createPHPassUser( password = "password", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md index 814883cae5..0b5fb50d22 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -18,3 +19,4 @@ val response = users.createScryptModifiedUser( passwordSignerKey = "", name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-user.md index 619525a799..191ea26826 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -20,3 +21,4 @@ val response = users.createScryptUser( passwordLength = 0, name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-session.md index a67e605121..9379a01026 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.createSession( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-sha-user.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-sha-user.md index 61458a414a..91566c8c2e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-sha-user.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -17,3 +18,4 @@ val response = users.createSHAUser( passwordVersion = PasswordHash.SHA1, // optional name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-target.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-target.md index d28190c5ff..774120d550 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-target.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -18,3 +19,4 @@ val response = users.createTarget( providerId = "", // optional name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-token.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-token.md index 43492f4747..fedd9392f1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create-token.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create-token.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.createToken( length = 4, // optional expire = 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/create.md index 27ae85ae6e..09d2862333 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/create.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -16,3 +17,4 @@ val response = users.create( password = "", // optional name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-identity.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-identity.md index 37b4ed2e71..1953d4efb5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-identity.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-identity.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.deleteIdentity( identityId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md index cd8a5e9dab..a8add41528 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.deleteMFAAuthenticator( userId = "", type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-session.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-session.md index e9e3c7c55e..4d17c24ac2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-session.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-session.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.deleteSession( userId = "", sessionId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-sessions.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-sessions.md index 6288e1bc04..843285f7f4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.deleteSessions( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-target.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-target.md index f93be0677a..650678a9a3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-target.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.deleteTarget( userId = "", targetId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete.md index b938ac70d1..088727d035 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/delete.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.delete( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md index 1ad9197585..1215a91b89 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.getMFARecoveryCodes( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-prefs.md index 927a4a43a1..896c87084f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.getPrefs( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-target.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-target.md index 556349c684..94e19177d2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/get-target.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/get-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.getTarget( userId = "", targetId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/get.md index 70f0ee9d5f..9d24b98343 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/get.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.get( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-identities.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-identities.md index f7cc447e8d..e745da3d2c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-identities.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-identities.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.listIdentities( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-logs.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-logs.md index 3e8bfa3fce..070c96d074 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-logs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-logs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.listLogs( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-memberships.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-memberships.md index b2f87b3748..3d001fde4a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-memberships.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-memberships.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -15,3 +16,4 @@ val response = users.listMemberships( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-mfa-factors.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-mfa-factors.md index 9d0791cf13..ee17cc096e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.listMFAFactors( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-sessions.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-sessions.md index 9231c01ed0..05d0024795 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-sessions.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-sessions.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.listSessions( userId = "", total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-targets.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-targets.md index 133161fef2..bb026ed8f1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list-targets.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list-targets.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.listTargets( queries = listOf(), // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/list.md index a2a7b6e87f..4cc3195f29 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/list.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -14,3 +15,4 @@ val response = users.list( search = "", // optional total = false // optional ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email-verification.md index ebf2232f3e..f30e40159d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateEmailVerification( userId = "", emailVerification = false ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email.md index a617705dbb..7642a957d1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-email.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateEmail( userId = "", email = "email@example.com" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-labels.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-labels.md index 86f536f728..3d88c7aff9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-labels.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-labels.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateLabels( userId = "", labels = listOf() ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md index 80b92b4565..642f1525a9 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -12,3 +13,4 @@ val users = Users(client) val response = users.updateMFARecoveryCodes( userId = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa.md index d2f448e086..1cde68adce 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-mfa.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateMFA( userId = "", mfa = false ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-name.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-name.md index fedfce36bd..beb53d55da 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-name.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-name.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateName( userId = "", name = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-password.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-password.md index 4a0ad576e1..5930f5ebec 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-password.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-password.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updatePassword( userId = "", password = "" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone-verification.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone-verification.md index 6520ef4c95..f574b26230 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updatePhoneVerification( userId = "", phoneVerification = false ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone.md index 7261f95db5..855a459da3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-phone.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updatePhone( userId = "", number = "+12065550100" ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-prefs.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-prefs.md index 451f4ff4c6..8d610eb6e7 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-prefs.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-prefs.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updatePrefs( userId = "", prefs = mapOf( "a" to "b" ) ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-status.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-status.md index a69ae30dbc..600bd6faf2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-status.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-status.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -13,3 +14,4 @@ val response = users.updateStatus( userId = "", status = false ) +``` diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-target.md b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-target.md index a18fc63bcb..55f0f9732f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/users/update-target.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/users/update-target.md @@ -1,3 +1,4 @@ +```kotlin import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users @@ -16,3 +17,4 @@ val response = users.updateTarget( providerId = "", // optional name = "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-anonymous-session.md index 0ec4807a06..036df9b94c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.createAnonymousSession(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-password-session.md index 582ca2976f..125d73bb9b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.createEmailPasswordSession({ email: 'email@example.com', password: 'password' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-token.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-token.md index 6bb7254ef9..cebf1f6109 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await account.createEmailToken({ email: 'email@example.com', phrase: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-verification.md index e2aaf8015a..6c74da96ba 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.createEmailVerification({ url: 'https://example.com' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-jwt.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-jwt.md index f5ddd7b50b..c7204e0f4e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.createJWT({ duration: 0 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-magic-url-token.md index d5194c5c3a..ee5f1432a1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await account.createMagicURLToken({ url: 'https://example.com', // optional phrase: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-authenticator.md index 8dd6a599c0..25081e27ad 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.createMFAAuthenticator({ type: sdk.AuthenticatorType.Totp }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-challenge.md index 9588fa16c8..af4e044849 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.createMFAChallenge({ factor: sdk.AuthenticationFactor.Email }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-recovery-codes.md index 1392f44399..5e8e4021ba 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.createMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-o-auth-2-token.md index 7f9e2297e9..7bc8a24333 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await account.createOAuth2Token({ failure: 'https://example.com', // optional scopes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-token.md index b5bb586f1d..999f3e10e8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.createPhoneToken({ userId: '', phone: '+12065550100' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-verification.md index f7c87f0675..05708153ed 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.createPhoneVerification(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-recovery.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-recovery.md index eab8af6de2..4dd41d7ebb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.createRecovery({ email: 'email@example.com', url: 'https://example.com' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-session.md index 9e6f068d5b..3ab786f9e5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.createSession({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/create-verification.md index 02b9e78ddb..95dec7e342 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.createVerification({ url: 'https://example.com' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/create.md b/docs/examples/1.8.x/server-nodejs/examples/account/create.md index 48ef1aaf7c..db31f30b8e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await account.create({ password: '', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/delete-identity.md b/docs/examples/1.8.x/server-nodejs/examples/account/delete-identity.md index 222d4bf260..53a043bf48 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.deleteIdentity({ identityId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-nodejs/examples/account/delete-mfa-authenticator.md index f3d8093ca2..18522f2d04 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.deleteMFAAuthenticator({ type: sdk.AuthenticatorType.Totp }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/delete-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/delete-session.md index 82e1bd6787..7fe49e3ff3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.deleteSession({ sessionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-nodejs/examples/account/delete-sessions.md index 884c0e0ebc..912575cea1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.deleteSessions(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/account/get-mfa-recovery-codes.md index 6461e6b586..cb08fe7cd0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.getMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/get-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/account/get-prefs.md index d0d7d31aaf..67edf19fa8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.getPrefs(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/get-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/get-session.md index edf3836851..dab8159510 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/get-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.getSession({ sessionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/get.md b/docs/examples/1.8.x/server-nodejs/examples/account/get.md index 6ebb605ae8..e755aa46fe 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.get(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/list-identities.md b/docs/examples/1.8.x/server-nodejs/examples/account/list-identities.md index b5541bf38e..00d60b9eee 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.listIdentities({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/list-logs.md b/docs/examples/1.8.x/server-nodejs/examples/account/list-logs.md index 06b36e5563..d7e8933141 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.listLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-nodejs/examples/account/list-mfa-factors.md index 97f7f5fbc7..313621904f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.listMFAFactors(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/list-sessions.md b/docs/examples/1.8.x/server-nodejs/examples/account/list-sessions.md index 33fb527415..0bbd093e9f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.listSessions(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-email-verification.md index eb6507e332..4fd5953b9b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateEmailVerification({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-email.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-email.md index 58fea36be5..985c189bc5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-email.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateEmail({ email: 'email@example.com', password: 'password' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-magic-url-session.md index 65221b5961..1811200af0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateMagicURLSession({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-authenticator.md index 18e15754bc..fa34ef4595 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateMFAAuthenticator({ type: sdk.AuthenticatorType.Totp, otp: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-challenge.md index 4903e1e298..a584356b99 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateMFAChallenge({ challengeId: '', otp: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-recovery-codes.md index fd5c1fd56d..c893c231f0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.updateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa.md index 378c23fc0c..38604a3bbf 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.updateMFA({ mfa: false }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-name.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-name.md index f812116e7a..24fb8692ef 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-name.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.updateName({ name: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-password.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-password.md index e7e8437f5b..f6b7bb54e6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-password.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updatePassword({ password: '', oldPassword: 'password' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-session.md index d2e7543611..204c33a7ca 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updatePhoneSession({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-verification.md index af05baf59d..c5e1abd326 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updatePhoneVerification({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone.md index b1f1daa6c1..c676302299 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updatePhone({ phone: '+12065550100', password: 'password' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-prefs.md index ba41cf807e..65c70e0ee2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await account.updatePrefs({ "darkTheme": true } }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-recovery.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-recovery.md index c88b435238..268f3e9794 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await account.updateRecovery({ secret: '', password: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-session.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-session.md index c189f68e0a..9dfcbf26a3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const account = new sdk.Account(client); const result = await account.updateSession({ sessionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-status.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-status.md index 1b70af5378..ffb3f25e00 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-status.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const account = new sdk.Account(client); const result = await account.updateStatus(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/account/update-verification.md b/docs/examples/1.8.x/server-nodejs/examples/account/update-verification.md index d64b402e4b..0486ce395e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await account.updateVerification({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-browser.md index 9f3b2cce80..6ffb388d5a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await avatars.getBrowser({ height: 0, // optional quality: -1 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-credit-card.md index 1337d05fb9..ea806baffc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await avatars.getCreditCard({ height: 0, // optional quality: -1 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-favicon.md index 6f79cb664a..bd9ae2caa0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const avatars = new sdk.Avatars(client); const result = await avatars.getFavicon({ url: 'https://example.com' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-flag.md index 672c18bb77..d05b666bcb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await avatars.getFlag({ height: 0, // optional quality: -1 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-image.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-image.md index 12aef10321..6f013db19f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await avatars.getImage({ width: 0, // optional height: 0 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-initials.md index 584786f65c..3d35c6df9b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await avatars.getInitials({ height: 0, // optional background: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-qr.md index fd083807c8..e4235a38e4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await avatars.getQR({ margin: 0, // optional download: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-screenshot.md index 58522c76db..1aab6cd3cf 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-nodejs/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -32,3 +33,4 @@ const result = await avatars.getScreenshot({ quality: 85, // optional output: sdk.ImageFormat.Jpeg // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-boolean-attribute.md index 2e9b5629cc..8202b7a04a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createBooleanAttribute({ default: false, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-collection.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-collection.md index 562b5380d1..b58e0919fb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.createCollection({ attributes: [], // optional indexes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-datetime-attribute.md index 7ca8b553e9..328bf685e9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createDatetimeAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-document.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-document.md index e6b9b49553..3c38b69e82 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await databases.createDocument({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-documents.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-documents.md index 8815d8d90f..60f4eab87a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.createDocuments({ documents: [], transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-email-attribute.md index 4afebf6560..c4c674fa16 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createEmailAttribute({ default: 'email@example.com', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-enum-attribute.md index 5866eabb7d..b6f982a728 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.createEnumAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-float-attribute.md index 7843c1658a..583750c89c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.createFloatAttribute({ default: null, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-index.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-index.md index 97cae642b5..1d0280d189 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.createIndex({ orders: [sdk.OrderBy.Asc], // optional lengths: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-integer-attribute.md index e3752669b6..ea7e766c40 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.createIntegerAttribute({ default: null, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-ip-attribute.md index 110e3a813f..147b00a122 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createIpAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-line-attribute.md index 160bb5b9dc..518a25290a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.createLineAttribute({ required: false, default: [[1, 2], [3, 4], [5, 6]] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-longtext-attribute.md index f3b8874e9b..9d35805503 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createLongtextAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-mediumtext-attribute.md index 5fbda08ee0..2ea9b87b21 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createMediumtextAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-operations.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-operations.md index da8452e3db..06a3c468c8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await databases.createOperations({ } ] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-point-attribute.md index e65f5bd58d..d958150347 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.createPointAttribute({ required: false, default: [1, 2] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-polygon-attribute.md index 3d51887414..51f239da87 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.createPolygonAttribute({ required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-relationship-attribute.md index b09c6a3b07..30d4dfd78a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.createRelationshipAttribute({ twoWayKey: '', // optional onDelete: sdk.RelationMutate.Cascade // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-string-attribute.md index 57ed8f4ea2..18aeaf531d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.createStringAttribute({ array: false, // optional encrypt: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-text-attribute.md index 4a2af55b3a..5d49ed3125 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createTextAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-transaction.md index f3da2919f8..8785149a5c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.createTransaction({ ttl: 60 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-url-attribute.md index af3177f837..43225e40b0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.createUrlAttribute({ default: 'https://example.com', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create-varchar-attribute.md index 3c443aeb55..dd5511d8d8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.createVarcharAttribute({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/create.md b/docs/examples/1.8.x/server-nodejs/examples/databases/create.md index 7392a85f37..d35731b677 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.create({ name: '', enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/decrement-document-attribute.md index c01b250b08..80fe2486a3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.decrementDocumentAttribute({ min: null, // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-attribute.md index 166aa1961b..30501051a8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.deleteAttribute({ collectionId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-collection.md index f915076c3a..2da5c2054f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await databases.deleteCollection({ databaseId: '', collectionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-document.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-document.md index bfc19777f9..22bc7143a1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.deleteDocument({ documentId: '', transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-documents.md index 9440d20999..4851243e5e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.deleteDocuments({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-index.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-index.md index 24f74c6975..b7a8f0c3a6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.deleteIndex({ collectionId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-transaction.md index 53d676e74c..b89214ba94 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.deleteTransaction({ transactionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/delete.md b/docs/examples/1.8.x/server-nodejs/examples/databases/delete.md index fc9ace4960..000094853b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.delete({ databaseId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get-attribute.md index 4c683034f8..eade77ddf0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.getAttribute({ collectionId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get-collection.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get-collection.md index 4855471977..8b96abafb9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await databases.getCollection({ databaseId: '', collectionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get-document.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get-document.md index 7abea4e44e..9a66df4fa8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.getDocument({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get-index.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get-index.md index d7edb84e34..1900b0f5ae 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.getIndex({ collectionId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get-transaction.md index 9b7297c7e7..09c0255a0b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.getTransaction({ transactionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/get.md b/docs/examples/1.8.x/server-nodejs/examples/databases/get.md index eb83ef7a85..9533a738e5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.get({ databaseId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/increment-document-attribute.md index 843d163bca..cb24d70493 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.incrementDocumentAttribute({ max: null, // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list-attributes.md index 2937e54719..635391cdd2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.listAttributes({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list-collections.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list-collections.md index 7e11fae640..38f1f3ebb0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.listCollections({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list-documents.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list-documents.md index 40fb6800eb..be2b37036a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.listDocuments({ transactionId: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list-indexes.md index ad3dbb335e..c641109253 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.listIndexes({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list-transactions.md index 9a36eb0f93..4707b1313a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const databases = new sdk.Databases(client); const result = await databases.listTransactions({ queries: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/list.md b/docs/examples/1.8.x/server-nodejs/examples/databases/list.md index 0aee1a93ab..d88d05ee9e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-boolean-attribute.md index 224fc8e6f9..00952c3a0e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateBooleanAttribute({ default: false, newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-collection.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-collection.md index a1cb513fd1..bd2e7dd034 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateCollection({ documentSecurity: false, // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-datetime-attribute.md index 20034486fe..5a4fe633cd 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateDatetimeAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-document.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-document.md index 7e1a8c507b..cae4ccfe9d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await databases.updateDocument({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-documents.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-documents.md index 038ed1a7b6..168074c14c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -20,3 +21,4 @@ const result = await databases.updateDocuments({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-email-attribute.md index 738c533c33..e7da572acb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateEmailAttribute({ default: 'email@example.com', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-enum-attribute.md index f240cb0565..937af7a6cc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.updateEnumAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-float-attribute.md index 877cad18bf..5af5be0cda 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.updateFloatAttribute({ max: null, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-integer-attribute.md index cf7101e5f5..14e7da964d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await databases.updateIntegerAttribute({ max: null, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-ip-attribute.md index d41bb85060..0f4d2a3a56 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateIpAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-line-attribute.md index 3c4d785def..3b8acece1d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateLineAttribute({ default: [[1, 2], [3, 4], [5, 6]], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-longtext-attribute.md index efb82f462d..ca39b69afe 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateLongtextAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-mediumtext-attribute.md index aea41d08a1..d08373e3da 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateMediumtextAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-point-attribute.md index 0da3b338a4..410ce3c5c0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updatePointAttribute({ default: [1, 2], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-polygon-attribute.md index c7767cb902..fa4ebe1fac 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updatePolygonAttribute({ default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-relationship-attribute.md index aa476c4160..9dc8ebd795 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await databases.updateRelationshipAttribute({ onDelete: sdk.RelationMutate.Cascade, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-string-attribute.md index b0d7bea52e..0c75201be0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.updateStringAttribute({ size: 1, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-text-attribute.md index 9d1453eeec..766c7f0a6c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateTextAttribute({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-transaction.md index 57654495ba..a83cb03ba1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.updateTransaction({ commit: false, // optional rollback: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-url-attribute.md index 48d928151b..64177d531f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await databases.updateUrlAttribute({ default: 'https://example.com', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update-varchar-attribute.md index d28a3067f4..27f3b23b48 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await databases.updateVarcharAttribute({ size: 1, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/update.md b/docs/examples/1.8.x/server-nodejs/examples/databases/update.md index 5325acfcdf..36ff3bd1a7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/update.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await databases.update({ name: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-document.md index 55156bd663..13e882ad7e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await databases.upsertDocument({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-documents.md index 16ed70fae9..2a30492437 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await databases.upsertDocuments({ documents: [], transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-deployment.md index 77946a7084..0cd67cbfb5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const fs = require('fs'); @@ -15,3 +16,4 @@ const result = await functions.createDeployment({ entrypoint: '', // optional commands: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-duplicate-deployment.md index 03c68e7491..f5abb222d7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await functions.createDuplicateDeployment({ deploymentId: '', buildId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-execution.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-execution.md index 5b2c18cc86..63f7d6f491 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await functions.createExecution({ headers: {}, // optional scheduledAt: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-template-deployment.md index f1efd7b199..20977559be 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await functions.createTemplateDeployment({ reference: '', activate: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-variable.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-variable.md index 45928395bd..0d8dcfaaa5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await functions.createVariable({ value: '', secret: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create-vcs-deployment.md index c648625531..4bf9d23ba3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await functions.createVcsDeployment({ reference: '', activate: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/create.md b/docs/examples/1.8.x/server-nodejs/examples/functions/create.md index 42fa14b7f5..292a0e40ef 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -27,3 +28,4 @@ const result = await functions.create({ providerRootDirectory: '', // optional specification: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-deployment.md index 9f9815b91d..20120ebd16 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.deleteDeployment({ functionId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-execution.md index cf9d1079cf..4d78ad9c50 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.deleteExecution({ functionId: '', executionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-variable.md index 70ee4f7abe..b8ed9d548b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.deleteVariable({ functionId: '', variableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/delete.md b/docs/examples/1.8.x/server-nodejs/examples/functions/delete.md index 635f271a1c..446ca2a5a1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const functions = new sdk.Functions(client); const result = await functions.delete({ functionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment-download.md index 9e82998594..5e9a956d03 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await functions.getDeploymentDownload({ deploymentId: '', type: sdk.DeploymentDownloadType.Source // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment.md index c47081c718..29d9b2e652 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.getDeployment({ functionId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/get-execution.md b/docs/examples/1.8.x/server-nodejs/examples/functions/get-execution.md index ad3ff4874c..c987772def 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.getExecution({ functionId: '', executionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/get-variable.md b/docs/examples/1.8.x/server-nodejs/examples/functions/get-variable.md index 9f47331204..abc2e91dd0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.getVariable({ functionId: '', variableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/get.md b/docs/examples/1.8.x/server-nodejs/examples/functions/get.md index 463054d425..97050f04e9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const functions = new sdk.Functions(client); const result = await functions.get({ functionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list-deployments.md index 62f1155301..c53aaa45e4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await functions.listDeployments({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list-executions.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list-executions.md index 8a9b93a4f4..b549100f88 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await functions.listExecutions({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list-runtimes.md index a0f83b2273..fdaefd3ae0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const functions = new sdk.Functions(client); const result = await functions.listRuntimes(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list-specifications.md index f918c44053..0fc8b8d752 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const functions = new sdk.Functions(client); const result = await functions.listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list-variables.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list-variables.md index 962a81005c..166effad3a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const functions = new sdk.Functions(client); const result = await functions.listVariables({ functionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/list.md b/docs/examples/1.8.x/server-nodejs/examples/functions/list.md index 3f883087f4..faeeaae7b3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await functions.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-nodejs/examples/functions/update-deployment-status.md index 32b8a619cd..5d45a02ab1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.updateDeploymentStatus({ functionId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/functions/update-function-deployment.md index b0d31325f1..0dfd06f58a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await functions.updateFunctionDeployment({ functionId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/update-variable.md b/docs/examples/1.8.x/server-nodejs/examples/functions/update-variable.md index 73ae49fbf2..abd2dad52d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await functions.updateVariable({ value: '', // optional secret: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/functions/update.md b/docs/examples/1.8.x/server-nodejs/examples/functions/update.md index e1004defc1..459b5f3733 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/functions/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/functions/update.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -27,3 +28,4 @@ const result = await functions.update({ providerRootDirectory: '', // optional specification: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/graphql/mutation.md b/docs/examples/1.8.x/server-nodejs/examples/graphql/mutation.md index dffb7b3f3b..31aa4bf34b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-nodejs/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const graphql = new sdk.Graphql(client); const result = await graphql.mutation({ query: {} }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/graphql/query.md b/docs/examples/1.8.x/server-nodejs/examples/graphql/query.md index 1f873ed90d..3bd436e06c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-nodejs/examples/graphql/query.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const graphql = new sdk.Graphql(client); const result = await graphql.query({ query: {} }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-antivirus.md index 9efa2d803c..3f0c834578 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getAntivirus(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-cache.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-cache.md index 014340123d..a9525064d2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getCache(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-certificate.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-certificate.md index ccb880078c..571b3cdcd7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getCertificate({ domain: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-db.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-db.md index 0d86d08d1c..45a840c997 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-db.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getDB(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-failed-jobs.md index 32c03426b8..e495453cea 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await health.getFailedJobs({ name: sdk.Name.V1Database, threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-pub-sub.md index b5b97374d5..c03bb59ed3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getPubSub(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-audits.md index 5b337f1ab4..dcc7c6ce89 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueAudits({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-builds.md index 8e28054718..da49e02012 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueBuilds({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-certificates.md index 89383ede8c..ef065d5974 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueCertificates({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-databases.md index 784525573c..181621ec52 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await health.getQueueDatabases({ name: '', // optional threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-deletes.md index 8248b5c41f..e1b5bc0089 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueDeletes({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-functions.md index 5832a27439..f40904a2d3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueFunctions({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-logs.md index 055c525be4..437a86b013 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueLogs({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-mails.md index fb29d0813d..3da627b86a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueMails({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-messaging.md index cc8eb4be0a..504ad1de4e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueMessaging({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-migrations.md index ddc7f517c5..59e45509e5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueMigrations({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-stats-resources.md index dacf04c35a..542d11e048 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueStatsResources({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-usage.md index 5d06a7ce5b..86dbfb83b6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueUsage({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-webhooks.md index f4d0af8a1e..36c3037a1c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const health = new sdk.Health(client); const result = await health.getQueueWebhooks({ threshold: null // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-storage-local.md index 0ea8e0e27f..1593339497 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getStorageLocal(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-storage.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-storage.md index d199800559..75ec5cb8bc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getStorage(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get-time.md b/docs/examples/1.8.x/server-nodejs/examples/health/get-time.md index cd4f42e33e..86d8617411 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get-time.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.getTime(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/health/get.md b/docs/examples/1.8.x/server-nodejs/examples/health/get.md index e10c4e28f5..bfb883b6e2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/health/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/health/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const health = new sdk.Health(client); const result = await health.get(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/get.md b/docs/examples/1.8.x/server-nodejs/examples/locale/get.md index d57eb8f241..004a93257c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.get(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-codes.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-codes.md index 280d14ae6e..136992f405 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listCodes(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-continents.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-continents.md index d04d6d6a47..aa58ec572a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listContinents(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-eu.md index 6e41074b61..538b492712 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listCountriesEU(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-phones.md index 9621e9cbfc..c27014185d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listCountriesPhones(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries.md index a81b1581f3..99ee2d3507 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listCountries(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-currencies.md index a585fd33ae..c381774d2c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listCurrencies(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/locale/list-languages.md b/docs/examples/1.8.x/server-nodejs/examples/locale/list-languages.md index aea0fadf89..cfd522c6f1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-nodejs/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const locale = new sdk.Locale(client); const result = await locale.listLanguages(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-apns-provider.md index cd1a53b365..dc203a393a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.createAPNSProvider({ sandbox: false, // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-email.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-email.md index 93fb2ef3b8..f12d0d5ef4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await messaging.createEmail({ html: false, // optional scheduledAt: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-fcm-provider.md index 8041e7f2a8..78b6d06c04 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await messaging.createFCMProvider({ serviceAccountJSON: {}, // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-mailgun-provider.md index dd8a0f6ad3..f2961b6d7b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -19,3 +20,4 @@ const result = await messaging.createMailgunProvider({ replyToEmail: 'email@example.com', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-msg-91-provider.md index 7168e8bba6..ba6829a67c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.createMsg91Provider({ authKey: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-push.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-push.md index 4c64813f25..032a2082b7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -28,3 +29,4 @@ const result = await messaging.createPush({ critical: false, // optional priority: sdk.MessagePriority.Normal // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-resend-provider.md index 8f00367ea7..d1c391d0a4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.createResendProvider({ replyToEmail: 'email@example.com', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sendgrid-provider.md index 8b26b2f3f6..9c3be00c7c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.createSendgridProvider({ replyToEmail: 'email@example.com', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sms.md index c477643b4b..2cee66cc0e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await messaging.createSMS({ draft: false, // optional scheduledAt: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-smtp-provider.md index 241a0f0969..e17fdc1937 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -23,3 +24,4 @@ const result = await messaging.createSMTPProvider({ replyToEmail: 'email@example.com', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-subscriber.md index f86a424c2a..51410af723 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.createSubscriber({ subscriberId: '', targetId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-telesign-provider.md index b558fbd210..baf83a6c7e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.createTelesignProvider({ apiKey: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-textmagic-provider.md index 82141aeab8..655a224826 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.createTextmagicProvider({ apiKey: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-topic.md index ce91b54279..4625517a24 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.createTopic({ name: '', subscribe: ["any"] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-twilio-provider.md index b3d9ba6bfb..0db55435ed 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.createTwilioProvider({ authToken: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-vonage-provider.md index b7a94ff527..cf8cd38acc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.createVonageProvider({ apiSecret: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-provider.md index 590b8078ee..53fc2aeaa2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.deleteProvider({ providerId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-subscriber.md index 77f2f8962f..99c61d7abd 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await messaging.deleteSubscriber({ topicId: '', subscriberId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-topic.md index 58ca2fb382..3ffa99f91a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.deleteTopic({ topicId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete.md index c2c0560d71..62e7d61a2c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.delete({ messageId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-message.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-message.md index 503da4828d..894a74ac83 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.getMessage({ messageId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-provider.md index f7c70587b4..c7e91ff007 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.getProvider({ providerId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-subscriber.md index befc566bf9..8a91534159 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await messaging.getSubscriber({ topicId: '', subscriberId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-topic.md index f537973f3c..f352c9d7b2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const messaging = new sdk.Messaging(client); const result = await messaging.getTopic({ topicId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-message-logs.md index b7d0701ab6..c9c8a4719c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listMessageLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-messages.md index ecbaf74233..053adc9fa9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listMessages({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-provider-logs.md index e91c69c209..92b4c2f452 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listProviderLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-providers.md index 1a05f22a94..603ff0bd92 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listProviders({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscriber-logs.md index a613829b39..2f892254ba 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listSubscriberLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscribers.md index ba2cbc5104..bba6aae4a7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await messaging.listSubscribers({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-targets.md index ceede50b43..dc053961e6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listTargets({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topic-logs.md index f4d0746e4c..ee76366ce8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listTopicLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topics.md index be321b97f0..62fecb6185 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.listTopics({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-apns-provider.md index f57fe6aba5..6cd012d9be 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.updateAPNSProvider({ bundleId: '', // optional sandbox: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-email.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-email.md index 575b463545..a761b7f977 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await messaging.updateEmail({ scheduledAt: '', // optional attachments: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-fcm-provider.md index 0a3134a91a..4d76843ef6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await messaging.updateFCMProvider({ enabled: false, // optional serviceAccountJSON: {} // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-mailgun-provider.md index fbe2d076f7..5725f1ebf9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -19,3 +20,4 @@ const result = await messaging.updateMailgunProvider({ replyToName: '', // optional replyToEmail: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-msg-91-provider.md index 7ecb3f031b..d66ba73fcd 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.updateMsg91Provider({ senderId: '', // optional authKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-push.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-push.md index 6f5899f8c7..b77e10ae5e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -28,3 +29,4 @@ const result = await messaging.updatePush({ critical: false, // optional priority: sdk.MessagePriority.Normal // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-resend-provider.md index ab962178c4..563c907f83 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.updateResendProvider({ replyToName: '', // optional replyToEmail: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sendgrid-provider.md index 340f275884..ece8ae7c85 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await messaging.updateSendgridProvider({ replyToName: '', // optional replyToEmail: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sms.md index a325b5afb3..b4bd058ac9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await messaging.updateSMS({ draft: false, // optional scheduledAt: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-smtp-provider.md index 7b2a81164b..d860736f59 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -23,3 +24,4 @@ const result = await messaging.updateSMTPProvider({ replyToEmail: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-telesign-provider.md index 8e1e2364c1..b8b7ea0889 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.updateTelesignProvider({ apiKey: '', // optional from: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-textmagic-provider.md index 8656723d14..bf35cef824 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.updateTextmagicProvider({ apiKey: '', // optional from: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-topic.md index cf34080fea..8ec3073915 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await messaging.updateTopic({ name: '', // optional subscribe: ["any"] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-twilio-provider.md index 6a201415fe..da83c43ce6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.updateTwilioProvider({ authToken: '', // optional from: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-vonage-provider.md index d99c07621c..caefea0d6f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-nodejs/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await messaging.updateVonageProvider({ apiSecret: '', // optional from: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create-deployment.md index dbd78e094e..1fea6050a8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const fs = require('fs'); @@ -16,3 +17,4 @@ const result = await sites.createDeployment({ buildCommand: '', // optional outputDirectory: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create-duplicate-deployment.md index 8d2bd4f604..e14d858583 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.createDuplicateDeployment({ siteId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create-template-deployment.md index 3728f7f846..b08d94ab23 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await sites.createTemplateDeployment({ reference: '', activate: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create-variable.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create-variable.md index 2ec774c70b..be07336b69 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await sites.createVariable({ value: '', secret: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create-vcs-deployment.md index 95cefea9ae..6d28546e33 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await sites.createVcsDeployment({ reference: '', activate: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/create.md b/docs/examples/1.8.x/server-nodejs/examples/sites/create.md index 397d2d3934..fe5c264956 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -27,3 +28,4 @@ const result = await sites.create({ providerRootDirectory: '', // optional specification: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-deployment.md index 292f9e05d0..533f298508 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.deleteDeployment({ siteId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-log.md b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-log.md index d1850e1ea3..38f7c3a33e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.deleteLog({ siteId: '', logId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-variable.md index 069ff8dc07..11ebaca9b7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.deleteVariable({ siteId: '', variableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/delete.md b/docs/examples/1.8.x/server-nodejs/examples/sites/delete.md index 7f6ad8bc88..03bd1a57bc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const sites = new sdk.Sites(client); const result = await sites.delete({ siteId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment-download.md index 05e87058bc..6e7ee4aa09 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await sites.getDeploymentDownload({ deploymentId: '', type: sdk.DeploymentDownloadType.Source // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment.md index 68b6dcf549..1f1430ca67 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.getDeployment({ siteId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/get-log.md b/docs/examples/1.8.x/server-nodejs/examples/sites/get-log.md index 3a22d90ff5..f8190b4a92 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.getLog({ siteId: '', logId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/get-variable.md b/docs/examples/1.8.x/server-nodejs/examples/sites/get-variable.md index 7d0a759ec4..cafb71b106 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.getVariable({ siteId: '', variableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/get.md b/docs/examples/1.8.x/server-nodejs/examples/sites/get.md index 6d8180802f..0b21b2bbc8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const sites = new sdk.Sites(client); const result = await sites.get({ siteId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list-deployments.md index 4684938b3a..1b544a0a09 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await sites.listDeployments({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list-frameworks.md index 0376e4b552..9a417bfd0c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const sites = new sdk.Sites(client); const result = await sites.listFrameworks(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list-logs.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list-logs.md index 09791a4a24..62b16945bd 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await sites.listLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list-specifications.md index 24ec74c4aa..6e882891c9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -8,3 +9,4 @@ const client = new sdk.Client() const sites = new sdk.Sites(client); const result = await sites.listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list-variables.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list-variables.md index 498584ee60..0451b1eb17 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const sites = new sdk.Sites(client); const result = await sites.listVariables({ siteId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/list.md b/docs/examples/1.8.x/server-nodejs/examples/sites/list.md index 7066ca987a..518aa70968 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await sites.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-nodejs/examples/sites/update-deployment-status.md index 88d55b0d9e..73a7475817 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.updateDeploymentStatus({ siteId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-nodejs/examples/sites/update-site-deployment.md index bb3adc437d..1221d37043 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await sites.updateSiteDeployment({ siteId: '', deploymentId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/update-variable.md b/docs/examples/1.8.x/server-nodejs/examples/sites/update-variable.md index a7e3f6a1ca..40a98106c7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await sites.updateVariable({ value: '', // optional secret: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/sites/update.md b/docs/examples/1.8.x/server-nodejs/examples/sites/update.md index 1a919f5d38..28f2e80f11 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/sites/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/sites/update.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -27,3 +28,4 @@ const result = await sites.update({ providerRootDirectory: '', // optional specification: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-nodejs/examples/storage/create-bucket.md index 7ef4befcc0..47dc8b31c3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -20,3 +21,4 @@ const result = await storage.createBucket({ antivirus: false, // optional transformations: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/create-file.md b/docs/examples/1.8.x/server-nodejs/examples/storage/create-file.md index 8dc1745585..055e5ab532 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const fs = require('fs'); @@ -14,3 +15,4 @@ const result = await storage.createFile({ file: InputFile.fromPath('/path/to/file', 'filename'), permissions: [sdk.Permission.read(sdk.Role.any())] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-nodejs/examples/storage/delete-bucket.md index a59844dd41..bf6fa1b6e6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const storage = new sdk.Storage(client); const result = await storage.deleteBucket({ bucketId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/delete-file.md b/docs/examples/1.8.x/server-nodejs/examples/storage/delete-file.md index d973b5a50f..d49838e12c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await storage.deleteFile({ bucketId: '', fileId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-nodejs/examples/storage/get-bucket.md index 2dd16cc148..380db53569 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const storage = new sdk.Storage(client); const result = await storage.getBucket({ bucketId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-download.md index 253e63851b..c0a10d9678 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await storage.getFileDownload({ fileId: '', token: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-preview.md index d188e0d8ae..984333db61 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -23,3 +24,4 @@ const result = await storage.getFilePreview({ output: sdk.ImageFormat.Jpg, // optional token: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-view.md index 35c6ba2284..a20c4ac2bc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await storage.getFileView({ fileId: '', token: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file.md b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file.md index a6c54c8670..d8bdf4dd47 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await storage.getFile({ bucketId: '', fileId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-nodejs/examples/storage/list-buckets.md index 1ddc3daa3a..c17389e50e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await storage.listBuckets({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/list-files.md b/docs/examples/1.8.x/server-nodejs/examples/storage/list-files.md index a8e8480e20..f51fad9ded 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await storage.listFiles({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-nodejs/examples/storage/update-bucket.md index d528a77979..c17c969115 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -20,3 +21,4 @@ const result = await storage.updateBucket({ antivirus: false, // optional transformations: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/storage/update-file.md b/docs/examples/1.8.x/server-nodejs/examples/storage/update-file.md index 131682134d..8d2294ffe9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-nodejs/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await storage.updateFile({ name: '', // optional permissions: [sdk.Permission.read(sdk.Role.any())] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md index 129e646ae6..2bbb32ad39 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createBooleanColumn({ default: false, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md index dcc6c1ed2d..4aedd362fc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createDatetimeColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md index a250d4a908..873d86f256 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createEmailColumn({ default: 'email@example.com', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md index f1e183088d..3aedee723a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createEnumColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md index 6dd4dfcf87..84649b796d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createFloatColumn({ default: null, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md index ca459221d7..989110f29d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createIndex({ orders: [sdk.OrderBy.Asc], // optional lengths: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md index b682db47eb..e7dd69db73 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createIntegerColumn({ default: null, // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md index eaeb64aa86..eacbd4b858 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createIpColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-line-column.md index 84b941c38d..195bf1f11f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.createLineColumn({ required: false, default: [[1, 2], [3, 4], [5, 6]] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-longtext-column.md index fd16d70ef1..68e4d7b857 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createLongtextColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md index 109db51cf9..ac8108d33d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createMediumtextColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-operations.md index 25492396dd..d1823aa8f3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await tablesDB.createOperations({ } ] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-point-column.md index c59e420ee3..a7d97ede83 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.createPointColumn({ required: false, default: [1, 2] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-polygon-column.md index 36f2f4ca5c..5dc84d79a0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.createPolygonColumn({ required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md index 09ebd96e2b..6f2c0fa99e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createRelationshipColumn({ twoWayKey: '', // optional onDelete: sdk.RelationMutate.Cascade // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md index d437501ba0..485afcdebe 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await tablesDB.createRow({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md index 20807c1612..05364214d8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.createRows({ rows: [], transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md index dbe06329c1..cd79574089 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createStringColumn({ array: false, // optional encrypt: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md index 120f5de8cc..b429f79768 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.createTable({ columns: [], // optional indexes: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-text-column.md index a1d0ca89f6..e7cfa7bc84 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createTextColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-transaction.md index 249406e333..c737347fef 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.createTransaction({ ttl: 60 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md index a37424e718..d511362a52 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.createUrlColumn({ default: 'https://example.com', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-varchar-column.md index 34ccacd17c..debd75d873 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.createVarcharColumn({ default: '', // optional array: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md index a16191d4db..0571906c5b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.create({ name: '', enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md index 0310399239..2fafbbbfa8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.decrementRowColumn({ min: null, // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md index 890393a252..51fd96e32e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.deleteColumn({ tableId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md index 472b5de8a1..4c7ad1ee6b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.deleteIndex({ tableId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md index 68a965dc97..20d4e95b8a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.deleteRow({ rowId: '', transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md index ce1d0f4ba1..3dd8f1e035 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.deleteRows({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md index 3c526e5d80..f3071a4557 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await tablesDB.deleteTable({ databaseId: '', tableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-transaction.md index 28d086b9cf..3daa0bd64b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.deleteTransaction({ transactionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md index 351a40f518..018b3a9c8d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.delete({ databaseId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md index 66bde58144..8daf93d432 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.getColumn({ tableId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md index 6dfa7320b0..164f833eaf 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.getIndex({ tableId: '', key: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md index fe67e2fda3..6cbf26f0ae 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.getRow({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md index 6d14204d19..e825435689 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await tablesDB.getTable({ databaseId: '', tableId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-transaction.md index 208368bc00..c39cfe11b4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.getTransaction({ transactionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md index 137296610b..38d5ce7a2e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.get({ databaseId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md index aaa6cd6205..1388043a36 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.incrementRowColumn({ max: null, // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md index 8f6c66be99..59b2bfbf9b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.listColumns({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md index 7d8ab895b3..7ff6df55df 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.listIndexes({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md index ed4fab21e9..1f6894b3e9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.listRows({ transactionId: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md index 602b41dbe7..82779015b1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.listTables({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-transactions.md index 3ad0c95425..892bd2886d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tablesDB = new sdk.TablesDB(client); const result = await tablesDB.listTransactions({ queries: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md index 1b3fce7aeb..3514e2dcb4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md index aa1d5239ca..6b61889b00 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateBooleanColumn({ default: false, newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md index 10badccd9b..f1fb75e81e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateDatetimeColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md index ff40472234..9d380636b7 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateEmailColumn({ default: 'email@example.com', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md index ccc70b113d..b35e3c8aa9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateEnumColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md index 73add7d522..0fca144e49 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.updateFloatColumn({ max: null, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md index 18cceb056a..54f874f8c6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -17,3 +18,4 @@ const result = await tablesDB.updateIntegerColumn({ max: null, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md index c0313d126c..56b1962a2d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateIpColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-line-column.md index 4ec0abe5f9..98bc6ad5de 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateLineColumn({ default: [[1, 2], [3, 4], [5, 6]], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-longtext-column.md index 9888bbaece..90bf467953 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateLongtextColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md index 84befdd095..8dc2cdd5b2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateMediumtextColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-point-column.md index cddb1989af..05cbc3dfaa 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updatePointColumn({ default: [1, 2], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-polygon-column.md index 963db8bae7..80f97f1b2f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updatePolygonColumn({ default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md index a91b47986c..86f935a5e5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await tablesDB.updateRelationshipColumn({ onDelete: sdk.RelationMutate.Cascade, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md index 8c003bfe6d..bac92af212 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await tablesDB.updateRow({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md index b41f0c2ef0..09ab8601bf 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -20,3 +21,4 @@ const result = await tablesDB.updateRows({ queries: [], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md index f30614e80c..590dc84f21 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateStringColumn({ size: 1, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md index 7a650b82c7..f698a39864 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateTable({ rowSecurity: false, // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-text-column.md index 0324b9cd90..1a6a15131d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateTextColumn({ default: '', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-transaction.md index 03501d2cbf..d060747870 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.updateTransaction({ commit: false, // optional rollback: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md index cb2440a9d0..e579761979 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await tablesDB.updateUrlColumn({ default: 'https://example.com', newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-varchar-column.md index 7dd2a1a602..1e118dcded 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await tablesDB.updateVarcharColumn({ size: 1, // optional newKey: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md index bc7f53e09e..7cbf6f58ab 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tablesDB.update({ name: '', // optional enabled: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md index 2905b31fc4..f544bc0678 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -21,3 +22,4 @@ const result = await tablesDB.upsertRow({ permissions: [sdk.Permission.read(sdk.Role.any())], // optional transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md index c985c9515b..7bbf2ed3b6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tablesDB.upsertRows({ rows: [], transactionId: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/create-membership.md b/docs/examples/1.8.x/server-nodejs/examples/teams/create-membership.md index f820002e9f..96ed50b86b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await teams.createMembership({ url: 'https://example.com', // optional name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/create.md b/docs/examples/1.8.x/server-nodejs/examples/teams/create.md index 8b1bd1d71f..8e5702b266 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await teams.create({ name: '', roles: [] // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-nodejs/examples/teams/delete-membership.md index 6fe5912391..7dd1160316 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await teams.deleteMembership({ teamId: '', membershipId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/delete.md b/docs/examples/1.8.x/server-nodejs/examples/teams/delete.md index ebccae91d9..8593956fe0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const teams = new sdk.Teams(client); const result = await teams.delete({ teamId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/get-membership.md b/docs/examples/1.8.x/server-nodejs/examples/teams/get-membership.md index a8deb5519f..4ecf078de1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await teams.getMembership({ teamId: '', membershipId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/teams/get-prefs.md index bf9d72207b..0238bdbab1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const teams = new sdk.Teams(client); const result = await teams.getPrefs({ teamId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/get.md b/docs/examples/1.8.x/server-nodejs/examples/teams/get.md index 2f4cc115af..bd01c5c5b2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const teams = new sdk.Teams(client); const result = await teams.get({ teamId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-nodejs/examples/teams/list-memberships.md index 228c997289..1185380b30 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await teams.listMemberships({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/list.md b/docs/examples/1.8.x/server-nodejs/examples/teams/list.md index 1d1b714717..b4525fbae5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await teams.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership-status.md index f3b8ba2a67..614737ec87 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await teams.updateMembershipStatus({ userId: '', secret: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership.md b/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership.md index 64f15aef9f..b60ad62f5b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await teams.updateMembership({ membershipId: '', roles: [sdk.Roles.Admin] }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/update-name.md b/docs/examples/1.8.x/server-nodejs/examples/teams/update-name.md index aaad80f90f..0c64d2ba24 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await teams.updateName({ teamId: '', name: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/teams/update-prefs.md index 7f16f62996..180e32248b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await teams.updatePrefs({ teamId: '', prefs: {} }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-nodejs/examples/tokens/create-file-token.md index 2353720627..3be6b549c5 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await tokens.createFileToken({ fileId: '', expire: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tokens/delete.md b/docs/examples/1.8.x/server-nodejs/examples/tokens/delete.md index 659c03e5c9..f3b4089474 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tokens = new sdk.Tokens(client); const result = await tokens.delete({ tokenId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tokens/get.md b/docs/examples/1.8.x/server-nodejs/examples/tokens/get.md index 68371c329e..383ea5f3bc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tokens/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const tokens = new sdk.Tokens(client); const result = await tokens.get({ tokenId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tokens/list.md b/docs/examples/1.8.x/server-nodejs/examples/tokens/list.md index 13699a300a..13e4848012 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tokens/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await tokens.list({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/tokens/update.md b/docs/examples/1.8.x/server-nodejs/examples/tokens/update.md index 8178dd0519..c36998dd63 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tokens/update.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await tokens.update({ tokenId: '', expire: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-argon-2-user.md index 46badb7ab8..4f45f7fdb8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await users.createArgon2User({ password: 'password', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-bcrypt-user.md index 9c9463289b..55100412e0 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await users.createBcryptUser({ password: 'password', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-jwt.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-jwt.md index d46b9c6ace..c2e6eaa481 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.createJWT({ sessionId: '', // optional duration: 0 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-md-5-user.md index c92227489d..004c3b742b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await users.createMD5User({ password: 'password', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-mfa-recovery-codes.md index 5ebb6ac252..2f7120225c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.createMFARecoveryCodes({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-ph-pass-user.md index 0a2207fc8a..945f74768f 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await users.createPHPassUser({ password: 'password', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-modified-user.md index bd30b25c0b..fc8a5e0010 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -16,3 +17,4 @@ const result = await users.createScryptModifiedUser({ passwordSignerKey: '', name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-user.md index 76f9e2fa12..e9a3535885 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -18,3 +19,4 @@ const result = await users.createScryptUser({ passwordLength: null, name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-session.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-session.md index 869e67f3ba..04e37680e2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.createSession({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-sha-user.md index bb940be6b1..47c0d74b15 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await users.createSHAUser({ passwordVersion: sdk.PasswordHash.Sha1, // optional name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-target.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-target.md index d856f3f92b..bc19f2bfd3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-target.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -15,3 +16,4 @@ const result = await users.createTarget({ providerId: '', // optional name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create-token.md b/docs/examples/1.8.x/server-nodejs/examples/users/create-token.md index 9f116920ed..5978df65fe 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create-token.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.createToken({ length: 4, // optional expire: 60 // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/create.md b/docs/examples/1.8.x/server-nodejs/examples/users/create.md index 3095dd1b20..5610f0621d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/create.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await users.create({ password: '', // optional name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete-identity.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete-identity.md index bcd0e9efbf..1a730d8d25 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.deleteIdentity({ identityId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete-mfa-authenticator.md index 16061c7aaa..a5d4e3d0bb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.deleteMFAAuthenticator({ userId: '', type: sdk.AuthenticatorType.Totp }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete-session.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete-session.md index ce301fba6c..d39eccd083 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.deleteSession({ userId: '', sessionId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete-sessions.md index 5495fcbc9d..9331435b12 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.deleteSessions({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete-target.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete-target.md index 33278f4ac9..3f57930286 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.deleteTarget({ userId: '', targetId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/delete.md b/docs/examples/1.8.x/server-nodejs/examples/users/delete.md index 13210442fa..8714dc595d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/delete.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.delete({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/users/get-mfa-recovery-codes.md index 25f4e0b34f..3e37992648 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.getMFARecoveryCodes({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/get-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/users/get-prefs.md index cb9d54fd25..d81539e973 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.getPrefs({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/get-target.md b/docs/examples/1.8.x/server-nodejs/examples/users/get-target.md index 0c320bf480..97ee964701 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/get-target.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.getTarget({ userId: '', targetId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/get.md b/docs/examples/1.8.x/server-nodejs/examples/users/get.md index 594f034e0d..3f86f8c969 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/get.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.get({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-identities.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-identities.md index 34414b441a..e25c26f44a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.listIdentities({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-logs.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-logs.md index a768eb1752..7cb97e270e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.listLogs({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-memberships.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-memberships.md index 9de178b1e8..0a758c0042 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -13,3 +14,4 @@ const result = await users.listMemberships({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-mfa-factors.md index 79ffcff7b2..9272a20c93 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.listMFAFactors({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-sessions.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-sessions.md index 6f85fdd349..d941dcfb29 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.listSessions({ userId: '', total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list-targets.md b/docs/examples/1.8.x/server-nodejs/examples/users/list-targets.md index 8fa403354d..aa7be7484e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.listTargets({ queries: [], // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/list.md b/docs/examples/1.8.x/server-nodejs/examples/users/list.md index 0148c9eda7..916dabc076 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/list.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -12,3 +13,4 @@ const result = await users.list({ search: '', // optional total: false // optional }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-email-verification.md index 14ab8fb479..7a43202d37 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateEmailVerification({ userId: '', emailVerification: false }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-email.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-email.md index b8990cd10c..10cf0027a9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-email.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateEmail({ userId: '', email: 'email@example.com' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-labels.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-labels.md index 8e6588d5aa..28f28931a9 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateLabels({ userId: '', labels: [] }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa-recovery-codes.md index 66513ae499..41fa921e68 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -10,3 +11,4 @@ const users = new sdk.Users(client); const result = await users.updateMFARecoveryCodes({ userId: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa.md index f867b0691b..c62e10fc65 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateMFA({ userId: '', mfa: false }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-name.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-name.md index 914f2a313e..03369c9ca3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-name.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateName({ userId: '', name: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-password.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-password.md index dd32ede72b..ab572ca01e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-password.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updatePassword({ userId: '', password: '' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-phone-verification.md index bccc61a747..4489902d97 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updatePhoneVerification({ userId: '', phoneVerification: false }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-phone.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-phone.md index de534f6f96..d45d5ed07d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updatePhone({ userId: '', number: '+12065550100' }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-prefs.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-prefs.md index 9b5d9d4803..3bb011ae4c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updatePrefs({ userId: '', prefs: {} }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-status.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-status.md index c222030823..ec7d5bdbc1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-status.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -11,3 +12,4 @@ const result = await users.updateStatus({ userId: '', status: false }); +``` diff --git a/docs/examples/1.8.x/server-nodejs/examples/users/update-target.md b/docs/examples/1.8.x/server-nodejs/examples/users/update-target.md index e77dbb5d0a..d1dcf74a70 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-nodejs/examples/users/update-target.md @@ -1,3 +1,4 @@ +```javascript const sdk = require('node-appwrite'); const client = new sdk.Client() @@ -14,3 +15,4 @@ const result = await users.updateTarget({ providerId: '', // optional name: '' // optional }); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-php/examples/account/create-anonymous-session.md index 9959a3fee5..90283cf33e 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```php createAnonymousSession(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-php/examples/account/create-email-password-session.md index 3ffa5a5a6b..2a80ab6170 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```php createEmailPasswordSession( email: 'email@example.com', password: 'password' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-email-token.md b/docs/examples/1.8.x/server-php/examples/account/create-email-token.md index f1405da535..9c20e746d2 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```php createEmailToken( userId: '', email: 'email@example.com', phrase: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-php/examples/account/create-email-verification.md index 691d6fa300..650f577732 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```php createEmailVerification( url: 'https://example.com' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-jwt.md b/docs/examples/1.8.x/server-php/examples/account/create-jwt.md index 4031c64900..3314407a09 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```php createJWT( duration: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-php/examples/account/create-magic-url-token.md index 6e738e649f..a4dde3d78f 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```php createMagicURLToken( email: 'email@example.com', url: 'https://example.com', // optional phrase: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-php/examples/account/create-mfa-authenticator.md index 2eb50c3f00..fbbc193fda 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```php createMFAAuthenticator( type: AuthenticatorType::TOTP() -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-php/examples/account/create-mfa-challenge.md index 6f0ecf8790..08bf57d874 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```php createMFAChallenge( factor: AuthenticationFactor::EMAIL() -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/account/create-mfa-recovery-codes.md index 031bc4dfa0..655663f7f0 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php createMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-php/examples/account/create-o-auth-2-token.md index 721ed364ab..170192d670 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```php createOAuth2Token( success: 'https://example.com', // optional failure: 'https://example.com', // optional scopes: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-php/examples/account/create-phone-token.md index a2b45f76ee..f48754f505 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```php createPhoneToken( userId: '', phone: '+12065550100' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-php/examples/account/create-phone-verification.md index a152667313..4cedfba48c 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```php createPhoneVerification(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-recovery.md b/docs/examples/1.8.x/server-php/examples/account/create-recovery.md index c15e41d545..c6eaadaf93 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```php createRecovery( email: 'email@example.com', url: 'https://example.com' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-session.md b/docs/examples/1.8.x/server-php/examples/account/create-session.md index 02525f74ce..6e339b09ff 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-session.md @@ -1,3 +1,4 @@ +```php createSession( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create-verification.md b/docs/examples/1.8.x/server-php/examples/account/create-verification.md index 4628175fab..2266a0f1fe 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```php createVerification( url: 'https://example.com' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/create.md b/docs/examples/1.8.x/server-php/examples/account/create.md index 91684345e0..8975698b22 100644 --- a/docs/examples/1.8.x/server-php/examples/account/create.md +++ b/docs/examples/1.8.x/server-php/examples/account/create.md @@ -1,3 +1,4 @@ +```php create( email: 'email@example.com', password: '', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/delete-identity.md b/docs/examples/1.8.x/server-php/examples/account/delete-identity.md index fd66d3ae24..56db56fd84 100644 --- a/docs/examples/1.8.x/server-php/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-php/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```php deleteIdentity( identityId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-php/examples/account/delete-mfa-authenticator.md index 524b9b3ea5..c171381d55 100644 --- a/docs/examples/1.8.x/server-php/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-php/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```php deleteMFAAuthenticator( type: AuthenticatorType::TOTP() -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/delete-session.md b/docs/examples/1.8.x/server-php/examples/account/delete-session.md index 9233ae14e8..b200785f48 100644 --- a/docs/examples/1.8.x/server-php/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```php deleteSession( sessionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-php/examples/account/delete-sessions.md index 557fd6d3aa..7886fabf7c 100644 --- a/docs/examples/1.8.x/server-php/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-php/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```php deleteSessions(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/account/get-mfa-recovery-codes.md index fc5aef27b5..9a99dac2c4 100644 --- a/docs/examples/1.8.x/server-php/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php getMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/get-prefs.md b/docs/examples/1.8.x/server-php/examples/account/get-prefs.md index c7077affe0..e1259176d9 100644 --- a/docs/examples/1.8.x/server-php/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```php getPrefs(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/get-session.md b/docs/examples/1.8.x/server-php/examples/account/get-session.md index be2671348e..7e79a07f7e 100644 --- a/docs/examples/1.8.x/server-php/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/get-session.md @@ -1,3 +1,4 @@ +```php getSession( sessionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/get.md b/docs/examples/1.8.x/server-php/examples/account/get.md index 30cb7b2af5..d1fb255bc9 100644 --- a/docs/examples/1.8.x/server-php/examples/account/get.md +++ b/docs/examples/1.8.x/server-php/examples/account/get.md @@ -1,3 +1,4 @@ +```php get(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/list-identities.md b/docs/examples/1.8.x/server-php/examples/account/list-identities.md index b75a64cf01..1bd2ef0265 100644 --- a/docs/examples/1.8.x/server-php/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-php/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```php listIdentities( queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/list-logs.md b/docs/examples/1.8.x/server-php/examples/account/list-logs.md index deddc9ec88..763b7727cc 100644 --- a/docs/examples/1.8.x/server-php/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-php/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```php listLogs( queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-php/examples/account/list-mfa-factors.md index f7b6e2620d..96b6021bf4 100644 --- a/docs/examples/1.8.x/server-php/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-php/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```php listMFAFactors(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/list-sessions.md b/docs/examples/1.8.x/server-php/examples/account/list-sessions.md index 7f9749f7be..9c42f8ca86 100644 --- a/docs/examples/1.8.x/server-php/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-php/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```php listSessions(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-php/examples/account/update-email-verification.md index 95cd1b5e42..2fa17a5434 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```php updateEmailVerification( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-email.md b/docs/examples/1.8.x/server-php/examples/account/update-email.md index c7c0d485ea..8cdfc5f1f8 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-email.md @@ -1,3 +1,4 @@ +```php updateEmail( email: 'email@example.com', password: 'password' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-php/examples/account/update-magic-url-session.md index ef6b8cc094..055f0664cf 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```php updateMagicURLSession( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-php/examples/account/update-mfa-authenticator.md index 8486e88cdd..c2f9dd667a 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```php updateMFAAuthenticator( type: AuthenticatorType::TOTP(), otp: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-php/examples/account/update-mfa-challenge.md index e5821e55be..effbb172fb 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```php updateMFAChallenge( challengeId: '', otp: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/account/update-mfa-recovery-codes.md index f57e490f3f..ee16a9c9d2 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php updateMFARecoveryCodes(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-mfa.md b/docs/examples/1.8.x/server-php/examples/account/update-mfa.md index a1978e63ac..3d2f9b6253 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```php updateMFA( mfa: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-name.md b/docs/examples/1.8.x/server-php/examples/account/update-name.md index 2603b6e68b..4a34bc3281 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-name.md @@ -1,3 +1,4 @@ +```php updateName( name: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-password.md b/docs/examples/1.8.x/server-php/examples/account/update-password.md index c5101381e4..ea1996a6f6 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-password.md @@ -1,3 +1,4 @@ +```php updatePassword( password: '', oldPassword: 'password' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-php/examples/account/update-phone-session.md index 42f7fb933c..67b5816dc7 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```php updatePhoneSession( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-php/examples/account/update-phone-verification.md index df59922996..877a0346e8 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```php updatePhoneVerification( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-phone.md b/docs/examples/1.8.x/server-php/examples/account/update-phone.md index 853cb62fce..6b5e9cad68 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```php updatePhone( phone: '+12065550100', password: 'password' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-prefs.md b/docs/examples/1.8.x/server-php/examples/account/update-prefs.md index f6a1003099..4709edd248 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```php updatePrefs( 'timezone' => 'UTC', 'darkTheme' => true ] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-recovery.md b/docs/examples/1.8.x/server-php/examples/account/update-recovery.md index 63518b0029..7b5c1d0b1b 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```php updateRecovery( userId: '', secret: '', password: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-session.md b/docs/examples/1.8.x/server-php/examples/account/update-session.md index 11cb4c7d98..aecf2fe87c 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-session.md @@ -1,3 +1,4 @@ +```php updateSession( sessionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-status.md b/docs/examples/1.8.x/server-php/examples/account/update-status.md index 7c8075e5c7..7f0088a63f 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-status.md @@ -1,3 +1,4 @@ +```php updateStatus(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/account/update-verification.md b/docs/examples/1.8.x/server-php/examples/account/update-verification.md index 60ec0b3196..24bb3ff0da 100644 --- a/docs/examples/1.8.x/server-php/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-php/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```php updateVerification( userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-php/examples/avatars/get-browser.md index 2449c26032..ec2a7599f5 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```php getBrowser( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-php/examples/avatars/get-credit-card.md index 123b345a43..05ddc24786 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```php getCreditCard( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-php/examples/avatars/get-favicon.md index 1e671864c8..424cea84ba 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```php getFavicon( url: 'https://example.com' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-php/examples/avatars/get-flag.md index 5b7d8babc7..1a4ef37af5 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```php getFlag( width: 0, // optional height: 0, // optional quality: -1 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-image.md b/docs/examples/1.8.x/server-php/examples/avatars/get-image.md index e1555453ec..4ceb8d380e 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```php getImage( url: 'https://example.com', width: 0, // optional height: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-php/examples/avatars/get-initials.md index d84e23a157..2bd523b512 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```php getInitials( width: 0, // optional height: 0, // optional background: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-php/examples/avatars/get-qr.md index 0d5936af6b..ad49bf9e6a 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```php getQR( size: 1, // optional margin: 0, // optional download: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-php/examples/avatars/get-screenshot.md index 24c3aaa91f..9db8b3cd06 100644 --- a/docs/examples/1.8.x/server-php/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-php/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```php getScreenshot( height: 600, // optional quality: 85, // optional output: ImageFormat::JPEG() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-boolean-attribute.md index 805d022194..746db6be0d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```php createBooleanAttribute( required: false, default: false, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-collection.md b/docs/examples/1.8.x/server-php/examples/databases/create-collection.md index aabfa0335b..a90e579be6 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```php createCollection( enabled: false, // optional attributes: [], // optional indexes: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-datetime-attribute.md index dd2fcecc80..f7c386247a 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```php createDatetimeAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-document.md b/docs/examples/1.8.x/server-php/examples/databases/create-document.md index 39fb26f8ad..f8e7e94327 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```php createDocument( ], permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-documents.md b/docs/examples/1.8.x/server-php/examples/databases/create-documents.md index ced7a5a83f..f4f153ae8d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```php createDocuments( collectionId: '', documents: [], transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-email-attribute.md index 1274a4b9e1..4f53b8acb7 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```php createEmailAttribute( required: false, default: 'email@example.com', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-enum-attribute.md index 9abf2dfa1b..49eb90a5d6 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```php createEnumAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-float-attribute.md index e6eecb5298..60486bbbd1 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```php createFloatAttribute( max: null, // optional default: null, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-index.md b/docs/examples/1.8.x/server-php/examples/databases/create-index.md index 8dc2c889a4..39b3722e64 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```php createIndex( attributes: [], orders: [OrderBy::ASC()], // optional lengths: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-integer-attribute.md index 1dbeefa547..e1c771fe85 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```php createIntegerAttribute( max: null, // optional default: null, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-ip-attribute.md index f42717caa4..b15fc38670 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```php createIpAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-line-attribute.md index 56d007c67c..dd59e00b1d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```php createLineAttribute( key: '', required: false, default: [[1, 2], [3, 4], [5, 6]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-longtext-attribute.md index bb97b18b78..9c3b4a657d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```php createLongtextAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-mediumtext-attribute.md index d225d95bb4..9c3a78f550 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```php createMediumtextAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-operations.md b/docs/examples/1.8.x/server-php/examples/databases/create-operations.md index 05038cb6f6..10b2e6c5e7 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```php createOperations( } } ] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-point-attribute.md index dee0801178..14ced405bd 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```php createPointAttribute( key: '', required: false, default: [1, 2] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-polygon-attribute.md index d745589329..5886cf2cb0 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```php createPolygonAttribute( key: '', required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-relationship-attribute.md index 551fe17a9d..739b27e202 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```php createRelationshipAttribute( key: '', // optional twoWayKey: '', // optional onDelete: RelationMutate::CASCADE() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-string-attribute.md index 5a4f72b6c8..e6da9507da 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```php createStringAttribute( default: '', // optional array: false, // optional encrypt: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-text-attribute.md index 3b1316f4e7..b123b1bfdd 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```php createTextAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-php/examples/databases/create-transaction.md index ea6faf73b1..9ca80288fb 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```php createTransaction( ttl: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-url-attribute.md index 6b9bc800e5..c1b432dfe6 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```php createUrlAttribute( required: false, default: 'https://example.com', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/create-varchar-attribute.md index 811e47b000..31a10287b8 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```php createVarcharAttribute( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/create.md b/docs/examples/1.8.x/server-php/examples/databases/create.md index 73c618874a..867c31c23f 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/create.md +++ b/docs/examples/1.8.x/server-php/examples/databases/create.md @@ -1,3 +1,4 @@ +```php create( databaseId: '', name: '', enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/decrement-document-attribute.md index dfb1873cdd..2c00e78745 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```php decrementDocumentAttribute( value: null, // optional min: null, // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/delete-attribute.md index 71b7162655..cc77743664 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```php deleteAttribute( databaseId: '', collectionId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-php/examples/databases/delete-collection.md index 4e98dfdb4e..8419bc4151 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```php deleteCollection( databaseId: '', collectionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-document.md b/docs/examples/1.8.x/server-php/examples/databases/delete-document.md index 6e4d7aa2a6..c0c620bcff 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```php deleteDocument( collectionId: '', documentId: '', transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-php/examples/databases/delete-documents.md index 3b2b0c79c5..124294dc29 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```php deleteDocuments( collectionId: '', queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-index.md b/docs/examples/1.8.x/server-php/examples/databases/delete-index.md index 79e476b6d0..d81060996c 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```php deleteIndex( databaseId: '', collectionId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-php/examples/databases/delete-transaction.md index 0559aace08..3e2db81e74 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```php deleteTransaction( transactionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/delete.md b/docs/examples/1.8.x/server-php/examples/databases/delete.md index c796b7c406..9d89cfbc8c 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-php/examples/databases/delete.md @@ -1,3 +1,4 @@ +```php delete( databaseId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/get-attribute.md index ba82db4065..4f3f7f77d7 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```php getAttribute( databaseId: '', collectionId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get-collection.md b/docs/examples/1.8.x/server-php/examples/databases/get-collection.md index ecddab053d..e3cccdf322 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```php getCollection( databaseId: '', collectionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get-document.md b/docs/examples/1.8.x/server-php/examples/databases/get-document.md index 834602d89f..90f8760e7b 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```php getDocument( documentId: '', queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get-index.md b/docs/examples/1.8.x/server-php/examples/databases/get-index.md index e9c6307671..001fc6edae 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```php getIndex( databaseId: '', collectionId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-php/examples/databases/get-transaction.md index 16ca28da1a..82b34ae60b 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```php getTransaction( transactionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/get.md b/docs/examples/1.8.x/server-php/examples/databases/get.md index 9aa6395587..59a83bf9fe 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/get.md +++ b/docs/examples/1.8.x/server-php/examples/databases/get.md @@ -1,3 +1,4 @@ +```php get( databaseId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/increment-document-attribute.md index 63162d3224..8782cf7dc1 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```php incrementDocumentAttribute( value: null, // optional max: null, // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-php/examples/databases/list-attributes.md index e770292a23..dac753dbe3 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```php listAttributes( collectionId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list-collections.md b/docs/examples/1.8.x/server-php/examples/databases/list-collections.md index c71866be55..7f994e1da9 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```php listCollections( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list-documents.md b/docs/examples/1.8.x/server-php/examples/databases/list-documents.md index 8713327fe7..1ff2692516 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```php listDocuments( queries: [], // optional transactionId: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-php/examples/databases/list-indexes.md index a26ff7cf3b..1ebd269277 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```php listIndexes( collectionId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-php/examples/databases/list-transactions.md index 858e905ba5..8990c74e65 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```php listTransactions( queries: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/list.md b/docs/examples/1.8.x/server-php/examples/databases/list.md index f5baccc6a2..d439184a4f 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/list.md +++ b/docs/examples/1.8.x/server-php/examples/databases/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-boolean-attribute.md index 2e4bee72fe..f63e5f3fcb 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```php updateBooleanAttribute( required: false, default: false, newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-collection.md b/docs/examples/1.8.x/server-php/examples/databases/update-collection.md index 78e0dfe5fc..79271f6d06 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```php updateCollection( permissions: [Permission::read(Role::any())], // optional documentSecurity: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-datetime-attribute.md index b1a03ec028..a1fb43f61a 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```php updateDatetimeAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-document.md b/docs/examples/1.8.x/server-php/examples/databases/update-document.md index 5037d4bf9e..7a1854513b 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```php updateDocument( ], // optional permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-documents.md b/docs/examples/1.8.x/server-php/examples/databases/update-documents.md index 3a4aaad284..c29a467dff 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```php updateDocuments( ], // optional queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-email-attribute.md index dc9865f81a..b4421d5ecb 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```php updateEmailAttribute( required: false, default: 'email@example.com', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-enum-attribute.md index f7cd0b7b83..c2880f29d8 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```php updateEnumAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-float-attribute.md index 51f6ec9239..3ea481889b 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```php updateFloatAttribute( min: null, // optional max: null, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-integer-attribute.md index bdbd96ca12..29b7ac6b3d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```php updateIntegerAttribute( min: null, // optional max: null, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-ip-attribute.md index 130cd0cc9f..c7490c5f6d 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```php updateIpAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-line-attribute.md index 86b8f646e8..7cb7dabb8e 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```php updateLineAttribute( required: false, default: [[1, 2], [3, 4], [5, 6]], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-longtext-attribute.md index 6d5ade20a7..d9a217d29f 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```php updateLongtextAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-mediumtext-attribute.md index 7671c556aa..bae03412ea 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```php updateMediumtextAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-point-attribute.md index cdff22656c..1359ec90a7 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```php updatePointAttribute( required: false, default: [1, 2], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-polygon-attribute.md index c2736bd4bf..cf7999699c 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```php updatePolygonAttribute( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-relationship-attribute.md index a4d6888711..824f1f7174 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```php updateRelationshipAttribute( key: '', onDelete: RelationMutate::CASCADE(), // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-string-attribute.md index e0c8f992ea..828dda47e1 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```php updateStringAttribute( default: '', size: 1, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-text-attribute.md index eef06699ba..8de8c78cde 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```php updateTextAttribute( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-php/examples/databases/update-transaction.md index 750eb861f9..13137b6b58 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```php updateTransaction( transactionId: '', commit: false, // optional rollback: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-url-attribute.md index c200463894..461abf559b 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```php updateUrlAttribute( required: false, default: 'https://example.com', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-php/examples/databases/update-varchar-attribute.md index df9832288f..0c5dbbe8ec 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```php updateVarcharAttribute( default: '', size: 1, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/update.md b/docs/examples/1.8.x/server-php/examples/databases/update.md index 06a92b34d2..67af71aa22 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/update.md +++ b/docs/examples/1.8.x/server-php/examples/databases/update.md @@ -1,3 +1,4 @@ +```php update( databaseId: '', name: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-php/examples/databases/upsert-document.md index c4cee07e51..9b01b8c266 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-php/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```php upsertDocument( ], // optional permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-php/examples/databases/upsert-documents.md index 06d3a319af..5bc04d7815 100644 --- a/docs/examples/1.8.x/server-php/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-php/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```php upsertDocuments( collectionId: '', documents: [], transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/create-deployment.md index 7e48b89ca7..cdee0ff905 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```php createDeployment( activate: false, entrypoint: '', // optional commands: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/create-duplicate-deployment.md index a898762cb8..0cf3a83196 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```php createDuplicateDeployment( functionId: '', deploymentId: '', buildId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-execution.md b/docs/examples/1.8.x/server-php/examples/functions/create-execution.md index 9c12e87374..70a8fc06d1 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```php createExecution( method: ExecutionMethod::GET(), // optional headers: [], // optional scheduledAt: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/create-template-deployment.md index a1272523f7..c6dae9a922 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```php createTemplateDeployment( type: TemplateReferenceType::COMMIT(), reference: '', activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-variable.md b/docs/examples/1.8.x/server-php/examples/functions/create-variable.md index ec470d5457..d860cb32f6 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```php createVariable( key: '', value: '', secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/create-vcs-deployment.md index f044219541..5ccab95038 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```php createVcsDeployment( type: VCSReferenceType::BRANCH(), reference: '', activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/create.md b/docs/examples/1.8.x/server-php/examples/functions/create.md index 0504e73380..e921e99910 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/create.md +++ b/docs/examples/1.8.x/server-php/examples/functions/create.md @@ -1,3 +1,4 @@ +```php create( providerSilentMode: false, // optional providerRootDirectory: '', // optional specification: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/delete-deployment.md index 20285d7610..96e78e3b0a 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```php deleteDeployment( functionId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-php/examples/functions/delete-execution.md index e55a8b1892..e95d2f70b6 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-php/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```php deleteExecution( functionId: '', executionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-php/examples/functions/delete-variable.md index e1fb391d79..9be2e17495 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-php/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```php deleteVariable( functionId: '', variableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/delete.md b/docs/examples/1.8.x/server-php/examples/functions/delete.md index 9f87f5c9f0..d718bfbf6c 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-php/examples/functions/delete.md @@ -1,3 +1,4 @@ +```php delete( functionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-php/examples/functions/get-deployment-download.md index a06f97b662..73842f546c 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-php/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```php getDeploymentDownload( functionId: '', deploymentId: '', type: DeploymentDownloadType::SOURCE() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/get-deployment.md index 945933b2ad..f8d4a26eb3 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```php getDeployment( functionId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/get-execution.md b/docs/examples/1.8.x/server-php/examples/functions/get-execution.md index 7dfeeed0c0..f647a7fdde 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-php/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```php getExecution( functionId: '', executionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/get-variable.md b/docs/examples/1.8.x/server-php/examples/functions/get-variable.md index 4c8d3d6b53..8d40864383 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-php/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```php getVariable( functionId: '', variableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/get.md b/docs/examples/1.8.x/server-php/examples/functions/get.md index ca2160f6c9..e5997ee2e1 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/get.md +++ b/docs/examples/1.8.x/server-php/examples/functions/get.md @@ -1,3 +1,4 @@ +```php get( functionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-php/examples/functions/list-deployments.md index bf9031851a..bc46662aeb 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```php listDeployments( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list-executions.md b/docs/examples/1.8.x/server-php/examples/functions/list-executions.md index 4a7c79cc08..9948e86214 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```php listExecutions( functionId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-php/examples/functions/list-runtimes.md index 6c77c42678..320a9dc6c7 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```php listRuntimes(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-php/examples/functions/list-specifications.md index eec5c33c9d..f5afe80b29 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```php listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list-variables.md b/docs/examples/1.8.x/server-php/examples/functions/list-variables.md index f85e85490c..8867ad6c6e 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```php listVariables( functionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/list.md b/docs/examples/1.8.x/server-php/examples/functions/list.md index 1646a06bdb..2dc45db097 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/list.md +++ b/docs/examples/1.8.x/server-php/examples/functions/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-php/examples/functions/update-deployment-status.md index de36d4e8ce..311645e527 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-php/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```php updateDeploymentStatus( functionId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-php/examples/functions/update-function-deployment.md index 38ba026ba1..b1c0edb7a2 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```php updateFunctionDeployment( functionId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/update-variable.md b/docs/examples/1.8.x/server-php/examples/functions/update-variable.md index b15597a622..3a28069718 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-php/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```php updateVariable( key: '', value: '', // optional secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/functions/update.md b/docs/examples/1.8.x/server-php/examples/functions/update.md index 1c3ff548e8..f9bdac11c0 100644 --- a/docs/examples/1.8.x/server-php/examples/functions/update.md +++ b/docs/examples/1.8.x/server-php/examples/functions/update.md @@ -1,3 +1,4 @@ +```php update( providerSilentMode: false, // optional providerRootDirectory: '', // optional specification: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/graphql/mutation.md b/docs/examples/1.8.x/server-php/examples/graphql/mutation.md index c349bc2dbd..1e25bf7392 100644 --- a/docs/examples/1.8.x/server-php/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-php/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```php mutation( query: [] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/graphql/query.md b/docs/examples/1.8.x/server-php/examples/graphql/query.md index e6e277c27b..90979942d4 100644 --- a/docs/examples/1.8.x/server-php/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-php/examples/graphql/query.md @@ -1,3 +1,4 @@ +```php query( query: [] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-php/examples/health/get-antivirus.md index 47210646df..7f57d8aa12 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```php getAntivirus(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-cache.md b/docs/examples/1.8.x/server-php/examples/health/get-cache.md index 2e81dae328..8443c64f34 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```php getCache(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-certificate.md b/docs/examples/1.8.x/server-php/examples/health/get-certificate.md index 408581beac..d1d1fd1e7e 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```php getCertificate( domain: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-db.md b/docs/examples/1.8.x/server-php/examples/health/get-db.md index cfec70e604..1682bcf32e 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-db.md @@ -1,3 +1,4 @@ +```php getDB(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-php/examples/health/get-failed-jobs.md index 63bc1c83f2..8586763527 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```php getFailedJobs( name: Name::V1DATABASE(), threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-php/examples/health/get-pub-sub.md index 1c346caab6..97dc4b6f78 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```php getPubSub(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-audits.md index cd51345c61..2bfc32e848 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```php getQueueAudits( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-builds.md index 8c1f77433b..607acb2032 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```php getQueueBuilds( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-certificates.md index 92fb79a98c..d70b657499 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```php getQueueCertificates( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-databases.md index 745b469434..96bfb6fd11 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```php getQueueDatabases( name: '', // optional threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-deletes.md index d3952685c4..2b147f42d6 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```php getQueueDeletes( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-functions.md index 1a5bea2b4c..d5b5844201 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```php getQueueFunctions( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-logs.md index cf5e3b9d83..cb0125cbf7 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```php getQueueLogs( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-mails.md index 132dfa68aa..56babd6c6b 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```php getQueueMails( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-messaging.md index fd5fdb1ede..4539c5d91c 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```php getQueueMessaging( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-migrations.md index 68110189e5..36b8d4b4cb 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```php getQueueMigrations( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-stats-resources.md index d0bd6c054e..da4cee7a2c 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```php getQueueStatsResources( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-usage.md index 627a85c845..dd35802b70 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```php getQueueUsage( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-php/examples/health/get-queue-webhooks.md index d6ccd7cd83..d2877ce6aa 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```php getQueueWebhooks( threshold: null // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-php/examples/health/get-storage-local.md index 041d24954c..d7524bad0b 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```php getStorageLocal(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-storage.md b/docs/examples/1.8.x/server-php/examples/health/get-storage.md index 377416ed13..2a109decf3 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```php getStorage(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get-time.md b/docs/examples/1.8.x/server-php/examples/health/get-time.md index aa2699349d..559b17975f 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-php/examples/health/get-time.md @@ -1,3 +1,4 @@ +```php getTime(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/health/get.md b/docs/examples/1.8.x/server-php/examples/health/get.md index fec3e3f485..4b46ac2c2c 100644 --- a/docs/examples/1.8.x/server-php/examples/health/get.md +++ b/docs/examples/1.8.x/server-php/examples/health/get.md @@ -1,3 +1,4 @@ +```php get(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/get.md b/docs/examples/1.8.x/server-php/examples/locale/get.md index ef4c0432dd..8b204573d0 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/get.md +++ b/docs/examples/1.8.x/server-php/examples/locale/get.md @@ -1,3 +1,4 @@ +```php get(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-codes.md b/docs/examples/1.8.x/server-php/examples/locale/list-codes.md index 273fad0839..5c99bbf2de 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```php listCodes(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-continents.md b/docs/examples/1.8.x/server-php/examples/locale/list-continents.md index e8c7ca46df..1245b2ecfe 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```php listContinents(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-php/examples/locale/list-countries-eu.md index c5dd1d2ad6..9744c8ea65 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```php listCountriesEU(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-php/examples/locale/list-countries-phones.md index 7585c1071e..df66061f69 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```php listCountriesPhones(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-countries.md b/docs/examples/1.8.x/server-php/examples/locale/list-countries.md index 63a2e0b5f7..f4f9626224 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```php listCountries(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-php/examples/locale/list-currencies.md index d385018e7d..f4f1125a9e 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```php listCurrencies(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/locale/list-languages.md b/docs/examples/1.8.x/server-php/examples/locale/list-languages.md index f0ca4d4f04..b25fab6425 100644 --- a/docs/examples/1.8.x/server-php/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-php/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```php listLanguages(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-apns-provider.md index 2ce4b7f95b..768878ac03 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```php createAPNSProvider( bundleId: '', // optional sandbox: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-email.md b/docs/examples/1.8.x/server-php/examples/messaging/create-email.md index 9de24873bf..68f46f9e04 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```php createEmail( draft: false, // optional html: false, // optional scheduledAt: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-fcm-provider.md index 8037c23197..1ab3e98307 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```php createFCMProvider( name: '', serviceAccountJSON: [], // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-mailgun-provider.md index 6c62ee8837..ca0a3cb1bb 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```php createMailgunProvider( replyToName: '', // optional replyToEmail: 'email@example.com', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-msg-91-provider.md index 1eb954a2c6..78998cf513 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```php createMsg91Provider( senderId: '', // optional authKey: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-push.md b/docs/examples/1.8.x/server-php/examples/messaging/create-push.md index 614c758c80..2673d48b0f 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```php createPush( contentAvailable: false, // optional critical: false, // optional priority: MessagePriority::NORMAL() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-resend-provider.md index e66b0b82d3..e32ad9fc14 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```php createResendProvider( replyToName: '', // optional replyToEmail: 'email@example.com', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-sendgrid-provider.md index 892d856305..38f213c41f 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```php createSendgridProvider( replyToName: '', // optional replyToEmail: 'email@example.com', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-php/examples/messaging/create-sms.md index 50623b5b63..5f946dbcc0 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```php createSMS( targets: [], // optional draft: false, // optional scheduledAt: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-smtp-provider.md index 953bbcf44f..0538612506 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```php createSMTPProvider( replyToName: '', // optional replyToEmail: 'email@example.com', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-php/examples/messaging/create-subscriber.md index 3516fa3d6a..f0d2783135 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```php createSubscriber( topicId: '', subscriberId: '', targetId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-telesign-provider.md index 9006918029..005e6d0340 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```php createTelesignProvider( customerId: '', // optional apiKey: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-textmagic-provider.md index 5215d52642..262a9e2a67 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```php createTextmagicProvider( username: '', // optional apiKey: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-php/examples/messaging/create-topic.md index e94141cc73..460168e498 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```php createTopic( topicId: '', name: '', subscribe: ["any"] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-twilio-provider.md index c356828640..f8ee417569 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```php createTwilioProvider( accountSid: '', // optional authToken: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/create-vonage-provider.md index adeacbc45e..450cf9c50e 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```php createVonageProvider( apiKey: '', // optional apiSecret: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/delete-provider.md index f37d18b4fd..e0a63c15c1 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```php deleteProvider( providerId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-php/examples/messaging/delete-subscriber.md index f7a8425920..9720ad07c0 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```php deleteSubscriber( topicId: '', subscriberId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-php/examples/messaging/delete-topic.md index 2ec899b1d6..906145153c 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```php deleteTopic( topicId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/delete.md b/docs/examples/1.8.x/server-php/examples/messaging/delete.md index 5781838bdc..1548905877 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```php delete( messageId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/get-message.md b/docs/examples/1.8.x/server-php/examples/messaging/get-message.md index cf922219c7..a1d2f0264a 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```php getMessage( messageId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/get-provider.md index d19f5c65e5..6353e54f54 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```php getProvider( providerId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-php/examples/messaging/get-subscriber.md index e2a0d7ef35..d3a20e955b 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```php getSubscriber( topicId: '', subscriberId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-php/examples/messaging/get-topic.md index fc06cbbc95..95ff3ff754 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```php getTopic( topicId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-php/examples/messaging/list-message-logs.md index 4e0ab3ea8d..8bc5631c75 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```php listMessageLogs( messageId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-php/examples/messaging/list-messages.md index d66c64f539..fa6d57c3bd 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```php listMessages( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-php/examples/messaging/list-provider-logs.md index 8c8d7f1f58..afc3df91ab 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```php listProviderLogs( providerId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-php/examples/messaging/list-providers.md index da0910ec73..281a5220ea 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```php listProviders( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-php/examples/messaging/list-subscriber-logs.md index 9e453a24ef..7a0e5ad73a 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```php listSubscriberLogs( subscriberId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-php/examples/messaging/list-subscribers.md index f21c788e21..096a8f2e7d 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```php listSubscribers( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-php/examples/messaging/list-targets.md index 03ffdbb23d..0615d8201d 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```php listTargets( messageId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-php/examples/messaging/list-topic-logs.md index fae8eec97c..d32d27ae0f 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```php listTopicLogs( topicId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-php/examples/messaging/list-topics.md index b5d4c5400c..6386df1722 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```php listTopics( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-apns-provider.md index 161a148563..aa0e78f05e 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```php updateAPNSProvider( teamId: '', // optional bundleId: '', // optional sandbox: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-email.md b/docs/examples/1.8.x/server-php/examples/messaging/update-email.md index dd0f645af6..347f0306d9 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```php updateEmail( bcc: [], // optional scheduledAt: '', // optional attachments: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-fcm-provider.md index 0df2b93af6..a9a54d1ce2 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```php updateFCMProvider( name: '', // optional enabled: false, // optional serviceAccountJSON: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-mailgun-provider.md index c99ebc7d73..6392e78b60 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```php updateMailgunProvider( fromEmail: 'email@example.com', // optional replyToName: '', // optional replyToEmail: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-msg-91-provider.md index f6f557cce4..67b689c941 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```php updateMsg91Provider( templateId: '', // optional senderId: '', // optional authKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-push.md b/docs/examples/1.8.x/server-php/examples/messaging/update-push.md index 0fea9a135f..0b3f1bcbc5 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```php updatePush( contentAvailable: false, // optional critical: false, // optional priority: MessagePriority::NORMAL() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-resend-provider.md index b3f1d1fd4b..ab60aaf3f6 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```php updateResendProvider( fromEmail: 'email@example.com', // optional replyToName: '', // optional replyToEmail: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-sendgrid-provider.md index b8473c16a3..e6e0391aa8 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```php updateSendgridProvider( fromEmail: 'email@example.com', // optional replyToName: '', // optional replyToEmail: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-php/examples/messaging/update-sms.md index 92d3ebbed7..3dc932ae6b 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```php updateSMS( content: '', // optional draft: false, // optional scheduledAt: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-smtp-provider.md index 495f332131..5701b3c25f 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```php updateSMTPProvider( replyToName: '', // optional replyToEmail: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-telesign-provider.md index 29a54bfaed..33fcbb3019 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```php updateTelesignProvider( customerId: '', // optional apiKey: '', // optional from: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-textmagic-provider.md index e6a1ed1a1e..96564c707a 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```php updateTextmagicProvider( username: '', // optional apiKey: '', // optional from: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-php/examples/messaging/update-topic.md index b1f9a32ec5..257e754421 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```php updateTopic( topicId: '', name: '', // optional subscribe: ["any"] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-twilio-provider.md index def821adc4..c9bcfa9b4d 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```php updateTwilioProvider( accountSid: '', // optional authToken: '', // optional from: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-php/examples/messaging/update-vonage-provider.md index 0841e284eb..112745e742 100644 --- a/docs/examples/1.8.x/server-php/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-php/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```php updateVonageProvider( apiKey: '', // optional apiSecret: '', // optional from: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/create-deployment.md index 30770b7871..c890f118d7 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```php createDeployment( installCommand: '', // optional buildCommand: '', // optional outputDirectory: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/create-duplicate-deployment.md index 84f65cd025..97fb1f5d9d 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```php createDuplicateDeployment( siteId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/create-template-deployment.md index 1661bbb407..05f039e78b 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```php createTemplateDeployment( type: TemplateReferenceType::BRANCH(), reference: '', activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create-variable.md b/docs/examples/1.8.x/server-php/examples/sites/create-variable.md index 3097e19305..fee3ae9da6 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```php createVariable( key: '', value: '', secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/create-vcs-deployment.md index 015bf09d7d..d01747bc4c 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```php createVcsDeployment( type: VCSReferenceType::BRANCH(), reference: '', activate: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/create.md b/docs/examples/1.8.x/server-php/examples/sites/create.md index 6f1fc5ac27..9191261f90 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/create.md +++ b/docs/examples/1.8.x/server-php/examples/sites/create.md @@ -1,3 +1,4 @@ +```php create( providerSilentMode: false, // optional providerRootDirectory: '', // optional specification: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/delete-deployment.md index 4e24748c37..97bb976e92 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```php deleteDeployment( siteId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/delete-log.md b/docs/examples/1.8.x/server-php/examples/sites/delete-log.md index b6e30643f6..ed5b3c5b83 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-php/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```php deleteLog( siteId: '', logId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-php/examples/sites/delete-variable.md index 663254303a..bdb2fbf5e4 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-php/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```php deleteVariable( siteId: '', variableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/delete.md b/docs/examples/1.8.x/server-php/examples/sites/delete.md index 8e6363aa35..c2965d4e2b 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-php/examples/sites/delete.md @@ -1,3 +1,4 @@ +```php delete( siteId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-php/examples/sites/get-deployment-download.md index 61fad0bd74..5582e96420 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-php/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```php getDeploymentDownload( siteId: '', deploymentId: '', type: DeploymentDownloadType::SOURCE() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/get-deployment.md index 19525d9274..91f836785e 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```php getDeployment( siteId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/get-log.md b/docs/examples/1.8.x/server-php/examples/sites/get-log.md index 5ceb2b9110..a781d20f31 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-php/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```php getLog( siteId: '', logId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/get-variable.md b/docs/examples/1.8.x/server-php/examples/sites/get-variable.md index 0cab412b2e..80b61ecacb 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-php/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```php getVariable( siteId: '', variableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/get.md b/docs/examples/1.8.x/server-php/examples/sites/get.md index e5ec061bad..c8f8c8e2f6 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/get.md +++ b/docs/examples/1.8.x/server-php/examples/sites/get.md @@ -1,3 +1,4 @@ +```php get( siteId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-php/examples/sites/list-deployments.md index bb49a5a96c..82cee29843 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```php listDeployments( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-php/examples/sites/list-frameworks.md index 87df92d9ee..74ea882156 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```php listFrameworks(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list-logs.md b/docs/examples/1.8.x/server-php/examples/sites/list-logs.md index 3bc4540845..5626bbb1c8 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```php listLogs( siteId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-php/examples/sites/list-specifications.md index 42dae1b799..1a732b6a6c 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```php listSpecifications(); +``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list-variables.md b/docs/examples/1.8.x/server-php/examples/sites/list-variables.md index 36aad640fe..7b7ab117a4 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```php listVariables( siteId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/list.md b/docs/examples/1.8.x/server-php/examples/sites/list.md index d056e8d9dc..08c13146e5 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/list.md +++ b/docs/examples/1.8.x/server-php/examples/sites/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-php/examples/sites/update-deployment-status.md index 2714b3570f..06ffc75126 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-php/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```php updateDeploymentStatus( siteId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-php/examples/sites/update-site-deployment.md index 6e2614cb41..bdac54d45c 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-php/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```php updateSiteDeployment( siteId: '', deploymentId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/update-variable.md b/docs/examples/1.8.x/server-php/examples/sites/update-variable.md index 84bafe28c4..9651875480 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-php/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```php updateVariable( key: '', value: '', // optional secret: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/sites/update.md b/docs/examples/1.8.x/server-php/examples/sites/update.md index d2a6c9d256..42d24fb19b 100644 --- a/docs/examples/1.8.x/server-php/examples/sites/update.md +++ b/docs/examples/1.8.x/server-php/examples/sites/update.md @@ -1,3 +1,4 @@ +```php update( providerSilentMode: false, // optional providerRootDirectory: '', // optional specification: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-php/examples/storage/create-bucket.md index 31840957a2..f00c2c7f02 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-php/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```php createBucket( encryption: false, // optional antivirus: false, // optional transformations: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/create-file.md b/docs/examples/1.8.x/server-php/examples/storage/create-file.md index 33bef04541..62301b102f 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-php/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```php createFile( fileId: '', file: InputFile::withPath('file.png'), permissions: [Permission::read(Role::any())] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-php/examples/storage/delete-bucket.md index 50adf35b6b..737f4e1d2c 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-php/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```php deleteBucket( bucketId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/delete-file.md b/docs/examples/1.8.x/server-php/examples/storage/delete-file.md index d4c45eb66a..dd2c3a7013 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-php/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```php deleteFile( bucketId: '', fileId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-php/examples/storage/get-bucket.md index e62c43d2d3..f6449aecb2 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-php/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```php getBucket( bucketId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-php/examples/storage/get-file-download.md index defefa5948..f55376f05e 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-php/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```php getFileDownload( bucketId: '', fileId: '', token: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-php/examples/storage/get-file-preview.md index aaa15a22fb..8964011b80 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-php/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```php getFilePreview( background: '', // optional output: ImageFormat::JPG(), // optional token: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-php/examples/storage/get-file-view.md index dfc84ca102..6a729dc896 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-php/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```php getFileView( bucketId: '', fileId: '', token: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/get-file.md b/docs/examples/1.8.x/server-php/examples/storage/get-file.md index 6964144801..b498b604dc 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-php/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```php getFile( bucketId: '', fileId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-php/examples/storage/list-buckets.md index 8b84a8bf14..3b0d79d7c5 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-php/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```php listBuckets( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/list-files.md b/docs/examples/1.8.x/server-php/examples/storage/list-files.md index 309c87c155..77e78cded3 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-php/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```php listFiles( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-php/examples/storage/update-bucket.md index 1556257849..c14e75c3ff 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-php/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```php updateBucket( encryption: false, // optional antivirus: false, // optional transformations: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/storage/update-file.md b/docs/examples/1.8.x/server-php/examples/storage/update-file.md index fc84f590a6..1e40a492df 100644 --- a/docs/examples/1.8.x/server-php/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-php/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```php updateFile( fileId: '', name: '', // optional permissions: [Permission::read(Role::any())] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md index 5f0a2de34b..b6032a3944 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```php createBooleanColumn( required: false, default: false, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md index 9ea8e8f4d9..9e9ad843a5 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```php createDatetimeColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md index 64f3a08299..f24aa050fe 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```php createEmailColumn( required: false, default: 'email@example.com', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md index 0506a3364a..9515742436 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```php createEnumColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md index 65a7f00f8b..c83abba7a9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```php createFloatColumn( max: null, // optional default: null, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md index b56f50382a..c91356f20a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```php createIndex( columns: [], orders: [OrderBy::ASC()], // optional lengths: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md index 4bf96e8b93..a42c87102d 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```php createIntegerColumn( max: null, // optional default: null, // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md index ab0032e449..f40fe61d12 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```php createIpColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-line-column.md index 69f2e66717..c1d17b8249 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```php createLineColumn( key: '', required: false, default: [[1, 2], [3, 4], [5, 6]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-longtext-column.md index 48c5747bf2..cb2bd85dfb 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```php createLongtextColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-mediumtext-column.md index f2472fbfe2..b17328c8dc 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```php createMediumtextColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-operations.md index 429a0bb546..45ea4c928f 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```php createOperations( } } ] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-point-column.md index 006c9e0089..bde57bc35b 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```php createPointColumn( key: '', required: false, default: [1, 2] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-polygon-column.md index 20fb27161e..ee340f3446 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```php createPolygonColumn( key: '', required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md index 7f9a06cc03..06dd6c0d72 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```php createRelationshipColumn( key: '', // optional twoWayKey: '', // optional onDelete: RelationMutate::CASCADE() // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md index 70666d52c0..fc253f2bfc 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```php createRow( ], permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md index 44c9c7d140..8c08fa5743 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```php createRows( tableId: '', rows: [], transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md index 22fc7ccf9d..a4dd4dacb0 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```php createStringColumn( default: '', // optional array: false, // optional encrypt: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md index aef39e5454..fbe44767e9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```php createTable( enabled: false, // optional columns: [], // optional indexes: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-text-column.md index 00f1611ba3..833aa90a43 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```php createTextColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-transaction.md index 32488185b1..6664c084f1 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```php createTransaction( ttl: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md index fe25988a7e..ceb1dae603 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```php createUrlColumn( required: false, default: 'https://example.com', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-varchar-column.md index bbd865088b..25aa354e09 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```php createVarcharColumn( required: false, default: '', // optional array: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create.md index c3c4faaf01..2265fc9bb0 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```php create( databaseId: '', name: '', enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md index ede258e8bd..0d01314a20 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```php decrementRowColumn( value: null, // optional min: null, // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md index dd99fabc09..97cafcede5 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```php deleteColumn( databaseId: '', tableId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md index 1ef346fec3..abad8248f2 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```php deleteIndex( databaseId: '', tableId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md index df87c5077b..05722a0ccb 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```php deleteRow( tableId: '', rowId: '', transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md index 79ed607c47..934ea6b754 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```php deleteRows( tableId: '', queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md index 3cbb35de68..acc711db64 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```php deleteTable( databaseId: '', tableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-transaction.md index d1650158c9..2b0c7ff823 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```php deleteTransaction( transactionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md index ea996e9b19..1b2cc93ad9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```php delete( databaseId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md index d1705a4175..0be374fc95 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```php getColumn( databaseId: '', tableId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md index 0d67648151..5e79e7088e 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```php getIndex( databaseId: '', tableId: '', key: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md index 4bbea5594d..f8871ffabe 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```php getRow( rowId: '', queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md index ee8812f685..1bc01662e8 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```php getTable( databaseId: '', tableId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-transaction.md index 146e7d191b..fc4030f504 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```php getTransaction( transactionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get.md index 07f70987c5..5dde28d8f8 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```php get( databaseId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md index 66bf2e8489..5c6176ee46 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```php incrementRowColumn( value: null, // optional max: null, // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md index 49b4eba9ff..2ecf654299 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```php listColumns( tableId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md index ac466c74ab..17428fe118 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```php listIndexes( tableId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md index cdcc79641b..710c7919b6 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```php listRows( queries: [], // optional transactionId: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md index b14e28c138..c74d5a1524 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```php listTables( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-transactions.md index 15095d6f0c..58b31a64d1 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```php listTransactions( queries: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list.md index 3d74dded9b..77da55280b 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md index 0c735167cd..8a7850fc6e 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```php updateBooleanColumn( required: false, default: false, newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md index 52213c6e3c..4f994a5bf4 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```php updateDatetimeColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md index d13de56b30..8cd10d410a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```php updateEmailColumn( required: false, default: 'email@example.com', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md index d54c0b38d0..0dcf57475f 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```php updateEnumColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md index bb091abf94..68a90df3e9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```php updateFloatColumn( min: null, // optional max: null, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md index 2436bc2cee..ba7a781f29 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```php updateIntegerColumn( min: null, // optional max: null, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md index aa97752a91..25a716011e 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```php updateIpColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-line-column.md index 56a557cbe6..a7126a3965 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```php updateLineColumn( required: false, default: [[1, 2], [3, 4], [5, 6]], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-longtext-column.md index 0ba81d6727..aaccf92761 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```php updateLongtextColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-mediumtext-column.md index 5ff6424054..2b06e8d3ba 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```php updateMediumtextColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-point-column.md index abe8b737ca..0d137cea6c 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```php updatePointColumn( required: false, default: [1, 2], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-polygon-column.md index 2ff401151f..5341610c19 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```php updatePolygonColumn( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md index cc2e2ccaef..4b153851a0 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```php updateRelationshipColumn( key: '', onDelete: RelationMutate::CASCADE(), // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md index 71916cd6ec..f0fd37d67c 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```php updateRow( ], // optional permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md index a6892f8149..baf98ecf50 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```php updateRows( ], // optional queries: [], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md index eb1acc15ed..ff01707d40 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```php updateStringColumn( default: '', size: 1, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md index dc09f5f235..4409db26bd 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```php updateTable( permissions: [Permission::read(Role::any())], // optional rowSecurity: false, // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-text-column.md index 56aa217f8c..81fa0fecb2 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```php updateTextColumn( required: false, default: '', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-transaction.md index fed3810b5a..512760bff8 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```php updateTransaction( transactionId: '', commit: false, // optional rollback: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md index b64b3024da..6c055168ce 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```php updateUrlColumn( required: false, default: 'https://example.com', newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-varchar-column.md index 077e8c4f89..ca4ba824bf 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```php updateVarcharColumn( default: '', size: 1, // optional newKey: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update.md index 0dcd0493f3..126b3cafe5 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```php update( databaseId: '', name: '', // optional enabled: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md index e26c825505..5c4645ba7a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```php upsertRow( ], // optional permissions: [Permission::read(Role::any())], // optional transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md index fb93df8bcd..6d9d61540a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```php upsertRows( tableId: '', rows: [], transactionId: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/create-membership.md b/docs/examples/1.8.x/server-php/examples/teams/create-membership.md index 53fb6efff5..349ce63f88 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-php/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```php createMembership( phone: '+12065550100', // optional url: 'https://example.com', // optional name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/create.md b/docs/examples/1.8.x/server-php/examples/teams/create.md index 643fa0eb11..e0eef909d2 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/create.md +++ b/docs/examples/1.8.x/server-php/examples/teams/create.md @@ -1,3 +1,4 @@ +```php create( teamId: '', name: '', roles: [] // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-php/examples/teams/delete-membership.md index 579b790c55..096d69eba5 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-php/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```php deleteMembership( teamId: '', membershipId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/delete.md b/docs/examples/1.8.x/server-php/examples/teams/delete.md index 9db4e7e9a7..e982d579ec 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-php/examples/teams/delete.md @@ -1,3 +1,4 @@ +```php delete( teamId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/get-membership.md b/docs/examples/1.8.x/server-php/examples/teams/get-membership.md index bd6cbe8b42..c696fd0d56 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-php/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```php getMembership( teamId: '', membershipId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-php/examples/teams/get-prefs.md index fbade4fc2f..ea621f3a86 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```php getPrefs( teamId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/get.md b/docs/examples/1.8.x/server-php/examples/teams/get.md index 0dafa8a5d3..b0a71242bc 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/get.md +++ b/docs/examples/1.8.x/server-php/examples/teams/get.md @@ -1,3 +1,4 @@ +```php get( teamId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-php/examples/teams/list-memberships.md index 5ff4736df8..0b4fd9156f 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-php/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```php listMemberships( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/list.md b/docs/examples/1.8.x/server-php/examples/teams/list.md index 144b50d02d..04fdc4fcfd 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/list.md +++ b/docs/examples/1.8.x/server-php/examples/teams/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-php/examples/teams/update-membership-status.md index 5dbfd4cb0f..33f891c192 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-php/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```php updateMembershipStatus( membershipId: '', userId: '', secret: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/update-membership.md b/docs/examples/1.8.x/server-php/examples/teams/update-membership.md index 0cdd13e135..21afebc87d 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-php/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```php updateMembership( teamId: '', membershipId: '', roles: [Roles::ADMIN()] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/update-name.md b/docs/examples/1.8.x/server-php/examples/teams/update-name.md index bc13d924e4..eae3a3bf6e 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-php/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```php updateName( teamId: '', name: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-php/examples/teams/update-prefs.md index bd8d9de32f..785f7ba901 100644 --- a/docs/examples/1.8.x/server-php/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```php updatePrefs( teamId: '', prefs: [] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-php/examples/tokens/create-file-token.md index e4f230217a..d172c15e7c 100644 --- a/docs/examples/1.8.x/server-php/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-php/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```php createFileToken( bucketId: '', fileId: '', expire: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tokens/delete.md b/docs/examples/1.8.x/server-php/examples/tokens/delete.md index 278be90b12..d298ed3a1b 100644 --- a/docs/examples/1.8.x/server-php/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-php/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```php delete( tokenId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tokens/get.md b/docs/examples/1.8.x/server-php/examples/tokens/get.md index e7b4e1081b..db117e6a8c 100644 --- a/docs/examples/1.8.x/server-php/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-php/examples/tokens/get.md @@ -1,3 +1,4 @@ +```php get( tokenId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tokens/list.md b/docs/examples/1.8.x/server-php/examples/tokens/list.md index 212a443ce6..3551261769 100644 --- a/docs/examples/1.8.x/server-php/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-php/examples/tokens/list.md @@ -1,3 +1,4 @@ +```php list( fileId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/tokens/update.md b/docs/examples/1.8.x/server-php/examples/tokens/update.md index ea95322a43..07c37e36bc 100644 --- a/docs/examples/1.8.x/server-php/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-php/examples/tokens/update.md @@ -1,3 +1,4 @@ +```php update( tokenId: '', expire: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-php/examples/users/create-argon-2-user.md index a9166ef3b0..4813cd8be9 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```php createArgon2User( email: 'email@example.com', password: 'password', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-php/examples/users/create-bcrypt-user.md index c9fd81e43a..17a3c7ec67 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```php createBcryptUser( email: 'email@example.com', password: 'password', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-jwt.md b/docs/examples/1.8.x/server-php/examples/users/create-jwt.md index 1c1c6d40bd..9a22a60677 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```php createJWT( userId: '', sessionId: '', // optional duration: 0 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-php/examples/users/create-md-5-user.md index 696cbbeb57..85e97f7511 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```php createMD5User( email: 'email@example.com', password: 'password', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/users/create-mfa-recovery-codes.md index ee96d2e277..23295475ec 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php createMFARecoveryCodes( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-php/examples/users/create-ph-pass-user.md index d56c4651f6..0e9a62fff2 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```php createPHPassUser( email: 'email@example.com', password: 'password', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-php/examples/users/create-scrypt-modified-user.md index f579efb5f2..22c18b1eae 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```php createScryptModifiedUser( passwordSaltSeparator: '', passwordSignerKey: '', name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-php/examples/users/create-scrypt-user.md index b406b9404a..8ebc44dd63 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```php createScryptUser( passwordParallel: null, passwordLength: null, name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-session.md b/docs/examples/1.8.x/server-php/examples/users/create-session.md index 1589315f92..0279835ac7 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-session.md @@ -1,3 +1,4 @@ +```php createSession( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-php/examples/users/create-sha-user.md index 812bcd5eb5..924224bcb0 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```php createSHAUser( password: 'password', passwordVersion: PasswordHash::SHA1(), // optional name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-target.md b/docs/examples/1.8.x/server-php/examples/users/create-target.md index 57946a440f..1000574f37 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-target.md @@ -1,3 +1,4 @@ +```php createTarget( identifier: '', providerId: '', // optional name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create-token.md b/docs/examples/1.8.x/server-php/examples/users/create-token.md index 1b92f5171d..4519995f7c 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-php/examples/users/create-token.md @@ -1,3 +1,4 @@ +```php createToken( userId: '', length: 4, // optional expire: 60 // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/create.md b/docs/examples/1.8.x/server-php/examples/users/create.md index 595f24fbce..ec9b6839fb 100644 --- a/docs/examples/1.8.x/server-php/examples/users/create.md +++ b/docs/examples/1.8.x/server-php/examples/users/create.md @@ -1,3 +1,4 @@ +```php create( phone: '+12065550100', // optional password: '', // optional name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete-identity.md b/docs/examples/1.8.x/server-php/examples/users/delete-identity.md index 26b71eead2..b364358d22 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```php deleteIdentity( identityId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-php/examples/users/delete-mfa-authenticator.md index f2f08ec172..15ca8e2946 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```php deleteMFAAuthenticator( userId: '', type: AuthenticatorType::TOTP() -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete-session.md b/docs/examples/1.8.x/server-php/examples/users/delete-session.md index 493cf53d2f..9786bde41c 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```php deleteSession( userId: '', sessionId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-php/examples/users/delete-sessions.md index cd6d11e1d7..236aeffe63 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```php deleteSessions( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete-target.md b/docs/examples/1.8.x/server-php/examples/users/delete-target.md index 0d85d3e4df..6d915dbece 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```php deleteTarget( userId: '', targetId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/delete.md b/docs/examples/1.8.x/server-php/examples/users/delete.md index 883156ecd6..faea96cfe9 100644 --- a/docs/examples/1.8.x/server-php/examples/users/delete.md +++ b/docs/examples/1.8.x/server-php/examples/users/delete.md @@ -1,3 +1,4 @@ +```php delete( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/users/get-mfa-recovery-codes.md index 7937e6ad4b..90aa08dd36 100644 --- a/docs/examples/1.8.x/server-php/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php getMFARecoveryCodes( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/get-prefs.md b/docs/examples/1.8.x/server-php/examples/users/get-prefs.md index 5e99e14b52..931c5be8d2 100644 --- a/docs/examples/1.8.x/server-php/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```php getPrefs( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/get-target.md b/docs/examples/1.8.x/server-php/examples/users/get-target.md index 31baf3c852..1f3c0028a4 100644 --- a/docs/examples/1.8.x/server-php/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-php/examples/users/get-target.md @@ -1,3 +1,4 @@ +```php getTarget( userId: '', targetId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/get.md b/docs/examples/1.8.x/server-php/examples/users/get.md index 0ce39ae6e5..a777b73b30 100644 --- a/docs/examples/1.8.x/server-php/examples/users/get.md +++ b/docs/examples/1.8.x/server-php/examples/users/get.md @@ -1,3 +1,4 @@ +```php get( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-identities.md b/docs/examples/1.8.x/server-php/examples/users/list-identities.md index 9cdc5bce2e..3707410080 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```php listIdentities( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-logs.md b/docs/examples/1.8.x/server-php/examples/users/list-logs.md index 7015526277..0d0464e25e 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```php listLogs( userId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-memberships.md b/docs/examples/1.8.x/server-php/examples/users/list-memberships.md index 9a37fea3b2..c9b3fb5455 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```php listMemberships( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-php/examples/users/list-mfa-factors.md index 5dae790c94..c3cd0453bd 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```php listMFAFactors( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-sessions.md b/docs/examples/1.8.x/server-php/examples/users/list-sessions.md index e657aa2443..e4baa40cae 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```php listSessions( userId: '', total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list-targets.md b/docs/examples/1.8.x/server-php/examples/users/list-targets.md index 435dbde0f2..3e33f9f4a9 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-php/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```php listTargets( userId: '', queries: [], // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/list.md b/docs/examples/1.8.x/server-php/examples/users/list.md index 6494f07671..39d3189c48 100644 --- a/docs/examples/1.8.x/server-php/examples/users/list.md +++ b/docs/examples/1.8.x/server-php/examples/users/list.md @@ -1,3 +1,4 @@ +```php list( queries: [], // optional search: '', // optional total: false // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-php/examples/users/update-email-verification.md index 636f1d2404..b7a3a91277 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```php updateEmailVerification( userId: '', emailVerification: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-email.md b/docs/examples/1.8.x/server-php/examples/users/update-email.md index 21ec88b334..2710f4964e 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-email.md @@ -1,3 +1,4 @@ +```php updateEmail( userId: '', email: 'email@example.com' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-labels.md b/docs/examples/1.8.x/server-php/examples/users/update-labels.md index 7d4ae5de50..56be4fbcd9 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```php updateLabels( userId: '', labels: [] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-php/examples/users/update-mfa-recovery-codes.md index 8474755fd3..bee4d18334 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```php updateMFARecoveryCodes( userId: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-mfa.md b/docs/examples/1.8.x/server-php/examples/users/update-mfa.md index c24916a680..9cac2ff91f 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```php updateMFA( userId: '', mfa: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-name.md b/docs/examples/1.8.x/server-php/examples/users/update-name.md index 09bb07cdd7..bce3d8c723 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-name.md @@ -1,3 +1,4 @@ +```php updateName( userId: '', name: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-password.md b/docs/examples/1.8.x/server-php/examples/users/update-password.md index 6d58605d5c..69d93300cd 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-password.md @@ -1,3 +1,4 @@ +```php updatePassword( userId: '', password: '' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-php/examples/users/update-phone-verification.md index 019fb3f148..f94b1f84f0 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```php updatePhoneVerification( userId: '', phoneVerification: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-phone.md b/docs/examples/1.8.x/server-php/examples/users/update-phone.md index 13bd41bfa8..c975eaf15d 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```php updatePhone( userId: '', number: '+12065550100' -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-prefs.md b/docs/examples/1.8.x/server-php/examples/users/update-prefs.md index 9491239271..b276922c85 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```php updatePrefs( userId: '', prefs: [] -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-status.md b/docs/examples/1.8.x/server-php/examples/users/update-status.md index f29dc95e2f..1a8346c09b 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-status.md @@ -1,3 +1,4 @@ +```php updateStatus( userId: '', status: false -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-php/examples/users/update-target.md b/docs/examples/1.8.x/server-php/examples/users/update-target.md index 00ad27b9a7..8963569148 100644 --- a/docs/examples/1.8.x/server-php/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-php/examples/users/update-target.md @@ -1,3 +1,4 @@ +```php updateTarget( identifier: '', // optional providerId: '', // optional name: '' // optional -); \ No newline at end of file +);``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-python/examples/account/create-anonymous-session.md index d98cceafbb..bf0aeab504 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.create_anonymous_session() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-python/examples/account/create-email-password-session.md index c69b50ad84..5849f0291a 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.create_email_password_session( email = 'email@example.com', password = 'password' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-email-token.md b/docs/examples/1.8.x/server-python/examples/account/create-email-token.md index 0e4f1b6a43..4c783225e2 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -13,3 +14,4 @@ result = account.create_email_token( email = 'email@example.com', phrase = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-python/examples/account/create-email-verification.md index a76a4bdb89..87b1e5b761 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.create_email_verification( url = 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-jwt.md b/docs/examples/1.8.x/server-python/examples/account/create-jwt.md index 6f95338c5c..d4c6d3550c 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.create_jwt( duration = 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-python/examples/account/create-magic-url-token.md index 439f2e743d..f3a1670f20 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -14,3 +15,4 @@ result = account.create_magic_url_token( url = 'https://example.com', # optional phrase = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-python/examples/account/create-mfa-authenticator.md index 70cee1d60c..784d2afcc1 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account from appwrite.enums import AuthenticatorType @@ -12,3 +13,4 @@ account = Account(client) result = account.create_mfa_authenticator( type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-python/examples/account/create-mfa-challenge.md index 85dcd7a929..712b7e2baa 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account from appwrite.enums import AuthenticationFactor @@ -12,3 +13,4 @@ account = Account(client) result = account.create_mfa_challenge( factor = AuthenticationFactor.EMAIL ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/account/create-mfa-recovery-codes.md index 69aaa6091f..2511cfb4ba 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.create_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-python/examples/account/create-o-auth-2-token.md index 4d4c068065..4ffa9ffbdf 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account from appwrite.enums import OAuthProvider @@ -15,3 +16,4 @@ result = account.create_o_auth2_token( failure = 'https://example.com', # optional scopes = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-python/examples/account/create-phone-token.md index 3b63669769..c30cbf940c 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.create_phone_token( user_id = '', phone = '+12065550100' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-python/examples/account/create-phone-verification.md index c130646bee..50db6a9489 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.create_phone_verification() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-recovery.md b/docs/examples/1.8.x/server-python/examples/account/create-recovery.md index 51c1777245..ecf596cace 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.create_recovery( email = 'email@example.com', url = 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-session.md b/docs/examples/1.8.x/server-python/examples/account/create-session.md index a05d4f2422..27f07330a7 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.create_session( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create-verification.md b/docs/examples/1.8.x/server-python/examples/account/create-verification.md index d66fc2cd7d..3330c2339a 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.create_verification( url = 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/create.md b/docs/examples/1.8.x/server-python/examples/account/create.md index a0c09f1017..1781c2383d 100644 --- a/docs/examples/1.8.x/server-python/examples/account/create.md +++ b/docs/examples/1.8.x/server-python/examples/account/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -14,3 +15,4 @@ result = account.create( password = '', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/delete-identity.md b/docs/examples/1.8.x/server-python/examples/account/delete-identity.md index 0c894fa693..1ba48c2032 100644 --- a/docs/examples/1.8.x/server-python/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-python/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.delete_identity( identity_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-python/examples/account/delete-mfa-authenticator.md index 83709c7aff..faeccb8b29 100644 --- a/docs/examples/1.8.x/server-python/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-python/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account from appwrite.enums import AuthenticatorType @@ -12,3 +13,4 @@ account = Account(client) result = account.delete_mfa_authenticator( type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/delete-session.md b/docs/examples/1.8.x/server-python/examples/account/delete-session.md index 5967d7026a..051a38a578 100644 --- a/docs/examples/1.8.x/server-python/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.delete_session( session_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-python/examples/account/delete-sessions.md index 5061f84c5d..4db5c1ec63 100644 --- a/docs/examples/1.8.x/server-python/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-python/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.delete_sessions() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/account/get-mfa-recovery-codes.md index c8fe494d0f..bec99a1874 100644 --- a/docs/examples/1.8.x/server-python/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.get_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/get-prefs.md b/docs/examples/1.8.x/server-python/examples/account/get-prefs.md index d577b4b274..35603f21da 100644 --- a/docs/examples/1.8.x/server-python/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.get_prefs() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/get-session.md b/docs/examples/1.8.x/server-python/examples/account/get-session.md index 3e2937b913..f978dfcb33 100644 --- a/docs/examples/1.8.x/server-python/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/get-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.get_session( session_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/get.md b/docs/examples/1.8.x/server-python/examples/account/get.md index 542622851c..2ec458f37e 100644 --- a/docs/examples/1.8.x/server-python/examples/account/get.md +++ b/docs/examples/1.8.x/server-python/examples/account/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.get() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/list-identities.md b/docs/examples/1.8.x/server-python/examples/account/list-identities.md index 78eef4b9a3..8ba862565c 100644 --- a/docs/examples/1.8.x/server-python/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-python/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.list_identities( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/list-logs.md b/docs/examples/1.8.x/server-python/examples/account/list-logs.md index ae70fcb046..8f4063845e 100644 --- a/docs/examples/1.8.x/server-python/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-python/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.list_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-python/examples/account/list-mfa-factors.md index 72a392465a..9558fa15aa 100644 --- a/docs/examples/1.8.x/server-python/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-python/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.list_mfa_factors() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/list-sessions.md b/docs/examples/1.8.x/server-python/examples/account/list-sessions.md index c553a7bce2..8603dc9b11 100644 --- a/docs/examples/1.8.x/server-python/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-python/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.list_sessions() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-python/examples/account/update-email-verification.md index 5e99587e86..51f0f48243 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_email_verification( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-email.md b/docs/examples/1.8.x/server-python/examples/account/update-email.md index 14de4fd41e..4b9f530db5 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-email.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_email( email = 'email@example.com', password = 'password' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-python/examples/account/update-magic-url-session.md index 60baca81f9..777c5d8e8d 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_magic_url_session( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-python/examples/account/update-mfa-authenticator.md index d53607fe10..9fc0f8e5e1 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account from appwrite.enums import AuthenticatorType @@ -13,3 +14,4 @@ result = account.update_mfa_authenticator( type = AuthenticatorType.TOTP, otp = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-python/examples/account/update-mfa-challenge.md index cfc58c58a2..2da910b034 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_mfa_challenge( challenge_id = '', otp = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/account/update-mfa-recovery-codes.md index 51718eb03a..2b74e1d07b 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.update_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-mfa.md b/docs/examples/1.8.x/server-python/examples/account/update-mfa.md index 7083d09642..43e4077ac6 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.update_mfa( mfa = False ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-name.md b/docs/examples/1.8.x/server-python/examples/account/update-name.md index 534a94e8bb..d5b5df36db 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-name.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.update_name( name = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-password.md b/docs/examples/1.8.x/server-python/examples/account/update-password.md index 3c072e32d7..aa09dbe217 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-password.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_password( password = '', old_password = 'password' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-python/examples/account/update-phone-session.md index 5fbba21347..7fd599a1d6 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_phone_session( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-python/examples/account/update-phone-verification.md index bcc57dee71..1fa74a8b1d 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_phone_verification( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-phone.md b/docs/examples/1.8.x/server-python/examples/account/update-phone.md index a2cb7d3c83..212bb2dcd5 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_phone( phone = '+12065550100', password = 'password' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-prefs.md b/docs/examples/1.8.x/server-python/examples/account/update-prefs.md index 8981af837a..0aa3fa9067 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -15,3 +16,4 @@ result = account.update_prefs( "darkTheme": True } ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-recovery.md b/docs/examples/1.8.x/server-python/examples/account/update-recovery.md index ed140abc0f..8c14a3ab9e 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -13,3 +14,4 @@ result = account.update_recovery( secret = '', password = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-session.md b/docs/examples/1.8.x/server-python/examples/account/update-session.md index abee773edc..2b3082dbff 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -11,3 +12,4 @@ account = Account(client) result = account.update_session( session_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-status.md b/docs/examples/1.8.x/server-python/examples/account/update-status.md index a5272f09de..baf4961746 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-status.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with account = Account(client) result = account.update_status() +``` diff --git a/docs/examples/1.8.x/server-python/examples/account/update-verification.md b/docs/examples/1.8.x/server-python/examples/account/update-verification.md index fbc7af5302..9e49718e06 100644 --- a/docs/examples/1.8.x/server-python/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-python/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.account import Account @@ -12,3 +13,4 @@ result = account.update_verification( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-python/examples/avatars/get-browser.md index ff11b8b46f..4e5b7a1b6e 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars from appwrite.enums import Browser @@ -15,3 +16,4 @@ result = avatars.get_browser( height = 0, # optional quality = -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-python/examples/avatars/get-credit-card.md index 286f4d346c..5872915724 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars from appwrite.enums import CreditCard @@ -15,3 +16,4 @@ result = avatars.get_credit_card( height = 0, # optional quality = -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-python/examples/avatars/get-favicon.md index f034ea41f3..b201146c50 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars @@ -11,3 +12,4 @@ avatars = Avatars(client) result = avatars.get_favicon( url = 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-python/examples/avatars/get-flag.md index 6365a78b47..2bd0776a1e 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars from appwrite.enums import Flag @@ -15,3 +16,4 @@ result = avatars.get_flag( height = 0, # optional quality = -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-image.md b/docs/examples/1.8.x/server-python/examples/avatars/get-image.md index 9272c4d8fb..fa013f1a63 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars @@ -13,3 +14,4 @@ result = avatars.get_image( width = 0, # optional height = 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-python/examples/avatars/get-initials.md index 2729ff5133..2dff22a796 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars @@ -14,3 +15,4 @@ result = avatars.get_initials( height = 0, # optional background = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-python/examples/avatars/get-qr.md index 3fb76a7f7c..f3dbede1e4 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars @@ -14,3 +15,4 @@ result = avatars.get_qr( margin = 0, # optional download = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-python/examples/avatars/get-screenshot.md index 6ad99db0c3..31587c319f 100644 --- a/docs/examples/1.8.x/server-python/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-python/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.avatars import Avatars from appwrite.enums import Theme @@ -37,3 +38,4 @@ result = avatars.get_screenshot( quality = 85, # optional output = ImageFormat.JPEG # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-boolean-attribute.md index f12f446d30..aff126869f 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_boolean_attribute( default = False, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-collection.md b/docs/examples/1.8.x/server-python/examples/databases/create-collection.md index 196a9d5565..f6244a0662 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.permission import Permission @@ -20,3 +21,4 @@ result = databases.create_collection( attributes = [], # optional indexes = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-datetime-attribute.md index 8fd59e694f..d4329bc230 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_datetime_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-document.md b/docs/examples/1.8.x/server-python/examples/databases/create-document.md index bd1e1c948a..a08f15f883 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = databases.create_document( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-documents.md b/docs/examples/1.8.x/server-python/examples/databases/create-documents.md index 97fa4c6840..5e739d9703 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.create_documents( documents = [], transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-email-attribute.md index 230567aa46..07cf8f4af6 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_email_attribute( default = 'email@example.com', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-enum-attribute.md index de1ceb9f1f..570e2a1bcb 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.create_enum_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-float-attribute.md index 53305c8d4e..0ff954b182 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -18,3 +19,4 @@ result = databases.create_float_attribute( default = None, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-index.md b/docs/examples/1.8.x/server-python/examples/databases/create-index.md index 8eb38c1c98..8f61edee7c 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.enums import IndexType @@ -19,3 +20,4 @@ result = databases.create_index( orders = [OrderBy.ASC], # optional lengths = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-integer-attribute.md index 92e8b0f86a..9760b8ca5b 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -18,3 +19,4 @@ result = databases.create_integer_attribute( default = None, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-ip-attribute.md index a7f424b22c..24acfe0545 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_ip_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-line-attribute.md index c61be8fb51..84dd47a3af 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -15,3 +16,4 @@ result = databases.create_line_attribute( required = False, default = [[1, 2], [3, 4], [5, 6]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-longtext-attribute.md index 348af9d9e6..f13e7235e4 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_longtext_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-mediumtext-attribute.md index f7bf2a074e..f053cfcb06 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_mediumtext_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-operations.md b/docs/examples/1.8.x/server-python/examples/databases/create-operations.md index d8fc1fa772..9b3967dc13 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -22,3 +23,4 @@ result = databases.create_operations( } ] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-point-attribute.md index 7acdb94399..c6886a8f88 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -15,3 +16,4 @@ result = databases.create_point_attribute( required = False, default = [1, 2] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-polygon-attribute.md index c727b719f4..79dd0f054c 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -15,3 +16,4 @@ result = databases.create_polygon_attribute( required = False, default = [[[1, 2], [3, 4], [5, 6], [1, 2]]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-relationship-attribute.md index ea859fcc33..298386daac 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.enums import RelationshipType @@ -20,3 +21,4 @@ result = databases.create_relationship_attribute( two_way_key = '', # optional on_delete = RelationMutate.CASCADE # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-string-attribute.md index dc434cccaf..f23aff8bf4 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -18,3 +19,4 @@ result = databases.create_string_attribute( array = False, # optional encrypt = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-text-attribute.md index 3a3804ee93..6365bc9115 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_text_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-python/examples/databases/create-transaction.md index a733b658f8..d391e27ee2 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.create_transaction( ttl = 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-url-attribute.md index af375733dd..6d7d985918 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.create_url_attribute( default = 'https://example.com', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/create-varchar-attribute.md index 01823809b9..7ddecdf42b 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.create_varchar_attribute( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/create.md b/docs/examples/1.8.x/server-python/examples/databases/create.md index 0492203e4c..98bff01d8f 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/create.md +++ b/docs/examples/1.8.x/server-python/examples/databases/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.create( name = '', enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/decrement-document-attribute.md index 09ed9fcb47..df296d01c8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.decrement_document_attribute( min = None, # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/delete-attribute.md index e1c4eecd01..ceda5de25c 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.delete_attribute( collection_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-python/examples/databases/delete-collection.md index 02f1e1c536..ff486c5887 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -12,3 +13,4 @@ result = databases.delete_collection( database_id = '', collection_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-document.md b/docs/examples/1.8.x/server-python/examples/databases/delete-document.md index 89d85853e4..6a56cd2df3 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.delete_document( document_id = '', transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-python/examples/databases/delete-documents.md index 63130fb05e..b8185856dd 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.delete_documents( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-index.md b/docs/examples/1.8.x/server-python/examples/databases/delete-index.md index 006006421d..62fa4875c8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.delete_index( collection_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-python/examples/databases/delete-transaction.md index fab1f2a586..bbc0d9757c 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.delete_transaction( transaction_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/delete.md b/docs/examples/1.8.x/server-python/examples/databases/delete.md index be64e8c628..4bf78037aa 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-python/examples/databases/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.delete( database_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/get-attribute.md index dcdb0a6ea9..0eb99c071e 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.get_attribute( collection_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get-collection.md b/docs/examples/1.8.x/server-python/examples/databases/get-collection.md index 0833b4fd7e..f0085481c0 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -12,3 +13,4 @@ result = databases.get_collection( database_id = '', collection_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get-document.md b/docs/examples/1.8.x/server-python/examples/databases/get-document.md index 6cd0bc2b95..fb0ed4acab 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -15,3 +16,4 @@ result = databases.get_document( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get-index.md b/docs/examples/1.8.x/server-python/examples/databases/get-index.md index 6971683072..7b5f67f7d8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.get_index( collection_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-python/examples/databases/get-transaction.md index 2a89f3d83d..4f9b4940f9 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.get_transaction( transaction_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/get.md b/docs/examples/1.8.x/server-python/examples/databases/get.md index c8191a3777..c928b6b910 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/get.md +++ b/docs/examples/1.8.x/server-python/examples/databases/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.get( database_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/increment-document-attribute.md index 3e85656c10..667e927983 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.increment_document_attribute( max = None, # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-python/examples/databases/list-attributes.md index 85eb199b05..c9cb51b7cd 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.list_attributes( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list-collections.md b/docs/examples/1.8.x/server-python/examples/databases/list-collections.md index ebb6c6e90d..f14e7970c2 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.list_collections( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list-documents.md b/docs/examples/1.8.x/server-python/examples/databases/list-documents.md index 2e63315860..11ce444c4d 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -15,3 +16,4 @@ result = databases.list_documents( transaction_id = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-python/examples/databases/list-indexes.md index d1b99b85f2..95dd617b55 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.list_indexes( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-python/examples/databases/list-transactions.md index a410c96b05..f549f1acb9 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -11,3 +12,4 @@ databases = Databases(client) result = databases.list_transactions( queries = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/list.md b/docs/examples/1.8.x/server-python/examples/databases/list.md index 01dfd76b2e..b3f4de8f55 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/list.md +++ b/docs/examples/1.8.x/server-python/examples/databases/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-boolean-attribute.md index a0f72a49fb..b5ba34261d 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_boolean_attribute( default = False, new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-collection.md b/docs/examples/1.8.x/server-python/examples/databases/update-collection.md index 8fcc58cdc2..3f9462fb3a 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.permission import Permission @@ -18,3 +19,4 @@ result = databases.update_collection( document_security = False, # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-datetime-attribute.md index 29bc6be4d1..da080f2afc 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_datetime_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-document.md b/docs/examples/1.8.x/server-python/examples/databases/update-document.md index 91d233d09e..b10cd5a51e 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = databases.update_document( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-documents.md b/docs/examples/1.8.x/server-python/examples/databases/update-documents.md index cbf6f64652..6e0cd4fe75 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -21,3 +22,4 @@ result = databases.update_documents( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-email-attribute.md index c833789a37..fbafd983a7 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_email_attribute( default = 'email@example.com', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-enum-attribute.md index 6186a72a66..0b9ab13b88 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.update_enum_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-float-attribute.md index 68cb7d7929..13bc920bd0 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -18,3 +19,4 @@ result = databases.update_float_attribute( max = None, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-integer-attribute.md index 05c6bfe915..92ea392045 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -18,3 +19,4 @@ result = databases.update_integer_attribute( max = None, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-ip-attribute.md index 550d3af641..05e7d5fd17 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_ip_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-line-attribute.md index b1804f648b..b29b55fa68 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_line_attribute( default = [[1, 2], [3, 4], [5, 6]], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-longtext-attribute.md index 8f2b5deb6c..71649fef4d 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_longtext_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-mediumtext-attribute.md index a368cf19fc..756c95b7d8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_mediumtext_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-point-attribute.md index 58def4b687..cd6ee17632 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_point_attribute( default = [1, 2], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-polygon-attribute.md index c3625fe3e0..fa5fc68077 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_polygon_attribute( default = [[[1, 2], [3, 4], [5, 6], [1, 2]]], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-relationship-attribute.md index 8f5b0d8e69..62c8d4a6b8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.enums import RelationMutate @@ -16,3 +17,4 @@ result = databases.update_relationship_attribute( on_delete = RelationMutate.CASCADE, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-string-attribute.md index 5b66fb015c..e97d132e57 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.update_string_attribute( size = 1, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-text-attribute.md index cfbbd8c64c..b7c553d8d8 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_text_attribute( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-python/examples/databases/update-transaction.md index 571f98c7ce..8ccb746391 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.update_transaction( commit = False, # optional rollback = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-url-attribute.md index 4a6202760f..56e2c1c734 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -16,3 +17,4 @@ result = databases.update_url_attribute( default = 'https://example.com', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-python/examples/databases/update-varchar-attribute.md index 359e307127..3504e8db55 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -17,3 +18,4 @@ result = databases.update_varchar_attribute( size = 1, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/update.md b/docs/examples/1.8.x/server-python/examples/databases/update.md index c88c389a93..864a8970cc 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/update.md +++ b/docs/examples/1.8.x/server-python/examples/databases/update.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -13,3 +14,4 @@ result = databases.update( name = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-python/examples/databases/upsert-document.md index 0d0f1b21d6..bc097e98f4 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-python/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = databases.upsert_document( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-python/examples/databases/upsert-documents.md index f0720e34c0..ca091c4ed4 100644 --- a/docs/examples/1.8.x/server-python/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-python/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.databases import Databases @@ -14,3 +15,4 @@ result = databases.upsert_documents( documents = [], transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/create-deployment.md index 0774005729..a76764807b 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.input_file import InputFile @@ -16,3 +17,4 @@ result = functions.create_deployment( entrypoint = '', # optional commands = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/create-duplicate-deployment.md index 79315e4a1c..5005b211f1 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -13,3 +14,4 @@ result = functions.create_duplicate_deployment( deployment_id = '', build_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-execution.md b/docs/examples/1.8.x/server-python/examples/functions/create-execution.md index 8361351b35..c1b4b9117e 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import ExecutionMethod @@ -18,3 +19,4 @@ result = functions.create_execution( headers = {}, # optional scheduled_at = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/create-template-deployment.md index db2058a87a..6df7dd1b95 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import TemplateReferenceType @@ -18,3 +19,4 @@ result = functions.create_template_deployment( reference = '', activate = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-variable.md b/docs/examples/1.8.x/server-python/examples/functions/create-variable.md index 2089830eff..046310fbee 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -14,3 +15,4 @@ result = functions.create_variable( value = '', secret = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/create-vcs-deployment.md index 43e198b4b8..1ebf5267f8 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import VCSReferenceType @@ -15,3 +16,4 @@ result = functions.create_vcs_deployment( reference = '', activate = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/create.md b/docs/examples/1.8.x/server-python/examples/functions/create.md index 6f4acab496..219069258e 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/create.md +++ b/docs/examples/1.8.x/server-python/examples/functions/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import Runtime @@ -30,3 +31,4 @@ result = functions.create( provider_root_directory = '', # optional specification = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/delete-deployment.md index f874b2d270..72abfb744b 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.delete_deployment( function_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-python/examples/functions/delete-execution.md index df7ce7cb5b..634bfef72b 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-python/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.delete_execution( function_id = '', execution_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-python/examples/functions/delete-variable.md index a6e3dc853c..e93cd9c55b 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-python/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.delete_variable( function_id = '', variable_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/delete.md b/docs/examples/1.8.x/server-python/examples/functions/delete.md index ed2fef76c7..ebd09f4772 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-python/examples/functions/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -11,3 +12,4 @@ functions = Functions(client) result = functions.delete( function_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-python/examples/functions/get-deployment-download.md index c633a893c6..b68345a30d 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-python/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import DeploymentDownloadType @@ -14,3 +15,4 @@ result = functions.get_deployment_download( deployment_id = '', type = DeploymentDownloadType.SOURCE # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/get-deployment.md index 59a1374e0f..03b04f64fd 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.get_deployment( function_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/get-execution.md b/docs/examples/1.8.x/server-python/examples/functions/get-execution.md index a299f35195..a2fe566848 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-python/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.get_execution( function_id = '', execution_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/get-variable.md b/docs/examples/1.8.x/server-python/examples/functions/get-variable.md index 629948e909..0cc3807b92 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-python/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.get_variable( function_id = '', variable_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/get.md b/docs/examples/1.8.x/server-python/examples/functions/get.md index eeab5a556b..7bf7ff2598 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/get.md +++ b/docs/examples/1.8.x/server-python/examples/functions/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -11,3 +12,4 @@ functions = Functions(client) result = functions.get( function_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-python/examples/functions/list-deployments.md index 26d3613650..45d5412a98 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -14,3 +15,4 @@ result = functions.list_deployments( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list-executions.md b/docs/examples/1.8.x/server-python/examples/functions/list-executions.md index 60fe38e6cb..da65054eb7 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -13,3 +14,4 @@ result = functions.list_executions( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-python/examples/functions/list-runtimes.md index 9c89a36f0c..3e7000ab68 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key functions = Functions(client) result = functions.list_runtimes() +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-python/examples/functions/list-specifications.md index d7d0036d35..f491a12763 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key functions = Functions(client) result = functions.list_specifications() +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list-variables.md b/docs/examples/1.8.x/server-python/examples/functions/list-variables.md index ebc19c5ba4..414550373d 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -11,3 +12,4 @@ functions = Functions(client) result = functions.list_variables( function_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/list.md b/docs/examples/1.8.x/server-python/examples/functions/list.md index 99a54675db..3c6adec950 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/list.md +++ b/docs/examples/1.8.x/server-python/examples/functions/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -13,3 +14,4 @@ result = functions.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-python/examples/functions/update-deployment-status.md index 6c6a8bf121..15c2e0dfae 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-python/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.update_deployment_status( function_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-python/examples/functions/update-function-deployment.md index da14309177..90eff8bb6d 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -12,3 +13,4 @@ result = functions.update_function_deployment( function_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/update-variable.md b/docs/examples/1.8.x/server-python/examples/functions/update-variable.md index f8bcc0376c..10176d0f49 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-python/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions @@ -15,3 +16,4 @@ result = functions.update_variable( value = '', # optional secret = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/functions/update.md b/docs/examples/1.8.x/server-python/examples/functions/update.md index 02fd751fa9..fd99151597 100644 --- a/docs/examples/1.8.x/server-python/examples/functions/update.md +++ b/docs/examples/1.8.x/server-python/examples/functions/update.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.enums import Runtime @@ -30,3 +31,4 @@ result = functions.update( provider_root_directory = '', # optional specification = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/graphql/mutation.md b/docs/examples/1.8.x/server-python/examples/graphql/mutation.md index 189892a4ad..26ed1cbed3 100644 --- a/docs/examples/1.8.x/server-python/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-python/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.graphql import Graphql @@ -11,3 +12,4 @@ graphql = Graphql(client) result = graphql.mutation( query = {} ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/graphql/query.md b/docs/examples/1.8.x/server-python/examples/graphql/query.md index 585a5029b5..94142f9933 100644 --- a/docs/examples/1.8.x/server-python/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-python/examples/graphql/query.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.graphql import Graphql @@ -11,3 +12,4 @@ graphql = Graphql(client) result = graphql.query( query = {} ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-python/examples/health/get-antivirus.md index 2b621472ee..a3bd10b9b3 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_antivirus() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-cache.md b/docs/examples/1.8.x/server-python/examples/health/get-cache.md index 595c4bf0a5..3e0bd15cef 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_cache() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-certificate.md b/docs/examples/1.8.x/server-python/examples/health/get-certificate.md index 5b3e2c0ad3..6fa8c862c7 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_certificate( domain = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-db.md b/docs/examples/1.8.x/server-python/examples/health/get-db.md index 47c7bd8efb..69414aaea1 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-db.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_db() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-python/examples/health/get-failed-jobs.md index 6db282447e..2ade2a7f09 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health from appwrite.enums import Name @@ -13,3 +14,4 @@ result = health.get_failed_jobs( name = Name.V1_DATABASE, threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-python/examples/health/get-pub-sub.md index e5115d06b8..86640912f1 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_pub_sub() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-audits.md index 7db4390522..43ad82f5ba 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_audits( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-builds.md index 18ed8e3023..850a1515e8 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_builds( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-certificates.md index b0a29e2d5b..4e18f76745 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_certificates( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-databases.md index 491d1f7c35..1df0ca1ef3 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -12,3 +13,4 @@ result = health.get_queue_databases( name = '', # optional threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-deletes.md index fa860c6111..315f7bf219 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_deletes( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-functions.md index d4ca9388d9..3947d2dbc1 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_functions( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-logs.md index 1479f03634..59bd7d1328 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_logs( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-mails.md index 6835efeaa4..772a44f6cd 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_mails( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-messaging.md index 34cbad2f31..4f46712598 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_messaging( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-migrations.md index 019db4e811..baa7de8d77 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_migrations( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-stats-resources.md index 92aebc3c91..05ea239e09 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_stats_resources( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-usage.md index 266ca828b1..9c86453a6a 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_usage( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-python/examples/health/get-queue-webhooks.md index df5e2d56db..a01d44db40 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -11,3 +12,4 @@ health = Health(client) result = health.get_queue_webhooks( threshold = None # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-python/examples/health/get-storage-local.md index 7d2ea44f45..98087672ca 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_storage_local() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-storage.md b/docs/examples/1.8.x/server-python/examples/health/get-storage.md index 821d9f3986..b6bdca3539 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_storage() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get-time.md b/docs/examples/1.8.x/server-python/examples/health/get-time.md index 907e96499b..9d0dd57e1e 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-python/examples/health/get-time.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get_time() +``` diff --git a/docs/examples/1.8.x/server-python/examples/health/get.md b/docs/examples/1.8.x/server-python/examples/health/get.md index c544fcc9b6..40ce32f795 100644 --- a/docs/examples/1.8.x/server-python/examples/health/get.md +++ b/docs/examples/1.8.x/server-python/examples/health/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.health import Health @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key health = Health(client) result = health.get() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/get.md b/docs/examples/1.8.x/server-python/examples/locale/get.md index 6f2a877b0c..25e16e68d4 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/get.md +++ b/docs/examples/1.8.x/server-python/examples/locale/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.get() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-codes.md b/docs/examples/1.8.x/server-python/examples/locale/list-codes.md index 5f3e501fe1..1cc5425111 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_codes() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-continents.md b/docs/examples/1.8.x/server-python/examples/locale/list-continents.md index 0aead81734..40d6c6f3b3 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_continents() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-python/examples/locale/list-countries-eu.md index f88e331f43..2409ae3c6f 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_countries_eu() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-python/examples/locale/list-countries-phones.md index b1fdc1ae51..90dc280749 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_countries_phones() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-countries.md b/docs/examples/1.8.x/server-python/examples/locale/list-countries.md index 0c5b23cdd1..1ca58a3920 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_countries() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-python/examples/locale/list-currencies.md index 20009d6569..76e0e2319a 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_currencies() +``` diff --git a/docs/examples/1.8.x/server-python/examples/locale/list-languages.md b/docs/examples/1.8.x/server-python/examples/locale/list-languages.md index 1962a8399e..e9b028e090 100644 --- a/docs/examples/1.8.x/server-python/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-python/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.locale import Locale @@ -9,3 +10,4 @@ client.set_session('') # The user session to authenticate with locale = Locale(client) result = locale.list_languages() +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-apns-provider.md index b57fa00f23..84f6b25b76 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.create_apns_provider( sandbox = False, # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-email.md b/docs/examples/1.8.x/server-python/examples/messaging/create-email.md index 8b4c9d267e..58dc6cf5a2 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -22,3 +23,4 @@ result = messaging.create_email( html = False, # optional scheduled_at = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-fcm-provider.md index 9c40eb7828..11e5e6357e 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -14,3 +15,4 @@ result = messaging.create_fcm_provider( service_account_json = {}, # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-mailgun-provider.md index 6703f6fdcc..8bd974b3b7 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -20,3 +21,4 @@ result = messaging.create_mailgun_provider( reply_to_email = 'email@example.com', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-msg-91-provider.md index 9315dcdd30..514e344c47 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.create_msg91_provider( auth_key = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-push.md b/docs/examples/1.8.x/server-python/examples/messaging/create-push.md index 817c157ee7..2bc06bda80 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging from appwrite.enums import MessagePriority @@ -30,3 +31,4 @@ result = messaging.create_push( critical = False, # optional priority = MessagePriority.NORMAL # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-resend-provider.md index 5789f6b91e..43c6372bc6 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.create_resend_provider( reply_to_email = 'email@example.com', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-sendgrid-provider.md index 46ff54f166..9a1c8a2edc 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.create_sendgrid_provider( reply_to_email = 'email@example.com', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-python/examples/messaging/create-sms.md index d1c7b495b2..66a76c2c29 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -17,3 +18,4 @@ result = messaging.create_sms( draft = False, # optional scheduled_at = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-smtp-provider.md index 6b9c345e6c..cd3d703eef 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging from appwrite.enums import SmtpEncryption @@ -25,3 +26,4 @@ result = messaging.create_smtp_provider( reply_to_email = 'email@example.com', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-python/examples/messaging/create-subscriber.md index bc0c892b48..402e35f59a 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.create_subscriber( subscriber_id = '', target_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-telesign-provider.md index aff09fe852..7a2be40bdb 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.create_telesign_provider( api_key = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-textmagic-provider.md index 46ded71cdd..47ba6f32e3 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.create_textmagic_provider( api_key = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-python/examples/messaging/create-topic.md index c1cb465e9b..cb20965931 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.create_topic( name = '', subscribe = ["any"] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-twilio-provider.md index 4438563abf..53f7d3729a 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.create_twilio_provider( auth_token = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/create-vonage-provider.md index 6ffded5b53..034e539942 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.create_vonage_provider( api_secret = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/delete-provider.md index 649e504c19..887434c02b 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.delete_provider( provider_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-python/examples/messaging/delete-subscriber.md index c012a9ac97..32eec660b9 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -12,3 +13,4 @@ result = messaging.delete_subscriber( topic_id = '', subscriber_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-python/examples/messaging/delete-topic.md index 76f9093a5f..f46587099f 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.delete_topic( topic_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/delete.md b/docs/examples/1.8.x/server-python/examples/messaging/delete.md index 0153ac90cb..d3447ced9d 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.delete( message_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/get-message.md b/docs/examples/1.8.x/server-python/examples/messaging/get-message.md index 3fadcff7d3..a1a2ea1f23 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.get_message( message_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/get-provider.md index 58e6228053..41f2860780 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.get_provider( provider_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-python/examples/messaging/get-subscriber.md index ca997f21f0..26e76b7b03 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -12,3 +13,4 @@ result = messaging.get_subscriber( topic_id = '', subscriber_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-python/examples/messaging/get-topic.md index c238a98afe..4917f0a623 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -11,3 +12,4 @@ messaging = Messaging(client) result = messaging.get_topic( topic_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-python/examples/messaging/list-message-logs.md index a689ae9694..9ae02f633b 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_message_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-python/examples/messaging/list-messages.md index 9a476131c4..a8b1254cd6 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_messages( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-python/examples/messaging/list-provider-logs.md index 7e4dc96a19..9bdd1e4326 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_provider_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-python/examples/messaging/list-providers.md index db2d2b8cc5..cb272aa0cf 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_providers( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-python/examples/messaging/list-subscriber-logs.md index 41bb5b4adf..cb5e1a88dd 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_subscriber_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-python/examples/messaging/list-subscribers.md index 6666830c1e..33818ac3bf 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -14,3 +15,4 @@ result = messaging.list_subscribers( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-python/examples/messaging/list-targets.md index b4f619f62e..4b5b59c236 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_targets( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-python/examples/messaging/list-topic-logs.md index 33fcff0edc..1e6e15f846 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_topic_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-python/examples/messaging/list-topics.md index ad071462c0..cf50c0f1c9 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.list_topics( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-apns-provider.md index f695b61b8c..1108a37898 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.update_apns_provider( bundle_id = '', # optional sandbox = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-email.md b/docs/examples/1.8.x/server-python/examples/messaging/update-email.md index 5731d5f29a..e63fd35a3c 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -22,3 +23,4 @@ result = messaging.update_email( scheduled_at = '', # optional attachments = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-fcm-provider.md index 0119d71b4f..94f7300829 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -14,3 +15,4 @@ result = messaging.update_fcm_provider( enabled = False, # optional service_account_json = {} # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-mailgun-provider.md index 039475ffdc..a774d01fb1 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -20,3 +21,4 @@ result = messaging.update_mailgun_provider( reply_to_name = '', # optional reply_to_email = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-msg-91-provider.md index c5bd057912..984e3e4c45 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.update_msg91_provider( sender_id = '', # optional auth_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-push.md b/docs/examples/1.8.x/server-python/examples/messaging/update-push.md index f9901329bb..de42844951 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging from appwrite.enums import MessagePriority @@ -30,3 +31,4 @@ result = messaging.update_push( critical = False, # optional priority = MessagePriority.NORMAL # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-resend-provider.md index a8ad85954a..ecd21ee475 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.update_resend_provider( reply_to_name = '', # optional reply_to_email = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-sendgrid-provider.md index fc0a44d6cd..e7f9a3634f 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -18,3 +19,4 @@ result = messaging.update_sendgrid_provider( reply_to_name = '', # optional reply_to_email = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-python/examples/messaging/update-sms.md index 2eec4e215b..0973a10045 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -17,3 +18,4 @@ result = messaging.update_sms( draft = False, # optional scheduled_at = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-smtp-provider.md index 51f54a3df8..7824c628f6 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging from appwrite.enums import SmtpEncryption @@ -25,3 +26,4 @@ result = messaging.update_smtp_provider( reply_to_email = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-telesign-provider.md index 193a26f830..dc1d3f1877 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.update_telesign_provider( api_key = '', # optional from = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-textmagic-provider.md index 159f95490e..0165999d13 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.update_textmagic_provider( api_key = '', # optional from = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-python/examples/messaging/update-topic.md index 721f160642..5b20cc6795 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -13,3 +14,4 @@ result = messaging.update_topic( name = '', # optional subscribe = ["any"] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-twilio-provider.md index b80c55b300..1db09b2457 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.update_twilio_provider( auth_token = '', # optional from = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-python/examples/messaging/update-vonage-provider.md index b25f416cef..e8a2712d7d 100644 --- a/docs/examples/1.8.x/server-python/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-python/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.messaging import Messaging @@ -16,3 +17,4 @@ result = messaging.update_vonage_provider( api_secret = '', # optional from = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/create-deployment.md index de6472c4b0..dc411f05ed 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.input_file import InputFile @@ -17,3 +18,4 @@ result = sites.create_deployment( build_command = '', # optional output_directory = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/create-duplicate-deployment.md index d79ab9d3d1..63cd2b9964 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.create_duplicate_deployment( site_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/create-template-deployment.md index 700ca44d1b..17aa6a11ed 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.enums import TemplateReferenceType @@ -18,3 +19,4 @@ result = sites.create_template_deployment( reference = '', activate = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create-variable.md b/docs/examples/1.8.x/server-python/examples/sites/create-variable.md index 739beff61f..e8971fd96b 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -14,3 +15,4 @@ result = sites.create_variable( value = '', secret = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/create-vcs-deployment.md index ec02f31c00..116f4e9537 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.enums import VCSReferenceType @@ -15,3 +16,4 @@ result = sites.create_vcs_deployment( reference = '', activate = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/create.md b/docs/examples/1.8.x/server-python/examples/sites/create.md index 436e56ab86..248a234657 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/create.md +++ b/docs/examples/1.8.x/server-python/examples/sites/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.enums import Framework @@ -31,3 +32,4 @@ result = sites.create( provider_root_directory = '', # optional specification = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/delete-deployment.md index 029730ae3f..ee2f149156 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.delete_deployment( site_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/delete-log.md b/docs/examples/1.8.x/server-python/examples/sites/delete-log.md index 0b516e6840..26c631240f 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-python/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.delete_log( site_id = '', log_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-python/examples/sites/delete-variable.md index c078813b4a..97e77cd651 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-python/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.delete_variable( site_id = '', variable_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/delete.md b/docs/examples/1.8.x/server-python/examples/sites/delete.md index 60670e63e0..41e3eafb6d 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-python/examples/sites/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -11,3 +12,4 @@ sites = Sites(client) result = sites.delete( site_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-python/examples/sites/get-deployment-download.md index 7eaa105ad3..fae8371915 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-python/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.enums import DeploymentDownloadType @@ -14,3 +15,4 @@ result = sites.get_deployment_download( deployment_id = '', type = DeploymentDownloadType.SOURCE # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/get-deployment.md index c4ee1de904..c4ed80cf6d 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.get_deployment( site_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/get-log.md b/docs/examples/1.8.x/server-python/examples/sites/get-log.md index ae5d8ac2df..6b70fe2656 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-python/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.get_log( site_id = '', log_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/get-variable.md b/docs/examples/1.8.x/server-python/examples/sites/get-variable.md index 7f5f0f6480..5251fc4e1d 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-python/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.get_variable( site_id = '', variable_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/get.md b/docs/examples/1.8.x/server-python/examples/sites/get.md index f9532a0e1a..129248cc54 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/get.md +++ b/docs/examples/1.8.x/server-python/examples/sites/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -11,3 +12,4 @@ sites = Sites(client) result = sites.get( site_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-python/examples/sites/list-deployments.md index 4739de9626..3e9c738018 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -14,3 +15,4 @@ result = sites.list_deployments( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-python/examples/sites/list-frameworks.md index 6e3764695e..6e2edae861 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key sites = Sites(client) result = sites.list_frameworks() +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list-logs.md b/docs/examples/1.8.x/server-python/examples/sites/list-logs.md index 4dbbf7a2ef..35dd7fe508 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -13,3 +14,4 @@ result = sites.list_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-python/examples/sites/list-specifications.md index 93b713c4b6..a82616b4cd 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -9,3 +10,4 @@ client.set_key('') # Your secret API key sites = Sites(client) result = sites.list_specifications() +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list-variables.md b/docs/examples/1.8.x/server-python/examples/sites/list-variables.md index 5ff78e6a1a..35b5265a72 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -11,3 +12,4 @@ sites = Sites(client) result = sites.list_variables( site_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/list.md b/docs/examples/1.8.x/server-python/examples/sites/list.md index 9c8c67bfd1..2d87535eec 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/list.md +++ b/docs/examples/1.8.x/server-python/examples/sites/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -13,3 +14,4 @@ result = sites.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-python/examples/sites/update-deployment-status.md index 492ee4f747..68f24fa2e0 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-python/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.update_deployment_status( site_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-python/examples/sites/update-site-deployment.md index 69014bbbcd..53f0b8b9ec 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-python/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -12,3 +13,4 @@ result = sites.update_site_deployment( site_id = '', deployment_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/update-variable.md b/docs/examples/1.8.x/server-python/examples/sites/update-variable.md index 973f7f2e65..57ace3eeaf 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-python/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites @@ -15,3 +16,4 @@ result = sites.update_variable( value = '', # optional secret = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/sites/update.md b/docs/examples/1.8.x/server-python/examples/sites/update.md index 56b796c276..f4e6a6d2e8 100644 --- a/docs/examples/1.8.x/server-python/examples/sites/update.md +++ b/docs/examples/1.8.x/server-python/examples/sites/update.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.enums import Framework @@ -31,3 +32,4 @@ result = sites.update( provider_root_directory = '', # optional specification = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-python/examples/storage/create-bucket.md index 10310aeaed..58caa706b8 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-python/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage from appwrite.enums import Compression @@ -24,3 +25,4 @@ result = storage.create_bucket( antivirus = False, # optional transformations = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/create-file.md b/docs/examples/1.8.x/server-python/examples/storage/create-file.md index e37a5921a5..4e347b2d54 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-python/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage from appwrite.input_file import InputFile @@ -17,3 +18,4 @@ result = storage.create_file( file = InputFile.from_path('file.png'), permissions = [Permission.read(Role.any())] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-python/examples/storage/delete-bucket.md index dd8e8ebc43..ae71a793a0 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-python/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -11,3 +12,4 @@ storage = Storage(client) result = storage.delete_bucket( bucket_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/delete-file.md b/docs/examples/1.8.x/server-python/examples/storage/delete-file.md index 17bc251e50..ce1d260448 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-python/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -12,3 +13,4 @@ result = storage.delete_file( bucket_id = '', file_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-python/examples/storage/get-bucket.md index e5eeb4c097..a12e720465 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-python/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -11,3 +12,4 @@ storage = Storage(client) result = storage.get_bucket( bucket_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-python/examples/storage/get-file-download.md index 411abf8c79..790bd72674 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-python/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -13,3 +14,4 @@ result = storage.get_file_download( file_id = '', token = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-python/examples/storage/get-file-preview.md index f962edc0b6..b14a64640c 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-python/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage from appwrite.enums import ImageGravity @@ -26,3 +27,4 @@ result = storage.get_file_preview( output = ImageFormat.JPG, # optional token = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-python/examples/storage/get-file-view.md index 85cbad7902..f78822d2dd 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-python/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -13,3 +14,4 @@ result = storage.get_file_view( file_id = '', token = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/get-file.md b/docs/examples/1.8.x/server-python/examples/storage/get-file.md index 461543e3fd..8c79a68c8d 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-python/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -12,3 +13,4 @@ result = storage.get_file( bucket_id = '', file_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-python/examples/storage/list-buckets.md index 7a2e9de71a..5c280cd7df 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-python/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -13,3 +14,4 @@ result = storage.list_buckets( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/list-files.md b/docs/examples/1.8.x/server-python/examples/storage/list-files.md index 88e948cd31..5a0e2f2b59 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-python/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage @@ -14,3 +15,4 @@ result = storage.list_files( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-python/examples/storage/update-bucket.md index b0726386a4..669d9abb56 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-python/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage from appwrite.enums import Compression @@ -24,3 +25,4 @@ result = storage.update_bucket( antivirus = False, # optional transformations = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/storage/update-file.md b/docs/examples/1.8.x/server-python/examples/storage/update-file.md index 25acbef823..4e14348f94 100644 --- a/docs/examples/1.8.x/server-python/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-python/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.storage import Storage from appwrite.permission import Permission @@ -16,3 +17,4 @@ result = storage.update_file( name = '', # optional permissions = [Permission.read(Role.any())] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-boolean-column.md index 84702b4cac..29b6e4325e 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_boolean_column( default = False, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-datetime-column.md index d5d15905c5..3f31d63809 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_datetime_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-email-column.md index 0e2ccb473a..263af1c168 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_email_column( default = 'email@example.com', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-enum-column.md index c2268cb271..6f77c50ffb 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.create_enum_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-float-column.md index 9e35e838ca..05b1d966fa 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -18,3 +19,4 @@ result = tables_db.create_float_column( default = None, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-index.md index 9b5959d49d..ddf400dd31 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.enums import IndexType @@ -19,3 +20,4 @@ result = tables_db.create_index( orders = [OrderBy.ASC], # optional lengths = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-integer-column.md index 0cc20fcf83..89e0162c6c 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -18,3 +19,4 @@ result = tables_db.create_integer_column( default = None, # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-ip-column.md index 50aa028349..0528b577dd 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_ip_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-line-column.md index 11591236cf..3d99152adf 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -15,3 +16,4 @@ result = tables_db.create_line_column( required = False, default = [[1, 2], [3, 4], [5, 6]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-longtext-column.md index e060642578..76d798cbe1 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_longtext_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-mediumtext-column.md index 2582649400..249c660d0c 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_mediumtext_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-operations.md index a4881a9e8f..780f088967 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -22,3 +23,4 @@ result = tables_db.create_operations( } ] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-point-column.md index 8f51e95ca2..311bea4cbe 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -15,3 +16,4 @@ result = tables_db.create_point_column( required = False, default = [1, 2] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-polygon-column.md index cf4540e029..9e72cdf66d 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -15,3 +16,4 @@ result = tables_db.create_polygon_column( required = False, default = [[[1, 2], [3, 4], [5, 6], [1, 2]]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-relationship-column.md index d72fbfda11..3248f0dde4 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.enums import RelationshipType @@ -20,3 +21,4 @@ result = tables_db.create_relationship_column( two_way_key = '', # optional on_delete = RelationMutate.CASCADE # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-row.md index d2448029e3..bba8b95db6 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = tables_db.create_row( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-rows.md index 1527e0b30d..40276d0c28 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.create_rows( rows = [], transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-string-column.md index 778a0b4e94..584944d2db 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -18,3 +19,4 @@ result = tables_db.create_string_column( array = False, # optional encrypt = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-table.md index 649a4e8ad2..d6b9c5f3d0 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.permission import Permission @@ -20,3 +21,4 @@ result = tables_db.create_table( columns = [], # optional indexes = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-text-column.md index d4b2364665..313e81c1ed 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_text_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-transaction.md index 05cc80eaa2..9fb96a0889 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.create_transaction( ttl = 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-url-column.md index b235cdfceb..7daa52b5bc 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.create_url_column( default = 'https://example.com', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create-varchar-column.md index 385c77767a..85848b42e8 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.create_varchar_column( default = '', # optional array = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/create.md b/docs/examples/1.8.x/server-python/examples/tablesdb/create.md index 9d64e9abf4..7505f52a1f 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.create( name = '', enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/decrement-row-column.md index d207bb1b4d..56cbb2d807 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.decrement_row_column( min = None, # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-column.md index 9014ccc93b..e28b91b193 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.delete_column( table_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-index.md index e19de0eba7..463793136b 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.delete_index( table_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-row.md index 3943ab27a5..7615459e71 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.delete_row( row_id = '', transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-rows.md index 290d6d346b..5164fc14c1 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.delete_rows( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-table.md index a91b7bfb2c..5997537061 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -12,3 +13,4 @@ result = tables_db.delete_table( database_id = '', table_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-transaction.md index 6d2957f3d6..cbbbc5d97e 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.delete_transaction( transaction_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-python/examples/tablesdb/delete.md index 5bdc7152d7..9859c1e9c0 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.delete( database_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get-column.md index 57be1dfaa4..1d52922d0e 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.get_column( table_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get-index.md index 400bf71843..006da01081 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.get_index( table_id = '', key = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get-row.md index 4398c9a43d..6b10f3e2c8 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -15,3 +16,4 @@ result = tables_db.get_row( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get-table.md index b28cd3d4b1..6cd8f06170 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -12,3 +13,4 @@ result = tables_db.get_table( database_id = '', table_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get-transaction.md index e50c63af9d..d2f4b7df02 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.get_transaction( transaction_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/get.md b/docs/examples/1.8.x/server-python/examples/tablesdb/get.md index 6634350085..a3c0c216c8 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.get( database_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/increment-row-column.md index 8e121f65f6..75a9003b1b 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.increment_row_column( max = None, # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list-columns.md index 944e53afbb..36434877bb 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.list_columns( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list-indexes.md index cc6f4d2517..2263fc90fd 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.list_indexes( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list-rows.md index 179ec90e60..150ff6d595 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -15,3 +16,4 @@ result = tables_db.list_rows( transaction_id = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list-tables.md index 3bb484af1b..48937e8c5c 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.list_tables( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list-transactions.md index e597c2d6fd..6f86199255 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -11,3 +12,4 @@ tables_db = TablesDB(client) result = tables_db.list_transactions( queries = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/list.md b/docs/examples/1.8.x/server-python/examples/tablesdb/list.md index 594e8cb232..d687a42ffa 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-boolean-column.md index abe6b97b73..d140cc1161 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_boolean_column( default = False, new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-datetime-column.md index 1c150b50ac..3e0955c9ee 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_datetime_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-email-column.md index 96a56ec7ae..cd5a84be60 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_email_column( default = 'email@example.com', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-enum-column.md index f07b6286d4..612bdc8250 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.update_enum_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-float-column.md index 1dfcccde1b..a622f8b491 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -18,3 +19,4 @@ result = tables_db.update_float_column( max = None, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-integer-column.md index a38c4dadb5..060d38d62b 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -18,3 +19,4 @@ result = tables_db.update_integer_column( max = None, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-ip-column.md index 780a2b027f..636ec3caf2 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_ip_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-line-column.md index 2f02b61e24..d7b773953f 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_line_column( default = [[1, 2], [3, 4], [5, 6]], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-longtext-column.md index d4abf30c00..16deaeb901 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_longtext_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-mediumtext-column.md index a7aa045b55..18ac7ced28 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_mediumtext_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-point-column.md index 63fb30837f..a75546ca1b 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_point_column( default = [1, 2], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-polygon-column.md index 07118b1c1e..33d3b2ac25 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_polygon_column( default = [[[1, 2], [3, 4], [5, 6], [1, 2]]], # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-relationship-column.md index 560590ec8c..a10395d75e 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.enums import RelationMutate @@ -16,3 +17,4 @@ result = tables_db.update_relationship_column( on_delete = RelationMutate.CASCADE, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-row.md index d6a55c6485..1cabdbeef5 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = tables_db.update_row( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-rows.md index 77360af4d8..0a70291934 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -21,3 +22,4 @@ result = tables_db.update_rows( queries = [], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-string-column.md index f5106ae7f0..cbc8655bcb 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.update_string_column( size = 1, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-table.md index 4d1a5724e8..d45df51a10 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.permission import Permission @@ -18,3 +19,4 @@ result = tables_db.update_table( row_security = False, # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-text-column.md index 5dd4b4a059..47cce30b0a 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_text_column( default = '', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-transaction.md index 97b518dc6e..c55340d75f 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.update_transaction( commit = False, # optional rollback = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-url-column.md index 6e6c722b9f..1af172ce17 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -16,3 +17,4 @@ result = tables_db.update_url_column( default = 'https://example.com', new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update-varchar-column.md index 5e16a2e085..b1dc732d86 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -17,3 +18,4 @@ result = tables_db.update_varchar_column( size = 1, # optional new_key = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/update.md b/docs/examples/1.8.x/server-python/examples/tablesdb/update.md index b86d088374..85b5c9633b 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -13,3 +14,4 @@ result = tables_db.update( name = '', # optional enabled = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-row.md index d0520b384e..f985e84f55 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB from appwrite.permission import Permission @@ -24,3 +25,4 @@ result = tables_db.upsert_row( permissions = [Permission.read(Role.any())], # optional transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-rows.md index d42e259fb0..d339713444 100644 --- a/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-python/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tables_db import TablesDB @@ -14,3 +15,4 @@ result = tables_db.upsert_rows( rows = [], transaction_id = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/create-membership.md b/docs/examples/1.8.x/server-python/examples/teams/create-membership.md index aa811be504..440fbfab00 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-python/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams from appwrite.enums import Roles @@ -18,3 +19,4 @@ result = teams.create_membership( url = 'https://example.com', # optional name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/create.md b/docs/examples/1.8.x/server-python/examples/teams/create.md index f623151b27..d366d05691 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/create.md +++ b/docs/examples/1.8.x/server-python/examples/teams/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -13,3 +14,4 @@ result = teams.create( name = '', roles = [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-python/examples/teams/delete-membership.md index 6fb218266f..2ed97d15bd 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-python/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -12,3 +13,4 @@ result = teams.delete_membership( team_id = '', membership_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/delete.md b/docs/examples/1.8.x/server-python/examples/teams/delete.md index 056114bfad..c9a65b3703 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-python/examples/teams/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -11,3 +12,4 @@ teams = Teams(client) result = teams.delete( team_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/get-membership.md b/docs/examples/1.8.x/server-python/examples/teams/get-membership.md index 3c028a5c7e..91c5b2a638 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-python/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -12,3 +13,4 @@ result = teams.get_membership( team_id = '', membership_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-python/examples/teams/get-prefs.md index 8d645897c6..8f41f631dc 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -11,3 +12,4 @@ teams = Teams(client) result = teams.get_prefs( team_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/get.md b/docs/examples/1.8.x/server-python/examples/teams/get.md index 55f172eadd..0f6d880935 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/get.md +++ b/docs/examples/1.8.x/server-python/examples/teams/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -11,3 +12,4 @@ teams = Teams(client) result = teams.get( team_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-python/examples/teams/list-memberships.md index f0e9d3159f..3e105ad271 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-python/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -14,3 +15,4 @@ result = teams.list_memberships( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/list.md b/docs/examples/1.8.x/server-python/examples/teams/list.md index 293ed242bb..9c43f9edde 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/list.md +++ b/docs/examples/1.8.x/server-python/examples/teams/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -13,3 +14,4 @@ result = teams.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-python/examples/teams/update-membership-status.md index 9c08421579..2d9d1f38a2 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-python/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -14,3 +15,4 @@ result = teams.update_membership_status( user_id = '', secret = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/update-membership.md b/docs/examples/1.8.x/server-python/examples/teams/update-membership.md index dc6be189d5..542f34cfeb 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-python/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams from appwrite.enums import Roles @@ -14,3 +15,4 @@ result = teams.update_membership( membership_id = '', roles = [Roles.ADMIN] ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/update-name.md b/docs/examples/1.8.x/server-python/examples/teams/update-name.md index 160b496932..893e3ed257 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-python/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -12,3 +13,4 @@ result = teams.update_name( team_id = '', name = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-python/examples/teams/update-prefs.md index e82da1b64f..e4fb822872 100644 --- a/docs/examples/1.8.x/server-python/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.teams import Teams @@ -12,3 +13,4 @@ result = teams.update_prefs( team_id = '', prefs = {} ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-python/examples/tokens/create-file-token.md index f835a0ea8d..fe05a6520b 100644 --- a/docs/examples/1.8.x/server-python/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-python/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tokens import Tokens @@ -13,3 +14,4 @@ result = tokens.create_file_token( file_id = '', expire = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tokens/delete.md b/docs/examples/1.8.x/server-python/examples/tokens/delete.md index 47619321ff..80777fd0de 100644 --- a/docs/examples/1.8.x/server-python/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-python/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tokens import Tokens @@ -11,3 +12,4 @@ tokens = Tokens(client) result = tokens.delete( token_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tokens/get.md b/docs/examples/1.8.x/server-python/examples/tokens/get.md index 0d6abb81d7..aee3a97d3b 100644 --- a/docs/examples/1.8.x/server-python/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-python/examples/tokens/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tokens import Tokens @@ -11,3 +12,4 @@ tokens = Tokens(client) result = tokens.get( token_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tokens/list.md b/docs/examples/1.8.x/server-python/examples/tokens/list.md index 53092033d2..9464504c28 100644 --- a/docs/examples/1.8.x/server-python/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-python/examples/tokens/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tokens import Tokens @@ -14,3 +15,4 @@ result = tokens.list( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/tokens/update.md b/docs/examples/1.8.x/server-python/examples/tokens/update.md index 18b04445cc..abf544b321 100644 --- a/docs/examples/1.8.x/server-python/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-python/examples/tokens/update.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.tokens import Tokens @@ -12,3 +13,4 @@ result = tokens.update( token_id = '', expire = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-python/examples/users/create-argon-2-user.md index 5e95cc26ac..a54b2c02ab 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -14,3 +15,4 @@ result = users.create_argon2_user( password = 'password', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-python/examples/users/create-bcrypt-user.md index d3d9e21586..804181bdd6 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -14,3 +15,4 @@ result = users.create_bcrypt_user( password = 'password', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-jwt.md b/docs/examples/1.8.x/server-python/examples/users/create-jwt.md index bed6c483e0..1ccf473771 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.create_jwt( session_id = '', # optional duration = 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-python/examples/users/create-md-5-user.md index b1cbb53f23..f86991791c 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -14,3 +15,4 @@ result = users.create_md5_user( password = 'password', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/users/create-mfa-recovery-codes.md index 64a87c05ff..d6da65bab8 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.create_mfa_recovery_codes( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-python/examples/users/create-ph-pass-user.md index 33f65f44d9..c762b9820f 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -14,3 +15,4 @@ result = users.create_ph_pass_user( password = 'password', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-python/examples/users/create-scrypt-modified-user.md index 9d644ce4ca..9a87d1438d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -17,3 +18,4 @@ result = users.create_scrypt_modified_user( password_signer_key = '', name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-python/examples/users/create-scrypt-user.md index f442ab9d3e..d83d951c42 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -19,3 +20,4 @@ result = users.create_scrypt_user( password_length = None, name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-session.md b/docs/examples/1.8.x/server-python/examples/users/create-session.md index 7e4c49fc95..0ab75f0a9d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.create_session( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-python/examples/users/create-sha-user.md index 7722c62f0c..674a4c2bf4 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users from appwrite.enums import PasswordHash @@ -16,3 +17,4 @@ result = users.create_sha_user( password_version = PasswordHash.SHA1, # optional name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-target.md b/docs/examples/1.8.x/server-python/examples/users/create-target.md index dfa64ac757..0308994221 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-target.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users from appwrite.enums import MessagingProviderType @@ -17,3 +18,4 @@ result = users.create_target( provider_id = '', # optional name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create-token.md b/docs/examples/1.8.x/server-python/examples/users/create-token.md index b40658c312..e4ac48a4c2 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-python/examples/users/create-token.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.create_token( length = 4, # optional expire = 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/create.md b/docs/examples/1.8.x/server-python/examples/users/create.md index 4c51a3fffb..4ce1c21931 100644 --- a/docs/examples/1.8.x/server-python/examples/users/create.md +++ b/docs/examples/1.8.x/server-python/examples/users/create.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -15,3 +16,4 @@ result = users.create( password = '', # optional name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete-identity.md b/docs/examples/1.8.x/server-python/examples/users/delete-identity.md index 412fbd393a..06af668195 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.delete_identity( identity_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-python/examples/users/delete-mfa-authenticator.md index 6472498344..67ab6b788d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users from appwrite.enums import AuthenticatorType @@ -13,3 +14,4 @@ result = users.delete_mfa_authenticator( user_id = '', type = AuthenticatorType.TOTP ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete-session.md b/docs/examples/1.8.x/server-python/examples/users/delete-session.md index 815a96ed37..31ac5246fb 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.delete_session( user_id = '', session_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-python/examples/users/delete-sessions.md index 2dde88f471..c600d4c30d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.delete_sessions( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete-target.md b/docs/examples/1.8.x/server-python/examples/users/delete-target.md index 287f5a26cf..6dfbc7e533 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.delete_target( user_id = '', target_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/delete.md b/docs/examples/1.8.x/server-python/examples/users/delete.md index 7032b0f81e..8d236b4f7b 100644 --- a/docs/examples/1.8.x/server-python/examples/users/delete.md +++ b/docs/examples/1.8.x/server-python/examples/users/delete.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.delete( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/users/get-mfa-recovery-codes.md index bca43b08ec..cf0d67cd6b 100644 --- a/docs/examples/1.8.x/server-python/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.get_mfa_recovery_codes( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/get-prefs.md b/docs/examples/1.8.x/server-python/examples/users/get-prefs.md index ec9d363f8d..f95cc59dfd 100644 --- a/docs/examples/1.8.x/server-python/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.get_prefs( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/get-target.md b/docs/examples/1.8.x/server-python/examples/users/get-target.md index 3b80b1ff7f..8fe84df7e4 100644 --- a/docs/examples/1.8.x/server-python/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-python/examples/users/get-target.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.get_target( user_id = '', target_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/get.md b/docs/examples/1.8.x/server-python/examples/users/get.md index 267086a3df..0cc21b64fa 100644 --- a/docs/examples/1.8.x/server-python/examples/users/get.md +++ b/docs/examples/1.8.x/server-python/examples/users/get.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.get( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-identities.md b/docs/examples/1.8.x/server-python/examples/users/list-identities.md index 664d32ea7b..2b19132c4d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.list_identities( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-logs.md b/docs/examples/1.8.x/server-python/examples/users/list-logs.md index 6b2393fd81..5604d4c18c 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.list_logs( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-memberships.md b/docs/examples/1.8.x/server-python/examples/users/list-memberships.md index 907df809dd..7f01abff8b 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -14,3 +15,4 @@ result = users.list_memberships( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-python/examples/users/list-mfa-factors.md index a2b59895e8..c5d285fae9 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.list_mfa_factors( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-sessions.md b/docs/examples/1.8.x/server-python/examples/users/list-sessions.md index b84fbbf798..2b2970dbf3 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.list_sessions( user_id = '', total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list-targets.md b/docs/examples/1.8.x/server-python/examples/users/list-targets.md index a8e68ded49..3942583135 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-python/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.list_targets( queries = [], # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/list.md b/docs/examples/1.8.x/server-python/examples/users/list.md index 7ff8602c13..f16566dcda 100644 --- a/docs/examples/1.8.x/server-python/examples/users/list.md +++ b/docs/examples/1.8.x/server-python/examples/users/list.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -13,3 +14,4 @@ result = users.list( search = '', # optional total = False # optional ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-python/examples/users/update-email-verification.md index 2605861416..e494f6431c 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_email_verification( user_id = '', email_verification = False ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-email.md b/docs/examples/1.8.x/server-python/examples/users/update-email.md index c4a468e234..4434b6e4b9 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-email.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_email( user_id = '', email = 'email@example.com' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-labels.md b/docs/examples/1.8.x/server-python/examples/users/update-labels.md index b9af53a50e..23d9f6f25d 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_labels( user_id = '', labels = [] ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-python/examples/users/update-mfa-recovery-codes.md index c0990e1ef7..39e8442060 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -11,3 +12,4 @@ users = Users(client) result = users.update_mfa_recovery_codes( user_id = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-mfa.md b/docs/examples/1.8.x/server-python/examples/users/update-mfa.md index 9b35701185..0f92c2e924 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_mfa( user_id = '', mfa = False ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-name.md b/docs/examples/1.8.x/server-python/examples/users/update-name.md index 1e328b4c48..5e9fc00216 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-name.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_name( user_id = '', name = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-password.md b/docs/examples/1.8.x/server-python/examples/users/update-password.md index d104184cad..5d6bdc82ae 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-password.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_password( user_id = '', password = '' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-python/examples/users/update-phone-verification.md index 1d2656c3f1..4ee7d00f32 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_phone_verification( user_id = '', phone_verification = False ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-phone.md b/docs/examples/1.8.x/server-python/examples/users/update-phone.md index 14826bb54c..1f963894ae 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_phone( user_id = '', number = '+12065550100' ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-prefs.md b/docs/examples/1.8.x/server-python/examples/users/update-prefs.md index 76903b7611..ec2f0a4037 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_prefs( user_id = '', prefs = {} ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-status.md b/docs/examples/1.8.x/server-python/examples/users/update-status.md index 49c0516ee4..28918bab51 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-status.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -12,3 +13,4 @@ result = users.update_status( user_id = '', status = False ) +``` diff --git a/docs/examples/1.8.x/server-python/examples/users/update-target.md b/docs/examples/1.8.x/server-python/examples/users/update-target.md index 119c5fab88..c1c30ed717 100644 --- a/docs/examples/1.8.x/server-python/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-python/examples/users/update-target.md @@ -1,3 +1,4 @@ +```python from appwrite.client import Client from appwrite.services.users import Users @@ -15,3 +16,4 @@ result = users.update_target( provider_id = '', # optional name = '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-rest/examples/account/create-anonymous-session.md index ff7408fa94..45ac21f146 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/anonymous HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-rest/examples/account/create-email-password-session.md index 2cf4121b4f..bd503122e0 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "password": "password" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-email-token.md b/docs/examples/1.8.x/server-rest/examples/account/create-email-token.md index 3e0d10827f..96308d6330 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "email": "email@example.com", "phrase": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-rest/examples/account/create-email-verification.md index 63fcd5765e..f338aa4452 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-jwt.md b/docs/examples/1.8.x/server-rest/examples/account/create-jwt.md index c1bd9cc6df..1025ebbb97 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```http POST /v1/account/jwts HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "duration": 0 } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-rest/examples/account/create-magic-url-token.md index 4629afaac8..1e9ca63878 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/magic-url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-JWT: "url": "https://example.com", "phrase": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-authenticator.md index 62a068b6cf..3f51265eae 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-challenge.md index 0990fcb98d..5404940208 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/challenges HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "factor": "email" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-recovery-codes.md index f09323df0b..a37e249b59 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http POST /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-rest/examples/account/create-o-auth-2-token.md index 6d569682c1..6c0ca8f98b 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-o-auth-2-token.md @@ -1,6 +1,8 @@ +```http GET /v1/account/tokens/oauth2/{provider} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-rest/examples/account/create-phone-token.md index c3cb75347f..02a0b17da3 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```http POST /v1/account/tokens/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "phone": "+12065550100" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-rest/examples/account/create-phone-verification.md index b48c9249b3..971a1bc67f 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-recovery.md b/docs/examples/1.8.x/server-rest/examples/account/create-recovery.md index ea0146228b..98a7a9c28b 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```http POST /v1/account/recovery HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-session.md b/docs/examples/1.8.x/server-rest/examples/account/create-session.md index 810f816212..39edcd87ca 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-session.md @@ -1,3 +1,4 @@ +```http POST /v1/account/sessions/token HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create-verification.md b/docs/examples/1.8.x/server-rest/examples/account/create-verification.md index 63fcd5765e..f338aa4452 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```http POST /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "url": "https://example.com" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/create.md b/docs/examples/1.8.x/server-rest/examples/account/create.md index ef9967cab1..83543d7807 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/create.md +++ b/docs/examples/1.8.x/server-rest/examples/account/create.md @@ -1,3 +1,4 @@ +```http POST /v1/account HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-JWT: "password": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/delete-identity.md b/docs/examples/1.8.x/server-rest/examples/account/delete-identity.md index bacca18870..7ec33f098a 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-rest/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/identities/{identityId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-rest/examples/account/delete-mfa-authenticator.md index a0eb5a0869..5f471db6e7 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-rest/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/delete-session.md b/docs/examples/1.8.x/server-rest/examples/account/delete-session.md index c9b0f48d6f..c70d447e6f 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-rest/examples/account/delete-sessions.md index 0b3fcd1c45..f2c5078c72 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-rest/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```http DELETE /v1/account/sessions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/account/get-mfa-recovery-codes.md index 2ab10a2475..deff1c1629 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/account/get-mfa-recovery-codes.md @@ -1,6 +1,8 @@ +```http GET /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/get-prefs.md b/docs/examples/1.8.x/server-rest/examples/account/get-prefs.md index a038dacbfd..5666176aef 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/account/get-prefs.md @@ -1,6 +1,8 @@ +```http GET /v1/account/prefs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/get-session.md b/docs/examples/1.8.x/server-rest/examples/account/get-session.md index 3e372a05ef..d2e0b7832e 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/get-session.md @@ -1,6 +1,8 @@ +```http GET /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/get.md b/docs/examples/1.8.x/server-rest/examples/account/get.md index 104b643074..ba71dfda28 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/get.md +++ b/docs/examples/1.8.x/server-rest/examples/account/get.md @@ -1,6 +1,8 @@ +```http GET /v1/account HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/list-identities.md b/docs/examples/1.8.x/server-rest/examples/account/list-identities.md index 5acb221584..bb0ba07e72 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-rest/examples/account/list-identities.md @@ -1,6 +1,8 @@ +```http GET /v1/account/identities HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/list-logs.md b/docs/examples/1.8.x/server-rest/examples/account/list-logs.md index 8314123c9e..9fc92cf4f2 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/account/list-logs.md @@ -1,6 +1,8 @@ +```http GET /v1/account/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-rest/examples/account/list-mfa-factors.md index c591143d4e..87b64f1435 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-rest/examples/account/list-mfa-factors.md @@ -1,6 +1,8 @@ +```http GET /v1/account/mfa/factors HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/list-sessions.md b/docs/examples/1.8.x/server-rest/examples/account/list-sessions.md index 89ef6962c9..2efa29c8b3 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-rest/examples/account/list-sessions.md @@ -1,6 +1,8 @@ +```http GET /v1/account/sessions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-rest/examples/account/update-email-verification.md index c7c6c34e52..960c823f22 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-email.md b/docs/examples/1.8.x/server-rest/examples/account/update-email.md index 382327e31b..114ead3b27 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-email.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "email": "email@example.com", "password": "password" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-rest/examples/account/update-magic-url-session.md index a1fe139a8b..f03b2b16be 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/sessions/magic-url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-authenticator.md index 780472291c..77ba351ae4 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "otp": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-challenge.md index df2cd9a1e8..df437ae11d 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/mfa/challenges HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "challengeId": "", "otp": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-recovery-codes.md index 74e9225f3e..2e68bb0469 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-mfa.md b/docs/examples/1.8.x/server-rest/examples/account/update-mfa.md index a22b169751..8dcf1f953e 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/mfa HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "mfa": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-name.md b/docs/examples/1.8.x/server-rest/examples/account/update-name.md index 4c9c0e302c..c87e347b97 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-name.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/name HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-password.md b/docs/examples/1.8.x/server-rest/examples/account/update-password.md index c26f18a4f3..55cadcedbe 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-password.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/password HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "password": "", "oldPassword": "password" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-rest/examples/account/update-phone-session.md index eb18a0960c..93e208ee1f 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/sessions/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-rest/examples/account/update-phone-verification.md index faa6478150..4f9adabc39 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-phone.md b/docs/examples/1.8.x/server-rest/examples/account/update-phone.md index 791caadb0d..44ccca75f5 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "phone": "+12065550100", "password": "password" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-prefs.md b/docs/examples/1.8.x/server-rest/examples/account/update-prefs.md index 0d7e4eab0c..e7f73eeeaa 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/prefs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-JWT: "darkTheme": true } } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-recovery.md b/docs/examples/1.8.x/server-rest/examples/account/update-recovery.md index 68919c29fb..070dcc65b2 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/recovery HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "secret": "", "password": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-session.md b/docs/examples/1.8.x/server-rest/examples/account/update-session.md index 8e2257aeed..6d5bc5d3ff 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-session.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-status.md b/docs/examples/1.8.x/server-rest/examples/account/update-status.md index 557697fe5f..a131097493 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/account/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -6,3 +7,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/account/update-verification.md b/docs/examples/1.8.x/server-rest/examples/account/update-verification.md index c7c6c34e52..960c823f22 100644 --- a/docs/examples/1.8.x/server-rest/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```http PUT /v1/account/verifications/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-browser.md index 36999839cc..cf2b2f26f1 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/browsers/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-credit-card.md index c9126af289..6daa634b14 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/credit-cards/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-favicon.md index 5a928fc9cc..c6c124a781 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/favicon HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-flag.md index c29ba10970..c63371caa5 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/flags/{code} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-image.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-image.md index dfc9fdcd92..adb9df8d98 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/image HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-initials.md index c784f1ca56..8d00ebfb71 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/initials HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-qr.md index bac1987d4e..8f41d76670 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/qr HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-rest/examples/avatars/get-screenshot.md index 0ab16b59e6..b5c73e618d 100644 --- a/docs/examples/1.8.x/server-rest/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-rest/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```http GET /v1/avatars/screenshots HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-boolean-attribute.md index b394a1779e..f2a8df83d8 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/boolean HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": false, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-collection.md b/docs/examples/1.8.x/server-rest/examples/databases/create-collection.md index 6d87ed2e90..50be823f1d 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "attributes": [], "indexes": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-datetime-attribute.md index 18e2a718d0..3382fb55a7 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/datetime HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-document.md b/docs/examples/1.8.x/server-rest/examples/databases/create-document.md index e1ca57e0bf..9c6c287414 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -19,3 +20,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-documents.md b/docs/examples/1.8.x/server-rest/examples/databases/create-documents.md index 4e23244620..e954201c46 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "documents": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-email-attribute.md index 1fdf1510cf..a76c3ba57b 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "email@example.com", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-enum-attribute.md index 8cfd0d1dde..03a1243551 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/enum HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-float-attribute.md index 238c079c09..8b8e02fe12 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/float HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "default": 0, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-index.md b/docs/examples/1.8.x/server-rest/examples/databases/create-index.md index cf9f1a8dae..25e51f04b1 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/indexes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "orders": [], "lengths": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-integer-attribute.md index 485af8eb4c..a802897d69 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/integer HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "default": 0, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-ip-attribute.md index f9368e0f79..40a36c1bec 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/ip HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-line-attribute.md index 54d2de02de..d9aa4ae5bb 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/line HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [[1, 2], [3, 4], [5, 6]] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-longtext-attribute.md index 233bea3c1c..a82714a1d7 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/longtext HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-mediumtext-attribute.md index e570fc2aa0..0ee2419b4b 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/mediumtext HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-operations.md b/docs/examples/1.8.x/server-rest/examples/databases/create-operations.md index 212d60df29..9109fa42ea 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/transactions/{transactionId}/operations HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -20,3 +21,4 @@ X-Appwrite-JWT: } ] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-point-attribute.md index ade94fc085..f2124dac6c 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/point HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [1, 2] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-polygon-attribute.md index 9b2f43b6ff..ecd79ce897 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/polygon HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [[[1, 2], [3, 4], [5, 6], [1, 2]]] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-relationship-attribute.md index 34b5afb865..29bb132a47 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/relationship HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "twoWayKey": "", "onDelete": "cascade" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-string-attribute.md index 880fd04417..f5437e3512 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/string HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "array": false, "encrypt": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-text-attribute.md index b1ba26d8a6..c2875d4eca 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/text HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-rest/examples/databases/create-transaction.md index 3647e2d128..16e948c7be 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/transactions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "ttl": 60 } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-url-attribute.md index d1f8629a4b..350ce0a175 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "https://example.com", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/create-varchar-attribute.md index c857e3c6af..676adbe7b6 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```http POST /v1/databases/{databaseId}/collections/{collectionId}/attributes/varchar HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/create.md b/docs/examples/1.8.x/server-rest/examples/databases/create.md index fd1ae143fa..779cc2a526 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/create.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/create.md @@ -1,3 +1,4 @@ +```http POST /v1/databases HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "name": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/decrement-document-attribute.md index 0bd736b0e4..a4b093b974 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId}/{attribute}/decrement HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "min": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-attribute.md index 5d8f7f2932..653bb888f0 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId}/attributes/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-collection.md index 96d044df4e..15f32c853a 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-document.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-document.md index 1031bfe18d..168bc3adfa 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-documents.md index 13ad4c6600..8838b9b70d 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "queries": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-index.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-index.md index d8664ef7ca..8b2b1a0398 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId}/collections/{collectionId}/indexes/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-rest/examples/databases/delete-transaction.md index 09fc4e21f7..1eaa1a9727 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/delete.md b/docs/examples/1.8.x/server-rest/examples/databases/delete.md index 85d5f7bb0e..0667ba7f3b 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/databases/{databaseId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/get-attribute.md index 60161187da..433dfd3232 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get-attribute.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/attributes/{key} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get-collection.md b/docs/examples/1.8.x/server-rest/examples/databases/get-collection.md index 837138aaa0..7da58007fa 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get-collection.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get-document.md b/docs/examples/1.8.x/server-rest/examples/databases/get-document.md index 78a0e7d37c..38f39d82a9 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get-index.md b/docs/examples/1.8.x/server-rest/examples/databases/get-index.md index 58665ed283..8b5725b5ab 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get-index.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/indexes/{key} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-rest/examples/databases/get-transaction.md index e3d89d72de..831e08ea7f 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```http GET /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/get.md b/docs/examples/1.8.x/server-rest/examples/databases/get.md index 644f251f56..220d806102 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/get.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/get.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/increment-document-attribute.md index 924f0e9b0c..0712dd48c7 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId}/{attribute}/increment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "max": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-rest/examples/databases/list-attributes.md index 1d16e3308d..ae3ced6fe6 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list-attributes.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/attributes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list-collections.md b/docs/examples/1.8.x/server-rest/examples/databases/list-collections.md index 18499144d3..f52f5c9707 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list-collections.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list-documents.md b/docs/examples/1.8.x/server-rest/examples/databases/list-documents.md index 468956232d..b1b811482c 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-rest/examples/databases/list-indexes.md index 1e1f134ef0..2aa15eb851 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list-indexes.md @@ -1,5 +1,7 @@ +```http GET /v1/databases/{databaseId}/collections/{collectionId}/indexes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-rest/examples/databases/list-transactions.md index 7a6f680a5f..64d368a462 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```http GET /v1/databases/transactions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/list.md b/docs/examples/1.8.x/server-rest/examples/databases/list.md index 3b9530eec4..41ac2bd12f 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/list.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/list.md @@ -1,5 +1,7 @@ +```http GET /v1/databases HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-boolean-attribute.md index aeac097a06..c2608d3a1e 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/boolean/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": false, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-collection.md b/docs/examples/1.8.x/server-rest/examples/databases/update-collection.md index 6d6e5603ed..037f02392b 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```http PUT /v1/databases/{databaseId}/collections/{collectionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "documentSecurity": false, "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-datetime-attribute.md index 26f3c4e9f2..d0e6dc7399 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/datetime/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-document.md b/docs/examples/1.8.x/server-rest/examples/databases/update-document.md index 16415c1205..bdd0e47e1b 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-documents.md b/docs/examples/1.8.x/server-rest/examples/databases/update-documents.md index d408ee61cc..268daf40d5 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -16,3 +17,4 @@ X-Appwrite-Key: "queries": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-email-attribute.md index 3852754227..af18f0234d 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/email/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "email@example.com", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-enum-attribute.md index 003c0a2a21..9f79c5f553 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/enum/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-float-attribute.md index 8ceffcaa2d..109eb79203 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/float/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": 0, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-integer-attribute.md index 0386cbd470..aa5203b200 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/integer/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": 0, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-ip-attribute.md index 7909f960c0..c936147357 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/ip/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-line-attribute.md index 47bcbea4ab..36633e1a8a 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/line/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [[1, 2], [3, 4], [5, 6]], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-longtext-attribute.md index 905f83e5b3..845221192e 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/longtext/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-mediumtext-attribute.md index 11e3162288..36e7c721bf 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/mediumtext/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-point-attribute.md index c0851c7d51..6300d16128 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/point/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [1, 2], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-polygon-attribute.md index 4cfae215b9..a4cd79ab23 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/polygon/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [[[1, 2], [3, 4], [5, 6], [1, 2]]], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-relationship-attribute.md index 2461ff3053..8a04860ce2 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/{key}/relationship HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "onDelete": "cascade", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-string-attribute.md index e7debaa46f..a86f8e4362 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/string/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "size": 1, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-text-attribute.md index b7253d63dc..b800efcb99 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/text/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-rest/examples/databases/update-transaction.md index 21f1921e41..053b6195c3 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "commit": false, "rollback": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-url-attribute.md index 4318ab4564..961f98f795 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/url/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "https://example.com", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-rest/examples/databases/update-varchar-attribute.md index 9165092f55..b212c469cf 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```http PATCH /v1/databases/{databaseId}/collections/{collectionId}/attributes/varchar/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "size": 1, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/update.md b/docs/examples/1.8.x/server-rest/examples/databases/update.md index d57ad48927..89e628c2eb 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/update.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/update.md @@ -1,3 +1,4 @@ +```http PUT /v1/databases/{databaseId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "name": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-rest/examples/databases/upsert-document.md index f0b41d10dc..5ad86f491f 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```http PUT /v1/databases/{databaseId}/collections/{collectionId}/documents/{documentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-rest/examples/databases/upsert-documents.md index 7b15435e90..0e56cf0fca 100644 --- a/docs/examples/1.8.x/server-rest/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-rest/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```http PUT /v1/databases/{databaseId}/collections/{collectionId}/documents HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "documents": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/create-deployment.md index 9366ab01d9..67e811af78 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/deployments HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -27,3 +28,4 @@ Content-Disposition: form-data; name="activate" false --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/create-duplicate-deployment.md index f2ba3c5f13..c3541afb4c 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/deployments/duplicate HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "deploymentId": "", "buildId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-execution.md b/docs/examples/1.8.x/server-rest/examples/functions/create-execution.md index a2863046ce..e0f8a427a6 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/executions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -15,3 +16,4 @@ X-Appwrite-JWT: "headers": {}, "scheduledAt": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/create-template-deployment.md index 474763831f..d8be5798a6 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/deployments/template HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "reference": "", "activate": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-variable.md b/docs/examples/1.8.x/server-rest/examples/functions/create-variable.md index 7f71f07417..afd3a86c7a 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/variables HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "value": "", "secret": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/create-vcs-deployment.md index cd409fa892..53a13fc741 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/functions/{functionId}/deployments/vcs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "reference": "", "activate": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/create.md b/docs/examples/1.8.x/server-rest/examples/functions/create.md index 2bccb0db4a..f3a062bb03 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/create.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/create.md @@ -1,3 +1,4 @@ +```http POST /v1/functions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -25,3 +26,4 @@ X-Appwrite-Key: "providerRootDirectory": "", "specification": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/delete-deployment.md index 81a80209a8..0dfc69b9cd 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```http DELETE /v1/functions/{functionId}/deployments/{deploymentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-rest/examples/functions/delete-execution.md index 020a9efc3e..c5eae407b9 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```http DELETE /v1/functions/{functionId}/executions/{executionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-rest/examples/functions/delete-variable.md index 88f4de15eb..743e8297a7 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```http DELETE /v1/functions/{functionId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/delete.md b/docs/examples/1.8.x/server-rest/examples/functions/delete.md index 2148d8148b..c388d4caeb 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/functions/{functionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-rest/examples/functions/get-deployment-download.md index e9c9ce0073..d9f6a43ba5 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/get-deployment-download.md @@ -1,6 +1,8 @@ +```http GET /v1/functions/{functionId}/deployments/{deploymentId}/download HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/get-deployment.md index aa6e92449b..f7e00fd56f 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/get-deployment.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/{functionId}/deployments/{deploymentId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/get-execution.md b/docs/examples/1.8.x/server-rest/examples/functions/get-execution.md index 54da369660..340e9b00ea 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```http GET /v1/functions/{functionId}/executions/{executionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/get-variable.md b/docs/examples/1.8.x/server-rest/examples/functions/get-variable.md index 91f14f0db8..606e48bd1c 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/get-variable.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/{functionId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/get.md b/docs/examples/1.8.x/server-rest/examples/functions/get.md index fb0f049f6d..0466f2f49d 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/get.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/get.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/{functionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-rest/examples/functions/list-deployments.md index db89edf692..1941f8f6d5 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list-deployments.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/{functionId}/deployments HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list-executions.md b/docs/examples/1.8.x/server-rest/examples/functions/list-executions.md index 5876a8ba46..ecc720eb78 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```http GET /v1/functions/{functionId}/executions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-rest/examples/functions/list-runtimes.md index d8e4bc4272..c33425b9ab 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list-runtimes.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/runtimes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-rest/examples/functions/list-specifications.md index 1a84b56ac9..d289a67e44 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list-specifications.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/specifications HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list-variables.md b/docs/examples/1.8.x/server-rest/examples/functions/list-variables.md index 41bfde5e28..d5406b65a0 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list-variables.md @@ -1,5 +1,7 @@ +```http GET /v1/functions/{functionId}/variables HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/list.md b/docs/examples/1.8.x/server-rest/examples/functions/list.md index e12af0e774..f93b5a39d2 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/list.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/list.md @@ -1,5 +1,7 @@ +```http GET /v1/functions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-rest/examples/functions/update-deployment-status.md index ba4a882910..e41cd85cc0 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/functions/{functionId}/deployments/{deploymentId}/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-rest/examples/functions/update-function-deployment.md index d649b2ea69..20552d1725 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```http PATCH /v1/functions/{functionId}/deployment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "deploymentId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/update-variable.md b/docs/examples/1.8.x/server-rest/examples/functions/update-variable.md index 5a0ad6805d..fa8ffb1ea7 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```http PUT /v1/functions/{functionId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "value": "", "secret": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/functions/update.md b/docs/examples/1.8.x/server-rest/examples/functions/update.md index cbaa3d62f8..fa16b581ef 100644 --- a/docs/examples/1.8.x/server-rest/examples/functions/update.md +++ b/docs/examples/1.8.x/server-rest/examples/functions/update.md @@ -1,3 +1,4 @@ +```http PUT /v1/functions/{functionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -24,3 +25,4 @@ X-Appwrite-Key: "providerRootDirectory": "", "specification": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/graphql/mutation.md b/docs/examples/1.8.x/server-rest/examples/graphql/mutation.md index 2d59370324..d39c4df88a 100644 --- a/docs/examples/1.8.x/server-rest/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-rest/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```http POST /v1/graphql/mutation HTTP/1.1 Host: cloud.appwrite.io X-Sdk-Graphql: true @@ -11,3 +12,4 @@ X-Appwrite-JWT: { "query": {} } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/graphql/query.md b/docs/examples/1.8.x/server-rest/examples/graphql/query.md index c7242de6ef..7ec92f056a 100644 --- a/docs/examples/1.8.x/server-rest/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-rest/examples/graphql/query.md @@ -1,3 +1,4 @@ +```http POST /v1/graphql HTTP/1.1 Host: cloud.appwrite.io X-Sdk-Graphql: true @@ -11,3 +12,4 @@ X-Appwrite-JWT: { "query": {} } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-rest/examples/health/get-antivirus.md index f0e27277b1..6519acb393 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-antivirus.md @@ -1,5 +1,7 @@ +```http GET /v1/health/anti-virus HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-cache.md b/docs/examples/1.8.x/server-rest/examples/health/get-cache.md index e0628a1b8a..30d6c5a1fc 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-cache.md @@ -1,5 +1,7 @@ +```http GET /v1/health/cache HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-certificate.md b/docs/examples/1.8.x/server-rest/examples/health/get-certificate.md index 8928e8f25a..f45357c898 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-certificate.md @@ -1,5 +1,7 @@ +```http GET /v1/health/certificate HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-db.md b/docs/examples/1.8.x/server-rest/examples/health/get-db.md index f636c9c8e7..58c94779f6 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-db.md @@ -1,5 +1,7 @@ +```http GET /v1/health/db HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-rest/examples/health/get-failed-jobs.md index b9bfab3b73..f1e763b435 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-failed-jobs.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/failed/{name} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-rest/examples/health/get-pub-sub.md index e9ab32729c..fecd074f67 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-pub-sub.md @@ -1,5 +1,7 @@ +```http GET /v1/health/pubsub HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-audits.md index 66651eba48..951f89c844 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-audits.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/audits HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-builds.md index c3d9189a65..76f5b28efe 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-builds.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/builds HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-certificates.md index d70ee360a8..96a58382b7 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-certificates.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/certificates HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-databases.md index 60fc6db3b2..2e27be5193 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-databases.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/databases HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-deletes.md index 5a9ce59da3..326e9a9dc3 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-deletes.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/deletes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-functions.md index 854100e092..75b1383c8c 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-functions.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/functions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-logs.md index 9fa98f13f5..1c9f1311ab 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-mails.md index 2bb61550bb..ab28585a64 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-mails.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/mails HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-messaging.md index 5fd0f35919..aa5d5dec23 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-messaging.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/messaging HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-migrations.md index 2832b1c980..9581277f0d 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-migrations.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/migrations HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-stats-resources.md index 6500b1f84c..cbaf8fa57c 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-stats-resources.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/stats-resources HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-usage.md index 9c4e797f32..ec2973bfaf 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-usage.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/stats-usage HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-rest/examples/health/get-queue-webhooks.md index 4db6cf7d8c..b43b29d248 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-queue-webhooks.md @@ -1,5 +1,7 @@ +```http GET /v1/health/queue/webhooks HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-rest/examples/health/get-storage-local.md index 31c9b8725f..873a303479 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-storage-local.md @@ -1,5 +1,7 @@ +```http GET /v1/health/storage/local HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-storage.md b/docs/examples/1.8.x/server-rest/examples/health/get-storage.md index 69c4ebd910..99c29d85c0 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-storage.md @@ -1,5 +1,7 @@ +```http GET /v1/health/storage HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get-time.md b/docs/examples/1.8.x/server-rest/examples/health/get-time.md index 5396aac6fb..a4a63a445c 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get-time.md @@ -1,5 +1,7 @@ +```http GET /v1/health/time HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/health/get.md b/docs/examples/1.8.x/server-rest/examples/health/get.md index b37e30c4f8..67fe5e207c 100644 --- a/docs/examples/1.8.x/server-rest/examples/health/get.md +++ b/docs/examples/1.8.x/server-rest/examples/health/get.md @@ -1,5 +1,7 @@ +```http GET /v1/health HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/get.md b/docs/examples/1.8.x/server-rest/examples/locale/get.md index 6c60c076b6..15d92e0fea 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/get.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/get.md @@ -1,3 +1,4 @@ +```http GET /v1/locale HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-codes.md b/docs/examples/1.8.x/server-rest/examples/locale/list-codes.md index 3cc2aa9939..b49d2299f1 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/codes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-continents.md b/docs/examples/1.8.x/server-rest/examples/locale/list-continents.md index 8d2b0fa19d..eaf5c7e9fe 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/continents HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-rest/examples/locale/list-countries-eu.md index ae341f5982..4b46af024c 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/countries/eu HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-rest/examples/locale/list-countries-phones.md index 9d59f37a19..dfe37bbaae 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/countries/phones HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-countries.md b/docs/examples/1.8.x/server-rest/examples/locale/list-countries.md index 19205d538d..0e32632d16 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/countries HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-rest/examples/locale/list-currencies.md index fbf6d63496..1146b0a8d4 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/currencies HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/locale/list-languages.md b/docs/examples/1.8.x/server-rest/examples/locale/list-languages.md index 7f1304d6ff..77334a0aef 100644 --- a/docs/examples/1.8.x/server-rest/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-rest/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```http GET /v1/locale/languages HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-apns-provider.md index 47d3b98615..f2f3b00276 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/apns HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -15,3 +16,4 @@ X-Appwrite-Key: "sandbox": false, "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-email.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-email.md index 01888007f4..68d6d98d27 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/messages/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -19,3 +20,4 @@ X-Appwrite-Key: "html": false, "scheduledAt": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-fcm-provider.md index f234c80e6e..1f2d16635d 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/fcm HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "serviceAccountJSON": {}, "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-mailgun-provider.md index fd138606e2..937163d8d3 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/mailgun HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-Key: "replyToEmail": "email@example.com", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-msg-91-provider.md index edbd690d5d..e9ff7e6d51 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/msg91 HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "authKey": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-push.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-push.md index f873bfe6ee..ffde9e9d89 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/messages/push HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -26,3 +27,4 @@ X-Appwrite-Key: "critical": false, "priority": "normal" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-resend-provider.md index e18253635a..b27d9cd118 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/resend HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -15,3 +16,4 @@ X-Appwrite-Key: "replyToEmail": "email@example.com", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-sendgrid-provider.md index 3fa7ee8dd8..8868773102 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/sendgrid HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -15,3 +16,4 @@ X-Appwrite-Key: "replyToEmail": "email@example.com", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-sms.md index 51c4350c1c..8328073f5c 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/messages/sms HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "draft": false, "scheduledAt": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-smtp-provider.md index 5963ee474c..ce505ace85 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/smtp HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -21,3 +22,4 @@ X-Appwrite-Key: "replyToEmail": "email@example.com", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-subscriber.md index e22a626ac4..f581bc11ec 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/topics/{topicId}/subscribers HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "subscriberId": "", "targetId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-telesign-provider.md index a474db823f..6c24495860 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/telesign HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "apiKey": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-textmagic-provider.md index caa7bcd014..f1e440739a 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/textmagic HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "apiKey": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-topic.md index 9974584212..1d00654d78 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/topics HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "name": "", "subscribe": ["any"] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-twilio-provider.md index e612eed8be..ed5c1ff12a 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/twilio HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "authToken": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/create-vonage-provider.md index fdd66526a9..162f2b9f58 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```http POST /v1/messaging/providers/vonage HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "apiSecret": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/delete-provider.md index cfd1ff3b30..4df9a3541b 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```http DELETE /v1/messaging/providers/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-rest/examples/messaging/delete-subscriber.md index 8226237777..ed6dd48698 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```http DELETE /v1/messaging/topics/{topicId}/subscribers/{subscriberId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-JWT: X-Appwrite-Session: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-rest/examples/messaging/delete-topic.md index d340209e93..3d6bbea23d 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```http DELETE /v1/messaging/topics/{topicId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/delete.md b/docs/examples/1.8.x/server-rest/examples/messaging/delete.md index e076c96ebf..4579138b32 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/messaging/messages/{messageId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/get-message.md b/docs/examples/1.8.x/server-rest/examples/messaging/get-message.md index ef9ef2c8df..1ee782fe59 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/get-message.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/messages/{messageId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/get-provider.md index 361d634760..cad5b27440 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/get-provider.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/providers/{providerId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-rest/examples/messaging/get-subscriber.md index c01c5876ac..7132124e2b 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/get-subscriber.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/topics/{topicId}/subscribers/{subscriberId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-rest/examples/messaging/get-topic.md index df5256f5e3..432038577a 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/get-topic.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/topics/{topicId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-message-logs.md index d8c982e7ea..5dce9e952d 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-message-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/messages/{messageId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-messages.md index 88964162e3..92e4d0a7d7 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-messages.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/messages HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-provider-logs.md index 46c0f76a10..93e992b13d 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-provider-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/providers/{providerId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-providers.md index e454b3101b..5c1eb8e046 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-providers.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/providers HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-subscriber-logs.md index 7fb1192035..00d83a3659 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-subscriber-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/subscribers/{subscriberId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-subscribers.md index 06f67c27c1..f8c6cafdaa 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-subscribers.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/topics/{topicId}/subscribers HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-targets.md index 7c793cfae0..e80296bae2 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-targets.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/messages/{messageId}/targets HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-topic-logs.md index e371aeb2b5..ed5169064d 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-topic-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/topics/{topicId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-rest/examples/messaging/list-topics.md index 9f18e14b70..f77428b199 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/list-topics.md @@ -1,5 +1,7 @@ +```http GET /v1/messaging/topics HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-apns-provider.md index a55c593039..fc7abd12a9 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/apns/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "bundleId": "", "sandbox": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-email.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-email.md index 0e1cd9b984..e383c9b8cc 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/messages/email/{messageId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-Key: "scheduledAt": "", "attachments": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-fcm-provider.md index d485981c5b..173725b1cb 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/fcm/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "enabled": false, "serviceAccountJSON": {} } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-mailgun-provider.md index ec132692c5..bea671e1a4 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/mailgun/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -16,3 +17,4 @@ X-Appwrite-Key: "replyToName": "", "replyToEmail": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-msg-91-provider.md index 1013915e5d..f0752d45e0 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/msg91/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "senderId": "", "authKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-push.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-push.md index a3a6f84ae6..7625a67b02 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/messages/push/{messageId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -25,3 +26,4 @@ X-Appwrite-Key: "critical": false, "priority": "normal" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-resend-provider.md index cd9e87b574..3de52c316b 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/resend/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "replyToName": "", "replyToEmail": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-sendgrid-provider.md index fd30512320..ce7c8894a4 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/sendgrid/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "replyToName": "", "replyToEmail": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-sms.md index be246dfa41..716342b44c 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/messages/sms/{messageId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "draft": false, "scheduledAt": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-smtp-provider.md index 9fc45d6726..52c29841c8 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/smtp/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -20,3 +21,4 @@ X-Appwrite-Key: "replyToEmail": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-telesign-provider.md index 919e99577e..7551f1534e 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/telesign/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "apiKey": "", "from": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-textmagic-provider.md index 94f965c44a..b0ec8b068a 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/textmagic/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "apiKey": "", "from": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-topic.md index 75644d9828..43d74f3630 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/topics/{topicId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "name": "", "subscribe": ["any"] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-twilio-provider.md index 41d04c0c14..cbfe786d88 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/twilio/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "authToken": "", "from": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-rest/examples/messaging/update-vonage-provider.md index 0344691e51..bdf6626f7a 100644 --- a/docs/examples/1.8.x/server-rest/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-rest/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```http PATCH /v1/messaging/providers/vonage/{providerId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "apiSecret": "", "from": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/create-deployment.md index 226642f091..6eb6879595 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/sites/{siteId}/deployments HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -32,3 +33,4 @@ Content-Disposition: form-data; name="activate" false --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/create-duplicate-deployment.md index dbee572372..ebdb13e83a 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/sites/{siteId}/deployments/duplicate HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "deploymentId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/create-template-deployment.md index 9f58d3e97e..29804fdbeb 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/sites/{siteId}/deployments/template HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "reference": "", "activate": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create-variable.md b/docs/examples/1.8.x/server-rest/examples/sites/create-variable.md index c34be9d619..9592f7df95 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```http POST /v1/sites/{siteId}/variables HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "value": "", "secret": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/create-vcs-deployment.md index 2e466da0f6..12bef3755f 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```http POST /v1/sites/{siteId}/deployments/vcs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "reference": "", "activate": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/create.md b/docs/examples/1.8.x/server-rest/examples/sites/create.md index 23ac46eb67..7de649311a 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/create.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/create.md @@ -1,3 +1,4 @@ +```http POST /v1/sites HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -25,3 +26,4 @@ X-Appwrite-Key: "providerRootDirectory": "", "specification": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/delete-deployment.md index 3df6aca50f..df18ac0440 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```http DELETE /v1/sites/{siteId}/deployments/{deploymentId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/delete-log.md b/docs/examples/1.8.x/server-rest/examples/sites/delete-log.md index af1d1c339a..759f3faeac 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```http DELETE /v1/sites/{siteId}/logs/{logId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-rest/examples/sites/delete-variable.md index 008ab4b190..75f544c69a 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```http DELETE /v1/sites/{siteId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/delete.md b/docs/examples/1.8.x/server-rest/examples/sites/delete.md index 0657fff9ef..22e9049069 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/sites/{siteId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-rest/examples/sites/get-deployment-download.md index 3ce065f600..88bb5e91cc 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/get-deployment-download.md @@ -1,6 +1,8 @@ +```http GET /v1/sites/{siteId}/deployments/{deploymentId}/download HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/get-deployment.md index 2ad95813d9..cde715fd55 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/get-deployment.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/deployments/{deploymentId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/get-log.md b/docs/examples/1.8.x/server-rest/examples/sites/get-log.md index 41dd30dc8f..365c672367 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/get-log.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/logs/{logId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/get-variable.md b/docs/examples/1.8.x/server-rest/examples/sites/get-variable.md index c6d5e70211..96b5fed5e5 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/get-variable.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/get.md b/docs/examples/1.8.x/server-rest/examples/sites/get.md index da7b67883f..df57e347ca 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/get.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/get.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-rest/examples/sites/list-deployments.md index 0bc5467894..8c3a0ce955 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list-deployments.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/deployments HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-rest/examples/sites/list-frameworks.md index 8c5f7ff318..784563f848 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list-frameworks.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/frameworks HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list-logs.md b/docs/examples/1.8.x/server-rest/examples/sites/list-logs.md index 57b35c4ef5..8f8f016da0 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-rest/examples/sites/list-specifications.md index cf31760070..0fe914bb22 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list-specifications.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/specifications HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list-variables.md b/docs/examples/1.8.x/server-rest/examples/sites/list-variables.md index 7e12fdfd02..a741c8d43b 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list-variables.md @@ -1,5 +1,7 @@ +```http GET /v1/sites/{siteId}/variables HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/list.md b/docs/examples/1.8.x/server-rest/examples/sites/list.md index dc4dc3695f..f392ff1fe7 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/list.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/list.md @@ -1,5 +1,7 @@ +```http GET /v1/sites HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-rest/examples/sites/update-deployment-status.md index d4f251c20f..6556ecf81d 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/sites/{siteId}/deployments/{deploymentId}/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-rest/examples/sites/update-site-deployment.md index c288b2bf00..81d04bce6e 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```http PATCH /v1/sites/{siteId}/deployment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "deploymentId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/update-variable.md b/docs/examples/1.8.x/server-rest/examples/sites/update-variable.md index c7fe824ac4..6b59a7cfe4 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```http PUT /v1/sites/{siteId}/variables/{variableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "value": "", "secret": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/sites/update.md b/docs/examples/1.8.x/server-rest/examples/sites/update.md index 08ebe17fb8..7d79e83dc1 100644 --- a/docs/examples/1.8.x/server-rest/examples/sites/update.md +++ b/docs/examples/1.8.x/server-rest/examples/sites/update.md @@ -1,3 +1,4 @@ +```http PUT /v1/sites/{siteId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -24,3 +25,4 @@ X-Appwrite-Key: "providerRootDirectory": "", "specification": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-rest/examples/storage/create-bucket.md index 81104d36f5..b5192380a3 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```http POST /v1/storage/buckets HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-Key: "antivirus": false, "transformations": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/create-file.md b/docs/examples/1.8.x/server-rest/examples/storage/create-file.md index 055ed38ec0..f382a40f08 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```http POST /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io Content-Type: multipart/form-data; boundary="cec8e8123c05ba25" @@ -24,3 +25,4 @@ Content-Disposition: form-data; name="permissions[]" ["read(\"any\")"] --cec8e8123c05ba25-- +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-rest/examples/storage/delete-bucket.md index d6083186de..bb8d0199dd 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```http DELETE /v1/storage/buckets/{bucketId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/delete-file.md b/docs/examples/1.8.x/server-rest/examples/storage/delete-file.md index 467fdf96d1..49609d6202 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```http DELETE /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-rest/examples/storage/get-bucket.md index 2ad1e577c5..b848476f70 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/get-bucket.md @@ -1,5 +1,7 @@ +```http GET /v1/storage/buckets/{bucketId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-rest/examples/storage/get-file-download.md index af382d3a9a..71e2e3ce34 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/download HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-rest/examples/storage/get-file-preview.md index e00f0ff76f..eca8bb8340 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/preview HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-rest/examples/storage/get-file-view.md index 79f47dcabc..817ad274af 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId}/view HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/get-file.md b/docs/examples/1.8.x/server-rest/examples/storage/get-file.md index 4a479a78fc..a8e735ab95 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```http GET /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-rest/examples/storage/list-buckets.md index bd61c61082..0f1cd7f787 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/list-buckets.md @@ -1,5 +1,7 @@ +```http GET /v1/storage/buckets HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/list-files.md b/docs/examples/1.8.x/server-rest/examples/storage/list-files.md index b040ad3a65..e2101a7163 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```http GET /v1/storage/buckets/{bucketId}/files HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-rest/examples/storage/update-bucket.md index d46ce52a58..890dbc55ba 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```http PUT /v1/storage/buckets/{bucketId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -17,3 +18,4 @@ X-Appwrite-Key: "antivirus": false, "transformations": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/storage/update-file.md b/docs/examples/1.8.x/server-rest/examples/storage/update-file.md index 1b0137a7de..1b6609679c 100644 --- a/docs/examples/1.8.x/server-rest/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-rest/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```http PUT /v1/storage/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "name": "", "permissions": ["read(\"any\")"] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-boolean-column.md index 7e7fdbeb92..dbe4509df6 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/boolean HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": false, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-datetime-column.md index c6fa72a1b1..0e257555e3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/datetime HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-email-column.md index e65b46d1b7..f7c209633c 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "email@example.com", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-enum-column.md index edcdd402f4..daed73ad85 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/enum HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-float-column.md index 14c0e61370..f5d621630e 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/float HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "default": 0, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-index.md index 63e8daa511..5283c6f5f1 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/indexes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "orders": [], "lengths": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-integer-column.md index 2c0bef6b86..7243f07476 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/integer HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "default": 0, "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-ip-column.md index d7b8c1f5ae..39a1764f3e 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/ip HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-line-column.md index 7d70d59900..ff62affab7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/line HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [[1, 2], [3, 4], [5, 6]] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-longtext-column.md index 0e847f0045..3a751144fe 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/longtext HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-mediumtext-column.md index 7bb0d27352..f3f0b23654 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/mediumtext HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-operations.md index 87ca296db2..a1a6b58242 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/transactions/{transactionId}/operations HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -20,3 +21,4 @@ X-Appwrite-JWT: } ] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-point-column.md index 5a99e7ba5e..c32170ae57 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/point HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [1, 2] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-polygon-column.md index 64495e9424..e99e4cbee8 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/polygon HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "required": false, "default": [[[1, 2], [3, 4], [5, 6], [1, 2]]] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-relationship-column.md index 3032dc051d..4a451159f4 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/relationship HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "twoWayKey": "", "onDelete": "cascade" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-row.md index cec287f4b3..ddae65c5d6 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -19,3 +20,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-rows.md index 0ff4426b84..21c51e26f3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "rows": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-string-column.md index 919ad6a2e0..04e74e2f2f 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/string HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -13,3 +14,4 @@ X-Appwrite-Key: "array": false, "encrypt": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-table.md index d06ce5ce04..62088351cb 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "columns": [], "indexes": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-text-column.md index 9e80a7d380..80c9593628 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/text HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-transaction.md index a2b8b184bd..195258699b 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/transactions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "ttl": 60 } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-url-column.md index f5627e22cb..4ecbb14a9b 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/url HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "https://example.com", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-varchar-column.md index d7905c974b..31ffd048d3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb/{databaseId}/tables/{tableId}/columns/varchar HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": "", "array": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/create.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/create.md index 69789b081f..3f973489d5 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```http POST /v1/tablesdb HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "name": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/decrement-row-column.md index 74b06974f1..552fe35ed0 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId}/{column}/decrement HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "min": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-column.md index 3b919093b1..3c1e246298 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId}/columns/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-index.md index bc86671c3f..be12741583 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId}/indexes/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-row.md index b1376ee7cd..c6d8c70f3f 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-rows.md index 22eae7d599..435079146d 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "queries": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-table.md index 63eb1fd227..9b6737b9d7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId}/tables/{tableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-transaction.md index ed6e20dcc8..8deb0dd284 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete.md index bcd4c02663..85db0cc535 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tablesdb/{databaseId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-column.md index 92783ce733..dea65367f8 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-column.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/columns/{key} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-index.md index 0aeaed382d..50db5ddb10 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-index.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/indexes/{key} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-row.md index 9146d3653d..00556890af 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-table.md index b8c0668b4e..0587e31722 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-table.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-transaction.md index 690351d711..7dce1b2ad3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```http GET /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/get.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/get.md index 32ee29126a..02b3831c87 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/get.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/increment-row-column.md index e9047669cd..e9c7a4b144 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId}/{column}/increment HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "max": 0, "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-columns.md index ac81b3a157..da31ce35db 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-columns.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/columns HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-indexes.md index 5847bed650..1b0dc2f028 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-indexes.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/indexes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-rows.md index dcff60e31e..37cef71f1f 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```http GET /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-tables.md index 79ee0f6df8..1ede595842 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-tables.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb/{databaseId}/tables HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-transactions.md index 8b7f9301e3..f1df759278 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```http GET /v1/tablesdb/transactions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Key: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/list.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/list.md index 95cb1bac8d..a040991734 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/list.md @@ -1,5 +1,7 @@ +```http GET /v1/tablesdb HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-boolean-column.md index a06d826ac1..08b7309634 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/boolean/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": false, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-datetime-column.md index 0feea207c1..a86f21d2c7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/datetime/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-email-column.md index 9955db12bc..8733c5cbf7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/email/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "email@example.com", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-enum-column.md index 346d320024..8dc61662e3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/enum/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-float-column.md index 9dc14f3d0f..87f5e3bd51 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/float/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": 0, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-integer-column.md index 763c74fda6..2d9d8c8ed5 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/integer/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "default": 0, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-ip-column.md index 3336cfd7f5..58981fa347 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/ip/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-line-column.md index 97370a5f1f..3ce9c3ebae 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/line/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [[1, 2], [3, 4], [5, 6]], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-longtext-column.md index f128451428..8d62170d8e 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/longtext/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-mediumtext-column.md index 5012588288..b17f39c14d 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/mediumtext/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-point-column.md index 7687f7eb67..009f21601a 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/point/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [1, 2], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-polygon-column.md index ace2b57e0d..ab68717c21 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/polygon/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": [[[1, 2], [3, 4], [5, 6], [1, 2]]], "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-relationship-column.md index 04af7914cb..eb45aa9c0a 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/{key}/relationship HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "onDelete": "cascade", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-row.md index 2cbef177bb..8218a17a8f 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-rows.md index 7ba1a7af2b..52ac4930f7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -16,3 +17,4 @@ X-Appwrite-Key: "queries": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-string-column.md index a9345aabed..649475f2da 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/string/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "size": 1, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-table.md index e223b0c4ca..1914167b09 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```http PUT /v1/tablesdb/{databaseId}/tables/{tableId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "rowSecurity": false, "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-text-column.md index 1b40044d27..36a0ce9eb7 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/text/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-transaction.md index 118366e4a6..73471a50fc 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/transactions/{transactionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-JWT: "commit": false, "rollback": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-url-column.md index 7a7149fafa..9826a6627c 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/url/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "default": "https://example.com", "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-varchar-column.md index 4b5399458a..da4fcd7c96 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tablesdb/{databaseId}/tables/{tableId}/columns/varchar/{key} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "size": 1, "newKey": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/update.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/update.md index 843387c9da..46af2ef3ab 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```http PUT /v1/tablesdb/{databaseId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "name": "", "enabled": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-row.md index a333aa3fc4..0cab39d17d 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```http PUT /v1/tablesdb/{databaseId}/tables/{tableId}/rows/{rowId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -18,3 +19,4 @@ X-Appwrite-JWT: "permissions": ["read(\"any\")"], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-rows.md index 822c7aaec2..e321d47316 100644 --- a/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-rest/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```http PUT /v1/tablesdb/{databaseId}/tables/{tableId}/rows HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "rows": [], "transactionId": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/create-membership.md b/docs/examples/1.8.x/server-rest/examples/teams/create-membership.md index 773208cb45..d05104f45c 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```http POST /v1/teams/{teamId}/memberships HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -15,3 +16,4 @@ X-Appwrite-JWT: "url": "https://example.com", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/create.md b/docs/examples/1.8.x/server-rest/examples/teams/create.md index 2e1881b5ff..e735669573 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/create.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/create.md @@ -1,3 +1,4 @@ +```http POST /v1/teams HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-JWT: "name": "", "roles": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-rest/examples/teams/delete-membership.md index 454a3f6f4a..10a7a2e169 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```http DELETE /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/delete.md b/docs/examples/1.8.x/server-rest/examples/teams/delete.md index 1bdf2a89ac..3f6c229058 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -7,3 +8,4 @@ X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/get-membership.md b/docs/examples/1.8.x/server-rest/examples/teams/get-membership.md index 8a90498292..19955d4a42 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```http GET /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-rest/examples/teams/get-prefs.md index e541fd3fd8..d993b87dfe 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/get-prefs.md @@ -1,6 +1,8 @@ +```http GET /v1/teams/{teamId}/prefs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/get.md b/docs/examples/1.8.x/server-rest/examples/teams/get.md index 491e04dc55..7fc638cd5e 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/get.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/get.md @@ -1,3 +1,4 @@ +```http GET /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-rest/examples/teams/list-memberships.md index 9b0fa00492..48d0cc4a81 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```http GET /v1/teams/{teamId}/memberships HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/list.md b/docs/examples/1.8.x/server-rest/examples/teams/list.md index 95b6178e31..406413ec46 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/list.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/list.md @@ -1,3 +1,4 @@ +```http GET /v1/teams HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 @@ -5,3 +6,4 @@ X-Appwrite-Project: X-Appwrite-Session: X-Appwrite-Key: X-Appwrite-JWT: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-rest/examples/teams/update-membership-status.md index da2c9189cd..95c2a951cd 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/teams/{teamId}/memberships/{membershipId}/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: "userId": "", "secret": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/update-membership.md b/docs/examples/1.8.x/server-rest/examples/teams/update-membership.md index a5b8c28723..19f3430166 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```http PATCH /v1/teams/{teamId}/memberships/{membershipId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "roles": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/update-name.md b/docs/examples/1.8.x/server-rest/examples/teams/update-name.md index 1d32b77d39..2da5e59233 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```http PUT /v1/teams/{teamId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-JWT: { "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-rest/examples/teams/update-prefs.md index e17dcdb260..53ca8ac8ce 100644 --- a/docs/examples/1.8.x/server-rest/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```http PUT /v1/teams/{teamId}/prefs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-JWT: { "prefs": {} } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-rest/examples/tokens/create-file-token.md index 712e843fbf..7ef08fa437 100644 --- a/docs/examples/1.8.x/server-rest/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-rest/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```http POST /v1/tokens/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "expire": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tokens/delete.md b/docs/examples/1.8.x/server-rest/examples/tokens/delete.md index a955b4aef5..f9f56c8211 100644 --- a/docs/examples/1.8.x/server-rest/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/tokens/{tokenId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tokens/get.md b/docs/examples/1.8.x/server-rest/examples/tokens/get.md index 381945f58f..9b659d0843 100644 --- a/docs/examples/1.8.x/server-rest/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-rest/examples/tokens/get.md @@ -1,5 +1,7 @@ +```http GET /v1/tokens/{tokenId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tokens/list.md b/docs/examples/1.8.x/server-rest/examples/tokens/list.md index 3b0782a81a..df1fbd2ef3 100644 --- a/docs/examples/1.8.x/server-rest/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-rest/examples/tokens/list.md @@ -1,5 +1,7 @@ +```http GET /v1/tokens/buckets/{bucketId}/files/{fileId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/tokens/update.md b/docs/examples/1.8.x/server-rest/examples/tokens/update.md index a98ed5ef0b..deb03fa57f 100644 --- a/docs/examples/1.8.x/server-rest/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-rest/examples/tokens/update.md @@ -1,3 +1,4 @@ +```http PATCH /v1/tokens/{tokenId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "expire": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-argon-2-user.md index 4985ecefd0..dbcb6b22eb 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/argon2 HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "password": "password", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-bcrypt-user.md index eaf1628252..b0ca543f91 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/bcrypt HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "password": "password", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-jwt.md b/docs/examples/1.8.x/server-rest/examples/users/create-jwt.md index 8342089042..b80100fcf9 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```http POST /v1/users/{userId}/jwts HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "sessionId": "", "duration": 0 } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-md-5-user.md index 6e82969f00..ebdc9f869e 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/md5 HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "password": "password", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/users/create-mfa-recovery-codes.md index bef314b585..9229f6ab3d 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-ph-pass-user.md index b75c9e23c5..0fbce1c1b9 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/phpass HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -11,3 +12,4 @@ X-Appwrite-Key: "password": "password", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-modified-user.md index 9fb5f8de0f..5274731d74 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/scrypt-modified HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -14,3 +15,4 @@ X-Appwrite-Key: "passwordSignerKey": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-user.md index ee8828f294..e9db80ceb5 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/scrypt HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -16,3 +17,4 @@ X-Appwrite-Key: "passwordLength": 0, "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-session.md b/docs/examples/1.8.x/server-rest/examples/users/create-session.md index 955e253d39..bed513b095 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-session.md @@ -1,3 +1,4 @@ +```http POST /v1/users/{userId}/sessions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-rest/examples/users/create-sha-user.md index 7757b44500..701ef4c68e 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```http POST /v1/users/sha HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "passwordVersion": "sha1", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-target.md b/docs/examples/1.8.x/server-rest/examples/users/create-target.md index 08147220b2..858ac38403 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-target.md @@ -1,3 +1,4 @@ +```http POST /v1/users/{userId}/targets HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "providerId": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create-token.md b/docs/examples/1.8.x/server-rest/examples/users/create-token.md index 2d3b58435a..a499957a3c 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create-token.md @@ -1,3 +1,4 @@ +```http POST /v1/users/{userId}/tokens HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -9,3 +10,4 @@ X-Appwrite-Key: "length": 4, "expire": 60 } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/create.md b/docs/examples/1.8.x/server-rest/examples/users/create.md index d27b436580..04fd8604f9 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/create.md +++ b/docs/examples/1.8.x/server-rest/examples/users/create.md @@ -1,3 +1,4 @@ +```http POST /v1/users HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -12,3 +13,4 @@ X-Appwrite-Key: "password": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete-identity.md b/docs/examples/1.8.x/server-rest/examples/users/delete-identity.md index a9b2cd04f6..b0657ea2d4 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/identities/{identityId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-rest/examples/users/delete-mfa-authenticator.md index 92d51fefb5..f67c3eb338 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/{userId}/mfa/authenticators/{type} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete-session.md b/docs/examples/1.8.x/server-rest/examples/users/delete-session.md index 1ae56081ab..ea1931fe8a 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/{userId}/sessions/{sessionId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-rest/examples/users/delete-sessions.md index f620f1addc..a73c51feba 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/{userId}/sessions HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete-target.md b/docs/examples/1.8.x/server-rest/examples/users/delete-target.md index 4ea75b979b..85f59d930e 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/{userId}/targets/{targetId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/delete.md b/docs/examples/1.8.x/server-rest/examples/users/delete.md index be2533f442..04a14f4e97 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/delete.md +++ b/docs/examples/1.8.x/server-rest/examples/users/delete.md @@ -1,3 +1,4 @@ +```http DELETE /v1/users/{userId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/users/get-mfa-recovery-codes.md index 1f561f02ad..8fda73e444 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/users/get-mfa-recovery-codes.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/get-prefs.md b/docs/examples/1.8.x/server-rest/examples/users/get-prefs.md index 4d55589a73..4e3656d57f 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/users/get-prefs.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/prefs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/get-target.md b/docs/examples/1.8.x/server-rest/examples/users/get-target.md index 3613d7acb6..41c08ef3d9 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-rest/examples/users/get-target.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/targets/{targetId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/get.md b/docs/examples/1.8.x/server-rest/examples/users/get.md index 53357720cf..2b10b3bcf1 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/get.md +++ b/docs/examples/1.8.x/server-rest/examples/users/get.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId} HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-identities.md b/docs/examples/1.8.x/server-rest/examples/users/list-identities.md index 40eed8beec..06195fb489 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-identities.md @@ -1,5 +1,7 @@ +```http GET /v1/users/identities HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-logs.md b/docs/examples/1.8.x/server-rest/examples/users/list-logs.md index 526615b80f..21b9ab1f04 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-logs.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/logs HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-memberships.md b/docs/examples/1.8.x/server-rest/examples/users/list-memberships.md index 24de2cdc59..39d73deef4 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-memberships.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/memberships HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-rest/examples/users/list-mfa-factors.md index eb2d3691de..915625f70a 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-mfa-factors.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/mfa/factors HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-sessions.md b/docs/examples/1.8.x/server-rest/examples/users/list-sessions.md index 33efecd536..ebf64bdbb7 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-sessions.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/sessions HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list-targets.md b/docs/examples/1.8.x/server-rest/examples/users/list-targets.md index 229559c958..f6a80c9848 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list-targets.md @@ -1,5 +1,7 @@ +```http GET /v1/users/{userId}/targets HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/list.md b/docs/examples/1.8.x/server-rest/examples/users/list.md index 2938255449..05601e3742 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/list.md +++ b/docs/examples/1.8.x/server-rest/examples/users/list.md @@ -1,5 +1,7 @@ +```http GET /v1/users HTTP/1.1 Host: cloud.appwrite.io X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-rest/examples/users/update-email-verification.md index 1db5556964..688c7c6e7b 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/verification HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "emailVerification": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-email.md b/docs/examples/1.8.x/server-rest/examples/users/update-email.md index 48d871d8d4..21fac02f22 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-email.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/email HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "email": "email@example.com" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-labels.md b/docs/examples/1.8.x/server-rest/examples/users/update-labels.md index d6acca5c7a..d42a5837e6 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```http PUT /v1/users/{userId}/labels HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "labels": [] } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-rest/examples/users/update-mfa-recovery-codes.md index 91e657aec7..8149c37cf1 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```http PUT /v1/users/{userId}/mfa/recovery-codes HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -5,3 +6,4 @@ X-Appwrite-Response-Format: 1.8.0 X-Appwrite-Project: X-Appwrite-Key: +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-mfa.md b/docs/examples/1.8.x/server-rest/examples/users/update-mfa.md index 8a5d1f5052..80158ef3f1 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/mfa HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "mfa": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-name.md b/docs/examples/1.8.x/server-rest/examples/users/update-name.md index ae1472387a..6d4a608a76 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-name.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/name HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "name": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-password.md b/docs/examples/1.8.x/server-rest/examples/users/update-password.md index 6f689670e5..bcd4598614 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-password.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/password HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "password": "" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-rest/examples/users/update-phone-verification.md index 837874a1e2..86976c4318 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/verification/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "phoneVerification": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-phone.md b/docs/examples/1.8.x/server-rest/examples/users/update-phone.md index a36f0cc656..15f999137d 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/phone HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "number": "+12065550100" } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-prefs.md b/docs/examples/1.8.x/server-rest/examples/users/update-prefs.md index 5de942c081..4dccbc8395 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/prefs HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "prefs": {} } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-status.md b/docs/examples/1.8.x/server-rest/examples/users/update-status.md index 95e29fb66e..35b2914b9c 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-status.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/status HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -8,3 +9,4 @@ X-Appwrite-Key: { "status": false } +``` diff --git a/docs/examples/1.8.x/server-rest/examples/users/update-target.md b/docs/examples/1.8.x/server-rest/examples/users/update-target.md index c5f92f342e..cfe29676c4 100644 --- a/docs/examples/1.8.x/server-rest/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-rest/examples/users/update-target.md @@ -1,3 +1,4 @@ +```http PATCH /v1/users/{userId}/targets/{targetId} HTTP/1.1 Host: cloud.appwrite.io Content-Type: application/json @@ -10,3 +11,4 @@ X-Appwrite-Key: "providerId": "", "name": "" } +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-ruby/examples/account/create-anonymous-session.md index d24b239712..0fce575050 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.create_anonymous_session() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-ruby/examples/account/create-email-password-session.md index d38a7c3cc5..57ab742da9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.create_email_password_session( email: 'email@example.com', password: 'password' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-email-token.md b/docs/examples/1.8.x/server-ruby/examples/account/create-email-token.md index 6fb295c529..e259f81325 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = account.create_email_token( email: 'email@example.com', phrase: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/create-email-verification.md index 11bf56b73f..b2351cc46b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.create_email_verification( url: 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-jwt.md b/docs/examples/1.8.x/server-ruby/examples/account/create-jwt.md index 481add5a0e..2c722b0199 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.create_jwt( duration: 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-ruby/examples/account/create-magic-url-token.md index ea19378441..e84c215125 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = account.create_magic_url_token( url: 'https://example.com', # optional phrase: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-authenticator.md index a3cc71cd8a..5d80789dc7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ account = Account.new(client) result = account.create_mfa_authenticator( type: AuthenticatorType::TOTP ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-challenge.md index e5da228b87..117f86f890 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ account = Account.new(client) result = account.create_mfa_challenge( factor: AuthenticationFactor::EMAIL ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-recovery-codes.md index db91cf533d..680f9df3e0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.create_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-ruby/examples/account/create-o-auth-2-token.md index 60543c9441..4dbba2f03c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = account.create_o_auth2_token( failure: 'https://example.com', # optional scopes: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-ruby/examples/account/create-phone-token.md index d1f2e1e849..e291fd0ed1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.create_phone_token( user_id: '', phone: '+12065550100' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/create-phone-verification.md index a7dec8f34e..0bf3df115a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.create_phone_verification() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-recovery.md b/docs/examples/1.8.x/server-ruby/examples/account/create-recovery.md index e344bafc75..380dde1d2a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.create_recovery( email: 'email@example.com', url: 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-session.md b/docs/examples/1.8.x/server-ruby/examples/account/create-session.md index 6d606b53b3..dcc2bd7ef2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.create_session( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/create-verification.md index 2eba7c776d..2781988649 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.create_verification( url: 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/create.md b/docs/examples/1.8.x/server-ruby/examples/account/create.md index 259e25e70d..673c8f3f01 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = account.create( password: '', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/delete-identity.md b/docs/examples/1.8.x/server-ruby/examples/account/delete-identity.md index e8f8e83814..fa6a2264f8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.delete_identity( identity_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-ruby/examples/account/delete-mfa-authenticator.md index 832ff6ae13..76efdab1f9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ account = Account.new(client) result = account.delete_mfa_authenticator( type: AuthenticatorType::TOTP ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/delete-session.md b/docs/examples/1.8.x/server-ruby/examples/account/delete-session.md index 7496cafe3a..83a201ce3a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.delete_session( session_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-ruby/examples/account/delete-sessions.md index ca5d922483..3008032f01 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.delete_sessions() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/account/get-mfa-recovery-codes.md index 26ffa9d61d..144abb0bd5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.get_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/get-prefs.md b/docs/examples/1.8.x/server-ruby/examples/account/get-prefs.md index 664454cf2f..9cbebfea17 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.get_prefs() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/get-session.md b/docs/examples/1.8.x/server-ruby/examples/account/get-session.md index c433b22e46..d8b68f0996 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/get-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.get_session( session_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/get.md b/docs/examples/1.8.x/server-ruby/examples/account/get.md index f33050345d..4615dab17d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.get() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/list-identities.md b/docs/examples/1.8.x/server-ruby/examples/account/list-identities.md index 9935d08ad4..e66dade302 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.list_identities( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/list-logs.md b/docs/examples/1.8.x/server-ruby/examples/account/list-logs.md index d31eae7fe9..171d430649 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.list_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-ruby/examples/account/list-mfa-factors.md index 460ac87ac1..c172d71a70 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.list_mfa_factors() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/list-sessions.md b/docs/examples/1.8.x/server-ruby/examples/account/list-sessions.md index b5968c498f..47d2c033c1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.list_sessions() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/update-email-verification.md index 33b009a549..143d7924f6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_email_verification( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-email.md b/docs/examples/1.8.x/server-ruby/examples/account/update-email.md index 24b43edebd..606a936519 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-email.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_email( email: 'email@example.com', password: 'password' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-ruby/examples/account/update-magic-url-session.md index 27257c8281..e37318283b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_magic_url_session( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-authenticator.md index 5ff2adcbdc..89c1652649 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = account.update_mfa_authenticator( type: AuthenticatorType::TOTP, otp: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-challenge.md index 2f4b61d581..60e271f45e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_mfa_challenge( challenge_id: '', otp: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-recovery-codes.md index ad1f2e5f0e..e9bd858579 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.update_mfa_recovery_codes() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa.md b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa.md index b1b50f32fd..1806f7c4a8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.update_mfa( mfa: false ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-name.md b/docs/examples/1.8.x/server-ruby/examples/account/update-name.md index ef8a5cbb4f..9904c8c402 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-name.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.update_name( name: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-password.md b/docs/examples/1.8.x/server-ruby/examples/account/update-password.md index 4b8705359b..c9f9351012 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-password.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_password( password: '', old_password: 'password' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-ruby/examples/account/update-phone-session.md index 307b9a3a55..3188404944 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_phone_session( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/update-phone-verification.md index 8dcf316e49..a3904a9a18 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_phone_verification( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-phone.md b/docs/examples/1.8.x/server-ruby/examples/account/update-phone.md index ea758a8d8d..6501becc1c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_phone( phone: '+12065550100', password: 'password' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-prefs.md b/docs/examples/1.8.x/server-ruby/examples/account/update-prefs.md index 7e4311d9c6..847cff42d5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = account.update_prefs( "darkTheme" => true } ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-recovery.md b/docs/examples/1.8.x/server-ruby/examples/account/update-recovery.md index 42c483771c..198579aedb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = account.update_recovery( secret: '', password: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-session.md b/docs/examples/1.8.x/server-ruby/examples/account/update-session.md index 34e00eec25..5919db026c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ account = Account.new(client) result = account.update_session( session_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-status.md b/docs/examples/1.8.x/server-ruby/examples/account/update-status.md index 5c543b790c..725bd31ca1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-status.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new account = Account.new(client) result = account.update_status() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/account/update-verification.md b/docs/examples/1.8.x/server-ruby/examples/account/update-verification.md index 9866ade95c..bee759fc9d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = account.update_verification( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-browser.md index 36354d1dce..2c9c1272d8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = avatars.get_browser( height: 0, # optional quality: -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-credit-card.md index 09a0245034..a912b9cd47 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = avatars.get_credit_card( height: 0, # optional quality: -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-favicon.md index 7c8bd4347f..a50b91a85f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ avatars = Avatars.new(client) result = avatars.get_favicon( url: 'https://example.com' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-flag.md index 61b7793048..a2f1206729 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = avatars.get_flag( height: 0, # optional quality: -1 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-image.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-image.md index f46fad0c44..b3bcce3315 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = avatars.get_image( width: 0, # optional height: 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-initials.md index 85e5a6a422..695ccf72d9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = avatars.get_initials( height: 0, # optional background: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-qr.md index 9c6e34686c..2ccde309ac 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = avatars.get_qr( margin: 0, # optional download: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-ruby/examples/avatars/get-screenshot.md index c69be2649f..e129b37722 100644 --- a/docs/examples/1.8.x/server-ruby/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-ruby/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -35,3 +36,4 @@ result = avatars.get_screenshot( quality: 85, # optional output: ImageFormat::JPEG # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-boolean-attribute.md index 158ea05623..a02b6079e4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_boolean_attribute( default: false, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-collection.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-collection.md index ab6233c6ee..3b21dc5459 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -21,3 +22,4 @@ result = databases.create_collection( attributes: [], # optional indexes: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-datetime-attribute.md index af12b7965b..efc8f8e3fe 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_datetime_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-document.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-document.md index c29c5d28df..6398a210be 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = databases.create_document( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-documents.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-documents.md index db45bd78a9..60acd19f76 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.create_documents( documents: [], transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-email-attribute.md index 7f36f6b076..705927466d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_email_attribute( default: 'email@example.com', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-enum-attribute.md index c8e390a1a9..c7737fc445 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.create_enum_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-float-attribute.md index fa77f89902..3c0a5f0125 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.create_float_attribute( default: null, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-index.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-index.md index 409b2d2c5e..689855faf2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.create_index( orders: [OrderBy::ASC], # optional lengths: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-integer-attribute.md index a689502136..7691bf0124 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.create_integer_attribute( default: null, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-ip-attribute.md index 7abeee9403..9e783e338b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_ip_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-line-attribute.md index 33bdab7cf8..1ade2aacf6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = databases.create_line_attribute( required: false, default: [[1, 2], [3, 4], [5, 6]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-longtext-attribute.md index eac095dad5..f6ebd0adbe 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_longtext_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-mediumtext-attribute.md index d5e11074ba..d39db1526d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_mediumtext_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-operations.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-operations.md index 687932bd3e..5fffcc05b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -23,3 +24,4 @@ result = databases.create_operations( } ] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-point-attribute.md index f50a99ffea..12a0010f82 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = databases.create_point_attribute( required: false, default: [1, 2] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-polygon-attribute.md index d7930a5ffe..181c5e7a6b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = databases.create_polygon_attribute( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-relationship-attribute.md index b056f3bbb2..bc6f32f1df 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -20,3 +21,4 @@ result = databases.create_relationship_attribute( two_way_key: '', # optional on_delete: RelationMutate::CASCADE # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-string-attribute.md index d94af0f22f..2aefa55fc3 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.create_string_attribute( array: false, # optional encrypt: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-text-attribute.md index 01aa1275e3..77a5f92bfd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_text_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-transaction.md index 83d2e4ea4d..86c61cd7fd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.create_transaction( ttl: 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-url-attribute.md index 3ffd7321a1..f20c77cd57 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.create_url_attribute( default: 'https://example.com', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/create-varchar-attribute.md index a7c5318859..63b50ab241 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.create_varchar_attribute( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/create.md b/docs/examples/1.8.x/server-ruby/examples/databases/create.md index 62675e6ba7..c59b42306b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.create( name: '', enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/decrement-document-attribute.md index ecf15864da..fd97e5f33b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.decrement_document_attribute( min: null, # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-attribute.md index 816b31e43f..089fdab39d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.delete_attribute( collection_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-collection.md index 28dd8d773c..1ec714e923 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = databases.delete_collection( database_id: '', collection_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-document.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-document.md index 079247fc05..4ca8c4e524 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.delete_document( document_id: '', transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-documents.md index 838660747c..c9309bd9d7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.delete_documents( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-index.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-index.md index b5d9231508..5b80525159 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.delete_index( collection_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete-transaction.md index 2024818ad4..c181b3495f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.delete_transaction( transaction_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/delete.md b/docs/examples/1.8.x/server-ruby/examples/databases/delete.md index 802f5d6bd4..054534ccec 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.delete( database_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/get-attribute.md index 1558de656a..5b1c53ef31 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.get_attribute( collection_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get-collection.md b/docs/examples/1.8.x/server-ruby/examples/databases/get-collection.md index 89ae0e32ac..a3384568bb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = databases.get_collection( database_id: '', collection_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get-document.md b/docs/examples/1.8.x/server-ruby/examples/databases/get-document.md index 47404fee80..3a976514be 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = databases.get_document( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get-index.md b/docs/examples/1.8.x/server-ruby/examples/databases/get-index.md index cd5fca3d60..0e1892a147 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.get_index( collection_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-ruby/examples/databases/get-transaction.md index 7d8349dc7d..33432aae38 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.get_transaction( transaction_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/get.md b/docs/examples/1.8.x/server-ruby/examples/databases/get.md index c042cd7c4e..d8e46b69f9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.get( database_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/increment-document-attribute.md index 8f78675cdd..ced8cc9df1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.increment_document_attribute( max: null, # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-ruby/examples/databases/list-attributes.md index 812522547f..32374674f1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.list_attributes( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list-collections.md b/docs/examples/1.8.x/server-ruby/examples/databases/list-collections.md index 46b7d8d316..d1ae8d985d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.list_collections( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list-documents.md b/docs/examples/1.8.x/server-ruby/examples/databases/list-documents.md index f559d9f907..78a34ce74f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = databases.list_documents( transaction_id: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-ruby/examples/databases/list-indexes.md index 4527d40642..17adc60499 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.list_indexes( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-ruby/examples/databases/list-transactions.md index c041a05b5e..9071982e78 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ databases = Databases.new(client) result = databases.list_transactions( queries: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/list.md b/docs/examples/1.8.x/server-ruby/examples/databases/list.md index 8cd03d7e2f..9c747c5ce3 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-boolean-attribute.md index 72f0eac088..36d16afb39 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_boolean_attribute( default: false, new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-collection.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-collection.md index 0972f661ff..2472fd4c2f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.update_collection( document_security: false, # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-datetime-attribute.md index b726283323..ff5eb5916d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_datetime_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-document.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-document.md index 0f736a1a66..27747e3bad 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = databases.update_document( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-documents.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-documents.md index 00bdc9a20c..5ebb951f9c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -22,3 +23,4 @@ result = databases.update_documents( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-email-attribute.md index 3324e39860..9b8f027d9b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_email_attribute( default: 'email@example.com', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-enum-attribute.md index 72a0515467..a5d253f637 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.update_enum_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-float-attribute.md index 738e6de36a..8c03c9a739 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.update_float_attribute( max: null, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-integer-attribute.md index dece44544f..3a44c26ec4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = databases.update_integer_attribute( max: null, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-ip-attribute.md index deceb732e4..d65ebec430 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_ip_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-line-attribute.md index c6e6e46f95..93831f3a9e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_line_attribute( default: [[1, 2], [3, 4], [5, 6]], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-longtext-attribute.md index 694a0a3150..bcab8edce4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_longtext_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-mediumtext-attribute.md index b60d615150..faab3a3f5f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_mediumtext_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-point-attribute.md index ce0b42b739..df0ee60223 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_point_attribute( default: [1, 2], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-polygon-attribute.md index c159822998..9424c3cfcf 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_polygon_attribute( default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-relationship-attribute.md index 6fddac2d58..766f30fa36 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_relationship_attribute( on_delete: RelationMutate::CASCADE, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-string-attribute.md index 66f458e800..8ab4e7f732 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.update_string_attribute( size: 1, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-text-attribute.md index e75621ba79..ec21c97444 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_text_attribute( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-transaction.md index e53c148b18..18598015fd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.update_transaction( commit: false, # optional rollback: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-url-attribute.md index cbf417b6bf..defe01c697 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = databases.update_url_attribute( default: 'https://example.com', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-ruby/examples/databases/update-varchar-attribute.md index 1ba5df4b77..501d57db30 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = databases.update_varchar_attribute( size: 1, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/update.md b/docs/examples/1.8.x/server-ruby/examples/databases/update.md index 781004e23a..a5c6d143b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/update.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/update.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = databases.update( name: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-ruby/examples/databases/upsert-document.md index 07c7b7e876..d196769e61 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = databases.upsert_document( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-ruby/examples/databases/upsert-documents.md index b470b8d31f..49432e01bb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-ruby/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = databases.upsert_documents( documents: [], transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-deployment.md index 0ff3db31e9..1bc2abdf96 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = functions.create_deployment( entrypoint: '', # optional commands: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-duplicate-deployment.md index cd432afc95..c39e3a7ea4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = functions.create_duplicate_deployment( deployment_id: '', build_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-execution.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-execution.md index 521ee7cde0..9c529150d1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = functions.create_execution( headers: {}, # optional scheduled_at: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-template-deployment.md index e4c759f3fc..9f80f906da 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = functions.create_template_deployment( reference: '', activate: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-variable.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-variable.md index 3c957d45f8..fbd057a366 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = functions.create_variable( value: '', secret: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/create-vcs-deployment.md index 930ec6dc76..fe8d9917cb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = functions.create_vcs_deployment( reference: '', activate: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/create.md b/docs/examples/1.8.x/server-ruby/examples/functions/create.md index e9d9c42981..c9358a7583 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -30,3 +31,4 @@ result = functions.create( provider_root_directory: '', # optional specification: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/delete-deployment.md index 192172cf9c..42ee16cbc0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.delete_deployment( function_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-ruby/examples/functions/delete-execution.md index 4172aade32..8d125bcf10 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.delete_execution( function_id: '', execution_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-ruby/examples/functions/delete-variable.md index ffbe69f106..bd8e79e25b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.delete_variable( function_id: '', variable_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/delete.md b/docs/examples/1.8.x/server-ruby/examples/functions/delete.md index e5c59e39c0..f895cd6504 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ functions = Functions.new(client) result = functions.delete( function_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment-download.md index 06faa7e03c..728cfca6b8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = functions.get_deployment_download( deployment_id: '', type: DeploymentDownloadType::SOURCE # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment.md index 1651ae1285..1711df1e64 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.get_deployment( function_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/get-execution.md b/docs/examples/1.8.x/server-ruby/examples/functions/get-execution.md index 7ab910e785..240606c65b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.get_execution( function_id: '', execution_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/get-variable.md b/docs/examples/1.8.x/server-ruby/examples/functions/get-variable.md index 5022cf84d6..e06337ea4b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.get_variable( function_id: '', variable_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/get.md b/docs/examples/1.8.x/server-ruby/examples/functions/get.md index 5cfd135028..8b4b1b13e4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ functions = Functions.new(client) result = functions.get( function_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-ruby/examples/functions/list-deployments.md index 0b6bcf1c0a..d4f88ba618 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = functions.list_deployments( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list-executions.md b/docs/examples/1.8.x/server-ruby/examples/functions/list-executions.md index 5b0f1f2949..f9b138ecfb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = functions.list_executions( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-ruby/examples/functions/list-runtimes.md index 1b6d25ee6d..98a7546620 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new functions = Functions.new(client) result = functions.list_runtimes() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-ruby/examples/functions/list-specifications.md index 2c9cf7c470..b018ccdf37 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new functions = Functions.new(client) result = functions.list_specifications() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list-variables.md b/docs/examples/1.8.x/server-ruby/examples/functions/list-variables.md index dd3fc4f2ae..a670b6c1a0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ functions = Functions.new(client) result = functions.list_variables( function_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/list.md b/docs/examples/1.8.x/server-ruby/examples/functions/list.md index ea008ef65f..b9ffba05ec 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = functions.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-ruby/examples/functions/update-deployment-status.md index 6664e05079..b70d5f0f0c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.update_deployment_status( function_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-ruby/examples/functions/update-function-deployment.md index 68c5d7fdfd..be7eff9c50 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = functions.update_function_deployment( function_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/update-variable.md b/docs/examples/1.8.x/server-ruby/examples/functions/update-variable.md index 7c4e402820..9ef8c05542 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = functions.update_variable( value: '', # optional secret: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/functions/update.md b/docs/examples/1.8.x/server-ruby/examples/functions/update.md index 137c75bc87..e06c276d27 100644 --- a/docs/examples/1.8.x/server-ruby/examples/functions/update.md +++ b/docs/examples/1.8.x/server-ruby/examples/functions/update.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -30,3 +31,4 @@ result = functions.update( provider_root_directory: '', # optional specification: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/graphql/mutation.md b/docs/examples/1.8.x/server-ruby/examples/graphql/mutation.md index 08ca6f30d2..a71a8bd61a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-ruby/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ graphql = Graphql.new(client) result = graphql.mutation( query: {} ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/graphql/query.md b/docs/examples/1.8.x/server-ruby/examples/graphql/query.md index 05e69506a1..49561b1588 100644 --- a/docs/examples/1.8.x/server-ruby/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-ruby/examples/graphql/query.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ graphql = Graphql.new(client) result = graphql.query( query: {} ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-ruby/examples/health/get-antivirus.md index 5f8d06056d..1c29b76d34 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_antivirus() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-cache.md b/docs/examples/1.8.x/server-ruby/examples/health/get-cache.md index 01bd46cd0b..a9390d692e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_cache() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-certificate.md b/docs/examples/1.8.x/server-ruby/examples/health/get-certificate.md index 64699d42d0..f88145aace 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_certificate( domain: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-db.md b/docs/examples/1.8.x/server-ruby/examples/health/get-db.md index d9668339c5..6f06ad89c6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-db.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_db() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-ruby/examples/health/get-failed-jobs.md index b15f6cc41e..9d792a02ce 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = health.get_failed_jobs( name: Name::V1_DATABASE, threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-ruby/examples/health/get-pub-sub.md index 86e9c409ed..7c90a55cdd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_pub_sub() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-audits.md index 8fc3bc4b50..2320ba1608 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_audits( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-builds.md index 9f876982ef..40acf32442 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_builds( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-certificates.md index d10c2feb39..9d512bc39a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_certificates( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-databases.md index 37024d8144..23eff71ba6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = health.get_queue_databases( name: '', # optional threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-deletes.md index 2508be22ba..f3664b618d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_deletes( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-functions.md index e5b56474bc..cdf3d01bb8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_functions( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-logs.md index cb35ac333b..ee0b393e42 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_logs( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-mails.md index 36cfec3d87..26ef282c1d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_mails( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-messaging.md index d317f2a74c..03d51a3f5a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_messaging( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-migrations.md index 3c68c865dc..a0b8d2211f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_migrations( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-stats-resources.md index 7024bac307..cc0b19f8b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_stats_resources( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-usage.md index b687bd8789..b9f36fb4be 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_usage( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-webhooks.md index 28f28ea78a..2982e65f76 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ health = Health.new(client) result = health.get_queue_webhooks( threshold: null # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-ruby/examples/health/get-storage-local.md index a122de50ee..4175f277b0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_storage_local() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-storage.md b/docs/examples/1.8.x/server-ruby/examples/health/get-storage.md index ee778643ec..d187656da2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_storage() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get-time.md b/docs/examples/1.8.x/server-ruby/examples/health/get-time.md index 9d345557a3..4486ef15b1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get-time.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get_time() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/health/get.md b/docs/examples/1.8.x/server-ruby/examples/health/get.md index 4bbf0c0eb0..54a191b85f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/health/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/health/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new health = Health.new(client) result = health.get() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/get.md b/docs/examples/1.8.x/server-ruby/examples/locale/get.md index 264da0e187..e6fa23f9a2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.get() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-codes.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-codes.md index 27632669f0..cf31d3af03 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_codes() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-continents.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-continents.md index b78f130201..1470c7d16c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_continents() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-eu.md index 8498f2bdda..7ca1e985d5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_countries_eu() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-phones.md index 8fa087e920..43c80c6ac0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_countries_phones() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries.md index a635a4e0b3..a5a81c7bac 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_countries() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-currencies.md index 60e9d94df9..a5316f2bf9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_currencies() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/locale/list-languages.md b/docs/examples/1.8.x/server-ruby/examples/locale/list-languages.md index e5b9df1945..9c8655f4e4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-ruby/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new locale = Locale.new(client) result = locale.list_languages() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-apns-provider.md index a280340847..0d4534feee 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.create_apns_provider( sandbox: false, # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-email.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-email.md index 573a5b83d4..c960655a83 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -23,3 +24,4 @@ result = messaging.create_email( html: false, # optional scheduled_at: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-fcm-provider.md index a1e8b67b51..2ff771b6c7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = messaging.create_fcm_provider( service_account_json: {}, # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-mailgun-provider.md index aa5b7f1899..3e6261dc88 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -21,3 +22,4 @@ result = messaging.create_mailgun_provider( reply_to_email: 'email@example.com', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-msg-91-provider.md index 35a192f148..2553f1c1c4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.create_msg91_provider( auth_key: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-push.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-push.md index 547c179d68..e2e6c97992 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -31,3 +32,4 @@ result = messaging.create_push( critical: false, # optional priority: MessagePriority::NORMAL # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-resend-provider.md index 73c969b638..417142fe7f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.create_resend_provider( reply_to_email: 'email@example.com', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-sendgrid-provider.md index eae3ad3ece..d57c79f177 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.create_sendgrid_provider( reply_to_email: 'email@example.com', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-sms.md index 901ec40c05..00e3ec9eef 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = messaging.create_sms( draft: false, # optional scheduled_at: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-smtp-provider.md index c33f772a7d..f3fd75d992 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -26,3 +27,4 @@ result = messaging.create_smtp_provider( reply_to_email: 'email@example.com', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-subscriber.md index 1f6fa43736..2038711f2d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.create_subscriber( subscriber_id: '', target_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-telesign-provider.md index b26d9d2784..49e43a7c02 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.create_telesign_provider( api_key: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-textmagic-provider.md index 4fd1a3683e..ff7b9116e5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.create_textmagic_provider( api_key: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-topic.md index da2cf5e57b..85cc5d76bc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.create_topic( name: '', subscribe: ["any"] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-twilio-provider.md index a945602646..fa86a83542 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.create_twilio_provider( auth_token: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/create-vonage-provider.md index 5a5f6eb72b..f3fa1beb89 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.create_vonage_provider( api_secret: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-provider.md index 3c19e1ba0f..67273651ba 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.delete_provider( provider_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-subscriber.md index a82e5e94c2..11b31bac94 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = messaging.delete_subscriber( topic_id: '', subscriber_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-topic.md index cb58ee5c6c..fb1c138401 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.delete_topic( topic_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/delete.md b/docs/examples/1.8.x/server-ruby/examples/messaging/delete.md index e3db26127d..0e238dee85 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.delete( message_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/get-message.md b/docs/examples/1.8.x/server-ruby/examples/messaging/get-message.md index f5449a0be4..ae854c3c54 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.get_message( message_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/get-provider.md index ddb28da4de..b66144fc97 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.get_provider( provider_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-ruby/examples/messaging/get-subscriber.md index 3c7d05334e..800f60c1c3 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = messaging.get_subscriber( topic_id: '', subscriber_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-ruby/examples/messaging/get-topic.md index 9ff732fc26..c34d6e05d1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ messaging = Messaging.new(client) result = messaging.get_topic( topic_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-message-logs.md index a0f1f38ca7..3a55506d5a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_message_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-messages.md index 5e9b9f15d9..250e57fa58 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_messages( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-provider-logs.md index fe01a712ff..8696e4a5b0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_provider_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-providers.md index 12074736d7..4faa0bd6ed 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_providers( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscriber-logs.md index 492e0d979b..1db126a6cc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_subscriber_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscribers.md index 75182c14df..ac594e86a0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = messaging.list_subscribers( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-targets.md index 6b4473e7e9..ea2ad4a82e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_targets( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-topic-logs.md index a22976f43d..c752904199 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_topic_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-ruby/examples/messaging/list-topics.md index 4e60a73e70..8778e95e70 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.list_topics( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-apns-provider.md index b19704aaed..2ef7cc6258 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.update_apns_provider( bundle_id: '', # optional sandbox: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-email.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-email.md index aa3593292f..24cc136ad0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -23,3 +24,4 @@ result = messaging.update_email( scheduled_at: '', # optional attachments: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-fcm-provider.md index 44ea0d28de..003d016d32 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = messaging.update_fcm_provider( enabled: false, # optional service_account_json: {} # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-mailgun-provider.md index a2e53190d7..d09607a123 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -21,3 +22,4 @@ result = messaging.update_mailgun_provider( reply_to_name: '', # optional reply_to_email: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-msg-91-provider.md index 0e88382850..d091ee2973 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.update_msg91_provider( sender_id: '', # optional auth_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-push.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-push.md index b365069ad0..9f522cadb7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -31,3 +32,4 @@ result = messaging.update_push( critical: false, # optional priority: MessagePriority::NORMAL # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-resend-provider.md index cb72b5c7de..bafa99c983 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.update_resend_provider( reply_to_name: '', # optional reply_to_email: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-sendgrid-provider.md index 99f1a9c7f1..f18e9ebeb6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = messaging.update_sendgrid_provider( reply_to_name: '', # optional reply_to_email: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-sms.md index b31480c1a0..55cfb5de9f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = messaging.update_sms( draft: false, # optional scheduled_at: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-smtp-provider.md index ab0e1b45cf..3c810609b5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -26,3 +27,4 @@ result = messaging.update_smtp_provider( reply_to_email: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-telesign-provider.md index 4f1bf6ff5b..25dc144c69 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.update_telesign_provider( api_key: '', # optional from: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-textmagic-provider.md index c8cd2f0daf..5f41c6ac35 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.update_textmagic_provider( api_key: '', # optional from: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-topic.md index d20d945385..af1ed82fbf 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = messaging.update_topic( name: '', # optional subscribe: ["any"] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-twilio-provider.md index 0f6a6761e1..952d185b05 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.update_twilio_provider( auth_token: '', # optional from: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-ruby/examples/messaging/update-vonage-provider.md index e75bfbd98e..3fb4558c1c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-ruby/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = messaging.update_vonage_provider( api_secret: '', # optional from: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/create-deployment.md index b392b8679a..ab971341c3 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = sites.create_deployment( build_command: '', # optional output_directory: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/create-duplicate-deployment.md index f72b7a641b..b0d11d2140 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.create_duplicate_deployment( site_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/create-template-deployment.md index 4fb81779fe..81a92c474a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = sites.create_template_deployment( reference: '', activate: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create-variable.md b/docs/examples/1.8.x/server-ruby/examples/sites/create-variable.md index 4d2031f8ea..36182dd5b2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = sites.create_variable( value: '', secret: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/create-vcs-deployment.md index e0a6ff3af0..bdda14c105 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = sites.create_vcs_deployment( reference: '', activate: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/create.md b/docs/examples/1.8.x/server-ruby/examples/sites/create.md index 7dc004cd71..8177d7d7fd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -30,3 +31,4 @@ result = sites.create( provider_root_directory: '', # optional specification: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/delete-deployment.md index 6f96e05023..3c381a41ae 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.delete_deployment( site_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/delete-log.md b/docs/examples/1.8.x/server-ruby/examples/sites/delete-log.md index 556f3e2855..65f5f67a32 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.delete_log( site_id: '', log_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-ruby/examples/sites/delete-variable.md index ca5e51b2b9..a841882dbe 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.delete_variable( site_id: '', variable_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/delete.md b/docs/examples/1.8.x/server-ruby/examples/sites/delete.md index e92d6428e1..55011140fa 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ sites = Sites.new(client) result = sites.delete( site_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment-download.md index c82ab98879..0fe19a3c4b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = sites.get_deployment_download( deployment_id: '', type: DeploymentDownloadType::SOURCE # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment.md index 79f47e4aad..585e8724b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.get_deployment( site_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/get-log.md b/docs/examples/1.8.x/server-ruby/examples/sites/get-log.md index 2e5e8c2d4c..2b02488a1f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.get_log( site_id: '', log_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/get-variable.md b/docs/examples/1.8.x/server-ruby/examples/sites/get-variable.md index ac27efcd50..ab2862656c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.get_variable( site_id: '', variable_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/get.md b/docs/examples/1.8.x/server-ruby/examples/sites/get.md index a8d3aac1b4..b2005fb80d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ sites = Sites.new(client) result = sites.get( site_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-ruby/examples/sites/list-deployments.md index d673f4a0ad..11a0b002e4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = sites.list_deployments( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-ruby/examples/sites/list-frameworks.md index 61f18fbf6f..a33303a278 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new sites = Sites.new(client) result = sites.list_frameworks() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list-logs.md b/docs/examples/1.8.x/server-ruby/examples/sites/list-logs.md index 9cba113f90..e02b3536d3 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = sites.list_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-ruby/examples/sites/list-specifications.md index 42f41157fb..132a6e9c09 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -10,3 +11,4 @@ client = Client.new sites = Sites.new(client) result = sites.list_specifications() +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list-variables.md b/docs/examples/1.8.x/server-ruby/examples/sites/list-variables.md index cf10fa4628..68ffe6fb72 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ sites = Sites.new(client) result = sites.list_variables( site_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/list.md b/docs/examples/1.8.x/server-ruby/examples/sites/list.md index f25201ebd6..aa32f1baae 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = sites.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-ruby/examples/sites/update-deployment-status.md index 859ad22b61..d3f2ff9edd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.update_deployment_status( site_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-ruby/examples/sites/update-site-deployment.md index bc033e931e..f524535160 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = sites.update_site_deployment( site_id: '', deployment_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/update-variable.md b/docs/examples/1.8.x/server-ruby/examples/sites/update-variable.md index e61f129573..34719733aa 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = sites.update_variable( value: '', # optional secret: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/sites/update.md b/docs/examples/1.8.x/server-ruby/examples/sites/update.md index 0d73293124..de544d4491 100644 --- a/docs/examples/1.8.x/server-ruby/examples/sites/update.md +++ b/docs/examples/1.8.x/server-ruby/examples/sites/update.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -30,3 +31,4 @@ result = sites.update( provider_root_directory: '', # optional specification: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-ruby/examples/storage/create-bucket.md index f6899ef3a3..47287c4ae4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = storage.create_bucket( antivirus: false, # optional transformations: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/create-file.md b/docs/examples/1.8.x/server-ruby/examples/storage/create-file.md index 8e045da3d6..0e03b082e1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = storage.create_file( file: InputFile.from_path('dir/file.png'), permissions: [Permission.read(Role.any())] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-ruby/examples/storage/delete-bucket.md index dda3264e66..5ff3c4bcf6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ storage = Storage.new(client) result = storage.delete_bucket( bucket_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/delete-file.md b/docs/examples/1.8.x/server-ruby/examples/storage/delete-file.md index eef058857c..1175afbb3c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = storage.delete_file( bucket_id: '', file_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-ruby/examples/storage/get-bucket.md index 7c8580dcaf..7a401b8c40 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ storage = Storage.new(client) result = storage.get_bucket( bucket_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-download.md index 7b7075184a..33324990c5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = storage.get_file_download( file_id: '', token: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-preview.md index 4b154c772d..8db54e0153 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -26,3 +27,4 @@ result = storage.get_file_preview( output: ImageFormat::JPG, # optional token: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-view.md index c9e9952f05..ed3e898e1e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = storage.get_file_view( file_id: '', token: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/get-file.md b/docs/examples/1.8.x/server-ruby/examples/storage/get-file.md index b816bdba02..dbcfcb6a87 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = storage.get_file( bucket_id: '', file_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-ruby/examples/storage/list-buckets.md index a73443f71c..712d4ed08d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = storage.list_buckets( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/list-files.md b/docs/examples/1.8.x/server-ruby/examples/storage/list-files.md index 0223e51512..0247abb246 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = storage.list_files( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-ruby/examples/storage/update-bucket.md index 84c50ef814..8c6c1962fc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = storage.update_bucket( antivirus: false, # optional transformations: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/storage/update-file.md b/docs/examples/1.8.x/server-ruby/examples/storage/update-file.md index 4aeb1c777b..f7fa781658 100644 --- a/docs/examples/1.8.x/server-ruby/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-ruby/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = storage.update_file( name: '', # optional permissions: [Permission.read(Role.any())] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-boolean-column.md index 99dfb41271..4b7f65f3d8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_boolean_column( default: false, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-datetime-column.md index f53b5ef3c6..1a53efc8d6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_datetime_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-email-column.md index 0a1ea924a6..cd63c78027 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_email_column( default: 'email@example.com', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-enum-column.md index 0586dd8c58..e04eb0d860 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.create_enum_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-float-column.md index 88a0384ceb..cc3bf78738 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.create_float_column( default: null, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-index.md index 6cbf094857..d453b2acdb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.create_index( orders: [OrderBy::ASC], # optional lengths: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-integer-column.md index 4b9690eb96..347c1e0072 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.create_integer_column( default: null, # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-ip-column.md index 1e32122706..5b0608c135 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_ip_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-line-column.md index ec2352e65a..96e4d471ea 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = tables_db.create_line_column( required: false, default: [[1, 2], [3, 4], [5, 6]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-longtext-column.md index 080d3936d9..4d0eca6c99 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_longtext_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-mediumtext-column.md index 8e67af2be2..89021590f7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_mediumtext_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-operations.md index dfc7180990..576e9f224c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -23,3 +24,4 @@ result = tables_db.create_operations( } ] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-point-column.md index bfe77a54d0..8eeec983a2 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = tables_db.create_point_column( required: false, default: [1, 2] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-polygon-column.md index 40ac70e78c..ab659f5cf6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = tables_db.create_polygon_column( required: false, default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-relationship-column.md index 1c5a935e68..d2ca56fcf1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -20,3 +21,4 @@ result = tables_db.create_relationship_column( two_way_key: '', # optional on_delete: RelationMutate::CASCADE # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-row.md index a67b821067..60aa4e9dad 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = tables_db.create_row( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-rows.md index 76ee28699a..2fc8a2b16f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.create_rows( rows: [], transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-string-column.md index 8167289d30..11782e0677 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.create_string_column( array: false, # optional encrypt: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-table.md index ba09b9dfc0..d89b2be598 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -21,3 +22,4 @@ result = tables_db.create_table( columns: [], # optional indexes: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-text-column.md index 21100cc5f6..adc935e530 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_text_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-transaction.md index e3525afa19..61d6077cfd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.create_transaction( ttl: 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-url-column.md index fc2159faf1..385a830df8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.create_url_column( default: 'https://example.com', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-varchar-column.md index 8699da747b..033fb51e0d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.create_varchar_column( default: '', # optional array: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create.md index 76346f5833..4eba90afb7 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.create( name: '', enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/decrement-row-column.md index 62b01977b1..ff196104ed 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.decrement_row_column( min: null, # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-column.md index d9d9c2f0e9..0d056da10a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.delete_column( table_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-index.md index 5998633cc5..cb46c80434 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.delete_index( table_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-row.md index 9747cb938a..a6074a4f19 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.delete_row( row_id: '', transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-rows.md index cf95cfb229..69ab29e8a6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.delete_rows( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-table.md index 2c955aed29..30c7587c02 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = tables_db.delete_table( database_id: '', table_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-transaction.md index 8fa7b3b8ac..336fabba52 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.delete_transaction( transaction_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete.md index 3c4371c7fa..92cb3b59f6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.delete( database_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-column.md index b231f2d91b..65360e193e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.get_column( table_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-index.md index eb010e7111..4404234dd6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.get_index( table_id: '', key: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-row.md index bdc1cf5fe6..f16225a2bc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = tables_db.get_row( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-table.md index 35843569f8..9c464793fb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = tables_db.get_table( database_id: '', table_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-transaction.md index ce8468ba3f..a9cd7d2f30 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.get_transaction( transaction_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get.md index e8067bc0e3..b45c2ca054 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.get( database_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/increment-row-column.md index a20d2f5b36..20af30ab7d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.increment_row_column( max: null, # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-columns.md index bc6e10c8e3..0214923edf 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.list_columns( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-indexes.md index 9e03d7a08c..1a2a19d852 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.list_indexes( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-rows.md index 771894a992..3c0c6c6712 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = tables_db.list_rows( transaction_id: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-tables.md index 49205b29e3..9517913cc5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.list_tables( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-transactions.md index e969bc9965..f8800dd782 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tables_db = TablesDB.new(client) result = tables_db.list_transactions( queries: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list.md index 1531ab29d7..d9b52f2503 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-boolean-column.md index d048d76410..ef93584005 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_boolean_column( default: false, new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-datetime-column.md index 13bad26f00..47cb2f855c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_datetime_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-email-column.md index e5c97a5d10..1eda71c58c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_email_column( default: 'email@example.com', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-enum-column.md index 4ae45749c4..0a25c964bd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.update_enum_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-float-column.md index 5eb175fe6a..588ad1de32 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.update_float_column( max: null, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-integer-column.md index e32e1d4348..28d143973e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.update_integer_column( max: null, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-ip-column.md index aae8ce9dc6..097a3a27fb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_ip_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-line-column.md index 5c1e24d16e..f6ca84c921 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_line_column( default: [[1, 2], [3, 4], [5, 6]], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-longtext-column.md index 0fe87ae163..1e7e027c3a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_longtext_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-mediumtext-column.md index b9ab3e50e4..507e4bc332 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_mediumtext_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-point-column.md index f2130bda64..1abaabcd47 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_point_column( default: [1, 2], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-polygon-column.md index 6b878e3e18..47d452b6a5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_polygon_column( default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-relationship-column.md index 81de2d7897..289d675e51 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_relationship_column( on_delete: RelationMutate::CASCADE, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-row.md index 16e8accc24..e801cb2403 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = tables_db.update_row( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-rows.md index c82754d587..0eb800bd39 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -22,3 +23,4 @@ result = tables_db.update_rows( queries: [], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-string-column.md index 331ce88ad9..ae5edad2b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.update_string_column( size: 1, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-table.md index d7cb30f593..d287db3e56 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = tables_db.update_table( row_security: false, # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-text-column.md index ef189a2a08..b3d21cb594 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_text_column( default: '', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-transaction.md index 2b8b3e7999..057bff9ffc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.update_transaction( commit: false, # optional rollback: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-url-column.md index 03034e9c07..dfe2bd5472 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = tables_db.update_url_column( default: 'https://example.com', new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-varchar-column.md index fcf83376ab..223a681984 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = tables_db.update_varchar_column( size: 1, # optional new_key: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update.md index f054b249e8..28377a61da 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tables_db.update( name: '', # optional enabled: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-row.md index 11210f39d4..7802e672fa 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -25,3 +26,4 @@ result = tables_db.upsert_row( permissions: [Permission.read(Role.any())], # optional transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-rows.md index e38f534ea9..d450971f9c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-ruby/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tables_db.upsert_rows( rows: [], transaction_id: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/create-membership.md b/docs/examples/1.8.x/server-ruby/examples/teams/create-membership.md index f46b9d5831..6d608c607e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -19,3 +20,4 @@ result = teams.create_membership( url: 'https://example.com', # optional name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/create.md b/docs/examples/1.8.x/server-ruby/examples/teams/create.md index ba71a1dfc4..4cec586c5a 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = teams.create( name: '', roles: [] # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-ruby/examples/teams/delete-membership.md index 5d815a8ca3..a53369d0d1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = teams.delete_membership( team_id: '', membership_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/delete.md b/docs/examples/1.8.x/server-ruby/examples/teams/delete.md index c9f7c400e9..926087d69d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ teams = Teams.new(client) result = teams.delete( team_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/get-membership.md b/docs/examples/1.8.x/server-ruby/examples/teams/get-membership.md index 41a2c7bfb4..1e4ac11696 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = teams.get_membership( team_id: '', membership_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-ruby/examples/teams/get-prefs.md index e6b2cfadce..13f9394d4e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ teams = Teams.new(client) result = teams.get_prefs( team_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/get.md b/docs/examples/1.8.x/server-ruby/examples/teams/get.md index af51193cd3..46c30add26 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ teams = Teams.new(client) result = teams.get( team_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-ruby/examples/teams/list-memberships.md index b8d947c2a8..af1145cb50 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = teams.list_memberships( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/list.md b/docs/examples/1.8.x/server-ruby/examples/teams/list.md index 863162cb54..dcebb72dbe 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = teams.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-ruby/examples/teams/update-membership-status.md index 40d82b86f1..4762f5aa62 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = teams.update_membership_status( user_id: '', secret: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/update-membership.md b/docs/examples/1.8.x/server-ruby/examples/teams/update-membership.md index 2c355c0e24..0970fbaec9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = teams.update_membership( membership_id: '', roles: [Roles::ADMIN] ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/update-name.md b/docs/examples/1.8.x/server-ruby/examples/teams/update-name.md index 74f785c4ca..7c2fda6312 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = teams.update_name( team_id: '', name: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-ruby/examples/teams/update-prefs.md index 03426aa3b9..4410e91a6f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = teams.update_prefs( team_id: '', prefs: {} ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-ruby/examples/tokens/create-file-token.md index 8c432c5255..a11d622dad 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = tokens.create_file_token( file_id: '', expire: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tokens/delete.md b/docs/examples/1.8.x/server-ruby/examples/tokens/delete.md index cb59147f42..c17c4f4525 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tokens = Tokens.new(client) result = tokens.delete( token_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tokens/get.md b/docs/examples/1.8.x/server-ruby/examples/tokens/get.md index ef87c74294..b4342f6607 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/tokens/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ tokens = Tokens.new(client) result = tokens.get( token_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tokens/list.md b/docs/examples/1.8.x/server-ruby/examples/tokens/list.md index a9288286d5..c407e970cb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/tokens/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = tokens.list( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/tokens/update.md b/docs/examples/1.8.x/server-ruby/examples/tokens/update.md index 91713730fb..8875a1e50b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-ruby/examples/tokens/update.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = tokens.update( token_id: '', expire: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-argon-2-user.md index 8da9e0b1ff..26ad7f2242 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = users.create_argon2_user( password: 'password', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-bcrypt-user.md index 7c2b852d69..9e3fd9bab0 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = users.create_bcrypt_user( password: 'password', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-jwt.md b/docs/examples/1.8.x/server-ruby/examples/users/create-jwt.md index 57f7f1d32f..7df95fb7bc 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.create_jwt( session_id: '', # optional duration: 0 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-md-5-user.md index 63fb68742e..8ad1535fe1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = users.create_md5_user( password: 'password', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/users/create-mfa-recovery-codes.md index 0cdea46af3..e2763ebfd9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.create_mfa_recovery_codes( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-ph-pass-user.md index 7cd898a6fc..c4e1b541a8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = users.create_ph_pass_user( password: 'password', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-modified-user.md index d84c2eed48..42138bd7fb 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = users.create_scrypt_modified_user( password_signer_key: '', name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-user.md index 53aa253d2a..91a200c120 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -20,3 +21,4 @@ result = users.create_scrypt_user( password_length: null, name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-session.md b/docs/examples/1.8.x/server-ruby/examples/users/create-session.md index 32d2b5f2ad..e44a0d845c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.create_session( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-ruby/examples/users/create-sha-user.md index d19db05324..6dbdece85e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -17,3 +18,4 @@ result = users.create_sha_user( password_version: PasswordHash::SHA1, # optional name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-target.md b/docs/examples/1.8.x/server-ruby/examples/users/create-target.md index 3e87868df6..624b56f9d1 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-target.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -18,3 +19,4 @@ result = users.create_target( provider_id: '', # optional name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create-token.md b/docs/examples/1.8.x/server-ruby/examples/users/create-token.md index 85e5f448ca..fbcbc6eeb6 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create-token.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.create_token( length: 4, # optional expire: 60 # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/create.md b/docs/examples/1.8.x/server-ruby/examples/users/create.md index 4f57adeb87..06e3088903 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/create.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/create.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = users.create( password: '', # optional name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete-identity.md b/docs/examples/1.8.x/server-ruby/examples/users/delete-identity.md index d2482dfae1..36625931b9 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.delete_identity( identity_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-ruby/examples/users/delete-mfa-authenticator.md index 50fcb0fa0d..94af17b8ba 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.delete_mfa_authenticator( user_id: '', type: AuthenticatorType::TOTP ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete-session.md b/docs/examples/1.8.x/server-ruby/examples/users/delete-session.md index 9b14cc4fa3..e4f55cf0f5 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.delete_session( user_id: '', session_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-ruby/examples/users/delete-sessions.md index 23fd505763..578366c544 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.delete_sessions( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete-target.md b/docs/examples/1.8.x/server-ruby/examples/users/delete-target.md index f1564024db..08b7744875 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.delete_target( user_id: '', target_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/delete.md b/docs/examples/1.8.x/server-ruby/examples/users/delete.md index db7f2ee6f8..600fe77294 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/delete.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/delete.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.delete( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/users/get-mfa-recovery-codes.md index f984517d26..92e1722918 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.get_mfa_recovery_codes( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/get-prefs.md b/docs/examples/1.8.x/server-ruby/examples/users/get-prefs.md index 0118b39897..58271f0e07 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.get_prefs( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/get-target.md b/docs/examples/1.8.x/server-ruby/examples/users/get-target.md index 10ce49b229..d7d8a09763 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/get-target.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.get_target( user_id: '', target_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/get.md b/docs/examples/1.8.x/server-ruby/examples/users/get.md index 95865b7e6c..b54a2a685e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/get.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/get.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.get( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-identities.md b/docs/examples/1.8.x/server-ruby/examples/users/list-identities.md index 3f147d703b..cbfdaa4fbf 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.list_identities( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-logs.md b/docs/examples/1.8.x/server-ruby/examples/users/list-logs.md index a33f8fe121..dd9809e319 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.list_logs( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-memberships.md b/docs/examples/1.8.x/server-ruby/examples/users/list-memberships.md index 0ca37bfc43..15f3bb8172 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -15,3 +16,4 @@ result = users.list_memberships( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-ruby/examples/users/list-mfa-factors.md index ca1e2b2b96..ac66333fd8 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.list_mfa_factors( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-sessions.md b/docs/examples/1.8.x/server-ruby/examples/users/list-sessions.md index 695d99bea4..f32fb11849 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.list_sessions( user_id: '', total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list-targets.md b/docs/examples/1.8.x/server-ruby/examples/users/list-targets.md index 4034d72ab4..ac582c3be4 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.list_targets( queries: [], # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/list.md b/docs/examples/1.8.x/server-ruby/examples/users/list.md index 63c317a7c5..e3ee048e60 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/list.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/list.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -14,3 +15,4 @@ result = users.list( search: '', # optional total: false # optional ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-ruby/examples/users/update-email-verification.md index 07f85f0318..32bd4dcb34 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_email_verification( user_id: '', email_verification: false ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-email.md b/docs/examples/1.8.x/server-ruby/examples/users/update-email.md index b36aac59d1..0d8e7d461e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-email.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_email( user_id: '', email: 'email@example.com' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-labels.md b/docs/examples/1.8.x/server-ruby/examples/users/update-labels.md index a62d34b2e2..0110cb9e50 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_labels( user_id: '', labels: [] ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-ruby/examples/users/update-mfa-recovery-codes.md index aaf5ba16c0..ca2a9adf7e 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -12,3 +13,4 @@ users = Users.new(client) result = users.update_mfa_recovery_codes( user_id: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-mfa.md b/docs/examples/1.8.x/server-ruby/examples/users/update-mfa.md index 3ebfb96116..d46a61334f 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_mfa( user_id: '', mfa: false ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-name.md b/docs/examples/1.8.x/server-ruby/examples/users/update-name.md index e7ade96e32..79bd5c2d87 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-name.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_name( user_id: '', name: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-password.md b/docs/examples/1.8.x/server-ruby/examples/users/update-password.md index 47c1f1ef49..b7779e6385 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-password.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_password( user_id: '', password: '' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-ruby/examples/users/update-phone-verification.md index 6af7fcb638..0dfed2c86b 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_phone_verification( user_id: '', phone_verification: false ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-phone.md b/docs/examples/1.8.x/server-ruby/examples/users/update-phone.md index bd26547daa..2788ed0716 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_phone( user_id: '', number: '+12065550100' ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-prefs.md b/docs/examples/1.8.x/server-ruby/examples/users/update-prefs.md index fbdccd7d23..452fe9aa2c 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_prefs( user_id: '', prefs: {} ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-status.md b/docs/examples/1.8.x/server-ruby/examples/users/update-status.md index d73982c149..75b7f375bd 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-status.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -13,3 +14,4 @@ result = users.update_status( user_id: '', status: false ) +``` diff --git a/docs/examples/1.8.x/server-ruby/examples/users/update-target.md b/docs/examples/1.8.x/server-ruby/examples/users/update-target.md index dbcd1bd2f4..9c4c1c091d 100644 --- a/docs/examples/1.8.x/server-ruby/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-ruby/examples/users/update-target.md @@ -1,3 +1,4 @@ +```ruby require 'appwrite' include Appwrite @@ -16,3 +17,4 @@ result = users.update_target( provider_id: '', # optional name: '' # optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-anonymous-session.md b/docs/examples/1.8.x/server-swift/examples/account/create-anonymous-session.md index f66db94e52..a47dc0f549 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-anonymous-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-anonymous-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let session = try await account.createAnonymousSession() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-email-password-session.md b/docs/examples/1.8.x/server-swift/examples/account/create-email-password-session.md index fe383fc1d6..d3a5acf12e 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-email-password-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-email-password-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let session = try await account.createEmailPasswordSession( password: "password" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-email-token.md b/docs/examples/1.8.x/server-swift/examples/account/create-email-token.md index 5ee5fa63b8..179c7e808c 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-email-token.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-email-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let token = try await account.createEmailToken( phrase: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-email-verification.md b/docs/examples/1.8.x/server-swift/examples/account/create-email-verification.md index 788fd9585a..c7ea6491d9 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-email-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-email-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.createEmailVerification( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-jwt.md b/docs/examples/1.8.x/server-swift/examples/account/create-jwt.md index 5490c93899..a24f912e83 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-jwt.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-jwt.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let jwt = try await account.createJWT( duration: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-magic-url-token.md b/docs/examples/1.8.x/server-swift/examples/account/create-magic-url-token.md index d1df7a17f1..fb168c7e58 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-magic-url-token.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-magic-url-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let token = try await account.createMagicURLToken( phrase: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-authenticator.md b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-authenticator.md index dd3a7d1201..6a8d37ebe9 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -12,3 +13,4 @@ let mfaType = try await account.createMFAAuthenticator( type: .totp ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-challenge.md b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-challenge.md index 2703d0a836..d6a19b858c 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-challenge.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-challenge.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -12,3 +13,4 @@ let mfaChallenge = try await account.createMFAChallenge( factor: .email ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-recovery-codes.md index 3595cdae31..9c31470025 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.createMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-o-auth-2-token.md b/docs/examples/1.8.x/server-swift/examples/account/create-o-auth-2-token.md index 396fdce2cc..b338208937 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-o-auth-2-token.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-o-auth-2-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let success = try await account.createOAuth2Token( scopes: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-phone-token.md b/docs/examples/1.8.x/server-swift/examples/account/create-phone-token.md index 20c7173a3f..9d43ba6747 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-phone-token.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-phone-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.createPhoneToken( phone: "+12065550100" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-phone-verification.md b/docs/examples/1.8.x/server-swift/examples/account/create-phone-verification.md index cba0637648..87973f65d8 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-phone-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-phone-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let token = try await account.createPhoneVerification() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-recovery.md b/docs/examples/1.8.x/server-swift/examples/account/create-recovery.md index d89f679e0c..6f88360ff2 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-recovery.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-recovery.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.createRecovery( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-session.md b/docs/examples/1.8.x/server-swift/examples/account/create-session.md index 6cf206d6f7..4d64f2fd12 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let session = try await account.createSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create-verification.md b/docs/examples/1.8.x/server-swift/examples/account/create-verification.md index 71e9bdd32b..deb8a0b526 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let token = try await account.createVerification( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/create.md b/docs/examples/1.8.x/server-swift/examples/account/create.md index 8740f9b357..7331f6b21e 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/create.md +++ b/docs/examples/1.8.x/server-swift/examples/account/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await account.create( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/delete-identity.md b/docs/examples/1.8.x/server-swift/examples/account/delete-identity.md index f0f14b37d2..87827cd1f3 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/delete-identity.md +++ b/docs/examples/1.8.x/server-swift/examples/account/delete-identity.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await account.deleteIdentity( identityId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-swift/examples/account/delete-mfa-authenticator.md index 5a85cdcad5..3d002f5a29 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-swift/examples/account/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -12,3 +13,4 @@ let result = try await account.deleteMFAAuthenticator( type: .totp ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/delete-session.md b/docs/examples/1.8.x/server-swift/examples/account/delete-session.md index 2469620116..e1523301c7 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/delete-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/delete-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await account.deleteSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/delete-sessions.md b/docs/examples/1.8.x/server-swift/examples/account/delete-sessions.md index da8ac6dfe8..23d87c6940 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/delete-sessions.md +++ b/docs/examples/1.8.x/server-swift/examples/account/delete-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let result = try await account.deleteSessions() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/account/get-mfa-recovery-codes.md index 86c435d2cb..812a074ade 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/account/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.getMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/get-prefs.md b/docs/examples/1.8.x/server-swift/examples/account/get-prefs.md index 6551df92e6..c2c23ea168 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/get-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/account/get-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let preferences = try await account.getPrefs() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/get-session.md b/docs/examples/1.8.x/server-swift/examples/account/get-session.md index 63efb3f098..2d8eeeb201 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/get-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/get-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.getSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/get.md b/docs/examples/1.8.x/server-swift/examples/account/get.md index 833901b5b4..4ef00b6eb7 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/get.md +++ b/docs/examples/1.8.x/server-swift/examples/account/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let user = try await account.get() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/list-identities.md b/docs/examples/1.8.x/server-swift/examples/account/list-identities.md index 89ed893ecf..ed5b857500 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/list-identities.md +++ b/docs/examples/1.8.x/server-swift/examples/account/list-identities.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let identityList = try await account.listIdentities( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/list-logs.md b/docs/examples/1.8.x/server-swift/examples/account/list-logs.md index e5f993c209..f9d3a38235 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/list-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/account/list-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let logList = try await account.listLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/list-mfa-factors.md b/docs/examples/1.8.x/server-swift/examples/account/list-mfa-factors.md index be41b2b2ff..996528898e 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-swift/examples/account/list-mfa-factors.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let mfaFactors = try await account.listMFAFactors() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/list-sessions.md b/docs/examples/1.8.x/server-swift/examples/account/list-sessions.md index 49691b3a9e..7e263e7d27 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/list-sessions.md +++ b/docs/examples/1.8.x/server-swift/examples/account/list-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let sessionList = try await account.listSessions() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-email-verification.md b/docs/examples/1.8.x/server-swift/examples/account/update-email-verification.md index 10c8afe901..8822d0cdad 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-email-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-email-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.updateEmailVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-email.md b/docs/examples/1.8.x/server-swift/examples/account/update-email.md index 48cce5055d..df903fe293 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-email.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-email.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await account.updateEmail( password: "password" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-magic-url-session.md b/docs/examples/1.8.x/server-swift/examples/account/update-magic-url-session.md index 4bfe518e55..5bc71b01cd 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-magic-url-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-magic-url-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let session = try await account.updateMagicURLSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-authenticator.md b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-authenticator.md index 79f408e1d4..4c156a2ca1 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -13,3 +14,4 @@ let user = try await account.updateMFAAuthenticator( otp: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-challenge.md b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-challenge.md index c595f1ebc0..9ee045d036 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-challenge.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-challenge.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let session = try await account.updateMFAChallenge( otp: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-recovery-codes.md index ee6f9acb39..fabf3ff021 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let mfaRecoveryCodes = try await account.updateMFARecoveryCodes() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-mfa.md b/docs/examples/1.8.x/server-swift/examples/account/update-mfa.md index ac486fceb6..a989d4aa81 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-mfa.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-mfa.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await account.updateMFA( mfa: false ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-name.md b/docs/examples/1.8.x/server-swift/examples/account/update-name.md index 2c676d8714..eaa7cd1f80 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-name.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-name.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await account.updateName( name: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-password.md b/docs/examples/1.8.x/server-swift/examples/account/update-password.md index 62fe48e6e9..e4468d523e 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-password.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-password.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await account.updatePassword( oldPassword: "password" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-phone-session.md b/docs/examples/1.8.x/server-swift/examples/account/update-phone-session.md index 80945ffcf7..90bade4767 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-phone-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-phone-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let session = try await account.updatePhoneSession( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-phone-verification.md b/docs/examples/1.8.x/server-swift/examples/account/update-phone-verification.md index a983e79c3c..66a3428af5 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-phone-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-phone-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.updatePhoneVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-phone.md b/docs/examples/1.8.x/server-swift/examples/account/update-phone.md index 6dd87a0ce5..d89e962751 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-phone.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-phone.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await account.updatePhone( password: "password" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-prefs.md b/docs/examples/1.8.x/server-swift/examples/account/update-prefs.md index cc7b5e6860..b6e9f9cc4e 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let user = try await account.updatePrefs( ] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-recovery.md b/docs/examples/1.8.x/server-swift/examples/account/update-recovery.md index d655edfe59..023c5a2912 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-recovery.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-recovery.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let token = try await account.updateRecovery( password: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-session.md b/docs/examples/1.8.x/server-swift/examples/account/update-session.md index f2f4f7b737..62af972c83 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-session.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await account.updateSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-status.md b/docs/examples/1.8.x/server-swift/examples/account/update-status.md index 88e30cfb09..8b779636c7 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-status.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let account = Account(client) let user = try await account.updateStatus() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/account/update-verification.md b/docs/examples/1.8.x/server-swift/examples/account/update-verification.md index 61bc18cc48..68e1fb7725 100644 --- a/docs/examples/1.8.x/server-swift/examples/account/update-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/account/update-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let token = try await account.updateVerification( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-browser.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-browser.md index 1c105c280c..324540b47b 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-browser.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-browser.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let bytes = try await avatars.getBrowser( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-credit-card.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-credit-card.md index af7c2800be..45b7d4bef3 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-credit-card.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-credit-card.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let bytes = try await avatars.getCreditCard( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-favicon.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-favicon.md index 73f54fe5d3..f0945dcaf1 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-favicon.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-favicon.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let bytes = try await avatars.getFavicon( url: "https://example.com" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-flag.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-flag.md index e33cbb0c7f..d7cc8c6ab1 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-flag.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-flag.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let bytes = try await avatars.getFlag( quality: -1 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-image.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-image.md index 5455ad18f5..4f18af5a24 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-image.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-image.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bytes = try await avatars.getImage( height: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-initials.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-initials.md index 63dfa5e5ab..aa5e5e980e 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-initials.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-initials.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let bytes = try await avatars.getInitials( background: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-qr.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-qr.md index ae4cc910ab..c5bfa168e1 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-qr.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-qr.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let bytes = try await avatars.getQR( download: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/avatars/get-screenshot.md b/docs/examples/1.8.x/server-swift/examples/avatars/get-screenshot.md index fe42d0e024..d329e9527e 100644 --- a/docs/examples/1.8.x/server-swift/examples/avatars/get-screenshot.md +++ b/docs/examples/1.8.x/server-swift/examples/avatars/get-screenshot.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -34,3 +35,4 @@ let bytes = try await avatars.getScreenshot( output: .jpeg // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-boolean-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-boolean-attribute.md index 4530c385ca..9c887b1edf 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-boolean-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-boolean-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeBoolean = try await databases.createBooleanAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-collection.md b/docs/examples/1.8.x/server-swift/examples/databases/create-collection.md index 132c4fe545..6d90e7ea4c 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-collection.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-collection.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let collection = try await databases.createCollection( indexes: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-datetime-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-datetime-attribute.md index d14d0b5cab..a31364a6c7 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-datetime-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-datetime-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeDatetime = try await databases.createDatetimeAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-document.md b/docs/examples/1.8.x/server-swift/examples/databases/create-document.md index 3cb0825d63..24829794d2 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-document.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let document = try await databases.createDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-documents.md b/docs/examples/1.8.x/server-swift/examples/databases/create-documents.md index 82a75125ae..1763ab1333 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-documents.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let documentList = try await databases.createDocuments( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-email-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-email-attribute.md index 9bd30b38c9..e43f94c0ed 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-email-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-email-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeEmail = try await databases.createEmailAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-enum-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-enum-attribute.md index 08023f652b..4a6724b0ab 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-enum-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-enum-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let attributeEnum = try await databases.createEnumAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-float-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-float-attribute.md index b5126c6a50..90b72c07c0 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-float-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-float-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let attributeFloat = try await databases.createFloatAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-index.md b/docs/examples/1.8.x/server-swift/examples/databases/create-index.md index 1ded3830d5..638fc96ae0 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-index.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let index = try await databases.createIndex( lengths: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-integer-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-integer-attribute.md index 20c29cd569..dcb243242b 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-integer-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-integer-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let attributeInteger = try await databases.createIntegerAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-ip-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-ip-attribute.md index 09605ba522..c208644f13 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-ip-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-ip-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeIp = try await databases.createIpAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-line-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-line-attribute.md index 610da4dd71..f6a0a10385 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-line-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-line-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let attributeLine = try await databases.createLineAttribute( default: [[1, 2], [3, 4], [5, 6]] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-longtext-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-longtext-attribute.md index 06b1d7ceca..c7e05b7327 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-longtext-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-longtext-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeLongtext = try await databases.createLongtextAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-mediumtext-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-mediumtext-attribute.md index ba48fe35e4..6d7f7f737f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeMediumtext = try await databases.createMediumtextAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-operations.md b/docs/examples/1.8.x/server-swift/examples/databases/create-operations.md index 7cab190bd3..dd2f77333b 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-operations.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-operations.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let transaction = try await databases.createOperations( ] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-point-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-point-attribute.md index e3392e871f..047bca2d90 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-point-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-point-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let attributePoint = try await databases.createPointAttribute( default: [1, 2] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-polygon-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-polygon-attribute.md index c68543e87b..8110797a6c 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-polygon-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-polygon-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let attributePolygon = try await databases.createPolygonAttribute( default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-relationship-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-relationship-attribute.md index 8e6c3eb84b..720815423a 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-relationship-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-relationship-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -19,3 +20,4 @@ let attributeRelationship = try await databases.createRelationshipAttribute( onDelete: .cascade // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-string-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-string-attribute.md index 80c321ecdb..0719c6919f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-string-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-string-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let attributeString = try await databases.createStringAttribute( encrypt: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-text-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-text-attribute.md index f8a925fd19..a64c6f6d78 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-text-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-text-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeText = try await databases.createTextAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-transaction.md b/docs/examples/1.8.x/server-swift/examples/databases/create-transaction.md index 333632c583..993d156097 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transaction = try await databases.createTransaction( ttl: 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-url-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-url-attribute.md index efd2acbc08..b8798d6dc2 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-url-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-url-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeUrl = try await databases.createUrlAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create-varchar-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/create-varchar-attribute.md index 786f70d328..ac2107f925 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create-varchar-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create-varchar-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let attributeVarchar = try await databases.createVarcharAttribute( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/create.md b/docs/examples/1.8.x/server-swift/examples/databases/create.md index b0362bb3e8..d2ef3bb6c7 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/create.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let database = try await databases.create( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/decrement-document-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/decrement-document-attribute.md index 8c256ad208..164fad3492 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/decrement-document-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/decrement-document-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let document = try await databases.decrementDocumentAttribute( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-attribute.md index 9948555981..95ad3b67bf 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await databases.deleteAttribute( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-collection.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-collection.md index d61f0e658d..2c41909c03 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-collection.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-collection.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await databases.deleteCollection( collectionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-document.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-document.md index 9120c3d0d0..84559d0eca 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-document.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let result = try await databases.deleteDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-documents.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-documents.md index 79ec772b3b..81a24778d7 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-documents.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let documentList = try await databases.deleteDocuments( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-index.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-index.md index ecd09f7ce6..6b793eb34d 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-index.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await databases.deleteIndex( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete-transaction.md b/docs/examples/1.8.x/server-swift/examples/databases/delete-transaction.md index 8ac62ef945..220ad79b5c 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await databases.deleteTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/delete.md b/docs/examples/1.8.x/server-swift/examples/databases/delete.md index 40567e4288..162c59bd20 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await databases.delete( databaseId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/get-attribute.md index 0b010a38f9..6ed4cd1f1f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let attributeBoolean = try await databases.getAttribute( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get-collection.md b/docs/examples/1.8.x/server-swift/examples/databases/get-collection.md index 96c1fa0f94..af43c69b46 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get-collection.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get-collection.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let collection = try await databases.getCollection( collectionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get-document.md b/docs/examples/1.8.x/server-swift/examples/databases/get-document.md index 319a7ec3fb..02daf35311 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get-document.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let document = try await databases.getDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get-index.md b/docs/examples/1.8.x/server-swift/examples/databases/get-index.md index cd59074dc8..ba7f61dd38 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get-index.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let index = try await databases.getIndex( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get-transaction.md b/docs/examples/1.8.x/server-swift/examples/databases/get-transaction.md index bfabd08b78..41139294f3 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transaction = try await databases.getTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/get.md b/docs/examples/1.8.x/server-swift/examples/databases/get.md index 875929bed0..7f5817cfde 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/get.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let database = try await databases.get( databaseId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/increment-document-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/increment-document-attribute.md index 7dd8805dc0..47352fc0b4 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/increment-document-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/increment-document-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let document = try await databases.incrementDocumentAttribute( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list-attributes.md b/docs/examples/1.8.x/server-swift/examples/databases/list-attributes.md index 57b26b3759..04be770e26 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list-attributes.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list-attributes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let attributeList = try await databases.listAttributes( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list-collections.md b/docs/examples/1.8.x/server-swift/examples/databases/list-collections.md index 4fa25c20bb..961399d560 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list-collections.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list-collections.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let collectionList = try await databases.listCollections( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list-documents.md b/docs/examples/1.8.x/server-swift/examples/databases/list-documents.md index 8723fe7b5b..2d61a84378 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list-documents.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let documentList = try await databases.listDocuments( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list-indexes.md b/docs/examples/1.8.x/server-swift/examples/databases/list-indexes.md index 285e56f4d2..45c3ea543f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list-indexes.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list-indexes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let indexList = try await databases.listIndexes( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list-transactions.md b/docs/examples/1.8.x/server-swift/examples/databases/list-transactions.md index bb0d852d0a..4059ddbf32 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list-transactions.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list-transactions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transactionList = try await databases.listTransactions( queries: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/list.md b/docs/examples/1.8.x/server-swift/examples/databases/list.md index b587241511..88b98c25ac 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/list.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let databaseList = try await databases.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-boolean-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-boolean-attribute.md index 0d925056c2..f8a80776ab 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-boolean-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-boolean-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeBoolean = try await databases.updateBooleanAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-collection.md b/docs/examples/1.8.x/server-swift/examples/databases/update-collection.md index e8313dc945..87617da3bc 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-collection.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-collection.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let collection = try await databases.updateCollection( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-datetime-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-datetime-attribute.md index 906b374946..1c5852ea15 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-datetime-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-datetime-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeDatetime = try await databases.updateDatetimeAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-document.md b/docs/examples/1.8.x/server-swift/examples/databases/update-document.md index 7c23e2684f..d1e0bde063 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-document.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let document = try await databases.updateDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-documents.md b/docs/examples/1.8.x/server-swift/examples/databases/update-documents.md index 2326f5f363..7f7e641ce3 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-documents.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let documentList = try await databases.updateDocuments( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-email-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-email-attribute.md index b485712ada..370ca28daf 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-email-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-email-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeEmail = try await databases.updateEmailAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-enum-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-enum-attribute.md index 997b940c1b..7c6d40df1e 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-enum-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-enum-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let attributeEnum = try await databases.updateEnumAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-float-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-float-attribute.md index 5f3e8da4da..530679f877 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-float-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-float-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let attributeFloat = try await databases.updateFloatAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-integer-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-integer-attribute.md index edc0a12c8c..b2a9437756 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-integer-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-integer-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let attributeInteger = try await databases.updateIntegerAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-ip-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-ip-attribute.md index e08835747c..fd90e20215 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-ip-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-ip-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeIp = try await databases.updateIpAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-line-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-line-attribute.md index a9c65367aa..ffcacf270f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-line-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-line-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeLine = try await databases.updateLineAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-longtext-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-longtext-attribute.md index ed4c481565..5f4cb81d99 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-longtext-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-longtext-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeLongtext = try await databases.updateLongtextAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-mediumtext-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-mediumtext-attribute.md index dd039b009c..8ea9d42116 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-mediumtext-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-mediumtext-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeMediumtext = try await databases.updateMediumtextAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-point-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-point-attribute.md index 6fd00c5da6..6643de51c9 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-point-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-point-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributePoint = try await databases.updatePointAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-polygon-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-polygon-attribute.md index 08bbaec88e..1e8c2ded9f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-polygon-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-polygon-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributePolygon = try await databases.updatePolygonAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-relationship-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-relationship-attribute.md index 0fb06d7796..c03405f72f 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-relationship-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-relationship-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -16,3 +17,4 @@ let attributeRelationship = try await databases.updateRelationshipAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-string-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-string-attribute.md index 1eb3315dca..97227fdb2a 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-string-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-string-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let attributeString = try await databases.updateStringAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-text-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-text-attribute.md index 904c577980..2bd63379eb 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-text-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-text-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeText = try await databases.updateTextAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-transaction.md b/docs/examples/1.8.x/server-swift/examples/databases/update-transaction.md index 79f4939b5d..7212240f24 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let transaction = try await databases.updateTransaction( rollback: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-url-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-url-attribute.md index cd18f96368..dd42599b1e 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-url-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-url-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let attributeUrl = try await databases.updateUrlAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update-varchar-attribute.md b/docs/examples/1.8.x/server-swift/examples/databases/update-varchar-attribute.md index 2317d81f3e..672a5c9c84 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update-varchar-attribute.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update-varchar-attribute.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let attributeVarchar = try await databases.updateVarcharAttribute( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/update.md b/docs/examples/1.8.x/server-swift/examples/databases/update.md index 54870f9a64..f60d38ab48 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/update.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/update.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let database = try await databases.update( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/upsert-document.md b/docs/examples/1.8.x/server-swift/examples/databases/upsert-document.md index ae57ac579c..ca7363fa6a 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/upsert-document.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/upsert-document.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let document = try await databases.upsertDocument( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/databases/upsert-documents.md b/docs/examples/1.8.x/server-swift/examples/databases/upsert-documents.md index 92c5fd9810..dbcc58e5ec 100644 --- a/docs/examples/1.8.x/server-swift/examples/databases/upsert-documents.md +++ b/docs/examples/1.8.x/server-swift/examples/databases/upsert-documents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let documentList = try await databases.upsertDocuments( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/create-deployment.md index de3d14d242..b38a944058 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let deployment = try await functions.createDeployment( commands: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-duplicate-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/create-duplicate-deployment.md index cadf67aa65..4133a8adf1 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let deployment = try await functions.createDuplicateDeployment( buildId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-execution.md b/docs/examples/1.8.x/server-swift/examples/functions/create-execution.md index 46c9d69087..25c96eec92 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-execution.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-execution.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let execution = try await functions.createExecution( scheduledAt: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-template-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/create-template-deployment.md index 6a9045637c..65cba8d6b4 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-template-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-template-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let deployment = try await functions.createTemplateDeployment( activate: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-variable.md b/docs/examples/1.8.x/server-swift/examples/functions/create-variable.md index d792c678e6..5145692c5e 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let variable = try await functions.createVariable( secret: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create-vcs-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/create-vcs-deployment.md index 5586722aab..d15745b6b4 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let deployment = try await functions.createVcsDeployment( activate: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/create.md b/docs/examples/1.8.x/server-swift/examples/functions/create.md index 944419566e..553f8f8789 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/create.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -29,3 +30,4 @@ let function = try await functions.create( specification: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/delete-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/delete-deployment.md index dec7b1db8f..5aa4a29c1c 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/delete-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/delete-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await functions.deleteDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/delete-execution.md b/docs/examples/1.8.x/server-swift/examples/functions/delete-execution.md index e51b7dcd5c..3f38299de5 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/delete-execution.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/delete-execution.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await functions.deleteExecution( executionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/delete-variable.md b/docs/examples/1.8.x/server-swift/examples/functions/delete-variable.md index ea0ebab079..c62fbdb1ce 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/delete-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/delete-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await functions.deleteVariable( variableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/delete.md b/docs/examples/1.8.x/server-swift/examples/functions/delete.md index 76bb48cddf..26694f6e29 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await functions.delete( functionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/get-deployment-download.md b/docs/examples/1.8.x/server-swift/examples/functions/get-deployment-download.md index 1feab0f484..cbef3a2151 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/get-deployment-download.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/get-deployment-download.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let bytes = try await functions.getDeploymentDownload( type: .source // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/get-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/get-deployment.md index 56ed2e8512..f0bfe2d5e0 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/get-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/get-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let deployment = try await functions.getDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/get-execution.md b/docs/examples/1.8.x/server-swift/examples/functions/get-execution.md index 6d24ee9390..93f301a115 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/get-execution.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/get-execution.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let execution = try await functions.getExecution( executionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/get-variable.md b/docs/examples/1.8.x/server-swift/examples/functions/get-variable.md index da20d68007..2d1d6b268f 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/get-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/get-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let variable = try await functions.getVariable( variableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/get.md b/docs/examples/1.8.x/server-swift/examples/functions/get.md index 98babdb04d..b3a2694ff1 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/get.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let function = try await functions.get( functionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list-deployments.md b/docs/examples/1.8.x/server-swift/examples/functions/list-deployments.md index de6a738db6..16a2632493 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list-deployments.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list-deployments.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let deploymentList = try await functions.listDeployments( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list-executions.md b/docs/examples/1.8.x/server-swift/examples/functions/list-executions.md index 668aacc4a6..86d87d8d16 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list-executions.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list-executions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let executionList = try await functions.listExecutions( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list-runtimes.md b/docs/examples/1.8.x/server-swift/examples/functions/list-runtimes.md index c4a3f31174..447e11eb38 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list-runtimes.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list-runtimes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let functions = Functions(client) let runtimeList = try await functions.listRuntimes() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list-specifications.md b/docs/examples/1.8.x/server-swift/examples/functions/list-specifications.md index 1f5914ba91..086c423a29 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list-specifications.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list-specifications.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let functions = Functions(client) let specificationList = try await functions.listSpecifications() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list-variables.md b/docs/examples/1.8.x/server-swift/examples/functions/list-variables.md index 0343e54772..3d67635baa 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list-variables.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list-variables.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let variableList = try await functions.listVariables( functionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/list.md b/docs/examples/1.8.x/server-swift/examples/functions/list.md index 88fdefc23c..a8f641ed09 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/list.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let functionList = try await functions.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/update-deployment-status.md b/docs/examples/1.8.x/server-swift/examples/functions/update-deployment-status.md index 1883199655..a6c23a57b3 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/update-deployment-status.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/update-deployment-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let deployment = try await functions.updateDeploymentStatus( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/update-function-deployment.md b/docs/examples/1.8.x/server-swift/examples/functions/update-function-deployment.md index 5557d82f10..71a50fa6c9 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/update-function-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/update-function-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let function = try await functions.updateFunctionDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/update-variable.md b/docs/examples/1.8.x/server-swift/examples/functions/update-variable.md index 974b2ed0ff..7244bf1f38 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/update-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/update-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let variable = try await functions.updateVariable( secret: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/functions/update.md b/docs/examples/1.8.x/server-swift/examples/functions/update.md index d47852e794..27c1765e9c 100644 --- a/docs/examples/1.8.x/server-swift/examples/functions/update.md +++ b/docs/examples/1.8.x/server-swift/examples/functions/update.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -29,3 +30,4 @@ let function = try await functions.update( specification: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/graphql/mutation.md b/docs/examples/1.8.x/server-swift/examples/graphql/mutation.md index ad33858894..9c3cf11680 100644 --- a/docs/examples/1.8.x/server-swift/examples/graphql/mutation.md +++ b/docs/examples/1.8.x/server-swift/examples/graphql/mutation.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let any = try await graphql.mutation( query: [:] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/graphql/query.md b/docs/examples/1.8.x/server-swift/examples/graphql/query.md index f087c888a3..9ce16dcc75 100644 --- a/docs/examples/1.8.x/server-swift/examples/graphql/query.md +++ b/docs/examples/1.8.x/server-swift/examples/graphql/query.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let any = try await graphql.query( query: [:] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-antivirus.md b/docs/examples/1.8.x/server-swift/examples/health/get-antivirus.md index 5fc335f8fc..2ef80452ca 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-antivirus.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-antivirus.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthAntivirus = try await health.getAntivirus() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-cache.md b/docs/examples/1.8.x/server-swift/examples/health/get-cache.md index fdfa27e9c7..fe6b1929b9 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-cache.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-cache.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatusList = try await health.getCache() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-certificate.md b/docs/examples/1.8.x/server-swift/examples/health/get-certificate.md index 6adf4d6052..056f638dd1 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-certificate.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-certificate.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthCertificate = try await health.getCertificate( domain: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-db.md b/docs/examples/1.8.x/server-swift/examples/health/get-db.md index 2d2f059ba1..16a239d15b 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-db.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-db.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatusList = try await health.getDB() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-failed-jobs.md b/docs/examples/1.8.x/server-swift/examples/health/get-failed-jobs.md index c508106bfa..70ec02d12d 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-failed-jobs.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-failed-jobs.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -13,3 +14,4 @@ let healthQueue = try await health.getFailedJobs( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-pub-sub.md b/docs/examples/1.8.x/server-swift/examples/health/get-pub-sub.md index cc5acc7667..10b33f58fc 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-pub-sub.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-pub-sub.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatusList = try await health.getPubSub() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-audits.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-audits.md index 271d4d02a9..0c60f93204 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-audits.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-audits.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueAudits( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-builds.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-builds.md index 8db346ccbe..c3be31e3f1 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-builds.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-builds.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueBuilds( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-certificates.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-certificates.md index 4814f29d87..fcbe394047 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-certificates.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-certificates.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueCertificates( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-databases.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-databases.md index 3acda3ddd7..38f5f573ce 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-databases.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-databases.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let healthQueue = try await health.getQueueDatabases( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-deletes.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-deletes.md index 8be397f53f..21c4ee1828 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-deletes.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-deletes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueDeletes( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-functions.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-functions.md index aa420409d2..2379e7cfcf 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-functions.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-functions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueFunctions( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-logs.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-logs.md index dc989a510f..0231a26fbd 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueLogs( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-mails.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-mails.md index 2106b2f233..e551cb0a25 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-mails.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-mails.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueMails( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-messaging.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-messaging.md index 11cb16c5e3..2396a5395b 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-messaging.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-messaging.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueMessaging( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-migrations.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-migrations.md index a0a4588b54..60adef2d9a 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-migrations.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-migrations.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueMigrations( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-stats-resources.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-stats-resources.md index 4eb6ba7de3..33ced68f4b 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-stats-resources.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-stats-resources.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueStatsResources( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-usage.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-usage.md index bfaeab0b36..8227c45ea8 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-usage.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-usage.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueUsage( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-queue-webhooks.md b/docs/examples/1.8.x/server-swift/examples/health/get-queue-webhooks.md index c315406627..08d684e46d 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-queue-webhooks.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-queue-webhooks.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let healthQueue = try await health.getQueueWebhooks( threshold: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-storage-local.md b/docs/examples/1.8.x/server-swift/examples/health/get-storage-local.md index 9e23c09b6d..1b15552de6 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-storage-local.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-storage-local.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatus = try await health.getStorageLocal() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-storage.md b/docs/examples/1.8.x/server-swift/examples/health/get-storage.md index 513ebac944..c27e8df534 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-storage.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-storage.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatus = try await health.getStorage() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get-time.md b/docs/examples/1.8.x/server-swift/examples/health/get-time.md index 6624b40b22..f462edcbbd 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get-time.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get-time.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthTime = try await health.getTime() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/health/get.md b/docs/examples/1.8.x/server-swift/examples/health/get.md index ef1ffaab6c..c0ca14f168 100644 --- a/docs/examples/1.8.x/server-swift/examples/health/get.md +++ b/docs/examples/1.8.x/server-swift/examples/health/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let health = Health(client) let healthStatus = try await health.get() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/get.md b/docs/examples/1.8.x/server-swift/examples/locale/get.md index e22f3157c7..ca305c0dce 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/get.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let locale = try await locale.get() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-codes.md b/docs/examples/1.8.x/server-swift/examples/locale/list-codes.md index b31448a119..dd0f9fb638 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let localeCodeList = try await locale.listCodes() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-continents.md b/docs/examples/1.8.x/server-swift/examples/locale/list-continents.md index c75abf8a4d..f37daceff2 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-continents.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-continents.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let continentList = try await locale.listContinents() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-countries-eu.md b/docs/examples/1.8.x/server-swift/examples/locale/list-countries-eu.md index e09f3db4f7..b858b31d90 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-countries-eu.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-countries-eu.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let countryList = try await locale.listCountriesEU() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-countries-phones.md b/docs/examples/1.8.x/server-swift/examples/locale/list-countries-phones.md index de360c4408..739c490ba2 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-countries-phones.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-countries-phones.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let phoneList = try await locale.listCountriesPhones() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-countries.md b/docs/examples/1.8.x/server-swift/examples/locale/list-countries.md index b214f9899b..8aa3bcf752 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-countries.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-countries.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let countryList = try await locale.listCountries() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-currencies.md b/docs/examples/1.8.x/server-swift/examples/locale/list-currencies.md index a47cae696b..d1ce956b69 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-currencies.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-currencies.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let currencyList = try await locale.listCurrencies() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/locale/list-languages.md b/docs/examples/1.8.x/server-swift/examples/locale/list-languages.md index 40db7e5fe6..ed444bf586 100644 --- a/docs/examples/1.8.x/server-swift/examples/locale/list-languages.md +++ b/docs/examples/1.8.x/server-swift/examples/locale/list-languages.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let locale = Locale(client) let languageList = try await locale.listLanguages() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-apns-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-apns-provider.md index 772084dc44..5330efd9d7 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-apns-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-apns-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.createAPNSProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-email.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-email.md index a1b4774228..02ee8f8af0 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-email.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-email.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let message = try await messaging.createEmail( scheduledAt: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-fcm-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-fcm-provider.md index 2b004507b6..5b80c5ad87 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-fcm-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-fcm-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let provider = try await messaging.createFCMProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-mailgun-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-mailgun-provider.md index aca295d1bd..82c24ac18b 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-mailgun-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-mailgun-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -20,3 +21,4 @@ let provider = try await messaging.createMailgunProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-msg-91-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-msg-91-provider.md index 01503c10cb..674eff6b4c 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-msg-91-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-msg-91-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.createMsg91Provider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-push.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-push.md index ba03b3330d..71c2677cee 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-push.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-push.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -30,3 +31,4 @@ let message = try await messaging.createPush( priority: .normal // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-resend-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-resend-provider.md index c43e1e8417..77a8e24edf 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-resend-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-resend-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.createResendProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-sendgrid-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-sendgrid-provider.md index 5275f6cdb7..c6046018ab 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-sendgrid-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.createSendgridProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-sms.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-sms.md index 28a6ba7a63..0ba64fa35b 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-sms.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-sms.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let message = try await messaging.createSMS( scheduledAt: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-smtp-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-smtp-provider.md index ec9b92c8e1..b4c32819cd 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-smtp-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-smtp-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -25,3 +26,4 @@ let provider = try await messaging.createSMTPProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-subscriber.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-subscriber.md index cb23162484..1246040630 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-subscriber.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-subscriber.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let subscriber = try await messaging.createSubscriber( targetId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-telesign-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-telesign-provider.md index a787134992..984ca29dff 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-telesign-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-telesign-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.createTelesignProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-textmagic-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-textmagic-provider.md index 9b12a7d8cb..49a7ae2e7c 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-textmagic-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-textmagic-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.createTextmagicProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-topic.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-topic.md index 9429c45554..73abd57a55 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-topic.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-topic.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let topic = try await messaging.createTopic( subscribe: ["any"] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-twilio-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-twilio-provider.md index 7421290e05..0db5922294 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-twilio-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-twilio-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.createTwilioProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/create-vonage-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/create-vonage-provider.md index b6a3014391..59a5920781 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/create-vonage-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/create-vonage-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.createVonageProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/delete-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/delete-provider.md index 94da565e1f..b4ec578016 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/delete-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/delete-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await messaging.deleteProvider( providerId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/delete-subscriber.md b/docs/examples/1.8.x/server-swift/examples/messaging/delete-subscriber.md index b0aa96602f..f1b06dedec 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/delete-subscriber.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/delete-subscriber.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await messaging.deleteSubscriber( subscriberId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/delete-topic.md b/docs/examples/1.8.x/server-swift/examples/messaging/delete-topic.md index 6676adf94e..5f6c33ffef 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/delete-topic.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/delete-topic.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await messaging.deleteTopic( topicId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/delete.md b/docs/examples/1.8.x/server-swift/examples/messaging/delete.md index fca66c7f43..0c5e13461b 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await messaging.delete( messageId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/get-message.md b/docs/examples/1.8.x/server-swift/examples/messaging/get-message.md index b1bbf9d5f0..ca7b9dd7df 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/get-message.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/get-message.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let message = try await messaging.getMessage( messageId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/get-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/get-provider.md index 6ff8545bd0..9331f7badc 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/get-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/get-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let provider = try await messaging.getProvider( providerId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/get-subscriber.md b/docs/examples/1.8.x/server-swift/examples/messaging/get-subscriber.md index 55538e073d..ece8b41f3d 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/get-subscriber.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/get-subscriber.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let subscriber = try await messaging.getSubscriber( subscriberId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/get-topic.md b/docs/examples/1.8.x/server-swift/examples/messaging/get-topic.md index 0d2035bd9d..4f19c7181b 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/get-topic.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/get-topic.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let topic = try await messaging.getTopic( topicId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-message-logs.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-message-logs.md index 34ada0a6a3..52147b80ba 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-message-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-message-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let logList = try await messaging.listMessageLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-messages.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-messages.md index 1f461f90af..e4da82c877 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-messages.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-messages.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let messageList = try await messaging.listMessages( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-provider-logs.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-provider-logs.md index e45d41ab60..4baa230f4c 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-provider-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-provider-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let logList = try await messaging.listProviderLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-providers.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-providers.md index 1b8bec0849..36f83d38df 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-providers.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-providers.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let providerList = try await messaging.listProviders( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-subscriber-logs.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-subscriber-logs.md index 75c62f1dbe..65361cef1b 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-subscriber-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-subscriber-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let logList = try await messaging.listSubscriberLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-subscribers.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-subscribers.md index b845633c6f..cc84e6cd7c 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-subscribers.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-subscribers.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let subscriberList = try await messaging.listSubscribers( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-targets.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-targets.md index eb474c803f..8927e88534 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-targets.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-targets.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let targetList = try await messaging.listTargets( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-topic-logs.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-topic-logs.md index 5f54670e59..3765ca7b9d 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-topic-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-topic-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let logList = try await messaging.listTopicLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/list-topics.md b/docs/examples/1.8.x/server-swift/examples/messaging/list-topics.md index cd24e5ffd6..57526d45f1 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/list-topics.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/list-topics.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let topicList = try await messaging.listTopics( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-apns-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-apns-provider.md index bed92ba11c..a5a5aa12be 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-apns-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-apns-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.updateAPNSProvider( sandbox: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-email.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-email.md index 1404fb8f77..9c8ee726e6 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-email.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-email.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let message = try await messaging.updateEmail( attachments: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-fcm-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-fcm-provider.md index efd7e1fb9d..bc98b1c9fd 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-fcm-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-fcm-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let provider = try await messaging.updateFCMProvider( serviceAccountJSON: [:] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-mailgun-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-mailgun-provider.md index 8ed28aa40e..a2524f8ca8 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-mailgun-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-mailgun-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -20,3 +21,4 @@ let provider = try await messaging.updateMailgunProvider( replyToEmail: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-msg-91-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-msg-91-provider.md index e4a441c561..adaf9bd143 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-msg-91-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-msg-91-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.updateMsg91Provider( authKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-push.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-push.md index b7b5bb0b38..849ec7ea0f 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-push.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-push.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -30,3 +31,4 @@ let message = try await messaging.updatePush( priority: .normal // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-resend-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-resend-provider.md index ee392f689a..a36982b2c2 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-resend-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-resend-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.updateResendProvider( replyToEmail: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-sendgrid-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-sendgrid-provider.md index d363342af8..28b489ac56 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-sendgrid-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-sendgrid-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let provider = try await messaging.updateSendgridProvider( replyToEmail: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-sms.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-sms.md index d6dc207b02..b54a0649eb 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-sms.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-sms.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let message = try await messaging.updateSMS( scheduledAt: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-smtp-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-smtp-provider.md index 402c2675d2..44578eb468 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-smtp-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-smtp-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -25,3 +26,4 @@ let provider = try await messaging.updateSMTPProvider( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-telesign-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-telesign-provider.md index 4475128b71..2ce8a03ea9 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-telesign-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-telesign-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.updateTelesignProvider( from: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-textmagic-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-textmagic-provider.md index e412faab65..b43d55ae17 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-textmagic-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-textmagic-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.updateTextmagicProvider( from: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-topic.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-topic.md index 796f581f07..4a3cf737f7 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-topic.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-topic.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let topic = try await messaging.updateTopic( subscribe: ["any"] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-twilio-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-twilio-provider.md index 7b4592b048..959f7f9e4c 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-twilio-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-twilio-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.updateTwilioProvider( from: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/messaging/update-vonage-provider.md b/docs/examples/1.8.x/server-swift/examples/messaging/update-vonage-provider.md index ba10ce2309..fc1ed24874 100644 --- a/docs/examples/1.8.x/server-swift/examples/messaging/update-vonage-provider.md +++ b/docs/examples/1.8.x/server-swift/examples/messaging/update-vonage-provider.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let provider = try await messaging.updateVonageProvider( from: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/create-deployment.md index 5730e8ef5c..5d44fe2de2 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let deployment = try await sites.createDeployment( outputDirectory: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create-duplicate-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/create-duplicate-deployment.md index 0ec3804d7a..713f301c84 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create-duplicate-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create-duplicate-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let deployment = try await sites.createDuplicateDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create-template-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/create-template-deployment.md index 250eb124a5..3bd90c077f 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create-template-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create-template-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let deployment = try await sites.createTemplateDeployment( activate: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create-variable.md b/docs/examples/1.8.x/server-swift/examples/sites/create-variable.md index 305a683fcd..a17469e023 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let variable = try await sites.createVariable( secret: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create-vcs-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/create-vcs-deployment.md index d72540e715..aac865a02f 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create-vcs-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create-vcs-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -15,3 +16,4 @@ let deployment = try await sites.createVcsDeployment( activate: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/create.md b/docs/examples/1.8.x/server-swift/examples/sites/create.md index 1f961d0535..0f3342740d 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/create.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -29,3 +30,4 @@ let site = try await sites.create( specification: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/delete-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/delete-deployment.md index c4f6971d7f..018be7a4b4 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/delete-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/delete-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await sites.deleteDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/delete-log.md b/docs/examples/1.8.x/server-swift/examples/sites/delete-log.md index 1066551495..2b88a56501 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/delete-log.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/delete-log.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await sites.deleteLog( logId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/delete-variable.md b/docs/examples/1.8.x/server-swift/examples/sites/delete-variable.md index a33e1c549e..513b8232ea 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/delete-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/delete-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await sites.deleteVariable( variableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/delete.md b/docs/examples/1.8.x/server-swift/examples/sites/delete.md index 8283f70de2..c71618cf7f 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await sites.delete( siteId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/get-deployment-download.md b/docs/examples/1.8.x/server-swift/examples/sites/get-deployment-download.md index 5ed409c53b..4c11b91ccb 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/get-deployment-download.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/get-deployment-download.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let bytes = try await sites.getDeploymentDownload( type: .source // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/get-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/get-deployment.md index b9f04f3dfc..03413bb403 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/get-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/get-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let deployment = try await sites.getDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/get-log.md b/docs/examples/1.8.x/server-swift/examples/sites/get-log.md index 1e5c8121a6..608a2611a5 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/get-log.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/get-log.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let execution = try await sites.getLog( logId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/get-variable.md b/docs/examples/1.8.x/server-swift/examples/sites/get-variable.md index f9258fd5f6..4f22a19052 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/get-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/get-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let variable = try await sites.getVariable( variableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/get.md b/docs/examples/1.8.x/server-swift/examples/sites/get.md index a14a9b73e7..be7ab735d5 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/get.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let site = try await sites.get( siteId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list-deployments.md b/docs/examples/1.8.x/server-swift/examples/sites/list-deployments.md index 976023d7aa..3427c09f33 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list-deployments.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list-deployments.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let deploymentList = try await sites.listDeployments( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list-frameworks.md b/docs/examples/1.8.x/server-swift/examples/sites/list-frameworks.md index 13fdf9bca2..f4fe3a699f 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list-frameworks.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list-frameworks.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let sites = Sites(client) let frameworkList = try await sites.listFrameworks() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list-logs.md b/docs/examples/1.8.x/server-swift/examples/sites/list-logs.md index 3220df8e81..bc532302e2 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let executionList = try await sites.listLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list-specifications.md b/docs/examples/1.8.x/server-swift/examples/sites/list-specifications.md index 302e9ea50e..c34357da87 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list-specifications.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list-specifications.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -9,3 +10,4 @@ let sites = Sites(client) let specificationList = try await sites.listSpecifications() +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list-variables.md b/docs/examples/1.8.x/server-swift/examples/sites/list-variables.md index 9818224988..bd3f60a540 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list-variables.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list-variables.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let variableList = try await sites.listVariables( siteId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/list.md b/docs/examples/1.8.x/server-swift/examples/sites/list.md index 414268e9be..9d5f7763f3 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/list.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let siteList = try await sites.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/update-deployment-status.md b/docs/examples/1.8.x/server-swift/examples/sites/update-deployment-status.md index 104058713d..4b9364be27 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/update-deployment-status.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/update-deployment-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let deployment = try await sites.updateDeploymentStatus( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/update-site-deployment.md b/docs/examples/1.8.x/server-swift/examples/sites/update-site-deployment.md index ce330e4985..880060d0b7 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/update-site-deployment.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/update-site-deployment.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let site = try await sites.updateSiteDeployment( deploymentId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/update-variable.md b/docs/examples/1.8.x/server-swift/examples/sites/update-variable.md index 8385c20e90..a53291a2b5 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/update-variable.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/update-variable.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let variable = try await sites.updateVariable( secret: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/sites/update.md b/docs/examples/1.8.x/server-swift/examples/sites/update.md index e7de2fbd17..6958fb3d7a 100644 --- a/docs/examples/1.8.x/server-swift/examples/sites/update.md +++ b/docs/examples/1.8.x/server-swift/examples/sites/update.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -29,3 +30,4 @@ let site = try await sites.update( specification: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/create-bucket.md b/docs/examples/1.8.x/server-swift/examples/storage/create-bucket.md index 9931b81943..89ccc8e43d 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/create-bucket.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/create-bucket.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -22,3 +23,4 @@ let bucket = try await storage.createBucket( transformations: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/create-file.md b/docs/examples/1.8.x/server-swift/examples/storage/create-file.md index 612c56f9f5..6ab324e4be 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/create-file.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/create-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let file = try await storage.createFile( permissions: [Permission.read(Role.any())] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/delete-bucket.md b/docs/examples/1.8.x/server-swift/examples/storage/delete-bucket.md index 2f4916dba2..43c58231fb 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/delete-bucket.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/delete-bucket.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await storage.deleteBucket( bucketId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/delete-file.md b/docs/examples/1.8.x/server-swift/examples/storage/delete-file.md index 7ac1b194e6..2f6295244a 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/delete-file.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/delete-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await storage.deleteFile( fileId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/get-bucket.md b/docs/examples/1.8.x/server-swift/examples/storage/get-bucket.md index 296a27bf85..e261e7b699 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/get-bucket.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/get-bucket.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let bucket = try await storage.getBucket( bucketId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/get-file-download.md b/docs/examples/1.8.x/server-swift/examples/storage/get-file-download.md index b362b08cda..2efb755f79 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/get-file-download.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/get-file-download.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bytes = try await storage.getFileDownload( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/get-file-preview.md b/docs/examples/1.8.x/server-swift/examples/storage/get-file-preview.md index d8c2380b7d..e30e19aa5a 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/get-file-preview.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/get-file-preview.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -25,3 +26,4 @@ let bytes = try await storage.getFilePreview( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/get-file-view.md b/docs/examples/1.8.x/server-swift/examples/storage/get-file-view.md index a3b94eec45..df514f7e47 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/get-file-view.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/get-file-view.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bytes = try await storage.getFileView( token: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/get-file.md b/docs/examples/1.8.x/server-swift/examples/storage/get-file.md index 033a643a83..36b999cff8 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/get-file.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/get-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let file = try await storage.getFile( fileId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/list-buckets.md b/docs/examples/1.8.x/server-swift/examples/storage/list-buckets.md index 621af7c8b5..86e84bd342 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/list-buckets.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/list-buckets.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let bucketList = try await storage.listBuckets( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/list-files.md b/docs/examples/1.8.x/server-swift/examples/storage/list-files.md index d66d91ae1c..7102270f3f 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/list-files.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/list-files.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let fileList = try await storage.listFiles( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/update-bucket.md b/docs/examples/1.8.x/server-swift/examples/storage/update-bucket.md index be283b7d6a..a5b66e39f1 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/update-bucket.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/update-bucket.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -22,3 +23,4 @@ let bucket = try await storage.updateBucket( transformations: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/storage/update-file.md b/docs/examples/1.8.x/server-swift/examples/storage/update-file.md index 6c3b3884e6..aa02fd86fb 100644 --- a/docs/examples/1.8.x/server-swift/examples/storage/update-file.md +++ b/docs/examples/1.8.x/server-swift/examples/storage/update-file.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let file = try await storage.updateFile( permissions: [Permission.read(Role.any())] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md index af4b7bdf9d..5f5f0d6e6b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnBoolean = try await tablesDB.createBooleanColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md index ee1945d563..58ef48b9cb 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnDatetime = try await tablesDB.createDatetimeColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md index 4ca0fe78aa..507173850c 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnEmail = try await tablesDB.createEmailColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md index ccddf5297b..8acc382f64 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let columnEnum = try await tablesDB.createEnumColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md index c1c685bc02..b5cac2dfd4 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let columnFloat = try await tablesDB.createFloatColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md index 40343d1877..935f0a7301 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let columnIndex = try await tablesDB.createIndex( lengths: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md index 52ad14a592..27b829466b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let columnInteger = try await tablesDB.createIntegerColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md index d8801c5a24..9235e6ee9d 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnIp = try await tablesDB.createIpColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-line-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-line-column.md index 2737d91cb8..a83d452483 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-line-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-line-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let columnLine = try await tablesDB.createLineColumn( default: [[1, 2], [3, 4], [5, 6]] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-longtext-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-longtext-column.md index 121a919ca2..25956b2ec0 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-longtext-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-longtext-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnLongtext = try await tablesDB.createLongtextColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-mediumtext-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-mediumtext-column.md index a5d967ca34..a76dd11e12 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-mediumtext-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-mediumtext-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnMediumtext = try await tablesDB.createMediumtextColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-operations.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-operations.md index 5ee356e55b..3f673a5b47 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-operations.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-operations.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let transaction = try await tablesDB.createOperations( ] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-point-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-point-column.md index 2652ea0427..d52a2ccc66 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-point-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-point-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let columnPoint = try await tablesDB.createPointColumn( default: [1, 2] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-polygon-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-polygon-column.md index 860a1eeab2..59c8807129 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-polygon-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-polygon-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let columnPolygon = try await tablesDB.createPolygonColumn( default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md index 4c464b5d70..7d5ed40d1e 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -19,3 +20,4 @@ let columnRelationship = try await tablesDB.createRelationshipColumn( onDelete: .cascade // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md index 427fc030bd..535ee521ea 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let row = try await tablesDB.createRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md index 63fafbd9e5..0a83807178 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let rowList = try await tablesDB.createRows( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md index e38dcb8014..0511816320 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let columnString = try await tablesDB.createStringColumn( encrypt: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md index c04c25aa4a..d8c537dcc7 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let table = try await tablesDB.createTable( indexes: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-text-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-text-column.md index d39b947871..3e2fa5518f 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-text-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-text-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnText = try await tablesDB.createTextColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-transaction.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-transaction.md index d826446ea2..efa765097e 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transaction = try await tablesDB.createTransaction( ttl: 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md index 083556f2a3..22c33bf174 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnUrl = try await tablesDB.createUrlColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-varchar-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-varchar-column.md index f2a55d472f..06701f8fc4 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-varchar-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-varchar-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let columnVarchar = try await tablesDB.createVarcharColumn( array: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md index be88b5950d..91fe76a734 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let database = try await tablesDB.create( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md index 9c33055202..10f86d5a3a 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let row = try await tablesDB.decrementRowColumn( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md index f9f2c5cf60..221e13a976 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await tablesDB.deleteColumn( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md index 0a413b6418..982a10cf37 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let result = try await tablesDB.deleteIndex( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md index a0a96eea4e..89b575fc0a 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let result = try await tablesDB.deleteRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md index 7235112eca..0ab77ec63c 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let rowList = try await tablesDB.deleteRows( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md index 1986f3a19e..b5e613f4ca 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await tablesDB.deleteTable( tableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-transaction.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-transaction.md index 9a5d58bf42..90c4c4b77b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await tablesDB.deleteTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md index 08e6ddc2d1..0341da3429 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await tablesDB.delete( databaseId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md index 8cb697a983..a1478e27d2 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let columnBoolean = try await tablesDB.getColumn( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md index 6f65fdba2b..86e15d5151 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let columnIndex = try await tablesDB.getIndex( key: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md index ecadab16aa..72ef92fece 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let row = try await tablesDB.getRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md index e9167d4d0a..b3a68b5dee 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let table = try await tablesDB.getTable( tableId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-transaction.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-transaction.md index af0bd03b12..faf6677a31 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transaction = try await tablesDB.getTransaction( transactionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md index d670cf7a18..b94686d2ae 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let database = try await tablesDB.get( databaseId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md index 6c35ba8d4a..dc2a16cdcf 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let row = try await tablesDB.incrementRowColumn( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md index dd19948f30..1a4ce6b195 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let columnList = try await tablesDB.listColumns( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md index ce090c72f7..49cb529a82 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let columnIndexList = try await tablesDB.listIndexes( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md index a07f4f8fb6..110c159e05 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let rowList = try await tablesDB.listRows( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md index 945a78938d..a611a8f4a6 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let tableList = try await tablesDB.listTables( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-transactions.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-transactions.md index c6acb295d6..bf51907bdc 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-transactions.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-transactions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let transactionList = try await tablesDB.listTransactions( queries: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md index bbdaec1f7f..4ac684cafe 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let databaseList = try await tablesDB.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md index c8ca0fc499..b67a55bca7 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnBoolean = try await tablesDB.updateBooleanColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md index 67e411bd35..2031c875f1 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnDatetime = try await tablesDB.updateDatetimeColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md index 56a7d074de..1e549ae1fb 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnEmail = try await tablesDB.updateEmailColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md index a86d114c0c..5a8b8feec5 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let columnEnum = try await tablesDB.updateEnumColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md index 10806aae70..1a1490da37 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let columnFloat = try await tablesDB.updateFloatColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md index ba6bfa589a..7754084e54 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -18,3 +19,4 @@ let columnInteger = try await tablesDB.updateIntegerColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md index 5686e71016..a9b3578b22 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnIp = try await tablesDB.updateIpColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-line-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-line-column.md index d63e024849..02c911f4bd 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-line-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-line-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnLine = try await tablesDB.updateLineColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-longtext-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-longtext-column.md index 647d0c52dd..31da3571c5 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-longtext-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-longtext-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnLongtext = try await tablesDB.updateLongtextColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-mediumtext-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-mediumtext-column.md index 895269aa03..6b47446481 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-mediumtext-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-mediumtext-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnMediumtext = try await tablesDB.updateMediumtextColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-point-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-point-column.md index 3427b17bdf..61c450732e 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-point-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-point-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnPoint = try await tablesDB.updatePointColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-polygon-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-polygon-column.md index 140665a1be..b58f0ddfbd 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-polygon-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-polygon-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnPolygon = try await tablesDB.updatePolygonColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md index 0a021ff03e..addc38bb11 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -16,3 +17,4 @@ let columnRelationship = try await tablesDB.updateRelationshipColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md index c785b625c1..da34394b67 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let row = try await tablesDB.updateRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md index 035572c0f4..934e441e31 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -21,3 +22,4 @@ let rowList = try await tablesDB.updateRows( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md index 55efca1c67..2932f5f26f 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let columnString = try await tablesDB.updateStringColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md index bfd397b9d4..f92bd4a3b0 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let table = try await tablesDB.updateTable( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-text-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-text-column.md index d6f2e1c56a..a377426c16 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-text-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-text-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnText = try await tablesDB.updateTextColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-transaction.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-transaction.md index faa7d07d63..69abac9500 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-transaction.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-transaction.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let transaction = try await tablesDB.updateTransaction( rollback: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md index 693fe52796..2855635418 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -16,3 +17,4 @@ let columnUrl = try await tablesDB.updateUrlColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-varchar-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-varchar-column.md index c932d8b250..098463b8f6 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-varchar-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-varchar-column.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let columnVarchar = try await tablesDB.updateVarcharColumn( newKey: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md index 75aaf1f469..b1c2c665b5 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let database = try await tablesDB.update( enabled: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md index fc7f454548..c84ee4b98b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -22,3 +23,4 @@ let row = try await tablesDB.upsertRow( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md index 027087b252..457ea5c586 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let rowList = try await tablesDB.upsertRows( transactionId: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/create-membership.md b/docs/examples/1.8.x/server-swift/examples/teams/create-membership.md index cb21e9c3f0..b0c38af22b 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/create-membership.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/create-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -18,3 +19,4 @@ let membership = try await teams.createMembership( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/create.md b/docs/examples/1.8.x/server-swift/examples/teams/create.md index 71f3d70874..0aadb201a0 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/create.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let team = try await teams.create( roles: [] // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/delete-membership.md b/docs/examples/1.8.x/server-swift/examples/teams/delete-membership.md index dbdbc96ff9..fb1c478306 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/delete-membership.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/delete-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await teams.deleteMembership( membershipId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/delete.md b/docs/examples/1.8.x/server-swift/examples/teams/delete.md index ee9daaa55b..e6b1dcbf2b 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await teams.delete( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/get-membership.md b/docs/examples/1.8.x/server-swift/examples/teams/get-membership.md index ab7b29eb3a..a2d73f27ff 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/get-membership.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/get-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let membership = try await teams.getMembership( membershipId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/get-prefs.md b/docs/examples/1.8.x/server-swift/examples/teams/get-prefs.md index ae3e9f2875..210d6c99ad 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/get-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/get-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let preferences = try await teams.getPrefs( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/get.md b/docs/examples/1.8.x/server-swift/examples/teams/get.md index cd4b75567a..fc7734ffb9 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/get.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let team = try await teams.get( teamId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/list-memberships.md b/docs/examples/1.8.x/server-swift/examples/teams/list-memberships.md index 329fa7a222..0df4809fcb 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/list-memberships.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/list-memberships.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let membershipList = try await teams.listMemberships( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/list.md b/docs/examples/1.8.x/server-swift/examples/teams/list.md index d4b16044da..4b36faf540 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/list.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let teamList = try await teams.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/update-membership-status.md b/docs/examples/1.8.x/server-swift/examples/teams/update-membership-status.md index 69fca1de74..b03cdb4b48 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/update-membership-status.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/update-membership-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let membership = try await teams.updateMembershipStatus( secret: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/update-membership.md b/docs/examples/1.8.x/server-swift/examples/teams/update-membership.md index b2a85d0592..a35661c381 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/update-membership.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/update-membership.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -14,3 +15,4 @@ let membership = try await teams.updateMembership( roles: [.admin] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/update-name.md b/docs/examples/1.8.x/server-swift/examples/teams/update-name.md index 56f5ab60db..e2e9b1c0ef 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/update-name.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/update-name.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let team = try await teams.updateName( name: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/teams/update-prefs.md b/docs/examples/1.8.x/server-swift/examples/teams/update-prefs.md index b8bb200b65..572f32b376 100644 --- a/docs/examples/1.8.x/server-swift/examples/teams/update-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/teams/update-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let preferences = try await teams.updatePrefs( prefs: [:] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tokens/create-file-token.md b/docs/examples/1.8.x/server-swift/examples/tokens/create-file-token.md index 2bdc123b61..4d0399e742 100644 --- a/docs/examples/1.8.x/server-swift/examples/tokens/create-file-token.md +++ b/docs/examples/1.8.x/server-swift/examples/tokens/create-file-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let resourceToken = try await tokens.createFileToken( expire: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tokens/delete.md b/docs/examples/1.8.x/server-swift/examples/tokens/delete.md index 8b4db1435d..fc82daf5a8 100644 --- a/docs/examples/1.8.x/server-swift/examples/tokens/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/tokens/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await tokens.delete( tokenId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tokens/get.md b/docs/examples/1.8.x/server-swift/examples/tokens/get.md index d6eac81059..825d8d68ad 100644 --- a/docs/examples/1.8.x/server-swift/examples/tokens/get.md +++ b/docs/examples/1.8.x/server-swift/examples/tokens/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let resourceToken = try await tokens.get( tokenId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tokens/list.md b/docs/examples/1.8.x/server-swift/examples/tokens/list.md index 8a40d0113c..3429e2c3f2 100644 --- a/docs/examples/1.8.x/server-swift/examples/tokens/list.md +++ b/docs/examples/1.8.x/server-swift/examples/tokens/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let resourceTokenList = try await tokens.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/tokens/update.md b/docs/examples/1.8.x/server-swift/examples/tokens/update.md index 14bcb30f78..b9d1fb5d18 100644 --- a/docs/examples/1.8.x/server-swift/examples/tokens/update.md +++ b/docs/examples/1.8.x/server-swift/examples/tokens/update.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let resourceToken = try await tokens.update( expire: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-argon-2-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-argon-2-user.md index 9b7477001d..b2233a91c9 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-argon-2-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-argon-2-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await users.createArgon2User( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-bcrypt-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-bcrypt-user.md index ad5a81fe34..58e32f4de8 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-bcrypt-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await users.createBcryptUser( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-jwt.md b/docs/examples/1.8.x/server-swift/examples/users/create-jwt.md index d61adfb9a7..7cc76e0fa5 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-jwt.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-jwt.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let jwt = try await users.createJWT( duration: 0 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-md-5-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-md-5-user.md index ffe7180c5e..979548e202 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-md-5-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-md-5-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await users.createMD5User( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/users/create-mfa-recovery-codes.md index 5f073d10e6..a9c3a84795 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let mfaRecoveryCodes = try await users.createMFARecoveryCodes( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-ph-pass-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-ph-pass-user.md index e1d8d3f3ef..2df63ec2c0 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-ph-pass-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-ph-pass-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let user = try await users.createPHPassUser( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-modified-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-modified-user.md index d6c67f6f3d..707db0d0f0 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-modified-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -17,3 +18,4 @@ let user = try await users.createScryptModifiedUser( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-user.md index 16452c4606..1281bfb7d0 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-scrypt-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -19,3 +20,4 @@ let user = try await users.createScryptUser( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-session.md b/docs/examples/1.8.x/server-swift/examples/users/create-session.md index cf6f67bd91..46849ece09 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-session.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let session = try await users.createSession( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-sha-user.md b/docs/examples/1.8.x/server-swift/examples/users/create-sha-user.md index ac42f2fe9d..efbf7b7cd4 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-sha-user.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-sha-user.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -16,3 +17,4 @@ let user = try await users.createSHAUser( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-target.md b/docs/examples/1.8.x/server-swift/examples/users/create-target.md index e736afcf31..e0d7d2c6f9 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-target.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -17,3 +18,4 @@ let target = try await users.createTarget( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create-token.md b/docs/examples/1.8.x/server-swift/examples/users/create-token.md index ca1767e178..ec1957fd81 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create-token.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create-token.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let token = try await users.createToken( expire: 60 // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/create.md b/docs/examples/1.8.x/server-swift/examples/users/create.md index 98b886005b..8068f438a6 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/create.md +++ b/docs/examples/1.8.x/server-swift/examples/users/create.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let user = try await users.create( name: "" // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete-identity.md b/docs/examples/1.8.x/server-swift/examples/users/delete-identity.md index bb3d812457..5c9a22254d 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete-identity.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete-identity.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await users.deleteIdentity( identityId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete-mfa-authenticator.md b/docs/examples/1.8.x/server-swift/examples/users/delete-mfa-authenticator.md index be9f39529e..92cc125c17 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete-mfa-authenticator.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete-mfa-authenticator.md @@ -1,3 +1,4 @@ +```swift import Appwrite import AppwriteEnums @@ -13,3 +14,4 @@ let result = try await users.deleteMFAAuthenticator( type: .totp ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete-session.md b/docs/examples/1.8.x/server-swift/examples/users/delete-session.md index c664e4f2ba..f54504e1b1 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete-session.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete-session.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await users.deleteSession( sessionId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete-sessions.md b/docs/examples/1.8.x/server-swift/examples/users/delete-sessions.md index 92ab9d7748..f719e6ad3c 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete-sessions.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await users.deleteSessions( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete-target.md b/docs/examples/1.8.x/server-swift/examples/users/delete-target.md index 1cce56657a..b2fee1ae98 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete-target.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let result = try await users.deleteTarget( targetId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/delete.md b/docs/examples/1.8.x/server-swift/examples/users/delete.md index 8dfe648d6e..57c549cb55 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/users/delete.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let result = try await users.delete( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/get-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/users/get-mfa-recovery-codes.md index 874076c6ac..bca1a13fc7 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/get-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/users/get-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let mfaRecoveryCodes = try await users.getMFARecoveryCodes( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/get-prefs.md b/docs/examples/1.8.x/server-swift/examples/users/get-prefs.md index c4ae61d9dd..5ed3429a0d 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/get-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/users/get-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let preferences = try await users.getPrefs( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/get-target.md b/docs/examples/1.8.x/server-swift/examples/users/get-target.md index 100c56398d..8b211888a5 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/get-target.md +++ b/docs/examples/1.8.x/server-swift/examples/users/get-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let target = try await users.getTarget( targetId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/get.md b/docs/examples/1.8.x/server-swift/examples/users/get.md index 563042b8ef..2ced7fb3c3 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/get.md +++ b/docs/examples/1.8.x/server-swift/examples/users/get.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let user = try await users.get( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-identities.md b/docs/examples/1.8.x/server-swift/examples/users/list-identities.md index 18b374f230..d2617efe35 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-identities.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-identities.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let identityList = try await users.listIdentities( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-logs.md b/docs/examples/1.8.x/server-swift/examples/users/list-logs.md index 79a9a18c69..f86ef7bee5 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-logs.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-logs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let logList = try await users.listLogs( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-memberships.md b/docs/examples/1.8.x/server-swift/examples/users/list-memberships.md index cc84a92b17..b2311539b8 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-memberships.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-memberships.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -14,3 +15,4 @@ let membershipList = try await users.listMemberships( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-mfa-factors.md b/docs/examples/1.8.x/server-swift/examples/users/list-mfa-factors.md index 4a58a07147..ac8ca02dea 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-mfa-factors.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-mfa-factors.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let mfaFactors = try await users.listMFAFactors( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-sessions.md b/docs/examples/1.8.x/server-swift/examples/users/list-sessions.md index 4712c153b1..8f084c40e5 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-sessions.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-sessions.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let sessionList = try await users.listSessions( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list-targets.md b/docs/examples/1.8.x/server-swift/examples/users/list-targets.md index a8008b16ff..f0428187ea 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list-targets.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list-targets.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let targetList = try await users.listTargets( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/list.md b/docs/examples/1.8.x/server-swift/examples/users/list.md index 2620f2e0db..4720e0443f 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/list.md +++ b/docs/examples/1.8.x/server-swift/examples/users/list.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -13,3 +14,4 @@ let userList = try await users.list( total: false // optional ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-email-verification.md b/docs/examples/1.8.x/server-swift/examples/users/update-email-verification.md index e0de947fa2..c8889edb68 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-email-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-email-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateEmailVerification( emailVerification: false ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-email.md b/docs/examples/1.8.x/server-swift/examples/users/update-email.md index 4d3c1c2db2..f3f705c908 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-email.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-email.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateEmail( email: "email@example.com" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-labels.md b/docs/examples/1.8.x/server-swift/examples/users/update-labels.md index 8916996b1f..67d4b95ddb 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-labels.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-labels.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateLabels( labels: [] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-mfa-recovery-codes.md b/docs/examples/1.8.x/server-swift/examples/users/update-mfa-recovery-codes.md index 7ebb34efcb..987cd941d2 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-mfa-recovery-codes.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-mfa-recovery-codes.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -11,3 +12,4 @@ let mfaRecoveryCodes = try await users.updateMFARecoveryCodes( userId: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-mfa.md b/docs/examples/1.8.x/server-swift/examples/users/update-mfa.md index ca442b3a3b..56b44f33af 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-mfa.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-mfa.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateMFA( mfa: false ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-name.md b/docs/examples/1.8.x/server-swift/examples/users/update-name.md index 3735b706d8..38c63415d9 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-name.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-name.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateName( name: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-password.md b/docs/examples/1.8.x/server-swift/examples/users/update-password.md index 3a5b804478..6a29be4bd3 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-password.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-password.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updatePassword( password: "" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-phone-verification.md b/docs/examples/1.8.x/server-swift/examples/users/update-phone-verification.md index fffd768f5d..91e3324225 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-phone-verification.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-phone-verification.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updatePhoneVerification( phoneVerification: false ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-phone.md b/docs/examples/1.8.x/server-swift/examples/users/update-phone.md index 8411ad22a2..17d0095fe7 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-phone.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-phone.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updatePhone( number: "+12065550100" ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-prefs.md b/docs/examples/1.8.x/server-swift/examples/users/update-prefs.md index c71b712df3..21d2ef06c1 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-prefs.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-prefs.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let preferences = try await users.updatePrefs( prefs: [:] ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-status.md b/docs/examples/1.8.x/server-swift/examples/users/update-status.md index 43ecea44f6..fdf0dcac37 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-status.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-status.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -12,3 +13,4 @@ let user = try await users.updateStatus( status: false ) +``` diff --git a/docs/examples/1.8.x/server-swift/examples/users/update-target.md b/docs/examples/1.8.x/server-swift/examples/users/update-target.md index 579f0d282e..7114e7e901 100644 --- a/docs/examples/1.8.x/server-swift/examples/users/update-target.md +++ b/docs/examples/1.8.x/server-swift/examples/users/update-target.md @@ -1,3 +1,4 @@ +```swift import Appwrite let client = Client() @@ -15,3 +16,4 @@ let target = try await users.updateTarget( name: "" // optional ) +```